Home
last modified time | relevance | path

Searched refs:nameMap (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Target/SPIRV/Deserialization/
H A DDeserializer.cpp518 auto funcName = nameMap.lookup(id).str(); in getFunctionSymbol()
526 auto constName = nameMap.lookup(id).str(); in getSpecConstantSymbol()
572 auto variableName = nameMap.lookup(variableID).str(); in processGlobalVariable()
630 if (!nameMap.lookup(operands[0]).empty()) { in processName()
640 nameMap[operands[0]] = name; in processName()
917 spirv::StructType::getEmpty(context, nameMap.lookup(operands[0]).str()); in processStructType()
969 std::string structIdentifier = nameMap.lookup(structID).str(); in processStructType()
H A DDeserializer.h560 DenseMap<uint32_t, StringRef> nameMap; variable