Home
last modified time | relevance | path

Searched refs:getIdOperand (Results 1 – 5 of 5) sorted by relevance

/external/deqp-deps/glslang/SPIRV/
DSpvPostProcess.cpp87 StorageClass storageClass = getStorageClass(inst.getIdOperand(0)); in postProcessType()
203 Instruction *accessChain = module.getInstruction(inst.getIdOperand(0)); in postProcess()
205 Instruction *base = module.getInstruction(accessChain->getIdOperand(0)); in postProcess()
214 typeId = type->getIdOperand(1); in postProcess()
222 Instruction *idx = module.getInstruction(accessChain->getIdOperand(i)); in postProcess()
229 decoration.get()->getIdOperand(0) == typeId && in postProcess()
238 typeId = type->getIdOperand(c); in postProcess()
244 decoration.get()->getIdOperand(0) == typeId && in postProcess()
251 typeId = type->getIdOperand(0); in postProcess()
288 if (getTypeId(inst.getIdOperand(op)) != NoType) in postProcess()
[all …]
DInReadableOrder.cpp80 Id mergeId = mergeInst->getIdOperand(0); in visit()
84 Id continueId = mergeInst->getIdOperand(1); in visit()
DSpvBuilder.cpp182 type->getIdOperand(1) == pointee) in makePointer()
217 type->getIdOperand(1) == pointee) in makePointerFromForwardPointer()
329 if (type->getIdOperand(0) != type0 || in makeStructResultType()
330 type->getIdOperand(1) != type1) in makeStructResultType()
349 if (type->getIdOperand(0) == component && in makeVectorType()
375 if (type->getIdOperand(0) == column && in makeMatrixType()
402 if (type->getIdOperand(0) == element && in makeArrayType()
403 type->getIdOperand(1) == sizeId) in makeArrayType()
435 … if (type->getIdOperand(0) != returnType || (int)paramTypes.size() != type->getNumOperands() - 1) in makeFunctionType()
439 if (paramTypes[p] != type->getIdOperand(p + 1)) { in makeFunctionType()
[all …]
DspvIR.h147 Id getIdOperand(int op) const { in getIdOperand() function
409 …Instruction* param = new Instruction(firstParamId + p, typeInst->getIdOperand(p + 1), OpFunctionPa… in Function()
DSpvBuilder.h238 return isSampledImageType(typeId) ? module.getInstruction(typeId)->getIdOperand(0) : typeId; in getImageType()