Searched refs:signext (Results 1 – 15 of 15) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86InstrExtension.td | 14 let Defs = [AX], Uses = [AL] in // AX = signext(AL) 17 let Defs = [EAX], Uses = [AX] in // EAX = signext(AX) 20 let Defs = [RAX], Uses = [EAX] in // RAX = signext(EAX) 26 let Defs = [AX,DX], Uses = [AX] in // DX:AX = signext(AX) 29 let Defs = [EAX,EDX], Uses = [EAX] in // EDX:EAX = signext(EAX) 32 let Defs = [RAX,RDX], Uses = [RAX] in // RDX:RAX = signext(RAX)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
D | SparcCallingConv.td | 80 // IR: declare void f(int signext %i0, float %f3) 93 // - Annotate integer arguments with zeroext or signext attributes.
|
/third_party/mesa3d/src/amd/compiler/ |
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()
|
D | aco_ir.h | 493 is24bit_(false), signext(false) 605 op.signext = v >> 63; in c64() 803 return (signext && (data_.i & 0x80000000u) ? 0xffffffff00000000ull : 0ull) | data_.i; in constantValue64() 907 uint8_t signext : 1; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Attributes.td | 152 def SExt : EnumAttr<"signext">;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | TargetOpcodes.def | 294 /// Generic signext load 303 /// Generic indexed signext load
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/IR/ |
D | Attributes.gen | 97 .Case("signext", Attribute::SExt)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/IR/ |
D | Attributes.gen | 97 .Case("signext", Attribute::SExt)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/IR/ |
D | Attributes.gen | 97 .Case("signext", Attribute::SExt)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/IR/ |
D | Attributes.gen | 97 .Case("signext", Attribute::SExt)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Attributes.inc | 97 .Case("signext", Attribute::SExt)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Fuchsia/include/llvm/IR/ |
D | Attributes.gen | 97 .Case("signext", Attribute::SExt)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/IR/ |
D | AttributesCompatFunc.inc | 114 .Case("signext", Attribute::SExt)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/include/llvm/IR/ |
D | Attributes.inc | 114 .Case("signext", Attribute::SExt)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
D | LLLexer.cpp | 674 KEYWORD(signext); in LexIdentifier()
|