HomeSort by relevance Sort by last modified time
    Searched defs:isImm (Results 1 - 12 of 12) 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/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 136 bool isImm() const { return Kind == CV_Immediate; }
147 assert(isImm() && "Wrong CountValue accessor");
159 if (isImm()) { OS << getImm(); }
338 assert(MO.isImm() && "IV Cmp Operand should be 0");
501 assert(TripCount->isImm() && "Expecting immedate vaule for trip count");
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 223 /// isImm - Tests if this is a MO_Immediate operand.
224 bool isImm() const { return OpKind == MO_Immediate; }
400 assert(isImm() && "Wrong MachineOperand accessor");
486 assert(isImm() && "Wrong MachineOperand mutator");
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCCodeEmitter.cpp 422 } else if (MO.isImm()) {
468 if (MO.isImm()) return MO.getImm();
559 if (MCOp1.isImm() && MCOp2.isReg() &&
    [all...]
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 176 bool isImm() const { return Kind == Immediate; }
372 if (!Offset.isReg() && !Offset.isImm()) {
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 149 bool isImm() const { return Kind == CV_Immediate; }
160 assert(isImm() && "Wrong CountValue accessor");
172 if (isImm()) { OS << getImm(); }
355 assert(MO.isImm() && "IV Cmp Operand should be an immediate");
651 assert(TripCount->isImm() && "Expecting immedate vaule for trip count");
677 TripCount->isImm() ? RegState::Kill : 0);
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 312 bool isImm() const { return Kind == K_Imm; }
317 int64_t getImm() const { assert(isImm()); return Imm; }
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 189 bool isImm() const { return Kind == k_Immediate; }
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 253 bool isImm() const { return Kind == Immediate; }
256 if (!isImm())
270 if (!isImm())
284 if (!isImm())
298 if (!isImm())
312 if (!isImm())
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITOpcodes.cpp 619 Jump isImm = emitJumpIfNotJSCell(regT0);
621 isImm.link(this);
    [all...]
JITOpcodes32_64.cpp 775 Jump isImm = branch32(NotEqual, regT1, TrustedImm32(JSValue::CellTag));
777 isImm.link(this);
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 520 assert(isImm() && "Invalid access!");
551 bool isImm() const { return Kind == k_Immediate; }
553 if (!isImm()) return false;
560 if (!isImm()) return false;
567 if (!isImm()) return false;
574 if (!isImm()) return false;
581 if (!isImm()) return false;
588 if (!isImm()) return false;
595 if (!isImm()) return false;
603 if (!isImm()) return false
    [all...]

Completed in 431 milliseconds