Home
last modified time | relevance | path

Searched refs:isUsedOutsideOfBlock (Results 1 – 6 of 6) sorted by relevance

/external/llvm/lib/Analysis/
DCodeMetrics.cpp152 if (II->getType()->isTokenTy() && II->isUsedOutsideOfBlock(BB)) in analyzeBasicBlock()
DLoopInfo.cpp252 if (BI->getType()->isTokenTy() && BI->isUsedOutsideOfBlock(*I)) in isSafeToClone()
/external/llvm/lib/Transforms/Scalar/
DMergedLoadStoreMotion.cpp265 if (!isa<LoadInst>(Inst) || Inst->isUsedOutsideOfBlock(BB1)) in canHoistFromBlock()
374 if (!L0 || !L0->isSimple() || L0->isUsedOutsideOfBlock(Succ0)) in mergeLoads()
DJumpThreading.cpp307 if (I->getType()->isTokenTy() && I->isUsedOutsideOfBlock(BB)) in getJumpThreadDuplicationCost()
/external/llvm/include/llvm/IR/
DInstruction.h446 bool isUsedOutsideOfBlock(const BasicBlock *BB) const;
/external/llvm/lib/IR/
DInstruction.cpp394 bool Instruction::isUsedOutsideOfBlock(const BasicBlock *BB) const { in isUsedOutsideOfBlock() function in Instruction