Searched defs:isImm (Results 1 - 13 of 13) 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.h225 /// isImm - Tests if this is a MO_Immediate operand.
226 bool isImm() const { return OpKind == MO_Immediate; } function in class:llvm::MachineOperand
403 assert(isImm() && "Wrong MachineOperand accessor");
489 assert(isImm() && "Wrong MachineOperand mutator");
/external/llvm/lib/Target/MBlaze/AsmParser/
H A DMBlazeAsmParser.cpp178 bool isImm() const { return Kind == Immediate; } function in struct:__anon9711::MBlazeOperand
373 if (!Offset.isReg() && !Offset.isImm()) {
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp155 bool isImm() const { return Kind == CV_Immediate; } function in class:__anon9758::CountValue
166 assert(isImm() && "Wrong CountValue accessor");
178 if (isImm()) { OS << getImm(); }
378 assert(MO.isImm() && "IV Cmp Operand should be an immediate");
626 if (TripCount->isImm()) {
701 assert(TripCount->isImm() && "Expecting immedate vaule for trip count");
728 TripCount->isImm() ? RegState::Kill : 0);
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.h311 bool isImm() const { return Kind == K_Imm; } function in struct:llvm::CodeGenInstAlias::ResultOperand
316 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() &&
884 if (MO.isImm())
1028 bool isImm = MO.getReg() == 0; local
1031 if (!isImm)
1033 return Imm8 | (isAdd << 8) | (isImm << 9);
1063 bool isImm = MO1.getReg() == 0; local
1066 if (!isImm)
1068 return (Rn << 9) | Imm8 | (isAdd << 8) | (isImm << 1
[all...]
/external/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp261 bool isImm() const { return Kind == k_Immediate; } function in class:__anon9643::AArch64Operand
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()) retur
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp253 bool isImm() const { return Kind == CV_Immediate; } function in class:__anon9699::CountValue
264 assert(isImm() && "Wrong CountValue accessor");
271 if (isImm()) { OS << Contents.ImmVal; }
528 if (Op2.isImm() || Op1.getReg() == IVReg)
567 assert(EndValue->isImm() && "Unrecognized latch comparison");
575 assert(InitialValue->isImm());
641 assert (Start->isReg() || Start->isImm());
642 assert (End->isReg() || End->isImm());
658 if (Start->isImm() && End->isImm()) {
[all...]
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp274 bool isImm() const { return Kind == k_Immediate; } function in class:__anon9734::MipsOperand
421 assert(ImmOp.isImm() && "expected immediate operand kind");
467 assert(ImmOp.isImm() && "expected immediate operand kind");
509 assert(ImmOp.isImm() && "expected immediate operand kind");
/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/X86/AsmParser/
H A DX86AsmParser.cpp267 bool isImm() const { return Kind == Immediate; } function in struct:__anon9798::X86Operand
270 if (!isImm())
284 if (!isImm())
298 if (!isImm())
312 if (!isImm())
326 if (!isImm())
1712 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
1719 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
1731 if (Op1->isImm() && isa<MCConstantExpr>(Op1->getImm()) &&
1756 if (!Inst.getOperand(0).isImm() ||
[all...]
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp553 assert(isImm() && "Invalid access!");
584 bool isImm() const { return Kind == k_Immediate; } function in class:__anon9678::ARMOperand
586 if (!isImm()) return false;
593 if (!isImm()) return false;
600 if (!isImm()) return false;
607 if (!isImm()) return false;
614 if (!isImm()) return false;
621 if (!isImm()) return false;
628 if (!isImm()) return false;
636 if (!isImm()) retur
[all...]

Completed in 484 milliseconds