Home
last modified time | relevance | path

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

12345678910>>...18

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/MIRParser/
H A DMIParser.h51 using Name2RegClassMap = StringMap<const TargetRegisterClass *>;
52 using Name2RegBankMap = StringMap<const RegisterBank *>;
59 StringMap<unsigned> Names2InstrOpCodes;
62 StringMap<Register> Names2Regs;
65 StringMap<const uint32_t *> Names2RegMasks;
68 StringMap<unsigned> Names2SubRegIndices;
71 StringMap<int> Names2TargetIndices;
74 StringMap<unsigned> Names2DirectTargetFlags;
77 StringMap<unsigned> Names2BitmaskTargetFlags;
80 StringMap<MachineMemOperand::Flags> Names2MMOTargetFlags;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DMustache.cpp133 ASTNode(llvm::StringMap<AstPtr> &Partials, llvm::StringMap<Lambda> &Lambdas, in ASTNode()
134 llvm::StringMap<SectionLambda> &SectionLambdas, EscapeMap &Escapes) in ASTNode()
139 ASTNode(std::string Body, ASTNode *Parent, llvm::StringMap<AstPtr> &Partials, in ASTNode()
140 llvm::StringMap<Lambda> &Lambdas, in ASTNode()
141 llvm::StringMap<SectionLambda> &SectionLambdas, EscapeMap &Escapes) in ASTNode()
148 llvm::StringMap<AstPtr> &Partials, llvm::StringMap<Lambda> &Lambdas, in ASTNode()
149 llvm::StringMap<SectionLambda> &SectionLambdas, EscapeMap &Escapes) in ASTNode()
176 StringMap<AstPtr> &Partials;
177 StringMap<Lambda> &Lambdas;
178 StringMap<SectionLambda> &SectionLambdas;
[all …]
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DTargetID.cpp68 llvm::StringMap<bool> *FeatureMap) { in parseTargetIDWithFormatCheckingOnly()
83 llvm::StringMap<bool> LocalFeatureMap; in parseTargetIDWithFormatCheckingOnly()
104 llvm::StringMap<bool> *FeatureMap) { in parseTargetID()
128 const llvm::StringMap<bool> &Features) { in getCanonicalTargetID()
145 llvm::StringMap<bool> Features; in getConflictTargetIDCombination()
146 Info(llvm::StringRef TargetID, const llvm::StringMap<bool> &Features) in getConflictTargetIDCombination()
149 llvm::StringMap<Info> FeatureMap; in getConflictTargetIDCombination()
151 llvm::StringMap<bool> Features; in getConflictTargetIDCombination()
166 llvm::StringMap<bool> ProvidedFeatures, RequestedFeatures; in isCompatibleTargetID()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h127 class LLVM_ALLOCATORHOLDER_EMPTYBASE StringMap
135 StringMap() : StringMapImpl(static_cast<unsigned>(sizeof(MapEntryTy))) {} in StringMap() function
137 explicit StringMap(unsigned InitialSize) in StringMap() function
140 explicit StringMap(AllocatorTy A) in StringMap() function
143 StringMap(unsigned InitialSize, AllocatorTy A) in StringMap() function
147 StringMap(std::initializer_list<std::pair<StringRef, ValueTy>> List) in StringMap() function
152 StringMap(StringMap &&RHS) in StringMap() function
155 StringMap(const StringMap &RHS) in StringMap() function
190 StringMap &operator=(StringMap RHS) {
196 ~StringMap() { in ~StringMap()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DParsing.cpp80 static const llvm::StringMap<RangeSelectorOp<std::string>> &
82 static const llvm::StringMap<RangeSelectorOp<std::string>> M = { in getUnaryStringSelectors()
94 static const llvm::StringMap<RangeSelectorOp<RangeSelector>> &
96 static const llvm::StringMap<RangeSelectorOp<RangeSelector>> M = { in getUnaryRangeSelectors()
101 static const llvm::StringMap<RangeSelectorOp<std::string, std::string>> &
103 static const llvm::StringMap<RangeSelectorOp<std::string, std::string>> M = { in getBinaryStringSelectors()
108 static const llvm::StringMap<RangeSelectorOp<RangeSelector, RangeSelector>> &
110 static const llvm::StringMap<RangeSelectorOp<RangeSelector, RangeSelector>> in getBinaryRangeSelectors()
116 std::optional<Element> findOptional(const llvm::StringMap<Element> &Map, in findOptional()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
H A DSimpleRemoteEPCServer.h68 StringMap<std::vector<char>> &bootstrapMap() { return BootstrapMap; } in bootstrapMap()
79 StringMap<ExecutorAddr> &bootstrapSymbols() { return BootstrapSymbols; } in bootstrapSymbols()
91 StringMap<std::vector<char>> BootstrapMap;
92 StringMap<ExecutorAddr> BootstrapSymbols;
96 static StringMap<ExecutorAddr> defaultBootstrapSymbols();
158 Error sendSetupMessage(StringMap<std::vector<char>> BootstrapMap,
159 StringMap<ExecutorAddr> BootstrapSymbols);
H A DDefaultHostBootstrapValues.h24 StringMap<std::vector<char>> &BootstrapMap,
25 StringMap<ExecutorAddr> &BootstrapSymbols);
/freebsd/contrib/llvm-project/lld/ELF/
H A DSymbolTable.h78 llvm::StringMap<Defined *> cmseImportLib;
82 llvm::StringMap<bool> inCMSEOutImpLib;
89 llvm::StringMap<SmallVector<Symbol *, 0>> &getDemangledSyms();
107 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 DMustache.h121 StringMap<AstPtr> Partials;
122 StringMap<Lambda> Lambdas;
123 StringMap<SectionLambda> SectionLambdas;
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugStringTableSubsection.h79 StringMap<uint32_t>::const_iterator begin() const { in begin()
83 StringMap<uint32_t>::const_iterator end() const { return StringToId.end(); } in end()
89 StringMap<uint32_t> StringToId;
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DFileMatchTrie.cpp119 llvm::StringMap<FileMatchTrieNode>::const_iterator MatchingChild = in findEquivalent()
154 llvm::StringMap<FileMatchTrieNode>::const_iterator Except) const { in getAll()
161 for (llvm::StringMap<FileMatchTrieNode>::const_iterator in getAll()
175 llvm::StringMap<FileMatchTrieNode> Children;
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h253 StringMap<SectionRename> SectionsToRename;
254 StringMap<uint64_t> SetSectionAlignment;
255 StringMap<SectionFlagsUpdate> SetSectionFlags;
256 StringMap<uint64_t> SetSectionType;
257 StringMap<StringRef> SymbolsToRename;
/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/llvm/lib/TargetParser/
H A DPPCTargetParser.cpp124 std::optional<StringMap<bool>> getPPCDefaultTargetFeatures(const Triple &T, in getPPCDefaultTargetFeatures()
126 std::optional<StringMap<bool>> FeaturesOpt = in getPPCDefaultTargetFeatures()
132 StringMap<bool> Features = FeaturesOpt.value(); in getPPCDefaultTargetFeatures()
/freebsd/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/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicBlockSectionsProfileReader.h118 StringMap<SmallString<128>> FunctionNameToDIFilename;
126 StringMap<FunctionPathAndClusterInfo> ProgramPathAndClusterInfo;
130 StringMap<StringRef> FuncAliasMap;
/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/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DDefaultHostBootstrapValues.cpp21 StringMap<std::vector<char>> &BootstrapMap, in addDefaultBootstrapValuesForHostProcess()
22 StringMap<ExecutorAddr> &BootstrapSymbols) { in addDefaultBootstrapValuesForHostProcess()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSarifDiagnostics.cpp143 static StringMap<uint32_t>
146 StringMap<uint32_t> RuleMapping; in createRuleMapping()
166 const StringMap<uint32_t> &RuleMapping, in createResult()
200 StringMap<uint32_t> RuleMapping = createRuleMapping(Diags, SarifWriter); in FlushDiagnosticsImpl()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Protocol/MCP/
H A DProtocolServerMCP.h100 llvm::StringMap<std::unique_ptr<Tool>> m_tools;
103 llvm::StringMap<RequestHandler> m_request_handlers;
104 llvm::StringMap<NotificationHandler> m_notification_handlers;
/freebsd/contrib/llvm-project/llvm/include/llvm/TargetParser/
H A DTargetParser.h188 StringMap<bool> &Features);
193 StringMap<bool> &Features);
217 LLVM_ABI std::optional<llvm::StringMap<bool>>
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DCodeExpansions.h21 using const_iterator = StringMap<std::string>::const_iterator;
24 StringMap<std::string> Expansions;
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetID.h43 llvm::StringMap<bool> *FeatureMap);
48 const llvm::StringMap<bool> &Features);

12345678910>>...18