port X86InstrInfo::determineREX over to the new encoder.
[oota-llvm.git] / lib / Target / X86 / X86MCCodeEmitter.cpp
1 //===-- X86/X86MCCodeEmitter.cpp - Convert X86 code to machine code -------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the X86MCCodeEmitter class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #define DEBUG_TYPE "x86-emitter"
15 #include "X86.h"
16 #include "X86InstrInfo.h"
17 #include "llvm/MC/MCCodeEmitter.h"
18 #include "llvm/MC/MCInst.h"
19 #include "llvm/Support/raw_ostream.h"
20 using namespace llvm;
21
22 namespace {
23 class X86MCCodeEmitter : public MCCodeEmitter {
24   X86MCCodeEmitter(const X86MCCodeEmitter &); // DO NOT IMPLEMENT
25   void operator=(const X86MCCodeEmitter &); // DO NOT IMPLEMENT
26   const TargetMachine &TM;
27   const TargetInstrInfo &TII;
28   bool Is64BitMode;
29 public:
30   X86MCCodeEmitter(TargetMachine &tm, bool is64Bit) 
31     : TM(tm), TII(*TM.getInstrInfo()) {
32     Is64BitMode = is64Bit;
33   }
34
35   ~X86MCCodeEmitter() {}
36   
37   static unsigned GetX86RegNum(const MCOperand &MO) {
38     return X86RegisterInfo::getX86RegNum(MO.getReg());
39   }
40   
41   void EmitByte(unsigned char C, raw_ostream &OS) const {
42     OS << (char)C;
43   }
44   
45   void EmitConstant(uint64_t Val, unsigned Size, raw_ostream &OS) const {
46     // Output the constant in little endian byte order.
47     for (unsigned i = 0; i != Size; ++i) {
48       EmitByte(Val & 255, OS);
49       Val >>= 8;
50     }
51   }
52
53   void EmitDisplacementField(const MCOperand *RelocOp, int DispVal,
54                              int64_t Adj, bool IsPCRel, raw_ostream &OS) const;
55   
56   inline static unsigned char ModRMByte(unsigned Mod, unsigned RegOpcode,
57                                         unsigned RM) {
58     assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!");
59     return RM | (RegOpcode << 3) | (Mod << 6);
60   }
61   
62   void EmitRegModRMByte(const MCOperand &ModRMReg, unsigned RegOpcodeFld,
63                         raw_ostream &OS) const {
64     EmitByte(ModRMByte(3, RegOpcodeFld, GetX86RegNum(ModRMReg)), OS);
65   }
66   
67   void EmitSIBByte(unsigned SS, unsigned Index, unsigned Base,
68                    raw_ostream &OS) const {
69     // SIB byte is in the same format as the ModRMByte...
70     EmitByte(ModRMByte(SS, Index, Base), OS);
71   }
72   
73   
74   void EmitMemModRMByte(const MCInst &MI, unsigned Op,
75                         unsigned RegOpcodeField, intptr_t PCAdj,
76                         raw_ostream &OS) const;
77   
78   void EncodeInstruction(const MCInst &MI, raw_ostream &OS) const;
79   
80 };
81
82 } // end anonymous namespace
83
84
85 MCCodeEmitter *llvm::createX86_32MCCodeEmitter(const Target &,
86                                                TargetMachine &TM) {
87   return new X86MCCodeEmitter(TM, false);
88 }
89
90 MCCodeEmitter *llvm::createX86_64MCCodeEmitter(const Target &,
91                                                TargetMachine &TM) {
92   return new X86MCCodeEmitter(TM, true);
93 }
94
95
96 /// isDisp8 - Return true if this signed displacement fits in a 8-bit 
97 /// sign-extended field. 
98 static bool isDisp8(int Value) {
99   return Value == (signed char)Value;
100 }
101
102 void X86MCCodeEmitter::
103 EmitDisplacementField(const MCOperand *RelocOp, int DispVal,
104                       int64_t Adj, bool IsPCRel, raw_ostream &OS) const {
105   // If this is a simple integer displacement that doesn't require a relocation,
106   // emit it now.
107   if (!RelocOp) {
108     EmitConstant(DispVal, 4, OS);
109     return;
110   }
111   
112   assert(0 && "Reloc not handled yet");
113 #if 0
114   // Otherwise, this is something that requires a relocation.  Emit it as such
115   // now.
116   unsigned RelocType = Is64BitMode ?
117   (IsPCRel ? X86::reloc_pcrel_word : X86::reloc_absolute_word_sext)
118   : (IsPIC ? X86::reloc_picrel_word : X86::reloc_absolute_word);
119   if (RelocOp->isGlobal()) {
120     // In 64-bit static small code model, we could potentially emit absolute.
121     // But it's probably not beneficial. If the MCE supports using RIP directly
122     // do it, otherwise fallback to absolute (this is determined by IsPCRel). 
123     //  89 05 00 00 00 00     mov    %eax,0(%rip)  # PC-relative
124     //  89 04 25 00 00 00 00  mov    %eax,0x0      # Absolute
125     bool Indirect = gvNeedsNonLazyPtr(*RelocOp, TM);
126     emitGlobalAddress(RelocOp->getGlobal(), RelocType, RelocOp->getOffset(),
127                       Adj, Indirect);
128   } else if (RelocOp->isSymbol()) {
129     emitExternalSymbolAddress(RelocOp->getSymbolName(), RelocType);
130   } else if (RelocOp->isCPI()) {
131     emitConstPoolAddress(RelocOp->getIndex(), RelocType,
132                          RelocOp->getOffset(), Adj);
133   } else {
134     assert(RelocOp->isJTI() && "Unexpected machine operand!");
135     emitJumpTableAddress(RelocOp->getIndex(), RelocType, Adj);
136   }
137 #endif
138 }
139
140
141 void X86MCCodeEmitter::EmitMemModRMByte(const MCInst &MI, unsigned Op,
142                                         unsigned RegOpcodeField,
143                                         intptr_t PCAdj,
144                                         raw_ostream &OS) const {
145   const MCOperand &Op3 = MI.getOperand(Op+3);
146   int DispVal = 0;
147   const MCOperand *DispForReloc = 0;
148   
149   // Figure out what sort of displacement we have to handle here.
150   if (Op3.isImm()) {
151     DispVal = Op3.getImm();
152   } else {
153     assert(0 && "relocatable operand");
154 #if 0
155   if (Op3.isGlobal()) {
156     DispForReloc = &Op3;
157   } else if (Op3.isSymbol()) {
158     DispForReloc = &Op3;
159   } else if (Op3.isCPI()) {
160     if (!MCE.earlyResolveAddresses() || Is64BitMode || IsPIC) {
161       DispForReloc = &Op3;
162     } else {
163       DispVal += MCE.getConstantPoolEntryAddress(Op3.getIndex());
164       DispVal += Op3.getOffset();
165     }
166   } else {
167     assert(Op3.isJTI());
168     if (!MCE.earlyResolveAddresses() || Is64BitMode || IsPIC) {
169       DispForReloc = &Op3;
170     } else {
171       DispVal += MCE.getJumpTableEntryAddress(Op3.getIndex());
172     }
173 #endif
174   }
175   
176   const MCOperand &Base     = MI.getOperand(Op);
177   const MCOperand &Scale    = MI.getOperand(Op+1);
178   const MCOperand &IndexReg = MI.getOperand(Op+2);
179   unsigned BaseReg = Base.getReg();
180
181   // FIXME: Eliminate!
182   bool IsPCRel = false;
183
184   // Is a SIB byte needed?
185   // If no BaseReg, issue a RIP relative instruction only if the MCE can 
186   // resolve addresses on-the-fly, otherwise use SIB (Intel Manual 2A, table
187   // 2-7) and absolute references.
188   if ((!Is64BitMode || DispForReloc || BaseReg != 0) &&
189       IndexReg.getReg() == 0 && 
190       (BaseReg == X86::RIP || (BaseReg != 0 && BaseReg != X86::ESP))) {
191     if (BaseReg == 0 || BaseReg == X86::RIP) {  // Just a displacement?
192       // Emit special case [disp32] encoding
193       EmitByte(ModRMByte(0, RegOpcodeField, 5), OS);
194       EmitDisplacementField(DispForReloc, DispVal, PCAdj, true, OS);
195     } else {
196       unsigned BaseRegNo = GetX86RegNum(Base);
197       if (!DispForReloc && DispVal == 0 && BaseRegNo != N86::EBP) {
198         // Emit simple indirect register encoding... [EAX] f.e.
199         EmitByte(ModRMByte(0, RegOpcodeField, BaseRegNo), OS);
200       } else if (!DispForReloc && isDisp8(DispVal)) {
201         // Emit the disp8 encoding... [REG+disp8]
202         EmitByte(ModRMByte(1, RegOpcodeField, BaseRegNo), OS);
203         EmitConstant(DispVal, 1, OS);
204       } else {
205         // Emit the most general non-SIB encoding: [REG+disp32]
206         EmitByte(ModRMByte(2, RegOpcodeField, BaseRegNo), OS);
207         EmitDisplacementField(DispForReloc, DispVal, PCAdj, IsPCRel, OS);
208       }
209     }
210     return;
211   }
212     
213   // We need a SIB byte, so start by outputting the ModR/M byte first
214   assert(IndexReg.getReg() != X86::ESP &&
215          IndexReg.getReg() != X86::RSP && "Cannot use ESP as index reg!");
216   
217   bool ForceDisp32 = false;
218   bool ForceDisp8  = false;
219   if (BaseReg == 0) {
220     // If there is no base register, we emit the special case SIB byte with
221     // MOD=0, BASE=5, to JUST get the index, scale, and displacement.
222     EmitByte(ModRMByte(0, RegOpcodeField, 4), OS);
223     ForceDisp32 = true;
224   } else if (DispForReloc) {
225     // Emit the normal disp32 encoding.
226     EmitByte(ModRMByte(2, RegOpcodeField, 4), OS);
227     ForceDisp32 = true;
228   } else if (DispVal == 0 && BaseReg != X86::EBP) {
229     // Emit no displacement ModR/M byte
230     EmitByte(ModRMByte(0, RegOpcodeField, 4), OS);
231   } else if (isDisp8(DispVal)) {
232     // Emit the disp8 encoding.
233     EmitByte(ModRMByte(1, RegOpcodeField, 4), OS);
234     ForceDisp8 = true;           // Make sure to force 8 bit disp if Base=EBP
235   } else {
236     // Emit the normal disp32 encoding.
237     EmitByte(ModRMByte(2, RegOpcodeField, 4), OS);
238   }
239   
240   // Calculate what the SS field value should be...
241   static const unsigned SSTable[] = { ~0, 0, 1, ~0, 2, ~0, ~0, ~0, 3 };
242   unsigned SS = SSTable[Scale.getImm()];
243   
244   if (BaseReg == 0) {
245     // Handle the SIB byte for the case where there is no base, see Intel 
246     // Manual 2A, table 2-7. The displacement has already been output.
247     unsigned IndexRegNo;
248     if (IndexReg.getReg())
249       IndexRegNo = GetX86RegNum(IndexReg);
250     else // Examples: [ESP+1*<noreg>+4] or [scaled idx]+disp32 (MOD=0,BASE=5)
251       IndexRegNo = 4;
252     EmitSIBByte(SS, IndexRegNo, 5, OS);
253   } else {
254     unsigned IndexRegNo;
255     if (IndexReg.getReg())
256       IndexRegNo = GetX86RegNum(IndexReg);
257     else
258       IndexRegNo = 4;   // For example [ESP+1*<noreg>+4]
259     EmitSIBByte(SS, IndexRegNo, GetX86RegNum(Base), OS);
260   }
261   
262   // Do we need to output a displacement?
263   if (ForceDisp8)
264     EmitConstant(DispVal, 1, OS);
265   else if (DispVal != 0 || ForceDisp32)
266     EmitDisplacementField(DispForReloc, DispVal, PCAdj, IsPCRel, OS);
267 }
268
269 /// DetermineREXPrefix - Determine if the MCInst has to be encoded with a X86-64
270 /// REX prefix which specifies 1) 64-bit instructions, 2) non-default operand
271 /// size, and 3) use of X86-64 extended registers.
272 static unsigned DetermineREXPrefix(const MCInst &MI, unsigned TSFlags,
273                                    const TargetInstrDesc &Desc) {
274   unsigned REX = 0;
275   
276   // Pseudo instructions do not need REX prefix byte.
277   if ((TSFlags & X86II::FormMask) == X86II::Pseudo)
278     return 0;
279   if (TSFlags & X86II::REX_W)
280     REX |= 1 << 3;
281   
282   if (MI.getNumOperands() == 0) return REX;
283   
284   unsigned NumOps = MI.getNumOperands();
285   // FIXME: MCInst should explicitize the two-addrness.
286   bool isTwoAddr = NumOps > 1 &&
287                       Desc.getOperandConstraint(1, TOI::TIED_TO) != -1;
288   
289   // If it accesses SPL, BPL, SIL, or DIL, then it requires a 0x40 REX prefix.
290   unsigned i = isTwoAddr ? 1 : 0;
291   for (; i != NumOps; ++i) {
292     const MCOperand &MO = MI.getOperand(i);
293     if (!MO.isReg()) continue;
294     unsigned Reg = MO.getReg();
295     if (!X86InstrInfo::isX86_64NonExtLowByteReg(Reg)) continue;
296     REX |= 0x40;
297     break;
298   }
299   
300   switch (TSFlags & X86II::FormMask) {
301   case X86II::MRMInitReg: assert(0 && "FIXME: Remove this!");
302   case X86II::MRMSrcReg:
303     if (MI.getOperand(0).isReg() &&
304         X86InstrInfo::isX86_64ExtendedReg(MI.getOperand(0).getReg()))
305       REX |= 1 << 2;
306     i = isTwoAddr ? 2 : 1;
307     for (; i != NumOps; ++i) {
308       const MCOperand &MO = MI.getOperand(i);
309       if (MO.isReg() && X86InstrInfo::isX86_64ExtendedReg(MO.getReg()))
310         REX |= 1 << 0;
311     }
312     break;
313   case X86II::MRMSrcMem: {
314     if (MI.getOperand(0).isReg() &&
315         X86InstrInfo::isX86_64ExtendedReg(MI.getOperand(0).getReg()))
316       REX |= 1 << 2;
317     unsigned Bit = 0;
318     i = isTwoAddr ? 2 : 1;
319     for (; i != NumOps; ++i) {
320       const MCOperand &MO = MI.getOperand(i);
321       if (MO.isReg()) {
322         if (X86InstrInfo::isX86_64ExtendedReg(MO.getReg()))
323           REX |= 1 << Bit;
324         Bit++;
325       }
326     }
327     break;
328   }
329   case X86II::MRM0m: case X86II::MRM1m:
330   case X86II::MRM2m: case X86II::MRM3m:
331   case X86II::MRM4m: case X86II::MRM5m:
332   case X86II::MRM6m: case X86II::MRM7m:
333   case X86II::MRMDestMem: {
334     unsigned e = (isTwoAddr ? X86AddrNumOperands+1 : X86AddrNumOperands);
335     i = isTwoAddr ? 1 : 0;
336     if (NumOps > e && MI.getOperand(e).isReg() &&
337         X86InstrInfo::isX86_64ExtendedReg(MI.getOperand(e).getReg()))
338       REX |= 1 << 2;
339     unsigned Bit = 0;
340     for (; i != e; ++i) {
341       const MCOperand &MO = MI.getOperand(i);
342       if (MO.isReg()) {
343         if (X86InstrInfo::isX86_64ExtendedReg(MO.getReg()))
344           REX |= 1 << Bit;
345         Bit++;
346       }
347     }
348     break;
349   }
350   default:
351     if (MI.getOperand(0).isReg() &&
352         X86InstrInfo::isX86_64ExtendedReg(MI.getOperand(0).getReg()))
353       REX |= 1 << 0;
354     i = isTwoAddr ? 2 : 1;
355     for (unsigned e = NumOps; i != e; ++i) {
356       const MCOperand &MO = MI.getOperand(i);
357       if (MO.isReg() && X86InstrInfo::isX86_64ExtendedReg(MO.getReg()))
358         REX |= 1 << 2;
359     }
360     break;
361   }
362   return REX;
363 }
364
365 void X86MCCodeEmitter::
366 EncodeInstruction(const MCInst &MI, raw_ostream &OS) const {
367   unsigned Opcode = MI.getOpcode();
368   const TargetInstrDesc &Desc = TII.get(Opcode);
369   unsigned TSFlags = Desc.TSFlags;
370
371   // FIXME: We should emit the prefixes in exactly the same order as GAS does,
372   // in order to provide diffability.
373
374   // Emit the lock opcode prefix as needed.
375   if (TSFlags & X86II::LOCK)
376     EmitByte(0xF0, OS);
377   
378   // Emit segment override opcode prefix as needed.
379   switch (TSFlags & X86II::SegOvrMask) {
380   default: assert(0 && "Invalid segment!");
381   case 0: break;  // No segment override!
382   case X86II::FS:
383     EmitByte(0x64, OS);
384     break;
385   case X86II::GS:
386     EmitByte(0x65, OS);
387     break;
388   }
389   
390   // Emit the repeat opcode prefix as needed.
391   if ((TSFlags & X86II::Op0Mask) == X86II::REP)
392     EmitByte(0xF3, OS);
393   
394   // Emit the operand size opcode prefix as needed.
395   if (TSFlags & X86II::OpSize)
396     EmitByte(0x66, OS);
397   
398   // Emit the address size opcode prefix as needed.
399   if (TSFlags & X86II::AdSize)
400     EmitByte(0x67, OS);
401   
402   bool Need0FPrefix = false;
403   switch (TSFlags & X86II::Op0Mask) {
404   default: assert(0 && "Invalid prefix!");
405   case 0: break;  // No prefix!
406   case X86II::REP: break; // already handled.
407   case X86II::TB:  // Two-byte opcode prefix
408   case X86II::T8:  // 0F 38
409   case X86II::TA:  // 0F 3A
410     Need0FPrefix = true;
411     break;
412   case X86II::TF: // F2 0F 38
413     EmitByte(0xF2, OS);
414     Need0FPrefix = true;
415     break;
416   case X86II::XS:   // F3 0F
417     EmitByte(0xF3, OS);
418     Need0FPrefix = true;
419     break;
420   case X86II::XD:   // F2 0F
421     EmitByte(0xF2, OS);
422     Need0FPrefix = true;
423     break;
424   case X86II::D8: EmitByte(0xD8, OS); break;
425   case X86II::D9: EmitByte(0xD9, OS); break;
426   case X86II::DA: EmitByte(0xDA, OS); break;
427   case X86II::DB: EmitByte(0xDB, OS); break;
428   case X86II::DC: EmitByte(0xDC, OS); break;
429   case X86II::DD: EmitByte(0xDD, OS); break;
430   case X86II::DE: EmitByte(0xDE, OS); break;
431   case X86II::DF: EmitByte(0xDF, OS); break;
432   }
433   
434   // Handle REX prefix.
435   // FIXME: Can this come before F2 etc to simplify emission?
436   if (Is64BitMode) {
437     if (unsigned REX = DetermineREXPrefix(MI, TSFlags, Desc))
438       EmitByte(0x40 | REX, OS);
439   }
440   
441   // 0x0F escape code must be emitted just before the opcode.
442   if (Need0FPrefix)
443     EmitByte(0x0F, OS);
444   
445   // FIXME: Pull this up into previous switch if REX can be moved earlier.
446   switch (TSFlags & X86II::Op0Mask) {
447   case X86II::TF:    // F2 0F 38
448   case X86II::T8:    // 0F 38
449     EmitByte(0x38, OS);
450     break;
451   case X86II::TA:    // 0F 3A
452     EmitByte(0x3A, OS);
453     break;
454   }
455   
456   // If this is a two-address instruction, skip one of the register operands.
457   unsigned NumOps = Desc.getNumOperands();
458   unsigned CurOp = 0;
459   if (NumOps > 1 && Desc.getOperandConstraint(1, TOI::TIED_TO) != -1)
460     ++CurOp;
461   else if (NumOps > 2 && Desc.getOperandConstraint(NumOps-1, TOI::TIED_TO)== 0)
462     // Skip the last source operand that is tied_to the dest reg. e.g. LXADD32
463     --NumOps;
464   
465   unsigned char BaseOpcode = X86II::getBaseOpcodeFor(TSFlags);
466   switch (TSFlags & X86II::FormMask) {
467   case X86II::MRMInitReg:
468     assert(0 && "FIXME: Remove this form when the JIT moves to MCCodeEmitter!");
469   default: errs() << "FORM: " << (TSFlags & X86II::FormMask) << "\n";
470       assert(0 && "Unknown FormMask value in X86MCCodeEmitter!");
471   case X86II::RawFrm: {
472     EmitByte(BaseOpcode, OS);
473     
474     if (CurOp == NumOps)
475       break;
476     
477     assert(0 && "Unimpl RawFrm expr");
478     break;
479   }
480       
481   case X86II::AddRegFrm: {
482     EmitByte(BaseOpcode + GetX86RegNum(MI.getOperand(CurOp++)),OS);
483     if (CurOp == NumOps)
484       break;
485
486     const MCOperand &MO1 = MI.getOperand(CurOp++);
487     if (MO1.isImm()) {
488       unsigned Size = X86II::getSizeOfImm(TSFlags);
489       EmitConstant(MO1.getImm(), Size, OS);
490       break;
491     }
492
493     assert(0 && "Unimpl AddRegFrm expr");
494     break;
495   }
496       
497   case X86II::MRMDestReg:
498     EmitByte(BaseOpcode, OS);
499     EmitRegModRMByte(MI.getOperand(CurOp),
500                      GetX86RegNum(MI.getOperand(CurOp+1)), OS);
501     CurOp += 2;
502     if (CurOp != NumOps)
503       EmitConstant(MI.getOperand(CurOp++).getImm(),
504                    X86II::getSizeOfImm(TSFlags), OS);
505     break;
506   
507   case X86II::MRMDestMem:
508     EmitByte(BaseOpcode, OS);
509     EmitMemModRMByte(MI, CurOp,
510                      GetX86RegNum(MI.getOperand(CurOp + X86AddrNumOperands)),
511                      0, OS);
512     CurOp += X86AddrNumOperands + 1;
513     if (CurOp != NumOps)
514       EmitConstant(MI.getOperand(CurOp++).getImm(),
515                    X86II::getSizeOfImm(TSFlags), OS);
516     break;
517       
518   case X86II::MRMSrcReg:
519     EmitByte(BaseOpcode, OS);
520     EmitRegModRMByte(MI.getOperand(CurOp+1), GetX86RegNum(MI.getOperand(CurOp)),
521                      OS);
522     CurOp += 2;
523     if (CurOp != NumOps)
524       EmitConstant(MI.getOperand(CurOp++).getImm(),
525                    X86II::getSizeOfImm(TSFlags), OS);
526     break;
527     
528   case X86II::MRMSrcMem: {
529     EmitByte(BaseOpcode, OS);
530
531     // FIXME: Maybe lea should have its own form?  This is a horrible hack.
532     int AddrOperands;
533     if (Opcode == X86::LEA64r || Opcode == X86::LEA64_32r ||
534         Opcode == X86::LEA16r || Opcode == X86::LEA32r)
535       AddrOperands = X86AddrNumOperands - 1; // No segment register
536     else
537       AddrOperands = X86AddrNumOperands;
538     
539     // FIXME: What is this actually doing?
540     intptr_t PCAdj = (CurOp + AddrOperands + 1 != NumOps) ?
541        X86II::getSizeOfImm(TSFlags) : 0;
542     
543     EmitMemModRMByte(MI, CurOp+1, GetX86RegNum(MI.getOperand(CurOp)),
544                      PCAdj, OS);
545     CurOp += AddrOperands + 1;
546     if (CurOp != NumOps)
547       EmitConstant(MI.getOperand(CurOp++).getImm(),
548                    X86II::getSizeOfImm(TSFlags), OS);
549     break;
550   }
551
552   case X86II::MRM0r: case X86II::MRM1r:
553   case X86II::MRM2r: case X86II::MRM3r:
554   case X86II::MRM4r: case X86II::MRM5r:
555   case X86II::MRM6r: case X86II::MRM7r: {
556     EmitByte(BaseOpcode, OS);
557
558     // Special handling of lfence, mfence, monitor, and mwait.
559     // FIXME: This is terrible, they should get proper encoding bits in TSFlags.
560     if (Opcode == X86::LFENCE || Opcode == X86::MFENCE ||
561         Opcode == X86::MONITOR || Opcode == X86::MWAIT) {
562       EmitByte(ModRMByte(3, (TSFlags & X86II::FormMask)-X86II::MRM0r, 0), OS);
563
564       switch (Opcode) {
565       default: break;
566       case X86::MONITOR: EmitByte(0xC8, OS); break;
567       case X86::MWAIT:   EmitByte(0xC9, OS); break;
568       }
569     } else {
570       EmitRegModRMByte(MI.getOperand(CurOp++),
571                        (TSFlags & X86II::FormMask)-X86II::MRM0r,
572                        OS);
573     }
574
575     if (CurOp == NumOps)
576       break;
577     
578     const MCOperand &MO1 = MI.getOperand(CurOp++);
579     if (MO1.isImm()) {
580       EmitConstant(MO1.getImm(), X86II::getSizeOfImm(TSFlags), OS);
581       break;
582     }
583
584     assert(0 && "relo unimpl");
585 #if 0
586     unsigned rt = Is64BitMode ? X86::reloc_pcrel_word
587       : (IsPIC ? X86::reloc_picrel_word : X86::reloc_absolute_word);
588     if (Opcode == X86::MOV64ri32)
589       rt = X86::reloc_absolute_word_sext;  // FIXME: add X86II flag?
590     if (MO1.isGlobal()) {
591       bool Indirect = gvNeedsNonLazyPtr(MO1, TM);
592       emitGlobalAddress(MO1.getGlobal(), rt, MO1.getOffset(), 0,
593                         Indirect);
594     } else if (MO1.isSymbol())
595       emitExternalSymbolAddress(MO1.getSymbolName(), rt);
596     else if (MO1.isCPI())
597       emitConstPoolAddress(MO1.getIndex(), rt);
598     else if (MO1.isJTI())
599       emitJumpTableAddress(MO1.getIndex(), rt);
600     break;
601 #endif
602   }
603   case X86II::MRM0m: case X86II::MRM1m:
604   case X86II::MRM2m: case X86II::MRM3m:
605   case X86II::MRM4m: case X86II::MRM5m:
606   case X86II::MRM6m: case X86II::MRM7m: {
607     intptr_t PCAdj = 0;
608     if (CurOp + X86AddrNumOperands != NumOps) {
609       if (MI.getOperand(CurOp+X86AddrNumOperands).isImm())
610         PCAdj = X86II::getSizeOfImm(TSFlags);
611       else
612         PCAdj = 4;
613     }
614
615     EmitByte(BaseOpcode, OS);
616     EmitMemModRMByte(MI, CurOp, (TSFlags & X86II::FormMask)-X86II::MRM0m,
617                      PCAdj, OS);
618     CurOp += X86AddrNumOperands;
619     
620     if (CurOp == NumOps)
621       break;
622     
623     const MCOperand &MO = MI.getOperand(CurOp++);
624     if (MO.isImm()) {
625       EmitConstant(MO.getImm(), X86II::getSizeOfImm(TSFlags), OS);
626       break;
627     }
628     
629     assert(0 && "relo not handled");
630 #if 0
631     unsigned rt = Is64BitMode ? X86::reloc_pcrel_word
632     : (IsPIC ? X86::reloc_picrel_word : X86::reloc_absolute_word);
633     if (Opcode == X86::MOV64mi32)
634       rt = X86::reloc_absolute_word_sext;  // FIXME: add X86II flag?
635     if (MO.isGlobal()) {
636       bool Indirect = gvNeedsNonLazyPtr(MO, TM);
637       emitGlobalAddress(MO.getGlobal(), rt, MO.getOffset(), 0,
638                         Indirect);
639     } else if (MO.isSymbol())
640       emitExternalSymbolAddress(MO.getSymbolName(), rt);
641     else if (MO.isCPI())
642       emitConstPoolAddress(MO.getIndex(), rt);
643     else if (MO.isJTI())
644       emitJumpTableAddress(MO.getIndex(), rt);
645 #endif
646     break;
647   }
648   }
649   
650 #ifndef NDEBUG
651   // FIXME: Verify.
652   if (/*!Desc.isVariadic() &&*/ CurOp != NumOps) {
653     errs() << "Cannot encode all operands of: ";
654     MI.dump();
655     errs() << '\n';
656     abort();
657   }
658 #endif
659 }