Lines Matching refs:resultId
191 Id getTypeId(Id resultId) const { return module.getTypeId(resultId); } in getTypeId() argument
192 Id getDerefTypeId(Id resultId) const;
196 int getNumComponents(Id resultId) const { return getNumTypeComponents(getTypeId(resultId)); } in getNumComponents() argument
206 bool isPointer(Id resultId) const { return isPointerType(getTypeId(resultId)); } in isPointer() argument
207 bool isScalar(Id resultId) const { return isScalarType(getTypeId(resultId)); } in isScalar() argument
208 bool isVector(Id resultId) const { return isVectorType(getTypeId(resultId)); } in isVector() argument
209 bool isMatrix(Id resultId) const { return isMatrixType(getTypeId(resultId)); } in isMatrix() argument
210 …bool isCooperativeMatrix(Id resultId)const { return isCooperativeMatrixType(getTypeId(resultId)); } in isCooperativeMatrix() argument
211 bool isAggregate(Id resultId) const { return isAggregateType(getTypeId(resultId)); } in isAggregate() argument
212 bool isSampledImage(Id resultId) const { return isSampledImageType(getTypeId(resultId)); } in isSampledImage() argument
244 bool isConstant(Id resultId) const { return isConstantOpCode(getOpCode(resultId)); } in isConstant() argument
245 bool isConstantScalar(Id resultId) const { return getOpCode(resultId) == OpConstant; } in isConstantScalar() argument
246 bool isSpecConstant(Id resultId) const { return isSpecConstantOpCode(getOpCode(resultId)); } in isSpecConstant() argument
247 unsigned int getConstantScalar(Id resultId) const in getConstantScalar() argument
248 { return module.getInstruction(resultId)->getImmediateOperand(0); } in getConstantScalar()
249 …StorageClass getStorageClass(Id resultId) const { return getTypeStorageClass(getTypeId(resultId));… in getStorageClass() argument
252 bool isVariable(Id resultId) const { return isVariableOpCode(getOpCode(resultId)); } in isVariable() argument
253 …bool isGlobalStorage(Id resultId) const { return getStorageClass(resultId) != StorageClassFunction… in isGlobalStorage() argument
254 …bool isGlobalVariable(Id resultId) const { return isVariable(resultId) && isGlobalStorage(resultId… in isGlobalVariable() argument
256 …bool isValidInitializer(Id resultId) const { return isConstant(resultId) || isGlobalVariable(resul… in isValidInitializer() argument
270 int getNumColumns(Id resultId) const { return getTypeNumColumns(getTypeId(resultId)); } in getNumColumns() argument
276 int getNumRows(Id resultId) const { return getTypeNumRows(getTypeId(resultId)); } in getNumRows() argument
283 Id getImageType(Id resultId) const in getImageType() argument
285 Id typeId = getTypeId(resultId); in getImageType()