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

  /external/llvm/lib/Target/R600/MCTargetDesc/
R600MCCodeEmitter.cpp 251 MCOperand ImmOp = MI.getOperand(ImmOpIndex);
252 if (ImmOp.isFPImm()) {
253 Value.f = ImmOp.getFPImm();
255 assert(ImmOp.isImm());
256 Value.i = ImmOp.getImm();
324 MCOperand ImmOp = MI.getOperand(ImmOpIndex);
325 if (ImmOp.isFPImm()) {
326 InlineConstant.f = ImmOp.getFPImm();
328 assert(ImmOp.isImm());
329 InlineConstant.i = ImmOp.getImm()
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCCodeEmitter.cpp 143 const MCOperand &ImmOp = MI.getOperand(OpIdx);
144 if (ImmOp.isImm())
145 return ImmOp.getImm();
147 assert(ImmOp.isExpr() && "Unexpected operand type");
148 const AArch64MCExpr *Expr = cast<AArch64MCExpr>(ImmOp.getExpr());
214 return getAddressWithFixup(ImmOp, FixupKind, Fixups);
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 224 struct ImmOp {
236 struct ImmOp Imm;
420 const MCOperand &ImmOp = Inst.getOperand(1);
421 assert(ImmOp.isImm() && "expected immediate operand kind");
425 int ImmValue = ImmOp.getImm();
466 const MCOperand &ImmOp = Inst.getOperand(2);
467 assert(ImmOp.isImm() && "expected immediate operand kind");
472 int ImmValue = ImmOp.getImm();
508 const MCOperand &ImmOp = Inst.getOperand(1);
509 assert(ImmOp.isImm() && "expected immediate operand kind")
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb2InstrInfo.cpp 524 MachineOperand &ImmOp = MI.getOperand(FrameRegIdx+1);
540 ImmOp.ChangeToImmediate(ImmedOffset);
558 ImmOp.ChangeToImmediate(ImmedOffset);
Thumb1RegisterInfo.cpp 451 MachineOperand &ImmOp = MI.getOperand(ImmIdx);
458 ImmOp.ChangeToImmediate(ImmedOffset);
475 ImmOp.ChangeToImmediate(0);
479 ImmOp.ChangeToImmediate(ImmedOffset);
ARMBaseInstrInfo.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 264 unsigned ImmOp = Inst.getNumOperands() - 1;
266 (Inst.getOperand(ImmOp).isImm() || Inst.getOperand(ImmOp).isExpr()) &&
277 MCOperand Saved = Inst.getOperand(ImmOp);
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 94 struct ImmOp {
111 struct ImmOp Imm;
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 177 struct ImmOp {
205 struct ImmOp Imm;
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 182 struct ImmOp {
200 struct ImmOp Imm;
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 368 struct ImmOp {
432 struct ImmOp Imm;
    [all...]

Completed in 5490 milliseconds