Searched refs:IBI (Results 1 - 10 of 10) sorted by relevance

/external/llvm/lib/Transforms/Utils/
H A DLocal.cpp228 if (IndirectBrInst *IBI = dyn_cast<IndirectBrInst>(T)) {
231 dyn_cast<BlockAddress>(IBI->getAddress()->stripPointerCasts())) {
236 for (unsigned i = 0, e = IBI->getNumDestinations(); i != e; ++i) {
237 if (IBI->getDestination(i) == TheOnlyDest)
240 IBI->getDestination(i)->removePredecessor(IBI->getParent());
242 Value *Address = IBI->getAddress();
243 IBI->eraseFromParent();
247 // If we didn't find our destination in the IBI successor list, then we
H A DSimplifyCFG.cpp109 bool SimplifyIndirectBr(IndirectBrInst *IBI);
461 } else if (IndirectBrInst *IBI = dyn_cast<IndirectBrInst>(TI)) {
462 Cond = dyn_cast<Instruction>(IBI->getAddress());
2617 static bool SimplifyIndirectBrOnSelect(IndirectBrInst *IBI, SelectInst *SI) { argument
2629 return SimplifyTerminatorOnSelect(IBI, SI->getCondition(), TrueBB, FalseBB,
3957 bool SimplifyCFGOpt::SimplifyIndirectBr(IndirectBrInst *IBI) { argument
3958 BasicBlock *BB = IBI->getParent();
3963 for (unsigned i = 0, e = IBI->getNumDestinations(); i != e; ++i) {
3964 BasicBlock *Dest = IBI->getDestination(i);
3967 IBI
[all...]
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_GeneralDecoder.cpp1829 CJBig2_Image *IBI; local
1923 IBI = SBSYMS[IDI];
1958 IBI = pGRRD->decode(pArithDecoder, grContext);
1959 if(IBI == NULL) {
1968 delete IBI;
1976 if (!IBI) {
1979 WI = IBI->m_nWidth;
1980 HI = IBI->m_nHeight;
1992 SBREG->composeFrom(SI, TI, IBI, SBCOMBOP);
1995 SBREG->composeFrom(SI - WI + 1, TI, IBI, SBCOMBO
2049 CJBig2_Image *IBI; local
[all...]
/external/llvm/lib/IR/
H A DInstructions.cpp3502 IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI) argument
3503 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
3504 allocHungoffUses(IBI.getNumOperands()),
3505 IBI.getNumOperands()) {
3506 Use *OL = OperandList, *InOL = IBI.OperandList;
3507 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3509 SubclassOptionalData = IBI.SubclassOptionalData;
/external/llvm/lib/Analysis/IPA/
H A DInlineCost.cpp138 bool visitIndirectBrInst(IndirectBrInst &IBI);
836 bool CallAnalyzer::visitIndirectBrInst(IndirectBrInst &IBI) { argument
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2739 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); local
2740 InstructionList.push_back(IBI);
2743 IBI->addDestination(DestBB);
2745 delete IBI;
2749 I = IBI;
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp1169 const IndirectBrInst *IBI = cast<IndirectBrInst>(I); local
1171 << opNames[0] << ", " << IBI->getNumDestinations() << ");";
1173 for (unsigned i = 1; i != IBI->getNumOperands(); ++i) {
/external/llvm/lib/AsmParser/
H A DLLParser.cpp3709 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
3711 IBI->addDestination(DestList[i]);
3712 Inst = IBI;
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp2575 } else if (IndirectBrInst *IBI = dyn_cast<IndirectBrInst>(CurInst)) {
2576 Value *Val = getVal(IBI->getAddress())->stripPointerCasts();
/external/llvm/include/llvm/IR/
H A DInstructions.h2860 IndirectBrInst(const IndirectBrInst &IBI);

Completed in 257 milliseconds