Home
last modified time | relevance | path

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/
DX86InstrExtension.td14 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/
DSparcCallingConv.td80 // IR: declare void f(int signext %i0, float %f3)
93 // - Annotate integer arguments with zeroext or signext attributes.
/third_party/mesa3d/src/amd/compiler/
Daco_lower_to_hw_instr.cpp2213 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()
Daco_ir.h493 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/
DAttributes.td152 def SExt : EnumAttr<"signext">;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DTargetOpcodes.def294 /// Generic signext load
303 /// Generic indexed signext load
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/IR/
DAttributes.gen97 .Case("signext", Attribute::SExt)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/IR/
DAttributes.gen97 .Case("signext", Attribute::SExt)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/IR/
DAttributes.gen97 .Case("signext", Attribute::SExt)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/IR/
DAttributes.gen97 .Case("signext", Attribute::SExt)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DAttributes.inc97 .Case("signext", Attribute::SExt)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Fuchsia/include/llvm/IR/
DAttributes.gen97 .Case("signext", Attribute::SExt)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/IR/
DAttributesCompatFunc.inc114 .Case("signext", Attribute::SExt)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/include/llvm/IR/
DAttributes.inc114 .Case("signext", Attribute::SExt)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLLexer.cpp674 KEYWORD(signext); in LexIdentifier()