HomeSort by relevance Sort by last modified time
    Searched refs:CurBB (Results 1 - 18 of 18) sorted by null

  /external/llvm/include/llvm/Analysis/
PHITransAddr.h 74 /// CurBB to Pred, updating our state to reflect any needed changes. If the
77 bool PHITranslateValue(BasicBlock *CurBB, BasicBlock *PredBB,
87 Value *PHITranslateWithInsertion(BasicBlock *CurBB, BasicBlock *PredBB,
98 Value *PHITranslateSubExpr(Value *V, BasicBlock *CurBB, BasicBlock *PredBB,
102 /// version of 'V' for the edge PredBB->CurBB into the end of the PredBB
106 Value *InsertPHITranslatedSubExpr(Value *InVal, BasicBlock *CurBB,
  /external/llvm/lib/Analysis/
PHITransAddr.cpp 116 // If the input value is not an instruction, or if it is not defined in CurBB,
145 Value *PHITransAddr::PHITranslateSubExpr(Value *V, BasicBlock *CurBB,
157 if (Inst->getParent() != CurBB) {
191 Value *PHIIn = PHITranslateSubExpr(Cast->getOperand(0), CurBB, PredBB, DT);
220 Value *GEPOp = PHITranslateSubExpr(GEP->getOperand(i), CurBB, PredBB, DT);
244 GEPI->getParent()->getParent() == CurBB->getParent() &&
267 Value *LHS = PHITranslateSubExpr(Inst->getOperand(0), CurBB, PredBB, DT);
302 BO->getParent()->getParent() == CurBB->getParent() &&
316 /// CurBB to Pred, updating our state to reflect any needed changes. If the
319 bool PHITransAddr::PHITranslateValue(BasicBlock *CurBB, BasicBlock *PredBB
    [all...]
  /external/llvm/include/llvm/IR/
Value.h 435 /// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
439 Value *DoPHITranslation(const BasicBlock *CurBB, const BasicBlock *PredBB);
441 const Value *DoPHITranslation(const BasicBlock *CurBB,
443 return const_cast<Value*>(this)->DoPHITranslation(CurBB, PredBB);
  /external/llvm/lib/Target/AArch64/
AArch64PromoteConstant.cpp 386 BasicBlock *CurBB = IPI->first->getParent();
387 if (NewBB == CurBB) {
399 BasicBlock *CommonDominator = DT.findNearestCommonDominator(NewBB, CurBB);
405 // By construction, the CommonDominator cannot be CurBB.
406 assert(CommonDominator != CurBB &&
  /external/llvm/lib/MC/MCAnalysis/
MCObjectDisassembler.cpp 245 BBInfo &CurBB = BBInfos[TA->getBeginAddr()];
250 CurBB.addSucc(BBInfos[Target]);
252 CurBB.addSucc(BBInfos[LI.Address + LI.Size]);
254 CurBB.addSucc(BBInfos[LI.Address + LI.Size]);
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 115 BasicBlock *CurBB = StateBB++;
119 TerminatorInst *TI = CurBB->getTerminator();
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 72 BasicBlock *CurBB; // The currently executing BB
Execution.cpp     [all...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 302 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
314 if (CurBB && CurBB->getParent())
315 CurFn->getBasicBlockList().insertAfter(CurBB, BB);
325 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
327 if (!CurBB || CurBB->getTerminator()) {
462 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
469 cast<llvm::PHINode>(IndGotoBB->begin())->addIncoming(V, CurBB);
    [all...]
CodeGenFunction.cpp 145 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
147 if (CurBB) {
148 assert(!CurBB->getTerminator() && "Unexpected terminated block.");
152 if (CurBB->empty() || ReturnBlock.getBlock()->use_empty()) {
153 ReturnBlock.getBlock()->replaceAllUsesWith(CurBB);
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 614 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
619 MachineBasicBlock *CurBB,
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/IR/
Value.cpp 557 /// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
561 Value *Value::DoPHITranslation(const BasicBlock *CurBB,
564 if (PN && PN->getParent() == CurBB)
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]

Completed in 791 milliseconds