Home
last modified time | relevance | path

Searched refs:StringMap (Results 1 – 25 of 398) sorted by relevance

12345678910>>...16

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/
H A DMIParser.h52 using Name2RegClassMap = StringMap<const TargetRegisterClass *>;
53 using Name2RegBankMap = StringMap<const RegisterBank *>;
60 StringMap<unsigned> Names2InstrOpCodes;
63 StringMap<Register> Names2Regs;
66 StringMap<const uint32_t *> Names2RegMasks;
69 StringMap<unsigned> Names2SubRegIndices;
72 StringMap<int> Names2TargetIndices;
75 StringMap<unsigned> Names2DirectTargetFlags;
78 StringMap<unsigned> Names2BitmaskTargetFlags;
81 StringMap<MachineMemOperand::Flags> Names2MMOTargetFlags;
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h110 class LLVM_ALLOCATORHOLDER_EMPTYBASE StringMap
120 explicit StringMap(unsigned InitialSize) in StringMap() function
123 explicit StringMap(AllocatorTy A) in StringMap() function
126 StringMap(unsigned InitialSize, AllocatorTy A) in StringMap() function
130 StringMap(std::initializer_list<std::pair<StringRef, ValueTy>> List) in StringMap() function
135 StringMap(StringMap &&RHS) in StringMap() function
138 StringMap(const StringMap &RHS) in StringMap() function
173 StringMap &operator=(StringMap RHS) {
179 ~StringMap() { in ~StringMap()
265 bool operator==(const StringMap &RHS) const {
[all …]
H A DStringSet.h23 class StringSet : public StringMap<std::nullopt_t, AllocatorTy> {
24 using Base = StringMap<std::nullopt_t, AllocatorTy>;
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DTargetID.cpp68 llvm::StringMap<bool> *FeatureMap) { in parseTargetIDWithFormatCheckingOnly()
83 llvm::StringMap<bool> LocalFeatureMap; in parseTargetIDWithFormatCheckingOnly()
106 llvm::StringMap<bool> *FeatureMap) { in parseTargetID()
131 const llvm::StringMap<bool> &Features) { in getCanonicalTargetID()
148 llvm::StringMap<bool> Features; in getConflictTargetIDCombination()
150 llvm::StringMap<Info> FeatureMap; in getConflictTargetIDCombination()
152 llvm::StringMap<bool> Features; in getConflictTargetIDCombination()
169 llvm::StringMap<bool> ProvidedFeatures, RequestedFeatures; in isCompatibleTargetID()
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DParsing.cpp87 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 std::optional<Element> findOptional(const llvm::StringMap<Element> &Map, in findOptional()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
H A DSimpleRemoteEPCServer.h67 StringMap<std::vector<char>> &bootstrapMap() { return BootstrapMap; } in bootstrapMap()
78 StringMap<ExecutorAddr> &bootstrapSymbols() { return BootstrapSymbols; } in bootstrapSymbols()
90 StringMap<std::vector<char>> BootstrapMap;
91 StringMap<ExecutorAddr> BootstrapSymbols;
95 static StringMap<ExecutorAddr> defaultBootstrapSymbols();
157 Error sendSetupMessage(StringMap<std::vector<char>> BootstrapMap,
158 StringMap<ExecutorAddr> BootstrapSymbols);
/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DSymbolTable.h74 llvm::StringMap<Defined *> cmseImportLib;
78 llvm::StringMap<bool> inCMSEOutImpLib;
85 llvm::StringMap<SmallVector<Symbol *, 0>> &getDemangledSyms();
101 std::optional<llvm::StringMap<SmallVector<Symbol *, 0>>> demangledSyms;
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/DumpTool/
H A DASTSrcLocProcessor.h42 llvm::StringMap<std::string> ClassInheritance;
43 llvm::StringMap<std::vector<StringRef>> ClassesInClade;
44 llvm::StringMap<ClassData> ClassEntries;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Testing/Annotations/
H A DAnnotations.h90 llvm::StringMap<llvm::SmallVector<size_t, 1>> all_points() const;
110 llvm::StringMap<llvm::SmallVector<Range, 1>> all_ranges() const;
124 llvm::StringMap<llvm::SmallVector<size_t, 1>> Points;
125 llvm::StringMap<llvm::SmallVector<size_t, 1>> Ranges;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DSpecialCaseList.h126 StringMap<std::pair<GlobPattern, unsigned>> Globs;
130 using SectionEntries = StringMap<StringMap<Matcher>>;
140 StringMap<Section> Sections;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugStringTableSubsection.h78 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;
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/
H A DFileMatchTrie.cpp120 llvm::StringMap<FileMatchTrieNode>::const_iterator MatchingChild = in findEquivalent()
155 llvm::StringMap<FileMatchTrieNode>::const_iterator Except) const { in getAll()
162 for (llvm::StringMap<FileMatchTrieNode>::const_iterator in getAll()
176 llvm::StringMap<FileMatchTrieNode> Children;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h244 StringMap<SectionRename> SectionsToRename;
245 StringMap<uint64_t> SetSectionAlignment;
246 StringMap<SectionFlagsUpdate> SetSectionFlags;
247 StringMap<uint64_t> SetSectionType;
248 StringMap<StringRef> SymbolsToRename;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Frontend/
H A DModelConsumer.h33 ModelConsumer(llvm::StringMap<Stmt *> &Bodies);
38 llvm::StringMap<Stmt *> &Bodies;
H A DFrontendActions.h42 ParseModelFileAction(llvm::StringMap<Stmt *> &Bodies);
50 llvm::StringMap<Stmt *> &Bodies;
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-remarkutil/
H A DRemarkSizeDiff.cpp252 StringMap<InstCountAndStackSize> &FuncNameToSizeInfo, in processRemark()
289 StringMap<InstCountAndStackSize> &FuncNameToSizeInfo) { in readFileAndProcessRemarks()
330 StringMap<InstCountAndStackSize> &FuncNameToSizeInfo) { in tryReadFileAndProcessRemarks()
347 computeDiff(const StringMap<InstCountAndStackSize> &FuncNameToSizeInfoA, in computeDiff()
348 const StringMap<InstCountAndStackSize> &FuncNameToSizeInfoB, in computeDiff()
484 StringMap<InstCountAndStackSize> FuncNameToSizeInfoA; in trySizeSiff()
485 StringMap<InstCountAndStackSize> FuncNameToSizeInfoB; in trySizeSiff()
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DCodeExpansions.h20 using const_iterator = StringMap<std::string>::const_iterator;
23 StringMap<std::string> Expansions;
H A DMatchDataInfo.cpp19 StringMap<std::vector<std::string>> AllMatchDataVars;
36 StringMap<unsigned> SeenTypes; in AssignMatchDataVariables()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetID.h43 llvm::StringMap<bool> *FeatureMap);
48 const llvm::StringMap<bool> &Features);
H A DTargetOptions.h62 llvm::StringMap<bool> FeatureMap;
65 llvm::StringMap<bool> OpenCLFeaturesMap;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TargetParser/
H A DHost.h21 template <typename ValueTy, typename AllocatorTy> class StringMap; variable
56 bool getHostCPUFeatures(StringMap<bool, MallocAllocator> &Features);
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSarifDiagnostics.cpp145 static StringMap<uint32_t>
148 StringMap<uint32_t> RuleMapping; in createRuleMapping()
168 const StringMap<uint32_t> &RuleMapping, in createResult()
202 StringMap<uint32_t> RuleMapping = createRuleMapping(Diags, SarifWriter); in FlushDiagnosticsImpl()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicBlockSectionsProfileReader.h141 StringMap<SmallString<128>> FunctionNameToDIFilename;
149 StringMap<FunctionPathAndClusterInfo> ProgramPathAndClusterInfo;
153 StringMap<StringRef> FuncAliasMap;
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DCompressInstEmitter.cpp132 void createDagOperandMapping(Record *Rec, StringMap<unsigned> &SourceOperands,
133 StringMap<unsigned> &DestOperands,
141 StringMap<unsigned> &SourceOperands,
307 Record *Rec, StringMap<unsigned> &SourceOperands, in createDagOperandMapping()
308 StringMap<unsigned> &DestOperands, DagInit *SourceDag, DagInit *DestDag, in createDagOperandMapping()
324 StringMap<unsigned>::iterator It = in createDagOperandMapping()
356 StringMap<unsigned> &SourceOperands, CodeGenInstruction &DestInst) { in createInstOperandMapping()
382 StringMap<unsigned>::iterator SourceOp = in createInstOperandMapping()
466 StringMap<unsigned> SourceOperands; in evaluateCompressPat()
467 StringMap<unsigned> DestOperands; in evaluateCompressPat()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Testing/Annotations/
H A DAnnotations.cpp119 llvm::StringMap<llvm::SmallVector<size_t, 1>> Annotations::all_points() const { in all_points()
120 llvm::StringMap<llvm::SmallVector<size_t, 1>> Result; in all_points()
165 llvm::StringMap<llvm::SmallVector<Annotations::Range, 1>>
167 llvm::StringMap<llvm::SmallVector<Annotations::Range, 1>> Res; in all_ranges()

12345678910>>...16