Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Rewrite/
H A DDeltaTree.cpp111 void DoSplit(InsertResult &InsertRes);
221 DoSplit(*InsertRes); in DoInsertion()
244 IN->Children[i] = InsertRes->LHS; in DoInsertion()
245 IN->Children[i+1] = InsertRes->RHS; in DoInsertion()
249 Values[i] = InsertRes->Split; in DoInsertion()
257 IN->Children[i] = InsertRes->LHS; in DoInsertion()
258 DeltaTreeNode *SubRHS = InsertRes->RHS; in DoInsertion()
262 DoSplit(*InsertRes); in DoInsertion()
331 InsertRes.LHS = this; in DoSplit()
332 InsertRes.RHS = NewNode; in DoSplit()
[all …]
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp1242 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes = in getNonLocalPointerDepFromBB() local
1244 if (InsertRes.second) { in getNonLocalPointerDepFromBB()
1253 if (InsertRes.first->second != Pointer.getAddr()) { in getNonLocalPointerDepFromBB()
1305 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes = in getNonLocalPointerDepFromBB() local
1308 if (!InsertRes.second) { in getNonLocalPointerDepFromBB()
1314 if (InsertRes.first->second == PredPtrVal) in getNonLocalPointerDepFromBB()
/llvm-project-15.0.7/clang/lib/AST/
H A DASTImporter.cpp9892 auto InsertRes = ImportDeclErrors.insert({From, Error}); in setImportDeclError() local
9893 (void)InsertRes; in setImportDeclError()
9896 assert(InsertRes.second || InsertRes.first->second.Error == Error.Error); in setImportDeclError()