Home
last modified time | relevance | path

Searched refs:PredVal (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSSAUpdater.cpp116 Value *PredVal = GetValueAtEndOfBlock(PredBB); in GetValueInMiddleOfBlock() local
117 PredValues.push_back(std::make_pair(PredBB, PredVal)); in GetValueInMiddleOfBlock()
121 SingularValue = PredVal; in GetValueInMiddleOfBlock()
122 else if (PredVal != SingularValue) in GetValueInMiddleOfBlock()
129 Value *PredVal = GetValueAtEndOfBlock(PredBB); in GetValueInMiddleOfBlock() local
130 PredValues.push_back(std::make_pair(PredBB, PredVal)); in GetValueInMiddleOfBlock()
134 SingularValue = PredVal; in GetValueInMiddleOfBlock()
136 } else if (PredVal != SingularValue) in GetValueInMiddleOfBlock()
DLocal.cpp924 Value *PredVal = OldValPN->getIncomingValue(i); in redirectValuesFromPredecessorsToPhi() local
925 Value *Selected = selectIncomingValueForBlock(PredVal, PredBB, in redirectValuesFromPredecessorsToPhi()
DSimplifyCFG.cpp819 Value *PredVal = isValueEqualityComparison(Pred->getTerminator()); in SimplifyEqualityComparisonWithOnlyPredecessor() local
820 if (!PredVal) in SimplifyEqualityComparisonWithOnlyPredecessor()
825 if (ThisVal != PredVal) in SimplifyEqualityComparisonWithOnlyPredecessor()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineSSAUpdater.cpp167 unsigned PredVal = GetValueAtEndOfBlockInternal(PredBB); in GetValueInMiddleOfBlock() local
168 PredValues.push_back(std::make_pair(PredBB, PredVal)); in GetValueInMiddleOfBlock()
172 SingularValue = PredVal; in GetValueInMiddleOfBlock()
174 } else if (PredVal != SingularValue) in GetValueInMiddleOfBlock()
DWinEHPrepare.cpp78 insertPHIStore(BasicBlock *PredBlock, Value *PredVal, AllocaInst *SpillSlot,
1131 Value *PredVal = PN->getIncomingValue(i); in insertPHIStores() local
1134 if (isa<UndefValue>(PredVal)) in insertPHIStores()
1137 insertPHIStore(PN->getIncomingBlock(i), PredVal, SpillSlot, Worklist); in insertPHIStores()
1150 BasicBlock *PredBlock, Value *PredVal, AllocaInst *SpillSlot, in insertPHIStore() argument
1155 Worklist.push_back({PredBlock, PredVal}); in insertPHIStore()
1160 new StoreInst(PredVal, SpillSlot, PredBlock->getTerminator()); in insertPHIStore()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombinePHI.cpp1069 Value *&PredVal = PredValues[Pred]; in SliceUpIllegalIntegerPHI() local
1072 if (PredVal) { in SliceUpIllegalIntegerPHI()
1073 EltPHI->addIncoming(PredVal, Pred); in SliceUpIllegalIntegerPHI()
1080 PredVal = EltPHI; in SliceUpIllegalIntegerPHI()
1081 EltPHI->addIncoming(PredVal, Pred); in SliceUpIllegalIntegerPHI()
1089 PredVal = Res; in SliceUpIllegalIntegerPHI()
1090 EltPHI->addIncoming(PredVal, Pred); in SliceUpIllegalIntegerPHI()
1102 PredVal = Res; in SliceUpIllegalIntegerPHI()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DSSAUpdaterImpl.h149 ValT PredVal = AvailableVals->lookup(Pred); in BuildBlockList() local
150 BBInfo *PredInfo = new (Allocator) BBInfo(Pred, PredVal); in BuildBlockList()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp4194 unsigned PredVal = Record[OpNum]; in parseFunctionBody() local
4204 I = new FCmpInst((FCmpInst::Predicate)PredVal, LHS, RHS); in parseFunctionBody()
4206 I = new ICmpInst((ICmpInst::Predicate)PredVal, LHS, RHS); in parseFunctionBody()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLParser.cpp3389 unsigned PredVal, Opc = Lex.getUIntVal(); in ParseValID() local
3392 if (ParseCmpPredicate(PredVal, Opc) || in ParseValID()
3403 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal; in ParseValID()