Home
last modified time | relevance | path

Searched refs:IncomingValue (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.cpp192 for (auto &IncomingValue : Phi->incoming_values()) { in findPreviousSpillSlot() local
194 findPreviousSpillSlot(IncomingValue, Builder, LookUpDepth - 1); in findPreviousSpillSlot()
262 static void reservePreviousStackSlotForValue(const Value *IncomingValue, in reservePreviousStackSlotForValue() argument
264 SDValue Incoming = Builder.getValue(IncomingValue); in reservePreviousStackSlotForValue()
278 findPreviousSpillSlot(IncomingValue, Builder, LookUpDepth); in reservePreviousStackSlotForValue()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp774 const Value *IncomingValue = PHI.getIncomingValue(Idx); in isHardwareLoopProfitable() local
776 memAddrUsesCTR(IncomingValue, TM, Visited)) in isHardwareLoopProfitable()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp999 Value *IncomingValue = PN->getIncomingValue(i); in SwitchToNewBasicBlock() local
1002 ResultValues.push_back(getOperandValue(IncomingValue, SF)); in SwitchToNewBasicBlock()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp4543 auto *IncomingValue = LCSSAPhi.getIncomingValue(0); in fixLCSSAPHIs() local
4547 if (isa<Instruction>(IncomingValue) && in fixLCSSAPHIs()
4548 !Cost->isUniformAfterVectorization(cast<Instruction>(IncomingValue), in fixLCSSAPHIs()
4556 OrigLoop->isLoopInvariant(IncomingValue) in fixLCSSAPHIs()
4557 ? IncomingValue in fixLCSSAPHIs()
4558 : State.get(State.Plan->getVPValue(IncomingValue), in fixLCSSAPHIs()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp4361 auto *IncomingValue = PhiLPInst->getIncomingValue(Idx); in simplifyCommonResume() local
4370 if (IncomingValue != LandingPad) in simplifyCommonResume()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp7874 Value *IncomingValue = PHI->getIncomingValue(u); in updateWithPHINode() local
7876 *this, IRPosition::value(*IncomingValue), DepClassTy::REQUIRED); in updateWithPHINode()
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
H A Dir.go1297 func (v Value) IncomingValue(i int) (rv Value) { func