Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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 …]
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h306 auto InsertRes = Regs.insert(IndexMaskPair(SparseIndex, Pair.LaneMask)); in insert() local
307 if (!InsertRes.second) { in insert()
308 LaneBitmask PrevMask = InsertRes.first->LaneMask; in insert()
309 InsertRes.first->LaneMask |= Pair.LaneMask; in insert()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp1246 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes = in getNonLocalPointerDepFromBB() local
1248 if (InsertRes.second) { in getNonLocalPointerDepFromBB()
1257 if (InsertRes.first->second != Pointer.getAddr()) { in getNonLocalPointerDepFromBB()
1309 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes = in getNonLocalPointerDepFromBB() local
1312 if (!InsertRes.second) { in getNonLocalPointerDepFromBB()
1318 if (InsertRes.first->second == PredPtrVal) in getNonLocalPointerDepFromBB()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTImporter.cpp10046 auto InsertRes = ImportDeclErrors.insert({From, Error}); in setImportDeclError() local
10047 (void)InsertRes; in setImportDeclError()
10050 assert(InsertRes.second || InsertRes.first->second.Error == Error.Error); in setImportDeclError()