Lines Matching refs:objectTy
125 auto &objectTy = getType(object); in EmitVariable() local
127 switch(objectTy.storageClass) in EmitVariable()
133 ASSERT(objectTy.opcode() == spv::OpTypePointer); in EmitVariable()
135 auto elementTy = getType(objectTy.element); in EmitVariable()
142 ASSERT(objectTy.opcode() == spv::OpTypePointer); in EmitVariable()
160 ASSERT(objectTy.opcode() == spv::OpTypePointer); in EmitVariable()
162 auto elementTy = getType(objectTy.element); in EmitVariable()
205 UNREACHABLE("Storage class %d", objectTy.storageClass); in EmitVariable()
217 switch(objectTy.storageClass) in EmitVariable()
223 bool interleavedByLane = IsStorageInterleavedByLane(objectTy.storageClass); in EmitVariable()
235 …n does not permit variables of storage class %d to have initializers", int(objectTy.storageClass)); in EmitVariable()