Searched defs:isImm (Results 1 - 12 of 12) sorted by relevance

/external/llvm/include/llvm/MC/
H A DMCInst.h57 bool isImm() const { return Kind == kImmediate; } function in class:llvm::MCOperand
75 assert(isImm() && "This is not an immediate");
79 assert(isImm() && "This is not an immediate");
/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h223 /// isImm - Tests if this is a MO_Immediate operand.
224 bool isImm() const { return OpKind == MO_Immediate; } function in class:llvm::MachineOperand
400 assert(isImm() && "Wrong MachineOperand accessor");
486 assert(isImm() && "Wrong MachineOperand mutator");
/external/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp136 bool isImm() const { return Kind == CV_Immediate; } function in class:__anon9491::CountValue
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/lib/Target/MBlaze/AsmParser/
H A DMBlazeAsmParser.cpp176 bool isImm() const { return Kind == Immediate; } function in struct:__anon9503::MBlazeOperand
372 if (!Offset.isReg() && !Offset.isImm()) {
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp149 bool isImm() const { return Kind == CV_Immediate; } function in class:__anon9557::CountValue
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/
H A DCodeGenInstruction.h312 bool isImm() const { return Kind == K_Imm; } function in struct:llvm::CodeGenInstAlias::ResultOperand
317 int64_t getImm() const { assert(isImm()); return Imm; }
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCCodeEmitter.cpp422 } else if (MO.isImm()) {
468 if (MO.isImm()) return MO.getImm();
559 if (MCOp1.isImm() && MCOp2.isReg() &&
871 if (MO.isImm())
1011 bool isImm = MO.getReg() == 0; local
1014 if (!isImm)
1016 return Imm8 | (isAdd << 8) | (isImm << 9);
1046 bool isImm = MO1.getReg() == 0; local
1049 if (!isImm)
1051 return (Rn << 9) | Imm8 | (isAdd << 8) | (isImm << 1
[all...]
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp189 bool isImm() const { return Kind == k_Immediate; } function in class:__anon9530::MipsOperand
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp253 bool isImm() const { return Kind == Immediate; } function in struct:__anon9575::X86Operand
256 if (!isImm())
270 if (!isImm())
284 if (!isImm())
298 if (!isImm())
312 if (!isImm())
1254 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
1261 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
1273 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
1290 if (!Inst.getOperand(0).isImm() ||
[all...]
/external/webkit/Source/JavaScriptCore/jit/
H A DJITOpcodes.cpp619 Jump isImm = emitJumpIfNotJSCell(regT0); local
621 isImm.link(this);
H A DJITOpcodes32_64.cpp775 Jump isImm = branch32(NotEqual, regT1, TrustedImm32(JSValue::CellTag)); local
777 isImm.link(this);
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp520 assert(isImm() && "Invalid access!");
551 bool isImm() const { return Kind == k_Immediate; } function in class:__anon9445::ARMOperand
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()) retur
[all...]

Completed in 460 milliseconds