Searched refs:IncomingValues (Results 1 – 5 of 5) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | Local.cpp | 832 IncomingValueMap &IncomingValues) { in selectIncomingValueForBlock() argument 834 assert((!IncomingValues.count(BB) || in selectIncomingValueForBlock() 835 IncomingValues.find(BB)->second == OldVal) && in selectIncomingValueForBlock() 838 IncomingValues.insert(std::make_pair(BB, OldVal)); in selectIncomingValueForBlock() 842 IncomingValueMap::const_iterator It = IncomingValues.find(BB); in selectIncomingValueForBlock() 843 if (It != IncomingValues.end()) return It->second; in selectIncomingValueForBlock() 857 IncomingValueMap &IncomingValues) { in gatherIncomingValuesToPhi() argument 863 IncomingValues.insert(std::make_pair(BB, V)); in gatherIncomingValuesToPhi() 873 const IncomingValueMap &IncomingValues) { in replaceUndefValuesInPhi() argument 880 IncomingValueMap::const_iterator It = IncomingValues.find(BB); in replaceUndefValuesInPhi() [all …]
|
D | BasicBlockUtils.cpp | 217 SmallVector<AssertingVH<Value>, 4> IncomingValues; in MergeBlockIntoPredecessor() local 222 IncomingValues.push_back(PN.getIncomingValue(0)); in MergeBlockIntoPredecessor()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | InferAddressSpaces.cpp | 247 auto IncomingValues = cast<PHINode>(Op).incoming_values(); in getPointerOperands() local 248 return SmallVector<Value *, 2>(IncomingValues.begin(), in getPointerOperands() 249 IncomingValues.end()); in getPointerOperands()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
D | Core.h | 3446 void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Core.cpp | 2937 void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues, in LLVMAddIncoming() argument 2941 PhiVal->addIncoming(unwrap(IncomingValues[I]), unwrap(IncomingBlocks[I])); in LLVMAddIncoming()
|