Searched refs:VOP3P (Results 1 - 9 of 9) sorted by relevance
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_opcodes.py | 71 VOP3P = 19 variable in Format 157 elif self == Format.VOP3P: 973 opcode(name, -1, code, code, Format.VOP3P, InstrClass.Valu32, modifiers, modifiers) 974 opcode("v_dot2_i32_i16", -1, 0x26, 0x14, Format.VOP3P, InstrClass.Valu32) 975 opcode("v_dot2_u32_u16", -1, 0x27, 0x15, Format.VOP3P, InstrClass.Valu32) 976 opcode("v_dot4_i32_i8", -1, 0x28, 0x16, Format.VOP3P, InstrClass.Valu32) 977 opcode("v_dot4_u32_u8", -1, 0x29, 0x17, Format.VOP3P, InstrClass.Valu32)
|
H A D | aco_opt_value_numbering.cpp | 228 case Format::VOP3P: { in operator ()()
|
H A D | aco_ir.h | 97 VOP3P = 19, member in aco::Format 1247 constexpr bool isVOP3P() const noexcept { return format == Format::VOP3P; }
|
H A D | aco_print_ir.cpp | 553 case Format::VOP3P: { in print_instr_format_specific()
|
H A D | aco_optimizer.cpp | 3104 !instr->isSDWA() && instr->format != Format::VOP3P) 3570 create_instruction<VOP3P_instruction>(mad, Format::VOP3P, 3, 1)}; in combine_vop3p() 3632 create_instruction<VOP3P_instruction>(aco_opcode::v_fma_mix_f32, Format::VOP3P, 3, 1)}; in to_mad_mix() 3721 /* Conversion to VOP3P will add inline constant operands, but that shouldn't affect in combine_mad_mix() 4073 create_instruction<VOP3P_instruction>(mad_op, Format::VOP3P, 3, 1)}; in combine_instruction() 4769 if (instr->isVALU() && i > 0 && instr->format != Format::VOP3P) in apply_literals()
|
H A D | aco_register_allocation.cpp | 512 if (instr->format == Format::VOP3P) in get_subdword_operand_stride()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | SIDefines.h | 38 VOP3P = 1 << 12, 86 // Is a packed VOP3P instruction.
|
H A D | SIInstrInfo.h | 567 return MI.getDesc().TSFlags & SIInstrFlags::VOP3P; in isVOP3P() 571 return get(Opcode).TSFlags & SIInstrFlags::VOP3P; in isVOP3P()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/AsmParser/ |
H A D | AMDGPUAsmParser.cpp | 2821 SIInstrFlags::VOP3 | SIInstrFlags::VOP3P | in validateConstantBusLimitations() 3260 if ((Desc.TSFlags & (VOP1 | VOP2 | VOP3 | VOPC | VOP3P | SIInstrFlags::SDWA)) == 0) in validateLdsDirect() 3398 if (!(Desc.TSFlags & (SIInstrFlags::VOP3 | SIInstrFlags::VOP3P))) in validateVOP3Literal()
|
Completed in 32 milliseconds