Lines Matching refs:resultId
96 …Instruction(Id resultId, Id typeId, Op opCode) : resultId(resultId), typeId(typeId), opCode(opCode… in Instruction() argument
97 …explicit Instruction(Op opCode) : resultId(NoResult), typeId(NoType), opCode(opCode), block(nullpt… in Instruction()
147 Id getResultId() const { return resultId; } in getResultId()
165 if (resultId) in dump()
173 if (resultId) in dump()
174 out.push_back(resultId); in dump()
183 Id resultId; variable
422 spv::Id resultId = instruction->getResultId(); in mapInstruction() local
424 if (resultId >= idToInstruction.size()) in mapInstruction()
425 idToInstruction.resize(resultId + 16); in mapInstruction()
426 idToInstruction[resultId] = instruction; in mapInstruction()
431 spv::Id getTypeId(Id resultId) const { in getTypeId() argument
432 … return idToInstruction[resultId] == nullptr ? NoType : idToInstruction[resultId]->getTypeId(); in getTypeId()