Home
last modified time | relevance | path

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

12345678910>>...16

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/
H A DMIParser.h17 #include "llvm/ADT/StringMap.h"
52 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<unsigne
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h126 class LLVM_ALLOCATORHOLDER_EMPTYBASE StringMap
134 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {} in StringMap() function
136 explicit StringMap(unsigned InitialSize) in StringMap() function
139 explicit StringMap(AllocatorTy A) in StringMap() function
142 StringMap(unsigned InitialSize, AllocatorTy A) in StringMap() function
146 StringMap(std::initializer_list<std::pair<StringRef, ValueTy>> List) in StringMap() function
151 StringMap(StringMap &&RHS) in StringMap() function
154 StringMap(const StringMap &RHS) in StringMap() function
189 StringMap &operator=(StringMap RHS) {
195 ~StringMap() { in ~StringMap()
[all …]
H A DStringSet.h23 class StringSet : public StringMap<std::nullopt_t, AllocatorTy> {
24 using Base = StringMap<std::nullopt_t, AllocatorTy>;
/freebsd/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/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/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/contrib/llvm-project/lld/ELF/
H A DSymbolTable.h77 llvm::StringMap<Defined *> cmseImportLib;
81 llvm::StringMap<bool> inCMSEOutImpLib;
88 llvm::StringMap<SmallVector<Symbol *, 0>> &getDemangledSyms();
104 std::optional<llvm::StringMap<SmallVector<Symbol *, 0>>> demangledSyms;
/freebsd/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/contrib/llvm-project/llvm/include/llvm/Support/
H A DSpecialCaseList.h15 #include "llvm/ADT/StringMap.h"
126 StringMap<std::pair<GlobPattern, unsigned>> Globs;
130 using SectionEntries = StringMap<StringMap<Matcher>>;
140 StringMap<Section> Sections;
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicBlockSectionsProfileReader.h20 #include "llvm/ADT/StringMap.h"
141 StringMap<SmallString<128>> FunctionNameToDIFilename;
149 StringMap<FunctionPathAndClusterInfo> ProgramPathAndClusterInfo;
153 StringMap<StringRef> FuncAliasMap;
/freebsd/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/contrib/llvm-project/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h239 StringMap<SectionRename> SectionsToRename;
240 StringMap<uint64_t> SetSectionAlignment;
241 StringMap<SectionFlagsUpdate> SetSectionFlags;
242 StringMap<uint64_t> SetSectionType;
243 StringMap<StringRef> SymbolsToRename;
/freebsd/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/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowAnalysisContext.h97 std::function<llvm::StringMap<QualType>(QualType)> CB) { in setSyntheticFieldCallback()
194 llvm::StringMap<QualType> getSyntheticFields(QualType Type) { in getSyntheticFields()
197 llvm::StringMap<QualType> Result = SyntheticFieldCallback(Type); in getSyntheticFields()
300 std::function<llvm::StringMap<QualType>(QualType)> SyntheticFieldCallback;
/freebsd/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/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/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DCodeExpansions.h20 using const_iterator = StringMap<std::string>::const_iterator;
23 StringMap<std::string> Expansions;
/freebsd/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/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetID.h43 llvm::StringMap<bool> *FeatureMap);
48 const llvm::StringMap<bool> &Features);
/freebsd/contrib/llvm-project/llvm/include/llvm/TargetParser/
H A DHost.h21 template <typename ValueTy, typename AllocatorTy> class StringMap; variable
55 const StringMap<bool, MallocAllocator> getHostCPUFeatures();
/freebsd/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()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSpecialCaseList.cpp231 StringMap<Matcher>::const_iterator II = I->second.find(Category);
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCContext.h85 using SymbolTable = StringMap<MCSymbolTableValue, BumpPtrAllocator &>;
166 StringMap<MCSymbol *, BumpPtrAllocator &> InlineAsmUsedLabelNames;
322 StringMap<MCSectionMachO *> MachOUniquingMap;
324 StringMap<MCSectionELF *> ELFUniquingMap;
328 StringMap<MCSectionDXContainer *> DXCUniquingMap;
329 StringMap<bool> RelSecNames;
367 StringMap<MCAsmMacro> MacroMap;
834 StringMap<MCAsmMacro>::iterator I = MacroMap.find(Name); in lookupMacro()
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/
H A DWebAssembly.h102 static void setSIMDLevel(llvm::StringMap<bool> &Features, SIMDEnum Level,
106 initFeatureMap(llvm::StringMap<bool> &Features, DiagnosticsEngine &Diags,
111 void setFeatureEnabled(llvm::StringMap<bool> &Features, StringRef Name,

12345678910>>...16