Searched refs:CurBB (Results 1 - 11 of 11) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Analysis/
H A DPHITransAddr.h73 /// 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,
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DPHITransAddr.cpp116 // If the input value is not an instruction, or if it is not defined in CurBB,
145 Value *PHITransAddr::PHITranslateSubExpr(Value *V, BasicBlock *CurBB, argument
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, BasicBloc argument
346 PHITranslateWithInsertion(BasicBlock *CurBB, BasicBlock *PredBB, const DominatorTree &DT, SmallVectorImpl<Instruction*> &NewInsts) argument
370 InsertPHITranslatedSubExpr(Value *InVal, BasicBlock *CurBB, BasicBlock *PredBB, const DominatorTree &DT, SmallVectorImpl<Instruction*> &NewInsts) argument
402 BasicBlock *CurBB = GEP->getParent(); local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/
H A DValue.h296 /// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
300 Value *DoPHITranslation(const BasicBlock *CurBB, const BasicBlock *PredBB);
302 const Value *DoPHITranslation(const BasicBlock *CurBB, argument
304 return const_cast<Value*>(this)->DoPHITranslation(CurBB, PredBB);
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DShadowStackGC.cpp114 BasicBlock *CurBB = StateBB++; local
118 TerminatorInst *TI = CurBB->getTerminator();
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DValue.cpp456 /// DoPHITranslation - If this value is a PHI node with CurBB as its parent,
460 Value *Value::DoPHITranslation(const BasicBlock *CurBB, argument
463 if (PN && PN->getParent() == CurBB)
/macosx-10.9.5/llvmCore-3425.0.33/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h72 BasicBlock *CurBB; // The currently executing BB member in struct:llvm::ExecutionContext
H A DExecution.cpp711 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();
1308 StackFrame.CurBB = F->begin();
1309 StackFrame.CurInst = StackFrame.CurBB->begin();
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h402 MachineBasicBlock *FBB, MachineBasicBlock *CurBB,
406 MachineBasicBlock *CurBB,
H A DSelectionDAGBuilder.cpp1369 MachineBasicBlock *CurBB,
1371 const BasicBlock *BB = CurBB->getBasicBlock();
1379 if (CurBB == SwitchBB ||
1395 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1403 NULL, TBB, FBB, CurBB);
1411 MachineBasicBlock *CurBB,
1418 BOp->getParent() != CurBB->getBasicBlock() ||
1419 !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) ||
1420 !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) {
1421 EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB, SwitchB
1366 EmitBranchForMergedCondition(const Value *Cond, MachineBasicBlock *TBB, MachineBasicBlock *FBB, MachineBasicBlock *CurBB, MachineBasicBlock *SwitchBB) argument
1408 FindMergedConditions(const Value *Cond, MachineBasicBlock *TBB, MachineBasicBlock *FBB, MachineBasicBlock *CurBB, MachineBasicBlock *SwitchBB, unsigned Opc) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1916 BasicBlock *CurBB = 0; local
1973 CurBB = FunctionBBs[0];
1982 if (CurBB && !CurBB->empty())
1983 I = &CurBB->back();
1995 if (CurBB && !CurBB->empty())
1996 I = &CurBB->back();
2697 if (CurBB == 0) {
2701 CurBB
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/IPO/
H A DGlobalOpt.cpp2836 // CurBB - The current basic block we're evaluating.
2837 BasicBlock *CurBB = F->begin(); local
2839 BasicBlock::iterator CurInst = CurBB->begin();
2849 ReturnInst *RI = cast<ReturnInst>(CurBB->getTerminator());
2868 setVal(PN, getVal(PN->getIncomingValueForBlock(CurBB)));
2871 CurBB = NextBB;

Completed in 211 milliseconds