Searched refs:InsertRes (Results 1 – 3 of 3) sorted by relevance
/external/clang/lib/Rewrite/ |
D | DeltaTree.cpp | 106 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes); 108 void DoSplit(InsertResult &InsertRes); 183 InsertResult *InsertRes) { in DoInsertion() argument 218 assert(InsertRes && "No result location specified"); in DoInsertion() 219 DoSplit(*InsertRes); in DoInsertion() 221 if (InsertRes->Split.FileLoc > FileIndex) in DoInsertion() 222 InsertRes->LHS->DoInsertion(FileIndex, Delta, 0 /*can't fail*/); in DoInsertion() 224 InsertRes->RHS->DoInsertion(FileIndex, Delta, 0 /*can't fail*/); in DoInsertion() 230 if (!IN->Children[i]->DoInsertion(FileIndex, Delta, InsertRes)) in DoInsertion() 242 IN->Children[i] = InsertRes->LHS; in DoInsertion() [all …]
|
/external/llvm/lib/Analysis/ |
D | MemoryDependenceAnalysis.cpp | 1114 InsertRes = Visited.insert(std::make_pair(*PI, Pointer.getAddr())); in getNonLocalPointerDepFromBB() local 1115 if (InsertRes.second) { in getNonLocalPointerDepFromBB() 1124 if (InsertRes.first->second != Pointer.getAddr()) { in getNonLocalPointerDepFromBB() 1170 InsertRes = Visited.insert(std::make_pair(Pred, PredPtrVal)); in getNonLocalPointerDepFromBB() local 1172 if (!InsertRes.second) { in getNonLocalPointerDepFromBB() 1178 if (InsertRes.first->second == PredPtrVal) in getNonLocalPointerDepFromBB()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopUnswitch.cpp | 226 std::pair<LoopPropsMapIt, bool> InsertRes = in countLoop() local 229 LoopProperties& Props = InsertRes.first->second; in countLoop() 231 if (InsertRes.second) { in countLoop()
|