Lines Matching refs:resultId

252     Id getTypeId(Id resultId) const { return module.getTypeId(resultId); }
253 Id getDerefTypeId(Id resultId) const;
257 int getNumComponents(Id resultId) const { return getNumTypeComponents(getTypeId(resultId)); }
267 Id getIdOperand(Id resultId, int idx) { return module.getInstruction(resultId)->getIdOperand(idx); }
269 bool isPointer(Id resultId) const { return isPointerType(getTypeId(resultId)); }
270 bool isScalar(Id resultId) const { return isScalarType(getTypeId(resultId)); }
271 bool isVector(Id resultId) const { return isVectorType(getTypeId(resultId)); }
272 bool isMatrix(Id resultId) const { return isMatrixType(getTypeId(resultId)); }
273 bool isCooperativeMatrix(Id resultId)const { return isCooperativeMatrixType(getTypeId(resultId)); }
274 bool isAggregate(Id resultId) const { return isAggregateType(getTypeId(resultId)); }
275 bool isSampledImage(Id resultId) const { return isSampledImageType(getTypeId(resultId)); }
306 bool isConstant(Id resultId) const { return isConstantOpCode(getOpCode(resultId)); }
307 bool isConstantScalar(Id resultId) const { return getOpCode(resultId) == OpConstant; }
308 bool isSpecConstant(Id resultId) const { return isSpecConstantOpCode(getOpCode(resultId)); }
309 unsigned int getConstantScalar(Id resultId) const
310 { return module.getInstruction(resultId)->getImmediateOperand(0); }
311 StorageClass getStorageClass(Id resultId) const { return getTypeStorageClass(getTypeId(resultId)); }
314 bool isVariable(Id resultId) const { return isVariableOpCode(getOpCode(resultId)); }
315 bool isGlobalStorage(Id resultId) const { return getStorageClass(resultId) != StorageClassFunction; }
316 bool isGlobalVariable(Id resultId) const { return isVariable(resultId) && isGlobalStorage(resultId); }
317 // See if a resultId is valid for use as an initializer.
318 bool isValidInitializer(Id resultId) const { return isConstant(resultId) || isGlobalVariable(resultId); }
334 int getNumColumns(Id resultId) const { return getTypeNumColumns(getTypeId(resultId)); }
340 int getNumRows(Id resultId) const { return getTypeNumRows(getTypeId(resultId)); }
347 Id getImageType(Id resultId) const
349 Id typeId = getTypeId(resultId);