Searched defs:IBI (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/Analysis/IPA/
H A DInlineCost.cpp141 bool visitIndirectBrInst(IndirectBrInst &IBI);
848 bool CallAnalyzer::visitIndirectBrInst(IndirectBrInst &IBI) { argument
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp1172 const IndirectBrInst *IBI = cast<IndirectBrInst>(I); local
1174 << opNames[0] << ", " << IBI->getNumDestinations() << ");";
1176 for (unsigned i = 1; i != IBI->getNumOperands(); ++i) {
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_GeneralDecoder.cpp1881 CJBig2_Image *IBI; local
1975 IBI = SBSYMS[IDI];
2010 IBI = pGRRD->decode(pArithDecoder, grContext);
2011 if(IBI == NULL) {
2020 delete IBI;
2028 if (!IBI) {
2031 WI = IBI->m_nWidth;
2032 HI = IBI->m_nHeight;
2044 SBREG->composeFrom(SI, TI, IBI, SBCOMBOP);
2047 SBREG->composeFrom(SI - WI + 1, TI, IBI, SBCOMBO
2101 CJBig2_Image *IBI; local
[all...]
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp3827 IndirectBrInst *IBI = IndirectBrInst::Create(Address, NumDests); local
3828 InstructionList.push_back(IBI);
3831 IBI->addDestination(DestBB);
3833 delete IBI;
3837 I = IBI;
/external/llvm/lib/IR/
H A DInstructions.cpp3455 IndirectBrInst::IndirectBrInst(const IndirectBrInst &IBI) argument
3456 : TerminatorInst(Type::getVoidTy(IBI.getContext()), Instruction::IndirectBr,
3457 allocHungoffUses(IBI.getNumOperands()),
3458 IBI.getNumOperands()) {
3459 Use *OL = OperandList, *InOL = IBI.OperandList;
3460 for (unsigned i = 0, E = IBI.getNumOperands(); i != E; ++i)
3462 SubclassOptionalData = IBI.SubclassOptionalData;
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp129 bool SimplifyIndirectBr(IndirectBrInst *IBI);
514 } else if (IndirectBrInst *IBI = dyn_cast<IndirectBrInst>(TI)) {
515 Cond = dyn_cast<Instruction>(IBI->getAddress());
2667 static bool SimplifyIndirectBrOnSelect(IndirectBrInst *IBI, SelectInst *SI) { argument
2679 return SimplifyTerminatorOnSelect(IBI, SI->getCondition(), TrueBB, FalseBB,
4315 bool SimplifyCFGOpt::SimplifyIndirectBr(IndirectBrInst *IBI) { argument
4316 BasicBlock *BB = IBI->getParent();
4321 for (unsigned i = 0, e = IBI->getNumDestinations(); i != e; ++i) {
4322 BasicBlock *Dest = IBI->getDestination(i);
4325 IBI
[all...]

Completed in 148 milliseconds