Home
last modified time | relevance | path

Searched refs:InsertRes (Results 1 – 4 of 4) sorted by relevance

/external/clang/lib/Rewrite/
DDeltaTree.cpp106 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
108 void DoSplit(InsertResult &InsertRes);
180 InsertResult *InsertRes) { in DoInsertion() argument
215 assert(InsertRes && "No result location specified"); in DoInsertion()
216 DoSplit(*InsertRes); in DoInsertion()
218 if (InsertRes->Split.FileLoc > FileIndex) in DoInsertion()
219 InsertRes->LHS->DoInsertion(FileIndex, Delta, nullptr /*can't fail*/); in DoInsertion()
221 InsertRes->RHS->DoInsertion(FileIndex, Delta, nullptr /*can't fail*/); in DoInsertion()
227 if (!IN->Children[i]->DoInsertion(FileIndex, Delta, InsertRes)) in DoInsertion()
239 IN->Children[i] = InsertRes->LHS; in DoInsertion()
[all …]
/external/llvm/include/llvm/CodeGen/
DRegisterPressure.h289 auto InsertRes = Regs.insert(IndexMaskPair(SparseIndex, Pair.LaneMask));
290 if (!InsertRes.second) {
291 unsigned PrevMask = InsertRes.first->LaneMask;
292 InsertRes.first->LaneMask |= Pair.LaneMask;
/external/swiftshader/third_party/LLVM/lib/Analysis/
DMemoryDependenceAnalysis.cpp1026 InsertRes = Visited.insert(std::make_pair(*PI, Pointer.getAddr())); in getNonLocalPointerDepFromBB() local
1027 if (InsertRes.second) { in getNonLocalPointerDepFromBB()
1036 if (InsertRes.first->second != Pointer.getAddr()) { in getNonLocalPointerDepFromBB()
1082 InsertRes = Visited.insert(std::make_pair(Pred, PredPtrVal)); in getNonLocalPointerDepFromBB() local
1084 if (!InsertRes.second) { in getNonLocalPointerDepFromBB()
1090 if (InsertRes.first->second == PredPtrVal) in getNonLocalPointerDepFromBB()
/external/llvm/lib/Analysis/
DMemoryDependenceAnalysis.cpp1222 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes = in getNonLocalPointerDepFromBB() local
1224 if (InsertRes.second) { in getNonLocalPointerDepFromBB()
1233 if (InsertRes.first->second != Pointer.getAddr()) { in getNonLocalPointerDepFromBB()
1285 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes = in getNonLocalPointerDepFromBB() local
1288 if (!InsertRes.second) { in getNonLocalPointerDepFromBB()
1294 if (InsertRes.first->second == PredPtrVal) in getNonLocalPointerDepFromBB()