Searched refs:InsertResult (Results 1 - 20 of 20) sorted by relevance

/openbsd-current/gnu/llvm/llvm/include/llvm/ADT/
H A DPriorityWorklist.h92 auto InsertResult = M.insert({X, V.size()}); local
93 if (InsertResult.second) {
99 auto &Index = InsertResult.first->second;
124 auto InsertResult = M.insert({V[i], i}); local
125 if (InsertResult.second)
130 ptrdiff_t &Index = InsertResult.first->second;
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DNonRelocatableStringpool.cpp37 auto InsertResult = Strings.insert({S, Entry}); local
38 return InsertResult.first->getKey();
H A DMachineBlockPlacement.cpp1345 auto InsertResult = TriangleChainMap.try_emplace(PDom, &BB, PDom); local
1346 assert(InsertResult.second && "Block seen twice.");
1347 (void)InsertResult;
1368 auto InsertResult = ComputedEdges.insert({src, {dst, true}}); local
1369 assert(InsertResult.second && "Block seen twice.");
1370 (void)InsertResult;
H A DLiveDebugVariables.cpp1558 auto InsertResult = NewLocations.insert({Loc, {Spilled, SpillOffset}}); local
1559 unsigned NewLocNo = std::distance(NewLocations.begin(), InsertResult.first);
/openbsd-current/gnu/llvm/clang/lib/Rewrite/
H A DDeltaTree.cpp57 struct InsertResult { struct in class:__anon672::DeltaTreeNode
109 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
111 void DoSplit(InsertResult &InsertRes);
136 DeltaTreeInteriorNode(const InsertResult &IR)
185 InsertResult *InsertRes) {
298 void DeltaTreeNode::DoSplit(InsertResult &InsertRes) {
459 DeltaTreeNode::InsertResult InsertRes;
/openbsd-current/gnu/llvm/llvm/tools/dsymutil/
H A DDebugMap.cpp49 auto InsertResult = Symbols.insert( local
52 if (ObjectAddress && InsertResult.second)
53 AddressToMapping[*ObjectAddress] = &*InsertResult.first;
54 return InsertResult.second;
/openbsd-current/gnu/llvm/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp442 auto InsertResult = BuildIDPaths.insert({BuildIDStr, Result}); local
443 assert(InsertResult.second);
444 (void)InsertResult;
547 auto InsertResult = Modules.insert( local
549 assert(InsertResult.second);
552 return InsertResult.first->second.get();
/openbsd-current/gnu/llvm/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp345 auto InsertResult = Markers.insert( local
348 Marker &M = InsertResult.first->second;
349 if (!InsertResult.second) {
/openbsd-current/gnu/llvm/clang/lib/CodeGen/
H A DCodeGenTypes.cpp871 bool InsertResult = RecordsBeingLaidOut.insert(Key).second; local
872 (void)InsertResult;
873 assert(InsertResult && "Recursively compiling a struct?");
H A DCodeGenModule.cpp6013 auto InsertResult = MaterializedGlobalTemporaryMap.insert({E, nullptr}); local
6014 if (!InsertResult.second) {
6017 if (!InsertResult.first->second) {
6022 InsertResult.first->second = new llvm::GlobalVariable(
6026 return ConstantAddress(InsertResult.first->second,
6028 InsertResult.first->second->stripPointerCasts())
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp746 auto InsertResult = ValueInfoNums.insert({Operand, ValueInfos.size() - 1}); local
747 assert(InsertResult.second && "Value info number already existed?");
748 return ValueInfos[InsertResult.first->second];
/openbsd-current/gnu/llvm/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp564 auto InsertResult = local
566 if (InsertResult.second) {
579 size_t OldRecordIndex = InsertResult.first->second;
/openbsd-current/gnu/llvm/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp835 InsertResult = LegalTypes.insert({Idx, T}); local
836 return &(InsertResult.first->second);
/openbsd-current/gnu/llvm/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp702 bool InsertResult = getContext().addGenDwarfSection(Section); local
703 if (InsertResult) {
H A DMasmParser.cpp1361 bool InsertResult = getContext().addGenDwarfSection(Sec); local
1362 assert(InsertResult && ".text section should not have debug info yet");
1363 (void)InsertResult;
H A DAsmParser.cpp991 bool InsertResult = getContext().addGenDwarfSection(Sec); local
992 assert(InsertResult && ".text section should not have debug info yet");
993 (void)InsertResult;
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp475 auto InsertResult = TypeIndices.insert({{Node, ClassTy}, TI}); local
476 (void)InsertResult;
477 assert(InsertResult.second && "DINode was already assigned a type index");
2746 auto InsertResult = CompleteTypeIndices.insert({CTy, TypeIndex()}); local
2747 if (!InsertResult.second)
2748 return InsertResult.first->second;
2764 // use the 'InsertResult' iterator above because it is potentially
/openbsd-current/gnu/llvm/llvm/lib/IR/
H A DVerifier.cpp6469 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result}); local
6470 (void)InsertResult;
6471 assert(InsertResult.second && "We just checked!");
6616 auto InsertResult = TBAAScalarNodes.insert({MD, Result}); local
6617 (void)InsertResult;
6618 assert(InsertResult.second && "Just checked!");
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp2311 auto InsertResult =
2315 assert(InsertResult.second);
2316 (void)InsertResult;
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DScalarEvolution.cpp8937 auto InsertResult = TripCountMap.insert({{ExitCond, ControlsExit}, EL});
8938 assert(InsertResult.second && "Expected successful insertion!");
8939 (void)InsertResult;

Completed in 744 milliseconds