Searched refs:signext (Results 1 - 3 of 3) sorted by relevance
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_lower_to_hw_instr.cpp | 2213 bool signext = !instr->operands[3].constantEquals(0); in lower_to_hw_instr() local 2217 bld.sop2(signext ? aco_opcode::s_ashr_i32 : aco_opcode::s_lshr_b32, dst, in lower_to_hw_instr() 2219 } else if (offset == 0 && signext && (bits == 8 || bits == 16)) { in lower_to_hw_instr() 2223 bld.sop2(signext ? aco_opcode::s_bfe_i32 : aco_opcode::s_bfe_u32, dst, in lower_to_hw_instr() 2230 bld.vop2(signext ? aco_opcode::v_ashrrev_i32 : aco_opcode::v_lshrrev_b32, dst, in lower_to_hw_instr() 2233 bld.vop3(signext ? aco_opcode::v_bfe_i32 : aco_opcode::v_bfe_u32, dst, op, in lower_to_hw_instr() 2249 if (signext) { in lower_to_hw_instr() 2261 if (signext && sign_byte != 3 && sign_byte != 1) { in lower_to_hw_instr() 2272 sdwa.sel[0] = SubdwordSel(bits / 8, offset / 8, signext); in lower_to_hw_instr()
|
H A D | aco_ir.h | 493 is24bit_(false), signext(false) 605 op.signext = v >> 63; 803 return (signext && (data_.i & 0x80000000u) ? 0xffffffff00000000ull : 0ull) | data_.i; 907 uint8_t signext : 1; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
H A D | LLLexer.cpp | 674 KEYWORD(signext); in LexIdentifier()
|
Completed in 9 milliseconds