Home
last modified time | relevance | path

Searched refs:Op (Results 1 - 25 of 1194) sorted by relevance

12345678910>>...48

/third_party/spirv-tools/source/
H A Dopcode.cpp67 uint32_t spvOpcodeMake(uint16_t wordCount, spv::Op opcode) { in spvOpcodeMake()
128 const spv::Op opcode, in spvOpcodeTableValueLookup()
169 void spvInstructionCopy(const uint32_t* words, const spv::Op opcode, in spvInstructionCopy()
180 assert(opcode == static_cast<spv::Op>(thisOpcode) && in spvInstructionCopy()
189 spv_opcode_desc_t needle = {"", static_cast<spv::Op>(opcode), in spvOpcodeString()
199 if (it != end && it->opcode == spv::Op(opcode)) { in spvOpcodeString()
207 const char* spvOpcodeString(const spv::Op opcode) { in spvOpcodeString()
211 int32_t spvOpcodeIsScalarType(const spv::Op opcode) { in spvOpcodeIsScalarType()
213 case spv::Op::OpTypeInt: in spvOpcodeIsScalarType()
214 case spv::Op in spvOpcodeIsScalarType()
[all...]
H A Dopcode.h32 uint32_t spvOpcodeMake(uint16_t word_count, spv::Op opcode);
48 const spv::Op opcode,
55 void spvInstructionCopy(const uint32_t* words, const spv::Op opcode,
61 int32_t spvOpcodeIsScalarType(const spv::Op opcode);
65 int32_t spvOpcodeIsSpecConstant(const spv::Op opcode);
69 int32_t spvOpcodeIsConstant(const spv::Op opcode);
72 bool spvOpcodeIsConstantOrUndef(const spv::Op opcode);
75 bool spvOpcodeIsScalarSpecConstant(const spv::Op opcode);
79 int32_t spvOpcodeIsComposite(const spv::Op opcode);
83 int32_t spvOpcodeReturnsLogicalPointer(const spv::Op opcod
[all...]
/third_party/spirv-tools/source/fuzz/
H A Dtransformation_move_instruction_down.cpp29 assert(op_ext_inst.opcode() == spv::Op::OpExtInst && "Wrong opcode"); in GetExtensionSet()
145 case spv::Op::OpNop: in IsSimpleInstruction()
146 case spv::Op::OpUndef: in IsSimpleInstruction()
147 case spv::Op::OpAccessChain: in IsSimpleInstruction()
148 case spv::Op::OpInBoundsAccessChain: in IsSimpleInstruction()
152 case spv::Op::OpVectorExtractDynamic: in IsSimpleInstruction()
153 case spv::Op::OpVectorInsertDynamic: in IsSimpleInstruction()
154 case spv::Op::OpVectorShuffle: in IsSimpleInstruction()
155 case spv::Op::OpCompositeConstruct: in IsSimpleInstruction()
156 case spv::Op in IsSimpleInstruction()
[all...]
H A Dtransformation_add_relaxed_decoration.cpp67 bool TransformationAddRelaxedDecoration::IsNumeric(spv::Op opcode) { in IsNumeric()
69 case spv::Op::OpConvertFToU: in IsNumeric()
70 case spv::Op::OpConvertFToS: in IsNumeric()
71 case spv::Op::OpConvertSToF: in IsNumeric()
72 case spv::Op::OpConvertUToF: in IsNumeric()
73 case spv::Op::OpUConvert: in IsNumeric()
74 case spv::Op::OpSConvert: in IsNumeric()
75 case spv::Op::OpFConvert: in IsNumeric()
76 case spv::Op::OpConvertPtrToU: in IsNumeric()
77 case spv::Op in IsNumeric()
[all...]
H A Dtransformation_invert_comparison_operator.cpp50 assert(fuzzerutil::CanInsertOpcodeBeforeInstruction(spv::Op::OpLogicalNot, in IsApplicable()
69 ir_context, spv::Op::OpLogicalNot, inst->type_id(), inst->result_id(), in Apply()
86 spv::Op opcode) { in IsInversionSupported()
88 case spv::Op::OpSGreaterThan: in IsInversionSupported()
89 case spv::Op::OpSGreaterThanEqual: in IsInversionSupported()
90 case spv::Op::OpSLessThan: in IsInversionSupported()
91 case spv::Op::OpSLessThanEqual: in IsInversionSupported()
92 case spv::Op::OpUGreaterThan: in IsInversionSupported()
93 case spv::Op::OpUGreaterThanEqual: in IsInversionSupported()
94 case spv::Op in IsInversionSupported()
[all...]
H A Dtransformation_propagate_instruction_up.cpp26 assert(phi_inst.opcode() == spv::Op::OpPhi && "|phi_inst| is not an OpPhi"); in GetResultIdFromLabelId()
69 dependency->opcode() != spv::Op::OpPhi) { in HasValidDependencies()
176 assert(dependency_inst->opcode() == spv::Op::OpPhi && in Apply()
194 MakeUnique<opt::Instruction>(ir_context, spv::Op::OpPhi, inst->type_id(), in Apply()
213 bool TransformationPropagateInstructionUp::IsOpcodeSupported(spv::Op opcode) { in IsOpcodeSupported()
219 case spv::Op::OpUndef: in IsOpcodeSupported()
220 case spv::Op::OpAccessChain: in IsOpcodeSupported()
221 case spv::Op::OpInBoundsAccessChain: in IsOpcodeSupported()
222 case spv::Op::OpArrayLength: in IsOpcodeSupported()
223 case spv::Op in IsOpcodeSupported()
[all...]
H A Dtransformation_add_no_contraction_decoration.cpp57 bool TransformationAddNoContractionDecoration::IsArithmetic(spv::Op opcode) { in IsArithmetic()
59 case spv::Op::OpSNegate: in IsArithmetic()
60 case spv::Op::OpFNegate: in IsArithmetic()
61 case spv::Op::OpIAdd: in IsArithmetic()
62 case spv::Op::OpFAdd: in IsArithmetic()
63 case spv::Op::OpISub: in IsArithmetic()
64 case spv::Op::OpFSub: in IsArithmetic()
65 case spv::Op::OpIMul: in IsArithmetic()
66 case spv::Op::OpFMul: in IsArithmetic()
67 case spv::Op in IsArithmetic()
[all...]
H A Dtransformation_propagate_instruction_down.cpp147 ir_context, spv::Op::OpPhi, inst_to_propagate->type_id(), in Apply()
237 bool TransformationPropagateInstructionDown::IsOpcodeSupported(spv::Op opcode) { in IsOpcodeSupported()
243 case spv::Op::OpUndef: in IsOpcodeSupported()
244 case spv::Op::OpAccessChain: in IsOpcodeSupported()
245 case spv::Op::OpInBoundsAccessChain: in IsOpcodeSupported()
246 case spv::Op::OpArrayLength: in IsOpcodeSupported()
247 case spv::Op::OpVectorExtractDynamic: in IsOpcodeSupported()
248 case spv::Op::OpVectorInsertDynamic: in IsOpcodeSupported()
249 case spv::Op::OpVectorShuffle: in IsOpcodeSupported()
250 case spv::Op in IsOpcodeSupported()
[all...]
H A Dfuzzer_util.cpp52 if (inst.opcode() == spv::Op::OpConstant && inst.type_id() == type_id && in MaybeGetOpConstant()
115 if (inst->opcode() != spv::Op::OpLabel) { in MaybeFindBlock()
141 if (inst.opcode() != spv::Op::OpPhi) { in PhiIdsOkForNewEdge()
192 assert(bb_from->terminator()->opcode() == spv::Op::OpBranch && in CreateUnreachableEdgeInstruction()
198 (condition_inst->opcode() == spv::Op::OpConstantTrue || in CreateUnreachableEdgeInstruction()
199 condition_inst->opcode() == spv::Op::OpConstantFalse) && in CreateUnreachableEdgeInstruction()
202 auto condition_value = condition_inst->opcode() == spv::Op::OpConstantTrue; in CreateUnreachableEdgeInstruction()
209 ir_context, spv::Op::OpBranchConditional, 0, 0, in CreateUnreachableEdgeInstruction()
231 if (inst.opcode() != spv::Op::OpPhi) { in AddUnreachableEdgeAndUpdateOpPhis()
288 spv::Op opcod in CanInsertOpcodeBeforeInstruction()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFExpression.cpp27 typedef DWARFExpression::Operation Op; in getDescriptions() typedef
28 typedef Op::Description Desc; in getDescriptions()
31 Descriptions[DW_OP_addr] = Desc(Op::Dwarf2, Op::SizeAddr); in getDescriptions()
32 Descriptions[DW_OP_deref] = Desc(Op::Dwarf2); in getDescriptions()
33 Descriptions[DW_OP_const1u] = Desc(Op::Dwarf2, Op::Size1); in getDescriptions()
34 Descriptions[DW_OP_const1s] = Desc(Op::Dwarf2, Op::SignedSize1); in getDescriptions()
35 Descriptions[DW_OP_const2u] = Desc(Op in getDescriptions()
[all...]
/third_party/spirv-tools/source/opt/
H A Drelax_float_ops_pass.cpp28 (inst->opcode() == spv::Op::OpExtInst && in IsRelaxable()
49 if (r_inst->opcode() == spv::Op::OpDecorate && in IsRelaxed()
92 spv::Op::OpLoad, in Initialize()
93 spv::Op::OpPhi, in Initialize()
94 spv::Op::OpVectorExtractDynamic, in Initialize()
95 spv::Op::OpVectorInsertDynamic, in Initialize()
96 spv::Op::OpVectorShuffle, in Initialize()
97 spv::Op::OpCompositeExtract, in Initialize()
98 spv::Op::OpCompositeConstruct, in Initialize()
99 spv::Op in Initialize()
[all...]
H A Dfold.cpp44 uint32_t InstructionFolder::UnaryOperate(spv::Op opcode, in UnaryOperate()
48 case spv::Op::OpSNegate: { in UnaryOperate()
55 case spv::Op::OpNot: in UnaryOperate()
57 case spv::Op::OpLogicalNot: in UnaryOperate()
59 case spv::Op::OpUConvert: in UnaryOperate()
61 case spv::Op::OpSConvert: in UnaryOperate()
70 uint32_t InstructionFolder::BinaryOperate(spv::Op opcode, uint32_t a, in BinaryOperate()
74 case spv::Op::OpIAdd: in BinaryOperate()
76 case spv::Op::OpISub: in BinaryOperate()
78 case spv::Op in BinaryOperate()
[all...]
H A Dconvert_to_half_pass.cpp30 (inst->opcode() == spv::Op::OpExtInst && in IsArithmetic()
46 return (ty_inst->opcode() == spv::Op::OpTypeStruct); in IsStruct()
52 if (r_inst->opcode() == spv::Op::OpDecorate && in IsDecoratedRelaxed()
95 if (ty_inst->opcode() == spv::Op::OpTypeMatrix) in EquivFloatTypeId()
98 else if (ty_inst->opcode() == spv::Op::OpTypeVector) in EquivFloatTypeId()
100 else // spv::Op::OpTypeFloat in EquivFloatTypeId()
115 if (val_inst->opcode() == spv::Op::OpUndef) in GenConvert()
116 cvt_inst = builder.AddNullaryOp(nty_id, spv::Op::OpUndef); in GenConvert()
118 cvt_inst = builder.AddUnaryOp(nty_id, spv::Op::OpFConvert, *val_idp); in GenConvert()
123 if (inst->opcode() != spv::Op in MatConvertCleanup()
[all...]
H A Dir_context.cpp198 if (inst->opcode() == spv::Op::OpCapability || in KillInst()
199 inst->opcode() == spv::Op::OpExtension) { in KillInst()
454 if (id_to_name_ && (inst->opcode() == spv::Op::OpName || in AnalyzeUses()
455 inst->opcode() == spv::Op::OpMemberName)) { in AnalyzeUses()
483 if (opcode == spv::Op::OpFunction) { in KillOperandFromDebugInstructions()
497 if (opcode == spv::Op::OpVariable || IsConstantInst(opcode)) { in KillOperandFromDebugInstructions()
516 {(uint32_t)spv::Op::OpNop, in AddCombinatorsForCapability()
517 (uint32_t)spv::Op::OpUndef, in AddCombinatorsForCapability()
518 (uint32_t)spv::Op::OpConstant, in AddCombinatorsForCapability()
519 (uint32_t)spv::Op in AddCombinatorsForCapability()
[all...]
H A Dinstruction.cpp51 opcode_(spv::Op::OpNop), in Instruction()
57 Instruction::Instruction(IRContext* c, spv::Op op) in Instruction()
70 opcode_(static_cast<spv::Op>(inst.opcode)), in Instruction()
84 "Op(No)Line attaching to Op(No)Line found"); in Instruction()
91 opcode_(static_cast<spv::Op>(inst.opcode)), in Instruction()
105 Instruction::Instruction(IRContext* c, spv::Op op, uint32_t ty_id, in Instruction()
191 if (opcode_ == spv::Op::OpBranchConditional && in HasBranchWeights()
220 if (address_def->opcode() == spv::Op::OpVariable) { in IsReadOnlyLoad()
226 if (address_def->opcode() == spv::Op in IsReadOnlyLoad()
[all...]
H A Dreflect.h28 inline bool IsDebug1Inst(spv::Op opcode) { in IsDebug1Inst()
29 return (opcode >= spv::Op::OpSourceContinued && in IsDebug1Inst()
30 opcode <= spv::Op::OpSourceExtension) || in IsDebug1Inst()
31 opcode == spv::Op::OpString; in IsDebug1Inst()
33 inline bool IsDebug2Inst(spv::Op opcode) { in IsDebug2Inst()
34 return opcode == spv::Op::OpName || opcode == spv::Op::OpMemberName; in IsDebug2Inst()
36 inline bool IsDebug3Inst(spv::Op opcode) { in IsDebug3Inst()
37 return opcode == spv::Op::OpModuleProcessed; in IsDebug3Inst()
39 inline bool IsOpLineInst(spv::Op opcod in IsDebug3Inst()
[all...]
H A Deliminate_dead_members_pass.cpp43 if (inst.opcode() == spv::Op::OpSpecConstantOp) { in FindLiveMembers()
44 switch (spv::Op(inst.GetSingleWordInOperand(kSpecConstOpOpcodeIdx))) { in FindLiveMembers()
45 case spv::Op::OpCompositeExtract: in FindLiveMembers()
48 case spv::Op::OpCompositeInsert: in FindLiveMembers()
51 case spv::Op::OpAccessChain: in FindLiveMembers()
52 case spv::Op::OpInBoundsAccessChain: in FindLiveMembers()
53 case spv::Op::OpPtrAccessChain: in FindLiveMembers()
54 case spv::Op::OpInBoundsPtrAccessChain: in FindLiveMembers()
60 } else if (inst.opcode() == spv::Op::OpVariable) { in FindLiveMembers()
88 case spv::Op in FindLiveMembers()
[all...]
H A Dfix_storage_class.cpp29 if (inst->opcode() == spv::Op::OpVariable) { in Process()
60 if (inst->opcode() == spv::Op::OpPhi) { in PropagateStorageClass()
74 if (inst->opcode() == spv::Op::OpPhi) { in PropagateStorageClass()
81 case spv::Op::OpAccessChain: in PropagateStorageClass()
82 case spv::Op::OpPtrAccessChain: in PropagateStorageClass()
83 case spv::Op::OpInBoundsAccessChain: in PropagateStorageClass()
84 case spv::Op::OpCopyObject: in PropagateStorageClass()
85 case spv::Op::OpPhi: in PropagateStorageClass()
86 case spv::Op::OpSelect: in PropagateStorageClass()
89 case spv::Op in PropagateStorageClass()
[all...]
/third_party/spirv-tools/test/
H A Dtext_to_binary.extension_test.cpp90 MakeInstruction(spv::Op::OpExtInstImport, {1}, in TEST_F()
92 MakeInstruction(spv::Op::OpExtInstImport, {2}, in TEST_F()
95 spv::Op::OpExtInst, in TEST_F()
97 MakeInstruction(spv::Op::OpExtInst, in TEST_F()
150 MakeInstruction(spv::Op::OpCapability, in TEST_F()
153 MakeInstruction(spv::Op::OpSubgroupBallotKHR, {1, 2, 3})}, in TEST_F()
155 MakeInstruction(spv::Op::OpSubgroupFirstInvocationKHR, {1, 2, 3})}, in TEST_F()
157 MakeInstruction(spv::Op::OpDecorate, in TEST_F()
161 MakeInstruction(spv::Op::OpDecorate, in TEST_F()
165 MakeInstruction(spv::Op in TEST_F()
[all...]
H A Dtext_to_binary.constant_test.cpp44 Eq(MakeInstruction(spv::Op::OpConstantSampler, in TEST_P()
76 Eq(MakeInstruction(spv::Op::OpConstantSampler, in TEST_P()
122 Concatenate({MakeInstruction(spv::Op::OpTypeInt, {1, 16, 0}),
123 MakeInstruction(spv::Op::OpConstant, {1, 2, 0x1234})})},
125 Concatenate({MakeInstruction(spv::Op::OpTypeInt, {1, 16, 0}),
126 MakeInstruction(spv::Op::OpConstant, {1, 2, 0x8000})})},
128 Concatenate({MakeInstruction(spv::Op::OpTypeInt, {1, 16, 0}),
129 MakeInstruction(spv::Op::OpConstant, {1, 2, 0})})},
131 Concatenate({MakeInstruction(spv::Op::OpTypeInt, {1, 16, 0}),
132 MakeInstruction(spv::Op
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DMachineOperand.h257 static void printTargetFlags(raw_ostream& OS, const MachineOperand &Op);
762 MachineOperand Op(MachineOperand::MO_Immediate);
763 Op.setImm(Val);
764 return Op;
768 MachineOperand Op(MachineOperand::MO_CImmediate);
769 Op.Contents.CI = CI;
770 return Op;
774 MachineOperand Op(MachineOperand::MO_FPImmediate);
775 Op.Contents.CFP = CFP;
776 return Op;
[all...]
/third_party/spirv-tools/source/val/
H A Dvalidate_logicals.cpp27 const spv::Op opcode = inst->opcode(); in LogicalsPass()
31 case spv::Op::OpAny: in LogicalsPass()
32 case spv::Op::OpAll: { in LogicalsPass()
47 case spv::Op::OpIsNan: in LogicalsPass()
48 case spv::Op::OpIsInf: in LogicalsPass()
49 case spv::Op::OpIsFinite: in LogicalsPass()
50 case spv::Op::OpIsNormal: in LogicalsPass()
51 case spv::Op::OpSignBitSet: { in LogicalsPass()
73 case spv::Op::OpFOrdEqual: in LogicalsPass()
74 case spv::Op in LogicalsPass()
[all...]
H A Dvalidate_atomics.cpp49 bool HasReturnType(spv::Op opcode) { in HasReturnType()
51 case spv::Op::OpAtomicStore: in HasReturnType()
52 case spv::Op::OpAtomicFlagClear: in HasReturnType()
60 bool HasOnlyFloatReturnType(spv::Op opcode) { in HasOnlyFloatReturnType()
62 case spv::Op::OpAtomicFAddEXT: in HasOnlyFloatReturnType()
63 case spv::Op::OpAtomicFMinEXT: in HasOnlyFloatReturnType()
64 case spv::Op::OpAtomicFMaxEXT: in HasOnlyFloatReturnType()
72 bool HasOnlyIntReturnType(spv::Op opcode) { in HasOnlyIntReturnType()
74 case spv::Op::OpAtomicCompareExchange: in HasOnlyIntReturnType()
75 case spv::Op in HasOnlyIntReturnType()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp409 SDValue MipsSETargetLowering::lowerSELECT(SDValue Op, SelectionDAG &DAG) const { in lowerSELECT() argument
411 return MipsTargetLowering::LowerOperation(Op, DAG); in lowerSELECT()
413 EVT ResTy = Op->getValueType(0); in lowerSELECT()
414 SDLoc DL(Op); in lowerSELECT()
419 SDValue Tmp = DAG.getNode(MipsISD::MTC1_D64, DL, MVT::f64, Op->getOperand(0)); in lowerSELECT()
420 return DAG.getNode(MipsISD::FSELECT, DL, ResTy, Tmp, Op->getOperand(1), in lowerSELECT()
421 Op->getOperand(2)); in lowerSELECT()
449 SDValue MipsSETargetLowering::LowerOperation(SDValue Op, in LowerOperation() argument
451 switch(Op.getOpcode()) { in LowerOperation()
452 case ISD::LOAD: return lowerLOAD(Op, DA in LowerOperation()
1174 lowerLOAD(SDValue Op, SelectionDAG &DAG) const lowerLOAD() argument
1203 lowerSTORE(SDValue Op, SelectionDAG &DAG) const lowerSTORE() argument
1233 lowerBITCAST(SDValue Op, SelectionDAG &DAG) const lowerBITCAST() argument
1263 lowerMulDiv(SDValue Op, unsigned NewOpc, bool HasLo, bool HasHi, SelectionDAG &DAG) const lowerMulDiv() argument
1295 extractLOHI(SDValue Op, const SDLoc &DL, SelectionDAG &DAG) extractLOHI() argument
1313 lowerDSPIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) lowerDSPIntr() argument
1362 lowerMSACopyIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc) lowerMSACopyIntr() argument
1375 lowerMSASplatZExt(SDValue Op, unsigned OpNr, SelectionDAG &DAG) lowerMSASplatZExt() argument
1419 lowerMSASplatImm(SDValue Op, unsigned ImmOp, SelectionDAG &DAG, bool IsSigned = false) lowerMSASplatImm() argument
1464 lowerMSABinaryBitImmIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc, SDValue Imm, bool BigEndian) lowerMSABinaryBitImmIntr() argument
1508 truncateVecElts(SDValue Op, SelectionDAG &DAG) truncateVecElts() argument
1521 lowerMSABitClear(SDValue Op, SelectionDAG &DAG) lowerMSABitClear() argument
1531 lowerMSABitClearImm(SDValue Op, SelectionDAG &DAG) lowerMSABitClearImm() argument
1541 lowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const lowerINTRINSIC_WO_CHAIN() argument
2294 lowerMSALoadIntr(SDValue Op, SelectionDAG &DAG, unsigned Intr, const MipsSubtarget &Subtarget) lowerMSALoadIntr() argument
2314 lowerINTRINSIC_W_CHAIN(SDValue Op, SelectionDAG &DAG) const lowerINTRINSIC_W_CHAIN() argument
2368 lowerMSAStoreIntr(SDValue Op, SelectionDAG &DAG, unsigned Intr, const MipsSubtarget &Subtarget) lowerMSAStoreIntr() argument
2389 lowerINTRINSIC_VOID(SDValue Op, SelectionDAG &DAG) const lowerINTRINSIC_VOID() argument
2411 lowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const lowerEXTRACT_VECTOR_ELT() argument
2430 isConstantOrUndef(const SDValue Op) isConstantOrUndef() argument
2440 isConstantOrUndefBUILD_VECTOR(const BuildVectorSDNode *Op) isConstantOrUndefBUILD_VECTOR() argument
2460 lowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const lowerBUILD_VECTOR() argument
2554 lowerVECTOR_SHUFFLE_SHF(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) lowerVECTOR_SHUFFLE_SHF() argument
2635 isVECTOR_SHUFFLE_SPLATI(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) isVECTOR_SHUFFLE_SPLATI() argument
2667 lowerVECTOR_SHUFFLE_ILVEV(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) lowerVECTOR_SHUFFLE_ILVEV() argument
2713 lowerVECTOR_SHUFFLE_ILVOD(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) lowerVECTOR_SHUFFLE_ILVOD() argument
2760 lowerVECTOR_SHUFFLE_ILVR(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) lowerVECTOR_SHUFFLE_ILVR() argument
2807 lowerVECTOR_SHUFFLE_ILVL(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) lowerVECTOR_SHUFFLE_ILVL() argument
2855 lowerVECTOR_SHUFFLE_PCKEV(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) lowerVECTOR_SHUFFLE_PCKEV() argument
2898 lowerVECTOR_SHUFFLE_PCKOD(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) lowerVECTOR_SHUFFLE_PCKOD() argument
2934 lowerVECTOR_SHUFFLE_VSHF(SDValue Op, EVT ResTy, SmallVector<int, 16> Indices, SelectionDAG &DAG) lowerVECTOR_SHUFFLE_VSHF() argument
2985 lowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const lowerVECTOR_SHUFFLE() argument
[all...]
/third_party/spirv-tools/test/fuzz/
H A Dtransformation_move_instruction_down_test.cpp76 MakeInstructionDescriptor(30, spv::Op::OpNop, 0)) in TEST()
81 MakeInstructionDescriptor(5, spv::Op::OpLabel, 0)) in TEST()
84 MakeInstructionDescriptor(12, spv::Op::OpVariable, 0)) in TEST()
87 MakeInstructionDescriptor(42, spv::Op::OpFunctionCall, 0)) in TEST()
93 MakeInstructionDescriptor(15, spv::Op::OpBranchConditional, 0)) in TEST()
99 MakeInstructionDescriptor(21, spv::Op::OpIAdd, 0)) in TEST()
104 MakeInstructionDescriptor(15, spv::Op::OpIMul, 0)) in TEST()
109 MakeInstructionDescriptor(10, spv::Op::OpIAdd, 0)) in TEST()
114 MakeInstructionDescriptor(11, spv::Op::OpISub, 0)); in TEST()
124 MakeInstructionDescriptor(22, spv::Op in TEST()
[all...]

Completed in 17 milliseconds

12345678910>>...48