Searched refs:isInt (Results 1 - 25 of 147) sorted by relevance

123456

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParserCommon.h17 return isInt<8>(Value) ||
18 (isUInt<16>(Value) && isInt<8>(static_cast<int16_t>(Value)));
22 return isInt<8>(Value) ||
23 (isUInt<32>(Value) && isInt<8>(static_cast<int32_t>(Value)));
27 return isInt<8>(Value);
31 return isInt<32>(Value);
35 return isUInt<8>(Value) || isInt<8>(Value);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiTargetTransformInfo.h56 if (isInt<16>(Imm.getSExtValue()))
58 if (isInt<21>(Imm.getZExtValue()))
60 if (isInt<32>(Imm.getSExtValue())) {
H A DLanaiISelDAGToDAG.cpp96 return isInt<21>(CN.getSExtValue()) && ((CN.getSExtValue() & 0x3) == 0);
129 if (isInt<16>(CN->getSExtValue())) {
142 if (isInt<10>(CN->getSExtValue())) {
173 if ((RiMode && isInt<16>(CN->getSExtValue())) ||
174 (!RiMode && isInt<10>(CN->getSExtValue()))) {
228 if (isInt<16>(CN->getSExtValue()))
H A DLanaiRegisterInfo.cpp165 if ((isSPLSOpcode(MI.getOpcode()) && !isInt<10>(Offset)) ||
166 !isInt<16>(Offset)) {
181 if (!isInt<16>(Offset)) {
H A DLanaiMemAluCombiner.cpp314 ((IsSpls && isInt<10>(Op2.getImm())) ||
315 (!IsSpls && isInt<16>(Op2.getImm())))) ||
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsAsmBackend.cpp81 if (!isInt<16>(Value)) {
91 if (!isInt<19>(Value)) {
130 if (!isInt<7>(Value)) {
140 if (!isInt<10>(Value)) {
150 if (!isInt<16>(Value)) {
159 if (!isInt<18>(Value)) {
172 if (!isInt<18>(Value)) {
181 if (!isInt<21>(Value)) {
190 if (!isInt<26>(Value)) {
199 if (!isInt<2
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstrInfo.cpp306 return isInt<18>(BrOffset);
322 return isInt<17>(BrOffset);
326 return isInt<11>(BrOffset);
330 return isInt<8>(BrOffset);
335 return isInt<28>(BrOffset);
359 return isInt<18>(BrOffset);
363 return isInt<23>(BrOffset);
367 return isInt<11>(BrOffset);
371 return isInt<8>(BrOffset);
375 return isInt<2
[all...]
H A DMips16InstrInfo.cpp232 if (isInt<16>(-Remainder))
258 if (isInt<16>(Remainder))
312 if (isInt<16>(Amount)) // need to change to addiu sp, ....and isInt<16>
485 return isInt<16>(Amount);
488 return isInt<16>(Amount);
489 return isInt<15>(Amount);
H A DMips16InstrInfo.h95 return ((offset & 7) == 0) && isInt<11>(offset);
H A DMipsSERegisterInfo.cpp216 if (OffsetBitSize < 16 && isInt<16>(Offset) &&
236 } else if (!isInt<16>(Offset)) {
H A DMips16FrameLowering.cpp156 return isInt<15>(MFI.getMaxCallFrameSize()) && !MFI.hasVarSizedObjects();
H A DMipsAnalyzeImmediate.cpp100 if (!isInt<16>(ShiftedImm))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/Utils/
H A DRISCVMatInt.cpp20 if (isInt<32>(Val)) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVRegisterInfo.cpp159 if (!isInt<32>(Offset)) {
167 if (!isInt<12>(Offset)) {
168 assert(isInt<32>(Offset) && "Int32 expected");
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCFrameLowering.cpp67 else if (isInt<12>(AbsAmount))
140 else if (isInt<12>(VarArgsBytes))
285 else if (isInt<12>(MoveAmount))
300 else if (isInt<12>(4 * StackSlotsUsedByFunclet))
327 else if (isInt<12>(VarArgsBytes))
457 else if (isInt<12>(NumBytes))
H A DARCISelDAGToDAG.cpp111 if (!isInt<9>(RHSC))
174 isInt<12>(CVal) ? ARC::MOV_rs12 : ARC::MOV_rlimm,
H A DARCBranchFinalize.cpp172 isInt<9>(MaxSize) ? replaceWithBRcc(P.first) : replaceWithCmpBcc(P.first);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerEmbeddedInt.h64 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFRegisterInfo.cpp99 if (!isInt<32>(Offset))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86WinAllocaExpander.cpp194 return isInt<8>(Amount) ? X86::SUB64ri8 : X86::SUB64ri32;
195 return isInt<8>(Amount) ? X86::SUB32ri8 : X86::SUB32ri;
H A DX86OptimizeLEAs.cpp357 if (!isInt<32>(AddrDispShiftTemp))
379 if (BestLEA != nullptr && !isInt<8>(AddrDispShiftTemp) &&
380 isInt<8>(AddrDispShift))
472 !isInt<32>(MI.getOperand(MemOpNo + X86::AddrDisp).getImm() +
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp73 bool isZero() const { return isInt() ? !IntVal : getFpVal().isZero(); }
76 bool isOne() const { return isInt() && IntVal == 1; }
77 bool isTwo() const { return isInt() && IntVal == 2; }
78 bool isMinusOne() const { return isInt() && IntVal == -1; }
79 bool isMinusTwo() const { return isInt() && IntVal == -2; }
100 bool isInt() const { return !IsFp; } function in class:__anon4559::FAddendCoef
231 if (isInt()) {
242 if (!isInt())
266 if (That.isInt())
274 if (isInt()
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp51 if (isInt<32>(Imm.getSExtValue()))
96 if (isInt<16>(Imm.getSExtValue()))
103 if (isInt<32>(Imm.getSExtValue()))
124 if (isInt<32>(Imm.getSExtValue()))
218 if (isInt<32>(Imm.getSExtValue()))
223 if ((Idx < 2) || (Imm.getBitWidth() <= 64 && isInt<64>(Imm.getSExtValue())))
228 if ((Idx < 4) || (Imm.getBitWidth() <= 64 && isInt<64>(Imm.getSExtValue())))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFAArch64.h318 assert(isInt<28>(PCRelVal) && "Branch target is out of range.");
327 assert(isInt<21>(PCRelVal) && "Branch target is out of range.");
336 assert(isInt<16>(PCRelVal) && "Branch target is out of range.");
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64CompressJumpTables.cpp121 if (!isInt<21>(MinOffset - Offset)) {

Completed in 121 milliseconds

123456