Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDeltaTree.cpp108 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
110 void DoSplit(InsertResult &InsertRes);
184 InsertResult *InsertRes) { in DoInsertion() argument
219 assert(InsertRes && "No result location specified"); in DoInsertion()
220 DoSplit(*InsertRes); in DoInsertion()
222 if (InsertRes->Split.FileLoc > FileIndex) in DoInsertion()
223 InsertRes->LHS->DoInsertion(FileIndex, Delta, nullptr /*can't fail*/); in DoInsertion()
225 InsertRes->RHS->DoInsertion(FileIndex, Delta, nullptr /*can't fail*/); in DoInsertion()
231 if (!IN->Children[i]->DoInsertion(FileIndex, Delta, InsertRes)) in DoInsertion()
243 IN->Children[i] = InsertRes->LHS; in DoInsertion()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h311 auto InsertRes = Regs.insert(IndexMaskPair(SparseIndex, Pair.LaneMask)); in insert() local
312 if (!InsertRes.second) { in insert()
313 LaneBitmask PrevMask = InsertRes.first->LaneMask; in insert()
314 InsertRes.first->LaneMask |= Pair.LaneMask; in insert()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A 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()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp1901 auto InsertRes = DirectoryModuleMap.insert(std::pair{ in parseAndLoadModuleMapFile() local
1903 ModuleMapDirectoryState &MMState = InsertRes.first->second; in parseAndLoadModuleMapFile()
1904 if (!InsertRes.second) { in parseAndLoadModuleMapFile()
1945 auto InsertRes = DirectoryModuleMap.insert(std::pair{ in parseModuleMapFile() local
1947 ModuleMapDirectoryState &MMState = InsertRes.first->second; in parseModuleMapFile()
1948 if (!InsertRes.second) { in parseModuleMapFile()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp10847 auto InsertRes = ImportDeclErrors.insert({From, Error}); in setImportDeclError() local
10848 (void)InsertRes; in setImportDeclError()
10851 assert(InsertRes.second || InsertRes.first->second.Error == Error.Error); in setImportDeclError()