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

  /external/llvm/include/llvm/Analysis/
PHITransAddr.h 73 /// CurBB to Pred, updating our state to reflect any needed changes. If the
76 bool PHITranslateValue(BasicBlock *CurBB, BasicBlock *PredBB,
86 Value *PHITranslateWithInsertion(BasicBlock *CurBB, BasicBlock *PredBB,
97 Value *PHITranslateSubExpr(Value *V, BasicBlock *CurBB, BasicBlock *PredBB,
101 /// version of 'V' for the edge PredBB->CurBB into the end of the PredBB
105 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);
221 Value *GEPOp = PHITranslateSubExpr(GEP->getOperand(i), CurBB, PredBB, DT);
246 GEPI->getParent()->getParent() == CurBB->getParent() &&
269 Value *LHS = PHITranslateSubExpr(Inst->getOperand(0), CurBB, PredBB, DT);
305 BO->getParent()->getParent() == CurBB->getParent() &&
319 /// CurBB to Pred, updating our state to reflect any needed changes. If the
322 bool PHITransAddr::PHITranslateValue(BasicBlock *CurBB, BasicBlock *PredBB
    [all...]
  /external/llvm/include/llvm/IR/
Value.h 291 /// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
295 Value *DoPHITranslation(const BasicBlock *CurBB, const BasicBlock *PredBB);
297 const Value *DoPHITranslation(const BasicBlock *CurBB,
299 return const_cast<Value*>(this)->DoPHITranslation(CurBB, PredBB);
  /external/clang/lib/CodeGen/
CGStmt.cpp 256 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
268 if (CurBB && CurBB->getParent())
269 CurFn->getBasicBlockList().insertAfter(CurBB, BB);
279 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
281 if (!CurBB || CurBB->getTerminator()) {
373 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
380 cast<llvm::PHINode>(IndGotoBB->begin())->addIncoming(V, CurBB);
    [all...]
CodeGenFunction.cpp 132 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
134 if (CurBB) {
135 assert(!CurBB->getTerminator() && "Unexpected terminated block.");
139 if (CurBB->empty() || ReturnBlock.getBlock()->use_empty()) {
140 ReturnBlock.getBlock()->replaceAllUsesWith(CurBB);
    [all...]
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 114 BasicBlock *CurBB = StateBB++;
118 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 711 BasicBlock *PrevBB = SF.CurBB; // Remember where we came from...
712 SF.CurBB = Dest; // Update CurBB to branch destination
713 SF.CurInst = SF.CurBB->begin(); // Update new instruction ptr...
731 SF.CurInst = SF.CurBB->begin();
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 402 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
406 MachineBasicBlock *CurBB,
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/IR/
Value.cpp 463 /// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
467 Value *Value::DoPHITranslation(const BasicBlock *CurBB,
470 if (PN && PN->getParent() == CurBB)
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]

Completed in 671 milliseconds