Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Rewrite/
H A DDeltaTree.cpp109 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
111 void DoSplit(InsertResult &InsertRes);
185 InsertResult *InsertRes) { in DoInsertion() argument
220 assert(InsertRes && "No result location specified"); in DoInsertion()
221 DoSplit(*InsertRes); in DoInsertion()
223 if (InsertRes->Split.FileLoc > FileIndex) in DoInsertion()
224 InsertRes->LHS->DoInsertion(FileIndex, Delta, nullptr /*can't fail*/); in DoInsertion()
226 InsertRes->RHS->DoInsertion(FileIndex, Delta, nullptr /*can't fail*/); in DoInsertion()
232 if (!IN->Children[i]->DoInsertion(FileIndex, Delta, InsertRes)) in DoInsertion()
244 IN->Children[i] = InsertRes->LHS; in DoInsertion()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h307 auto InsertRes = Regs.insert(IndexMaskPair(SparseIndex, Pair.LaneMask)); in insert() local
308 if (!InsertRes.second) { in insert()
309 LaneBitmask PrevMask = InsertRes.first->LaneMask; in insert()
310 InsertRes.first->LaneMask |= Pair.LaneMask; in insert()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp1253 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes = in getNonLocalPointerDepFromBB() local
1255 if (InsertRes.second) { in getNonLocalPointerDepFromBB()
1264 if (InsertRes.first->second != Pointer.getAddr()) { in getNonLocalPointerDepFromBB()
1316 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes = in getNonLocalPointerDepFromBB() local
1319 if (!InsertRes.second) { in getNonLocalPointerDepFromBB()
1325 if (InsertRes.first->second == PredPtrVal) in getNonLocalPointerDepFromBB()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTImporter.cpp9382 auto InsertRes = ImportDeclErrors.insert({From, Error}); in setImportDeclError() local
9383 (void)InsertRes; in setImportDeclError()
9386 assert(InsertRes.second || InsertRes.first->second.Error == Error.Error); in setImportDeclError()