Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp211 DenseMap<const MCSymbolWasm *, uint32_t> TypeIndices; member in __anonaad482f00111::WasmObjectWriter
274 TypeIndices.clear(); in reset()
752 if (!TypeIndices.count(RelEntry.Symbol)) in getRelocationIndexValue()
755 return TypeIndices[RelEntry.Symbol]; in getRelocationIndexValue()
1259 assert(TypeIndices.count(&Symbol)); in getFunctionType()
1260 return TypeIndices[&Symbol]; in getFunctionType()
1265 assert(TypeIndices.count(&Symbol)); in getTagType()
1266 return TypeIndices[&Symbol]; in getTagType()
1282 TypeIndices[&Symbol] = Pair.first->second; in registerFunctionType()
1303 TypeIndices[&Symbol] = Pair.first->second; in registerTagType()
/src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp356 auto I = TypeIndices.find({Scope, nullptr}); in getScopeIndex()
357 if (I != TypeIndices.end()) in getScopeIndex()
390 auto I = TypeIndices.find({SP, nullptr}); in getFuncIdForSubprogram()
391 if (I != TypeIndices.end()) in getFuncIdForSubprogram()
460 auto I = TypeIndices.find({SP, Class}); in getMemberFunctionType()
461 if (I != TypeIndices.end()) in getMemberFunctionType()
479 auto InsertResult = TypeIndices.insert({{Node, ClassTy}, TI}); in recordTypeIndexForDINode()
985 assert(TypeIndices.count({SP, nullptr})); in emitInlineeLinesSubsection()
986 TypeIndex InlineeIdx = TypeIndices[{SP, nullptr}]; in emitInlineeLinesSubsection()
1007 assert(TypeIndices.count({Site.Inlinee, nullptr})); in emitInlinedCallSite()
[all …]
H A DCodeViewDebug.h285 TypeIndices; variable