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

  /external/llvm/lib/Target/MSP430/InstPrinter/
MSP430InstPrinter.cpp 63 const MCOperand &Disp = MI->getOperand(OpNo+1);
76 if (Disp.isExpr())
77 O << *Disp.getExpr();
79 assert(Disp.isImm() && "Expected immediate in displacement field");
80 O << Disp.getImm();
  /external/llvm/lib/Target/MSP430/
MSP430AsmPrinter.cpp 114 const MachineOperand &Disp = MI->getOperand(OpNum+1);
119 if (Disp.isImm() && !Base.getReg())
MSP430ISelDAGToDAG.cpp 46 int16_t Disp;
55 : BaseType(RegBase), Disp(0), GV(0), CP(0), BlockAddr(0),
71 errs() << " Disp " << Disp << '\n';
123 bool SelectAddr(SDValue Addr, SDValue &Base, SDValue &Disp);
149 AM.Disp += G->getOffset();
154 AM.Disp += CP->getOffset();
191 AM.Disp += Val;
234 AM.Disp += Offset;
249 SDValue &Base, SDValue &Disp) {
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrBuilder.h 35 /// with BP or SP and Disp being offsetted accordingly. The displacement may
50 int Disp;
55 : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(0), GVOpFlags(0) {
76 MO.push_back(MachineOperand::CreateGA(GV, Disp, GVOpFlags));
78 MO.push_back(MachineOperand::CreateImm(Disp));
135 MIB.addGlobalAddress(AM.GV, AM.Disp, AM.GVOpFlags);
137 MIB.addImm(AM.Disp);
X86FastISel.cpp 396 uint64_t Disp = (int32_t)AM.Disp + (uint64_t)CI->getSExtValue();
398 if (isInt<32>(Disp)) {
399 AM.Disp = (uint32_t)Disp;
410 uint64_t Disp = (int32_t)AM.Disp;
421 Disp += SL->getElementOffset(cast<ConstantInt>(Op)->getZExtValue());
431 Disp += CI->getSExtValue() * S;
443 Disp += CI->getSExtValue() * S
    [all...]
X86ISelDAGToDAG.cpp 64 int32_t Disp;
75 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
118 dbgs() << " Disp " << Disp << '\n'
205 SDValue &Scale, SDValue &Index, SDValue &Disp,
208 SDValue &Scale, SDValue &Index, SDValue &Disp,
211 SDValue &Scale, SDValue &Index, SDValue &Disp,
215 SDValue &Index, SDValue &Disp,
221 SDValue &Index, SDValue &Disp,
234 SDValue &Disp, SDValue &Segment)
    [all...]
X86ISelLowering.cpp     [all...]
  /external/libppp/src/
ccp.h 126 const char *(*Disp)(struct fsm_opt *); /* Use result immediately ! */
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 93 void EmitImmediate(const MCOperand &Disp, SMLoc Loc,
302 const MCOperand &Disp = MI.getOperand(Op+X86::AddrDisp);
329 EmitImmediate(Disp, MI.getLoc(), 4, MCFixupKind(FixupKind),
353 EmitImmediate(Disp, MI.getLoc(), 4, FK_Data_4, CurByte, OS, Fixups);
361 if (Disp.isImm() && Disp.getImm() == 0 && BaseRegNo != N86::EBP) {
367 if (Disp.isImm() && isDisp8(Disp.getImm())) {
369 EmitImmediate(Disp, MI.getLoc(), 1, FK_Data_1, CurByte, OS, Fixups);
375 EmitImmediate(Disp, MI.getLoc(), 4, MCFixupKind(X86::reloc_signed_4byte), CurByte, OS
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 190 const MCExpr *Disp;
232 return Mem.Disp;
464 static X86Operand *CreateMem(const MCExpr *Disp, SMLoc StartLoc,
468 Res->Mem.Disp = Disp;
477 static X86Operand *CreateMem(unsigned SegReg, const MCExpr *Disp,
490 Res->Mem.Disp = Disp;
506 isa<MCConstantExpr>(Op.Mem.Disp) &&
507 cast<MCConstantExpr>(Op.Mem.Disp)->getValue() == 0 &
    [all...]

Completed in 158 milliseconds