Home
last modified time | relevance | path

Searched refs:isSImm (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/AsmParser/
H A DLoongArchAsmParser.cpp227 template <unsigned N, unsigned S = 0> bool isSImm() const { in isSImm() function in __anon571544da0111::LoongArchOperand
263 bool isSImm5() const { return isSImm<5>(); } in isSImm5()
267 bool isSImm8() const { return isSImm<8>(); } in isSImm8()
268 bool isSImm8lsl1() const { return isSImm<8, 1>(); } in isSImm8lsl1()
269 bool isSImm8lsl2() const { return isSImm<8, 2>(); } in isSImm8lsl2()
270 bool isSImm8lsl3() const { return isSImm<8, 3>(); } in isSImm8lsl3()
272 bool isSImm9lsl3() const { return isSImm<9, 3>(); } in isSImm9lsl3()
273 bool isSImm10() const { return isSImm<10>(); } in isSImm10()
274 bool isSImm10lsl2() const { return isSImm<10, 2>(); } in isSImm10lsl2()
275 bool isSImm11lsl1() const { return isSImm<11, 1>(); } in isSImm11lsl1()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/AsmParser/
H A DCSKYAsmParser.cpp259 template <unsigned num, unsigned shift = 0> bool isSImm() const { in isSImm() function
289 bool isSImm8() const { return isSImm<8>(); } in isSImm8()
307 bool isSImm16Shift1() { return isSImm<16, 1>(); } in isSImm16Shift1()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstrInfo.td611 let PredicateMethod = "isSImm<" # Bits # ">";
630 let PredicateMethod = "isSImm<" # Bits # ">";
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp793 template <int Width> bool isSImm() const { return isSImmScaled<Width, 1>(); } in isSImm() function in __anon730428320111::AArch64Operand
1673 return isSImm<9>() && !isUImm12Offset<Width / 8>(); in isSImm9OffsetFB()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp1314 template <unsigned Bits> bool isSImm() const { in isSImm() function in __anona2e40b320211::MipsOperand
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrFormats.td348 let PredicateMethod = "isSImm<" # width # ">";