HomeSort by: relevance | last modified time | path
    Searched refs:isInt (Results 1 - 25 of 151) sorted by relevancy

1 2 3 4 5 6 7

  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/AsmParser/
X86AsmParserCommon.h 17 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);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiTargetTransformInfo.h 57 if (isInt<16>(Imm.getSExtValue()))
59 if (isInt<21>(Imm.getZExtValue()))
61 if (isInt<32>(Imm.getSExtValue())) {
LanaiISelDAGToDAG.cpp 96 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()))
LanaiRegisterInfo.cpp 165 if ((isSPLSOpcode(MI.getOpcode()) && !isInt<10>(Offset)) ||
166 !isInt<16>(Offset)) {
181 if (!isInt<16>(Offset)) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.cpp 81 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<26>(Value))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsInstrInfo.cpp 306 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<27>(BrOffset)
    [all...]
Mips16InstrInfo.cpp 232 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);
Mips16InstrInfo.h 95 return ((offset & 7) == 0) && isInt<11>(offset);
MipsSERegisterInfo.cpp 216 if (OffsetBitSize < 16 && isInt<16>(Offset) &&
236 } else if (!isInt<16>(Offset)) {
Mips16FrameLowering.cpp 156 return isInt<15>(MFI.getMaxCallFrameSize()) && !MFI.hasVarSizedObjects();
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFTargetTransformInfo.h 41 if (Imm.getBitWidth() <= 64 && isInt<32>(Imm.getSExtValue()))
BPFRegisterInfo.cpp 99 if (!isInt<32>(Offset))
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/MCTargetDesc/
M68kAsmBackend.cpp 172 if (!isInt<16>(Value)) {
182 return Value == 0 || !isInt<8>(Value);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
ARCFrameLowering.cpp 67 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))
ARCISelDAGToDAG.cpp 111 if (!isInt<9>(RHSC))
174 isInt<12>(CVal) ? ARC::MOV_rs12 : ARC::MOV_rlimm,
ARCBranchFinalize.cpp 172 isInt<9>(MaxSize) ? replaceWithBRcc(P.first) : replaceWithCmpBcc(P.first);
  /src/external/apache2/llvm/dist/llvm/lib/Target/VE/
VEISelDAGToDAG.cpp 231 if (isInt<32>(CN->getSExtValue())) {
262 if (isInt<32>(CN->getSExtValue())) {
314 if (isInt<32>(CN->getSExtValue())) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 64 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/
RISCVMatInt.cpp 18 if (isInt<32>(Val)) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86WinAllocaExpander.cpp 194 return isInt<8>(Amount) ? X86::SUB64ri8 : X86::SUB64ri32;
195 return isInt<8>(Amount) ? X86::SUB32ri8 : X86::SUB32ri;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 74 bool isZero() const { return isInt() ? !IntVal : getFpVal().isZero(); }
77 bool isOne() const { return isInt() && IntVal == 1; }
78 bool isTwo() const { return isInt() && IntVal == 2; }
79 bool isMinusOne() const { return isInt() && IntVal == -1; }
80 bool isMinusTwo() const { return isInt() && IntVal == -2; }
101 bool isInt() const { return !IsFp; }
232 if (isInt()) {
243 if (!isInt())
267 if (That.isInt())
275 if (isInt() == That.isInt())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.cpp 51 if (isInt<32>(Imm.getSExtValue()))
97 if (isInt<16>(Imm.getSExtValue()))
104 if (isInt<32>(Imm.getSExtValue()))
125 if (isInt<32>(Imm.getSExtValue()))
220 if (isInt<32>(Imm.getSExtValue()))
225 if ((Idx < 2) || (Imm.getBitWidth() <= 64 && isInt<64>(Imm.getSExtValue())))
230 if ((Idx < 4) || (Imm.getBitWidth() <= 64 && isInt<64>(Imm.getSExtValue())))
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFAArch64.h 318 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.");
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Statepoint.h 98 assert(isInt<32>(NumPatchBytes) && "should fit in 32 bits!");
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64CompressJumpTables.cpp 138 if (!isInt<21>(MinOffset - Offset)) {

Completed in 174 milliseconds

1 2 3 4 5 6 7