Home | History | Annotate | Download | only in SPIRV

Lines Matching refs:getOpCode

165     Op getOpCode(Id id) const { return module.getInstruction(id)->getOpCode(); }
166 Op getTypeClass(Id typeId) const { return getOpCode(typeId); }
203 bool isConstant(Id resultId) const { return isConstantOpCode(getOpCode(resultId)); }
204 bool isConstantScalar(Id resultId) const { return getOpCode(resultId) == OpConstant; }
205 bool isSpecConstant(Id resultId) const { return isSpecConstantOpCode(getOpCode(resultId)); }