Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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 …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h308 auto InsertRes = Regs.insert(IndexMaskPair(SparseIndex, Pair.LaneMask)); in insert() local
309 if (!InsertRes.second) { in insert()
310 LaneBitmask PrevMask = InsertRes.first->LaneMask; in insert()
311 InsertRes.first->LaneMask |= Pair.LaneMask; in insert()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp1281 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes = in getNonLocalPointerDepFromBB() local
1283 if (InsertRes.second) { in getNonLocalPointerDepFromBB()
1292 if (InsertRes.first->second != Pointer.getAddr()) { in getNonLocalPointerDepFromBB()
1344 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes = in getNonLocalPointerDepFromBB() local
1347 if (!InsertRes.second) { in getNonLocalPointerDepFromBB()
1353 if (InsertRes.first->second == PredPtrVal) in getNonLocalPointerDepFromBB()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp10480 auto InsertRes = ImportDeclErrors.insert({From, Error}); in setImportDeclError() local
10481 (void)InsertRes; in setImportDeclError()
10484 assert(InsertRes.second || InsertRes.first->second.Error == Error.Error); in setImportDeclError()