/external/llvm/include/llvm/Analysis/ |
PHITransAddr.h | 79 /// CurBB to Pred, updating our state to reflect any needed changes. If 82 bool PHITranslateValue(BasicBlock *CurBB, BasicBlock *PredBB, 92 Value *PHITranslateWithInsertion(BasicBlock *CurBB, BasicBlock *PredBB, 104 Value *PHITranslateSubExpr(Value *V, BasicBlock *CurBB, BasicBlock *PredBB, 108 /// version of 'V' for the edge PredBB->CurBB into the end of the PredBB 112 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, 158 if (Inst->getParent() != CurBB) { 192 Value *PHIIn = PHITranslateSubExpr(Cast->getOperand(0), CurBB, PredBB, DT); 221 Value *GEPOp = PHITranslateSubExpr(GEP->getOperand(i), CurBB, PredBB, DT); 245 GEPI->getParent()->getParent() == CurBB->getParent() && 262 Value *LHS = PHITranslateSubExpr(Inst->getOperand(0), CurBB, PredBB, DT); 298 BO->getParent()->getParent() == CurBB->getParent() && 312 /// CurBB to Pred, updating our state to reflect any needed changes. If 315 bool PHITransAddr::PHITranslateValue(BasicBlock *CurBB, BasicBlock *PredBB [all...] |
/external/llvm/lib/ExecutionEngine/Interpreter/ |
Interpreter.h | 66 BasicBlock *CurBB; // The currently executing BB 74 ExecutionContext() : CurFunction(nullptr), CurBB(nullptr), CurInst(nullptr) {} 77 : CurFunction(O.CurFunction), CurBB(O.CurBB), CurInst(O.CurInst), 83 CurBB = O.CurBB;
|
Execution.cpp | [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64PromoteConstant.cpp | 380 BasicBlock *CurBB = IPI->first->getParent(); 381 if (NewBB == CurBB) { 393 BasicBlock *CommonDominator = DT.findNearestCommonDominator(NewBB, CurBB); 399 // By construction, the CommonDominator cannot be CurBB. 400 assert(CommonDominator != CurBB &&
|
/external/llvm/include/llvm/IR/ |
Value.h | 503 /// If this value is a PHI node with CurBB as its parent, return the value in 507 Value *DoPHITranslation(const BasicBlock *CurBB, const BasicBlock *PredBB); 509 const Value *DoPHITranslation(const BasicBlock *CurBB, 511 return const_cast<Value*>(this)->DoPHITranslation(CurBB, PredBB);
|
/external/llvm/lib/CodeGen/ |
ShadowStackGCLowering.cpp | 115 BasicBlock *CurBB = &*StateBB++; 119 TerminatorInst *TI = CurBB->getTerminator();
|
PrologEpilogInserter.cpp | 402 const MachineBasicBlock *CurBB = WorkList.pop_back_val(); 405 if (CurBB == Save && Save != Restore) 409 for (MachineBasicBlock *SuccBB : CurBB->successors()) [all...] |
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
BitcodeReader.cpp | [all...] |
/external/clang/lib/CodeGen/ |
CGStmt.cpp | 368 llvm::BasicBlock *CurBB = Builder.GetInsertBlock(); 380 if (CurBB && CurBB->getParent()) 381 CurFn->getBasicBlockList().insertAfter(CurBB->getIterator(), BB); 391 llvm::BasicBlock *CurBB = Builder.GetInsertBlock(); 393 if (!CurBB || CurBB->getTerminator()) { 528 llvm::BasicBlock *CurBB = Builder.GetInsertBlock(); 535 cast<llvm::PHINode>(IndGotoBB->begin())->addIncoming(V, CurBB); [all...] |
CodeGenFunction.cpp | 225 llvm::BasicBlock *CurBB = Builder.GetInsertBlock(); 227 if (CurBB) { 228 assert(!CurBB->getTerminator() && "Unexpected terminated block."); 232 if (CurBB->empty() || ReturnBlock.getBlock()->use_empty()) { 233 ReturnBlock.getBlock()->replaceAllUsesWith(CurBB); [all...] |
CGAtomic.cpp | [all...] |
/external/llvm/lib/IR/ |
Value.cpp | 520 Value *Value::DoPHITranslation(const BasicBlock *CurBB, 523 if (PN && PN->getParent() == CurBB)
|
/external/llvm/lib/Target/WebAssembly/ |
WebAssemblyPEI.cpp | 418 const MachineBasicBlock *CurBB = WorkList.pop_back_val(); 421 if (CurBB == Save && Save != Restore) 425 for (MachineBasicBlock *SuccBB : CurBB->successors()) [all...] |
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
BitcodeReader.cpp | [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGBuilder.h | 695 MachineBasicBlock *FBB, MachineBasicBlock *CurBB, 701 MachineBasicBlock *CurBB, [all...] |
SelectionDAGBuilder.cpp | [all...] |
/external/llvm/lib/Transforms/IPO/ |
GlobalOpt.cpp | [all...] |
/external/llvm/lib/Bitcode/Reader/ |
BitcodeReader.cpp | [all...] |
/external/llvm/lib/Transforms/Utils/ |
InlineFunction.cpp | [all...] |