HomeSort by: relevance | last modified time | path
    Searched defs:InsertResult (Results 1 - 18 of 18) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
NonRelocatableStringpool.cpp 36 auto InsertResult = Strings.insert({S, Entry});
37 return InsertResult.first->getKey();
LiveDebugVariables.cpp 1454 auto InsertResult = NewLocations.insert({Loc, {Spilled, SpillOffset}});
1455 unsigned NewLocNo = std::distance(NewLocations.begin(), InsertResult.first);
MachineBlockPlacement.cpp 1313 auto InsertResult = TriangleChainMap.try_emplace(PDom, &BB, PDom);
1314 assert(InsertResult.second && "Block seen twice.");
1315 (void)InsertResult;
1336 auto InsertResult = ComputedEdges.insert({src, {dst, true}});
1337 assert(InsertResult.second && "Block seen twice.");
1338 (void)InsertResult;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
PriorityWorklist.h 93 auto InsertResult = M.insert({X, V.size()});
94 if (InsertResult.second) {
100 auto &Index = InsertResult.first->second;
125 auto InsertResult = M.insert({V[i], i});
126 if (InsertResult.second)
131 ptrdiff_t &Index = InsertResult.first->second;
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
DebugMap.cpp 48 auto InsertResult = Symbols.insert(
51 if (ObjectAddress && InsertResult.second)
52 AddressToMapping[*ObjectAddress] = &*InsertResult.first;
53 return InsertResult.second;
  /src/external/apache2/llvm/dist/clang/lib/Rewrite/
DeltaTree.cpp 57 struct InsertResult {
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;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SpeculateAroundPHIs.cpp 227 auto InsertResult = CostsAndCounts.insert({IncomingC, {}});
229 ++InsertResult.first->second.Count;
231 if (!InsertResult.second)
234 InstructionCost &MatCost = InsertResult.first->second.MatCost;
638 auto InsertResult = SpeculatedValueMap.insert({OpPN, {}});
639 if (!InsertResult.second)
642 auto &SpeculatedVals = InsertResult.first->second;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenTypes.cpp 837 bool InsertResult = RecordsBeingLaidOut.insert(Key).second;
838 (void)InsertResult;
839 assert(InsertResult && "Recursively compiling a struct?");
CodeGenModule.cpp 5430 auto InsertResult = MaterializedGlobalTemporaryMap.insert({E, nullptr});
5431 if (!InsertResult.second) {
5434 if (!InsertResult.first->second) {
5439 InsertResult.first->second = new llvm::GlobalVariable(
5443 return ConstantAddress(InsertResult.first->second, Align);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
Symbolize.cpp 546 auto InsertResult = Modules.insert(
548 assert(InsertResult.second);
551 return InsertResult.first->second.get();
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 683 bool InsertResult = getContext().addGenDwarfSection(Section);
684 if (InsertResult) {
AsmParser.cpp 969 bool InsertResult = getContext().addGenDwarfSection(Sec);
970 assert(InsertResult && ".text section should not have debug info yet");
971 (void)InsertResult;
MasmParser.cpp 1233 bool InsertResult = getContext().addGenDwarfSection(Sec);
1234 assert(InsertResult && ".text section should not have debug info yet");
1235 (void)InsertResult;
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 347 auto InsertResult = Markers.insert(
350 Marker &M = InsertResult.first->second;
351 if (!InsertResult.second) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
PredicateInfo.cpp 741 auto InsertResult = ValueInfoNums.insert({Operand, ValueInfos.size() - 1});
742 assert(InsertResult.second && "Value info number already existed?");
743 return ValueInfos[InsertResult.first->second];
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/Coverage/
CoverageMappingReader.cpp 563 auto InsertResult =
565 if (InsertResult.second) {
577 size_t OldRecordIndex = InsertResult.first->second;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp 473 auto InsertResult = TypeIndices.insert({{Node, ClassTy}, TI});
474 (void)InsertResult;
475 assert(InsertResult.second && "DINode was already assigned a type index");
2618 auto InsertResult = CompleteTypeIndices.insert({CTy, TypeIndex()});
2619 if (!InsertResult.second)
2620 return InsertResult.first->second;
2636 // use the 'InsertResult' iterator above because it is potentially
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 5826 auto InsertResult = TBAABaseNodes.insert({BaseNode, Result});
5827 (void)InsertResult;
5828 assert(InsertResult.second && "We just checked!");
5973 auto InsertResult = TBAAScalarNodes.insert({MD, Result});
5974 (void)InsertResult;
5975 assert(InsertResult.second && "Just checked!");

Completed in 47 milliseconds