| /llvm-project-15.0.7/llvm/unittests/ADT/ |
| H A D | StringMapTest.cpp | 395 StringMap<int> A; in TEST_F() 405 StringMap<int> A; in TEST_F() 407 StringMap<int> B; in TEST_F() 417 StringMap<int> A; in TEST_F() 418 StringMap<int> B; in TEST_F() 425 StringMap<int> A; in TEST_F() 431 StringMap<int> B; in TEST_F() 445 StringMap<int> A; in TEST_F() 449 StringMap<int> B; in TEST_F() 462 StringMap<int> A; in TEST_F() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/MIRParser/ |
| H A D | MIParser.h | 50 using Name2RegClassMap = StringMap<const TargetRegisterClass *>; 51 using Name2RegBankMap = StringMap<const RegisterBank *>; 58 StringMap<unsigned> Names2InstrOpCodes; 61 StringMap<Register> Names2Regs; 64 StringMap<const uint32_t *> Names2RegMasks; 67 StringMap<unsigned> Names2SubRegIndices; 70 StringMap<int> Names2TargetIndices; 73 StringMap<unsigned> Names2DirectTargetFlags; 76 StringMap<unsigned> Names2BitmaskTargetFlags; 79 StringMap<MachineMemOperand::Flags> Names2MMOTargetFlags; [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | StringMap.h | 110 class StringMap : public StringMapImpl, 119 explicit StringMap(unsigned InitialSize) in StringMap() function 122 explicit StringMap(AllocatorTy A) in StringMap() function 125 StringMap(unsigned InitialSize, AllocatorTy A) in StringMap() function 129 StringMap(std::initializer_list<std::pair<StringRef, ValueTy>> List) in StringMap() function 134 StringMap(StringMap &&RHS) in StringMap() function 137 StringMap(const StringMap &RHS) in StringMap() function 172 StringMap &operator=(StringMap RHS) { 178 ~StringMap() { in ~StringMap() 253 bool operator==(const StringMap &RHS) const { [all …]
|
| /llvm-project-15.0.7/llvm/tools/llvm-jitlink/ |
| H A D | llvm-jitlink.h | 51 StringMap<MemoryRegionInfo> SectionInfos; 52 StringMap<MemoryRegionInfo> StubInfos; 53 StringMap<MemoryRegionInfo> GOTEntryInfos; 56 using SymbolInfoMap = StringMap<MemoryRegionInfo>; 57 using FileInfoMap = StringMap<FileInfo>;
|
| /llvm-project-15.0.7/clang/lib/Basic/ |
| H A D | TargetID.cpp | 67 llvm::StringMap<bool> *FeatureMap) { in parseTargetIDWithFormatCheckingOnly() 82 llvm::StringMap<bool> LocalFeatureMap; in parseTargetIDWithFormatCheckingOnly() 105 llvm::StringMap<bool> *FeatureMap) { in parseTargetID() 130 const llvm::StringMap<bool> &Features) { in getCanonicalTargetID() 147 llvm::StringMap<bool> Features; in getConflictTargetIDCombination() 149 llvm::StringMap<Info> FeatureMap; in getConflictTargetIDCombination() 151 llvm::StringMap<bool> Features; in getConflictTargetIDCombination()
|
| /llvm-project-15.0.7/mlir/include/mlir/AsmParser/ |
| H A D | CodeComplete.h | 57 virtual void completeAttribute(const llvm::StringMap<Attribute> &aliases) = 0; 59 const llvm::StringMap<Attribute> &aliases) = 0; 62 virtual void completeType(const llvm::StringMap<Type> &aliases) = 0; 64 completeDialectTypeOrAlias(const llvm::StringMap<Type> &aliases) = 0;
|
| /llvm-project-15.0.7/llvm/lib/LTO/ |
| H A D | ThinLTOCodeGenerator.cpp | 149 static StringMap<lto::InputFile *> 151 StringMap<lto::InputFile *> ModuleMap; in generateModuleMap() 214 StringMap<lto::InputFile *> &ModuleMap, in crossImportIntoModule() 651 const StringMap<FunctionImporter::ExportSetTy> &ExportLists; 704 StringMap<GVSummaryMapTy> ModuleToDefinedGVSummaries; in promote() 718 StringMap<FunctionImporter::ImportMapTy> ImportLists(ModuleCount); in promote() 719 StringMap<FunctionImporter::ExportSetTy> ExportLists(ModuleCount); in promote() 755 StringMap<GVSummaryMapTy> ModuleToDefinedGVSummaries(ModuleCount); in crossModuleImport() 768 StringMap<FunctionImporter::ImportMapTy> ImportLists(ModuleCount); in crossModuleImport() 769 StringMap<FunctionImporter::ExportSetTy> ExportLists(ModuleCount); in crossModuleImport() [all …]
|
| /llvm-project-15.0.7/clang/lib/Tooling/Transformer/ |
| H A D | Parsing.cpp | 87 static const llvm::StringMap<RangeSelectorOp<std::string>> & 89 static const llvm::StringMap<RangeSelectorOp<std::string>> M = { in getUnaryStringSelectors() 101 static const llvm::StringMap<RangeSelectorOp<RangeSelector>> & 103 static const llvm::StringMap<RangeSelectorOp<RangeSelector>> M = { in getUnaryRangeSelectors() 108 static const llvm::StringMap<RangeSelectorOp<std::string, std::string>> & 110 static const llvm::StringMap<RangeSelectorOp<std::string, std::string>> M = { in getBinaryStringSelectors() 115 static const llvm::StringMap<RangeSelectorOp<RangeSelector, RangeSelector>> & 117 static const llvm::StringMap<RangeSelectorOp<RangeSelector, RangeSelector>> in getBinaryRangeSelectors() 123 llvm::Optional<Element> findOptional(const llvm::StringMap<Element> &Map, in findOptional()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | FileDistance.h | 72 FileDistance(llvm::StringMap<SourceParams> Sources, 91 URIDistance(llvm::StringMap<SourceParams> Sources, 105 llvm::StringMap<SourceParams> Sources; 106 llvm::StringMap<std::unique_ptr<FileDistance>> ByScheme;
|
| /llvm-project-15.0.7/mlir/lib/Bindings/Python/ |
| H A D | Globals.h | 89 llvm::StringMap<pybind11::object> dialectClassMap; 91 llvm::StringMap<pybind11::object> operationClassMap; 94 llvm::StringMap<pybind11::object> rawOpViewClassMap; 104 llvm::StringMap<pybind11::object> rawOpViewClassMapCache;
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/unittests/ |
| H A D | TestFS.h | 28 buildTestFS(llvm::StringMap<std::string> const &Files, 29 llvm::StringMap<time_t> const &Timestamps = {}); 45 llvm::StringMap<std::string> Files; 46 llvm::StringMap<time_t> Timestamps;
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | IdentifierNamingCheck.h | 62 llvm::StringMap<std::string> General; 63 llvm::StringMap<std::string> CString; 64 llvm::StringMap<std::string> PrimitiveType; 65 llvm::StringMap<std::string> UserDefinedType; 66 llvm::StringMap<std::string> DerivedType; 94 const llvm::StringMap<std::string> &StrMap) const; 198 mutable llvm::StringMap<FileStyle> NamingStylesCache;
|
| /llvm-project-15.0.7/llvm/include/llvm/Transforms/IPO/ |
| H A D | FunctionImport.h | 98 using ImportMapTy = StringMap<FunctionsToImportTy>; 148 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries, 149 StringMap<FunctionImporter::ImportMapTy> &ImportLists, 150 StringMap<FunctionImporter::ExportSetTy> &ExportLists); 216 const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/unittests/tweaks/ |
| H A D | ExtractFunctionTests.cpp | 223 llvm::StringMap<std::string> EditedFiles; in TEST_F() 262 llvm::StringMap<std::string> EditedFiles; in TEST_F() 298 llvm::StringMap<std::string> EditedFiles; in TEST_F() 340 llvm::StringMap<std::string> EditedFiles; in TEST_F() 381 llvm::StringMap<std::string> EditedFiles; in TEST_F() 422 llvm::StringMap<std::string> EditedFiles; in TEST_F() 487 llvm::StringMap<std::string> EditedFiles; in TEST_F()
|
| /llvm-project-15.0.7/clang/lib/Tooling/DumpTool/ |
| H A D | ASTSrcLocProcessor.h | 42 llvm::StringMap<std::string> ClassInheritance; 43 llvm::StringMap<std::vector<StringRef>> ClassesInClade; 44 llvm::StringMap<ClassData> ClassEntries;
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | SpecialCaseList.h | 130 StringMap<unsigned> Strings; 135 using SectionEntries = StringMap<StringMap<Matcher>>; 147 bool parse(const MemoryBuffer *MB, StringMap<size_t> &SectionsMap,
|
| /llvm-project-15.0.7/mlir/lib/AsmParser/ |
| H A D | ParserState.h | 29 llvm::StringMap<Attribute> attributeAliasDefinitions; 32 llvm::StringMap<Type> typeAliasDefinitions; 37 llvm::StringMap<std::pair<std::string, AsmDialectResourceHandle>>>
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/index/ |
| H A D | FileIndex.h | 102 llvm::StringMap<std::shared_ptr<SymbolSlab>> SymbolsSnapshot; 103 llvm::StringMap<RefSlabAndCountReferences> RefsSnapshot; 104 llvm::StringMap<std::shared_ptr<RelationSlab>> RelationsSnapshot; 199 llvm::StringMap<FileShard> Shards;
|
| /llvm-project-15.0.7/llvm/unittests/DebugInfo/DWARF/ |
| H A D | DWARFDieTest.cpp | 67 Expected<StringMap<std::unique_ptr<MemoryBuffer>>> Sections = in TEST() 169 Expected<StringMap<std::unique_ptr<MemoryBuffer>>> Sections = in TEST() 275 Expected<StringMap<std::unique_ptr<MemoryBuffer>>> Sections = in TEST() 380 Expected<StringMap<std::unique_ptr<MemoryBuffer>>> Sections = in TEST() 502 Expected<StringMap<std::unique_ptr<MemoryBuffer>>> Sections = in TEST() 624 Expected<StringMap<std::unique_ptr<MemoryBuffer>>> Sections = in TEST()
|
| /llvm-project-15.0.7/mlir/include/mlir/Tools/PDLL/ODS/ |
| H A D | Context.h | 77 llvm::StringMap<std::unique_ptr<AttributeConstraint>> attributeConstraints; 78 llvm::StringMap<std::unique_ptr<Dialect>> dialects; 79 llvm::StringMap<std::unique_ptr<TypeConstraint>> typeConstraints;
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | DebugStringTableSubsection.h | 78 StringMap<uint32_t>::const_iterator begin() const { in begin() 82 StringMap<uint32_t>::const_iterator end() const { return StringToId.end(); } in end() 88 StringMap<uint32_t> StringToId;
|
| /llvm-project-15.0.7/llvm/test/Transforms/GVN/ |
| H A D | nonescaping-malloc.ll | 17 %"struct.llvm::StringMap<void*,llvm::MallocAllocator>" = type { %"struct.llvm::StringMapImpl", %"st… 24 …"* @_Z3fooRN4llvm9StringMapIPvNS_15MallocAllocatorEEEPKc(%"struct.llvm::StringMap<void*,llvm::Mall… 32 …S_15MallocAllocatorEE16GetOrCreateValueERKNS_9StringRefE(%"struct.llvm::StringMap<void*,llvm::Mall… 42 …S_15MallocAllocatorEE16GetOrCreateValueERKNS_9StringRefE(%"struct.llvm::StringMap<void*,llvm::Mall… 48 …2.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>", %"struct.llvm… 50 …4.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>", %"struct.llvm… 101 …5.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>", %"struct.llvm…
|
| /llvm-project-15.0.7/llvm/test/Transforms/NewGVN/ |
| H A D | nonescaping-malloc-xfail.ll | 18 %"struct.llvm::StringMap<void*,llvm::MallocAllocator>" = type { %"struct.llvm::StringMapImpl", %"st… 25 …"* @_Z3fooRN4llvm9StringMapIPvNS_15MallocAllocatorEEEPKc(%"struct.llvm::StringMap<void*,llvm::Mall… 33 …S_15MallocAllocatorEE16GetOrCreateValueERKNS_9StringRefE(%"struct.llvm::StringMap<void*,llvm::Mall… 43 …S_15MallocAllocatorEE16GetOrCreateValueERKNS_9StringRefE(%"struct.llvm::StringMap<void*,llvm::Mall… 49 …2.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>", %"struct.llvm… 51 …4.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>", %"struct.llvm… 102 …5.i = getelementptr inbounds %"struct.llvm::StringMap<void*,llvm::MallocAllocator>", %"struct.llvm…
|
| /llvm-project-15.0.7/clang/unittests/Tooling/ |
| H A D | DiagnosticsYamlTest.cpp | 25 const std::string &FilePath, const StringMap<Replacements> &Fix, in makeMessage() 49 const StringMap<Replacements> &Fix, in makeDiagnostic() 120 StringMap<Replacements> Fix1 = { in TEST() 127 StringMap<Replacements> Fix2 = { in TEST() 166 auto getFixes = [](const StringMap<Replacements> &Fix) { in TEST()
|
| /llvm-project-15.0.7/bolt/include/bolt/Profile/ |
| H A D | YAMLProfileReader.h | 60 StringMap<std::vector<yaml::bolt::BinaryFunctionProfile *>> LTOCommonNameMap; 63 StringMap<std::unordered_set<const BinaryFunction *>> 67 StringMap<yaml::bolt::BinaryFunctionProfile *> ProfileNameToProfile;
|