HomeSort by relevance Sort by last modified time
    Searched defs:isImm (Results 1 - 11 of 11) sorted by null

  /external/llvm/include/llvm/MC/
MCInst.h 57 bool isImm() const { return Kind == kImmediate; }
75 assert(isImm() && "This is not an immediate");
79 assert(isImm() && "This is not an immediate");
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 225 /// isImm - Tests if this is a MO_Immediate operand.
226 bool isImm() const { return OpKind == MO_Immediate; }
403 assert(isImm() && "Wrong MachineOperand accessor");
489 assert(isImm() && "Wrong MachineOperand mutator");
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCCodeEmitter.cpp 435 } else if (MO.isImm()) {
481 if (MO.isImm()) return MO.getImm();
572 if (MCOp1.isImm() && MCOp2.isReg() &&
    [all...]
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 311 bool isImm() const { return Kind == K_Imm; }
316 int64_t getImm() const { assert(isImm()); return Imm; }
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 351 bool isImm() const { return Kind == Immediate || Kind == Expression; }
    [all...]
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 191 virtual bool isImm() const LLVM_OVERRIDE {
194 bool isImm(int64_t MinValue, int64_t MaxValue) const {
280 bool isU4Imm() const { return isImm(0, 15); }
281 bool isU6Imm() const { return isImm(0, 63); }
282 bool isU8Imm() const { return isImm(0, 255); }
283 bool isS8Imm() const { return isImm(-128, 127); }
284 bool isU16Imm() const { return isImm(0, 65535); }
285 bool isS16Imm() const { return isImm(-32768, 32767); }
286 bool isU32Imm() const { return isImm(0, (1LL << 32) - 1); }
287 bool isS32Imm() const { return isImm(-(1LL << 31), (1LL << 31) - 1);
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 261 bool isImm() const { return Kind == k_Immediate; }
317 if (!isImm()) return false;
331 if (!isImm()) return false;
341 if (!isImm()) return false;
366 if (!isImm()) return false;
383 if (!isImm()) return false;
391 if (!isImm()) return false;
403 if (!isImm()) return false;
426 if (!isImm()) return false;
586 if (!isImm()) return false
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 253 bool isImm() const { return Kind == CV_Immediate; }
264 assert(isImm() && "Wrong CountValue accessor");
271 if (isImm()) { OS << Contents.ImmVal; }
528 if (Op2.isImm() || Op1.getReg() == IVReg)
561 assert(EndValue->isImm() && "Unrecognized latch comparison");
569 assert(InitialValue->isImm());
635 assert (Start->isReg() || Start->isImm());
636 assert (End->isReg() || End->isImm());
652 if (Start->isImm() && End->isImm()) {
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 306 bool isImm() const { return Kind == k_Immediate; }
468 if (Op.isImm()) {
530 assert(ImmOp.isImm() && "expected immediate operand kind");
574 assert(ImmOp.isImm() && "expected immediate operand kind");
616 assert(ImmOp.isImm() && "expected immediate operand kind");
662 assert(Inst.getOperand(2).isImm() && "expected immediate operand kind");
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 714 bool isImm() const { return Kind == Immediate; }
717 if (!isImm())
731 if (!isImm())
745 if (!isImm())
759 if (!isImm())
773 if (!isImm())
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 562 assert(isImm() && "Invalid access!");
598 bool isImm() const { return Kind == k_Immediate; }
603 if (!isImm()) return false;
619 if (isImm()) {
634 if (!isImm()) return false;
641 if (!isImm()) return false;
648 if (!isImm()) return false;
655 if (!isImm()) return false;
662 if (!isImm()) return false;
669 if (!isImm()) return false
    [all...]

Completed in 891 milliseconds