Home
last modified time | relevance | path

Searched refs:SEXT (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/file/src/
H A Dsoftmagic.c109 #define SEXT(s,v,p) ((s) ? \ macro
1645 off = SEXT(sgn,8,hb[0]); in mget()
1651 off = SEXT(sgn,16,hs); in mget()
1656 off = SEXT(sgn,16,BE16(hb)); in mget()
1661 off = SEXT(sgn,16,LE16(hb)); in mget()
1667 off = SEXT(sgn,32,hl); in mget()
1673 off = SEXT(sgn,32,BE32(hb)); in mget()
1679 off = SEXT(sgn,32,LE32(hb)); in mget()
1684 off = SEXT(sgn,32,ME32(hb)); in mget()
1689 off = SEXT(sgn,64,BE64(hb)); in mget()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIDefines.h270 SEXT = 1 << 4, // Integer sign-extend modifier enumerator
H A DSIPeepholeSDWA.cpp380 Mods |= SISrcMods::SEXT; in getSrcMods()
H A DSIInstrInfo.cpp5001 Mods & SISrcMods::SEXT) { in verifyInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/
H A DXtensaInstrInfo.td901 // SEXT Instruction
904 def SEXT : RRR_Inst<0x00, 0x03, 0x02, (outs AR:$r), (ins AR:$s, imm7_22:$imm),
911 def : Pat<(i32 (sext_inreg AR:$s, i8)), (SEXT AR:$s, (i32 7))>;
912 def : Pat<(i32 (sext_inreg AR:$s, i16)), (SEXT AR:$s, (i32 15))>;
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.cpp928 if (InputModifiers & SISrcMods::SEXT) in printOperandAndIntInputMods()
931 if (InputModifiers & SISrcMods::SEXT) in printOperandAndIntInputMods()
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRExpandPseudoInsts.cpp2403 template <> bool AVRExpandPseudo::expand<AVR::SEXT>(Block &MBB, BlockIt MBBI) { in expand()
2651 EXPAND(AVR::SEXT); in expandMI()
H A DAVRInstrInfo.td1491 def SEXT : ExtensionPseudo<(outs DREGS:$dt), (ins GPR8:$src), "sext\t$dt, $src",
1654 def : Pat<(sext_inreg i16:$s, i8), (SEXT(i8(EXTRACT_SUBREG i16:$s, sub_lo)))>;
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp99 Operand |= Sext ? SISrcMods::SEXT : 0u; in getIntModifiersOperand()