Home
last modified time | relevance | path

Searched refs:TypeIndices (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp210 DenseMap<const MCSymbolWasm *, uint32_t> TypeIndices; member in __anon335a907b0111::WasmObjectWriter
273 TypeIndices.clear(); in reset()
727 auto It = TypeIndices.find(RelEntry.Symbol); in getRelocationIndexValue()
728 if (It == TypeIndices.end()) in getRelocationIndexValue()
1236 assert(TypeIndices.count(&Symbol)); in getFunctionType()
1237 return TypeIndices[&Symbol]; in getFunctionType()
1242 assert(TypeIndices.count(&Symbol)); in getTagType()
1243 return TypeIndices[&Symbol]; in getTagType()
1259 TypeIndices[&Symbol] = Pair.first->second; in registerFunctionType()
1280 TypeIndices[&Symbol] = Pair.first->second; in registerTagType()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp358 auto I = TypeIndices.find({Scope, nullptr}); in getScopeIndex()
359 if (I != TypeIndices.end()) in getScopeIndex()
392 auto I = TypeIndices.find({SP, nullptr}); in getFuncIdForSubprogram()
393 if (I != TypeIndices.end()) in getFuncIdForSubprogram()
462 auto I = TypeIndices.find({SP, Class}); in getMemberFunctionType()
463 if (I != TypeIndices.end()) in getMemberFunctionType()
481 auto InsertResult = TypeIndices.insert({{Node, ClassTy}, TI}); in recordTypeIndexForDINode()
992 assert(TypeIndices.count({SP, nullptr})); in emitInlineeLinesSubsection()
993 TypeIndex InlineeIdx = TypeIndices[{SP, nullptr}]; in emitInlineeLinesSubsection()
1014 assert(TypeIndices.count({Site.Inlinee, nullptr})); in emitInlinedCallSite()
[all …]
H A DCodeViewDebug.h290 TypeIndices; variable