Move X86 specific code out of the JIT into the X86 backend
[oota-llvm.git] / lib / Target / X86 / X86CodeEmitter.cpp
1 //===-- X86/MachineCodeEmitter.cpp - Convert X86 code to machine code -----===//
2 //
3 // This file contains the pass that transforms the X86 machine instructions into
4 // actual executable machine code.
5 //
6 //===----------------------------------------------------------------------===//
7
8 #include "X86TargetMachine.h"
9 #include "X86.h"
10 #include "llvm/PassManager.h"
11 #include "llvm/CodeGen/MachineCodeEmitter.h"
12 #include "llvm/CodeGen/MachineFunctionPass.h"
13 #include "llvm/CodeGen/MachineInstr.h"
14 #include "llvm/Value.h"
15
16 namespace {
17   class JITResolver {
18     MachineCodeEmitter &MCE;
19
20     // LazyCodeGenMap - Keep track of call sites for functions that are to be
21     // lazily resolved.
22     std::map<unsigned, Function*> LazyCodeGenMap;
23
24     // LazyResolverMap - Keep track of the lazy resolver created for a
25     // particular function so that we can reuse them if necessary.
26     std::map<Function*, unsigned> LazyResolverMap;
27   public:
28     JITResolver(MachineCodeEmitter &mce) : MCE(mce) {}
29     unsigned getLazyResolver(Function *F);
30     unsigned addFunctionReference(unsigned Address, Function *F);
31     
32   private:
33     unsigned emitStubForFunction(Function *F);
34     static void CompilationCallback();
35     unsigned resolveFunctionReference(unsigned RetAddr);
36   };
37
38   JITResolver *TheJITResolver;
39 }
40
41
42 /// addFunctionReference - This method is called when we need to emit the
43 /// address of a function that has not yet been emitted, so we don't know the
44 /// address.  Instead, we emit a call to the CompilationCallback method, and
45 /// keep track of where we are.
46 ///
47 unsigned JITResolver::addFunctionReference(unsigned Address, Function *F) {
48   LazyCodeGenMap[Address] = F;  
49   return (intptr_t)&JITResolver::CompilationCallback;
50 }
51
52 unsigned JITResolver::resolveFunctionReference(unsigned RetAddr) {
53   std::map<unsigned, Function*>::iterator I = LazyCodeGenMap.find(RetAddr);
54   assert(I != LazyCodeGenMap.end() && "Not in map!");
55   Function *F = I->second;
56   LazyCodeGenMap.erase(I);
57   return MCE.forceCompilationOf(F);
58 }
59
60 unsigned JITResolver::getLazyResolver(Function *F) {
61   std::map<Function*, unsigned>::iterator I = LazyResolverMap.lower_bound(F);
62   if (I != LazyResolverMap.end() && I->first == F) return I->second;
63   
64 //std::cerr << "Getting lazy resolver for : " << ((Value*)F)->getName() << "\n";
65
66   unsigned Stub = emitStubForFunction(F);
67   LazyResolverMap.insert(I, std::make_pair(F, Stub));
68   return Stub;
69 }
70
71 void JITResolver::CompilationCallback() {
72   unsigned *StackPtr = (unsigned*)__builtin_frame_address(0);
73   unsigned RetAddr = (unsigned)__builtin_return_address(0);
74
75   assert(StackPtr[1] == RetAddr &&
76          "Could not find return address on the stack!");
77   bool isStub = ((unsigned char*)RetAddr)[0] == 0xCD;  // Interrupt marker?
78
79   // The call instruction should have pushed the return value onto the stack...
80   RetAddr -= 4;  // Backtrack to the reference itself...
81
82 #if 0
83   DEBUG(std::cerr << "In callback! Addr=0x" << std::hex << RetAddr
84                   << " ESP=0x" << (unsigned)StackPtr << std::dec
85                   << ": Resolving call to function: "
86                   << TheVM->getFunctionReferencedName((void*)RetAddr) << "\n");
87 #endif
88
89   // Sanity check to make sure this really is a call instruction...
90   assert(((unsigned char*)RetAddr)[-1] == 0xE8 && "Not a call instr!");
91   
92   unsigned NewVal = TheJITResolver->resolveFunctionReference(RetAddr);
93
94   // Rewrite the call target... so that we don't fault every time we execute
95   // the call.
96   *(unsigned*)RetAddr = NewVal-RetAddr-4;    
97
98   if (isStub) {
99     // If this is a stub, rewrite the call into an unconditional branch
100     // instruction so that two return addresses are not pushed onto the stack
101     // when the requested function finally gets called.  This also makes the
102     // 0xCD byte (interrupt) dead, so the marker doesn't effect anything.
103     ((unsigned char*)RetAddr)[-1] = 0xE9;
104   }
105
106   // Change the return address to reexecute the call instruction...
107   StackPtr[1] -= 5;
108 }
109
110 /// emitStubForFunction - This method is used by the JIT when it needs to emit
111 /// the address of a function for a function whose code has not yet been
112 /// generated.  In order to do this, it generates a stub which jumps to the lazy
113 /// function compiler, which will eventually get fixed to call the function
114 /// directly.
115 ///
116 unsigned JITResolver::emitStubForFunction(Function *F) {
117   MCE.startFunctionStub(*F, 6);
118   MCE.emitByte(0xE8);   // Call with 32 bit pc-rel destination...
119
120   unsigned Address = addFunctionReference(MCE.getCurrentPCValue(), F);
121   MCE.emitWord(Address-MCE.getCurrentPCValue()-4);
122
123   MCE.emitByte(0xCD);   // Interrupt - Just a marker identifying the stub!
124   return (intptr_t)MCE.finishFunctionStub(*F);
125 }
126
127
128
129 namespace {
130   class Emitter : public MachineFunctionPass {
131     const X86InstrInfo  *II;
132     MachineCodeEmitter  &MCE;
133     std::map<BasicBlock*, unsigned> BasicBlockAddrs;
134     std::vector<std::pair<BasicBlock*, unsigned> > BBRefs;
135   public:
136     Emitter(MachineCodeEmitter &mce) : II(0), MCE(mce) {}
137
138     bool runOnMachineFunction(MachineFunction &MF);
139
140     virtual const char *getPassName() const {
141       return "X86 Machine Code Emitter";
142     }
143
144   private:
145     void emitBasicBlock(MachineBasicBlock &MBB);
146     void emitInstruction(MachineInstr &MI);
147
148     void emitPCRelativeBlockAddress(BasicBlock *BB);
149     void emitMaybePCRelativeValue(unsigned Address, bool isPCRelative);
150     void emitGlobalAddressForCall(GlobalValue *GV);
151     void emitGlobalAddressForPtr(GlobalValue *GV);
152
153     void emitRegModRMByte(unsigned ModRMReg, unsigned RegOpcodeField);
154     void emitSIBByte(unsigned SS, unsigned Index, unsigned Base);
155     void emitConstant(unsigned Val, unsigned Size);
156
157     void emitMemModRMByte(const MachineInstr &MI,
158                           unsigned Op, unsigned RegOpcodeField);
159
160   };
161 }
162
163 /// addPassesToEmitMachineCode - Add passes to the specified pass manager to get
164 /// machine code emitted.  This uses a MAchineCodeEmitter object to handle
165 /// actually outputting the machine code and resolving things like the address
166 /// of functions.  This method should returns true if machine code emission is
167 /// not supported.
168 ///
169 bool X86TargetMachine::addPassesToEmitMachineCode(PassManager &PM,
170                                                   MachineCodeEmitter &MCE) {
171   PM.add(new Emitter(MCE));
172   return false;
173 }
174
175 bool Emitter::runOnMachineFunction(MachineFunction &MF) {
176   II = &((X86TargetMachine&)MF.getTarget()).getInstrInfo();
177
178   MCE.startFunction(MF);
179   MCE.emitConstantPool(MF.getConstantPool());
180   for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
181     emitBasicBlock(*I);
182   MCE.finishFunction(MF);
183
184   // Resolve all forward branches now...
185   for (unsigned i = 0, e = BBRefs.size(); i != e; ++i) {
186     unsigned Location = BasicBlockAddrs[BBRefs[i].first];
187     unsigned Ref = BBRefs[i].second;
188     *(unsigned*)Ref = Location-Ref-4;
189   }
190   BBRefs.clear();
191   BasicBlockAddrs.clear();
192   return false;
193 }
194
195 void Emitter::emitBasicBlock(MachineBasicBlock &MBB) {
196   if (uint64_t Addr = MCE.getCurrentPCValue())
197     BasicBlockAddrs[MBB.getBasicBlock()] = Addr;
198
199   for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end(); I != E; ++I)
200     emitInstruction(**I);
201 }
202
203
204 /// emitPCRelativeBlockAddress - This method emits the PC relative address of
205 /// the specified basic block, or if the basic block hasn't been emitted yet
206 /// (because this is a forward branch), it keeps track of the information
207 /// necessary to resolve this address later (and emits a dummy value).
208 ///
209 void Emitter::emitPCRelativeBlockAddress(BasicBlock *BB) {
210   // FIXME: Emit backward branches directly
211   BBRefs.push_back(std::make_pair(BB, MCE.getCurrentPCValue()));
212   MCE.emitWord(0);   // Emit a dummy value
213 }
214
215 /// emitMaybePCRelativeValue - Emit a 32-bit address which may be PC relative.
216 ///
217 void Emitter::emitMaybePCRelativeValue(unsigned Address, bool isPCRelative) {
218   if (isPCRelative)
219     MCE.emitWord(Address-MCE.getCurrentPCValue()-4);
220   else
221     MCE.emitWord(Address);
222 }
223
224 /// emitGlobalAddressForCall - Emit the specified address to the code stream
225 /// assuming this is part of a function call, which is PC relative.
226 ///
227 void Emitter::emitGlobalAddressForCall(GlobalValue *GV) {
228   // Get the address from the backend...
229   unsigned Address = MCE.getGlobalValueAddress(GV);
230   
231   // If the machine code emitter doesn't know what the address IS yet, we have
232   // to take special measures.
233   //
234   if (Address == 0) {
235     // FIXME: this is JIT specific!
236     if (TheJITResolver == 0)
237       TheJITResolver = new JITResolver(MCE);
238     Address = TheJITResolver->addFunctionReference(MCE.getCurrentPCValue(),
239                                                    (Function*)GV);
240   }
241   emitMaybePCRelativeValue(Address, true);
242 }
243
244 /// emitGlobalAddress - Emit the specified address to the code stream assuming
245 /// this is part of a "take the address of a global" instruction, which is not
246 /// PC relative.
247 ///
248 void Emitter::emitGlobalAddressForPtr(GlobalValue *GV) {
249   // Get the address from the backend...
250   unsigned Address = MCE.getGlobalValueAddress(GV);
251
252   // If the machine code emitter doesn't know what the address IS yet, we have
253   // to take special measures.
254   //
255   if (Address == 0) {
256     // FIXME: this is JIT specific!
257     if (TheJITResolver == 0)
258       TheJITResolver = new JITResolver(MCE);
259     Address = TheJITResolver->getLazyResolver((Function*)GV);
260   }
261
262   emitMaybePCRelativeValue(Address, false);
263 }
264
265
266
267
268 namespace N86 {  // Native X86 Register numbers...
269   enum {
270     EAX = 0, ECX = 1, EDX = 2, EBX = 3, ESP = 4, EBP = 5, ESI = 6, EDI = 7
271   };
272 }
273
274
275 // getX86RegNum - This function maps LLVM register identifiers to their X86
276 // specific numbering, which is used in various places encoding instructions.
277 //
278 static unsigned getX86RegNum(unsigned RegNo) {
279   switch(RegNo) {
280   case X86::EAX: case X86::AX: case X86::AL: return N86::EAX;
281   case X86::ECX: case X86::CX: case X86::CL: return N86::ECX;
282   case X86::EDX: case X86::DX: case X86::DL: return N86::EDX;
283   case X86::EBX: case X86::BX: case X86::BL: return N86::EBX;
284   case X86::ESP: case X86::SP: case X86::AH: return N86::ESP;
285   case X86::EBP: case X86::BP: case X86::CH: return N86::EBP;
286   case X86::ESI: case X86::SI: case X86::DH: return N86::ESI;
287   case X86::EDI: case X86::DI: case X86::BH: return N86::EDI;
288
289   case X86::ST0: case X86::ST1: case X86::ST2: case X86::ST3:
290   case X86::ST4: case X86::ST5: case X86::ST6: case X86::ST7:
291     return RegNo-X86::ST0;
292   default:
293     assert(RegNo >= MRegisterInfo::FirstVirtualRegister &&
294            "Unknown physical register!");
295     assert(0 && "Register allocator hasn't allocated reg correctly yet!");
296     return 0;
297   }
298 }
299
300 inline static unsigned char ModRMByte(unsigned Mod, unsigned RegOpcode,
301                                       unsigned RM) {
302   assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!");
303   return RM | (RegOpcode << 3) | (Mod << 6);
304 }
305
306 void Emitter::emitRegModRMByte(unsigned ModRMReg, unsigned RegOpcodeFld){
307   MCE.emitByte(ModRMByte(3, RegOpcodeFld, getX86RegNum(ModRMReg)));
308 }
309
310 void Emitter::emitSIBByte(unsigned SS, unsigned Index, unsigned Base) {
311   // SIB byte is in the same format as the ModRMByte...
312   MCE.emitByte(ModRMByte(SS, Index, Base));
313 }
314
315 void Emitter::emitConstant(unsigned Val, unsigned Size) {
316   // Output the constant in little endian byte order...
317   for (unsigned i = 0; i != Size; ++i) {
318     MCE.emitByte(Val & 255);
319     Val >>= 8;
320   }
321 }
322
323 static bool isDisp8(int Value) {
324   return Value == (signed char)Value;
325 }
326
327 void Emitter::emitMemModRMByte(const MachineInstr &MI,
328                                unsigned Op, unsigned RegOpcodeField) {
329   const MachineOperand &Disp     = MI.getOperand(Op+3);
330   if (MI.getOperand(Op).isConstantPoolIndex()) {
331     // Emit a direct address reference [disp32] where the displacement of the
332     // constant pool entry is controlled by the MCE.
333     MCE.emitByte(ModRMByte(0, RegOpcodeField, 5));
334     unsigned Index = MI.getOperand(Op).getConstantPoolIndex();
335     unsigned Address = MCE.getConstantPoolEntryAddress(Index);
336     MCE.emitWord(Address+Disp.getImmedValue());
337     return;
338   }
339
340   const MachineOperand &BaseReg  = MI.getOperand(Op);
341   const MachineOperand &Scale    = MI.getOperand(Op+1);
342   const MachineOperand &IndexReg = MI.getOperand(Op+2);
343
344   // Is a SIB byte needed?
345   if (IndexReg.getReg() == 0 && BaseReg.getReg() != X86::ESP) {
346     if (BaseReg.getReg() == 0) {  // Just a displacement?
347       // Emit special case [disp32] encoding
348       MCE.emitByte(ModRMByte(0, RegOpcodeField, 5));
349       emitConstant(Disp.getImmedValue(), 4);
350     } else {
351       unsigned BaseRegNo = getX86RegNum(BaseReg.getReg());
352       if (Disp.getImmedValue() == 0 && BaseRegNo != N86::EBP) {
353         // Emit simple indirect register encoding... [EAX] f.e.
354         MCE.emitByte(ModRMByte(0, RegOpcodeField, BaseRegNo));
355       } else if (isDisp8(Disp.getImmedValue())) {
356         // Emit the disp8 encoding... [REG+disp8]
357         MCE.emitByte(ModRMByte(1, RegOpcodeField, BaseRegNo));
358         emitConstant(Disp.getImmedValue(), 1);
359       } else {
360         // Emit the most general non-SIB encoding: [REG+disp32]
361         MCE.emitByte(ModRMByte(2, RegOpcodeField, BaseRegNo));
362         emitConstant(Disp.getImmedValue(), 4);
363       }
364     }
365
366   } else {  // We need a SIB byte, so start by outputting the ModR/M byte first
367     assert(IndexReg.getReg() != X86::ESP && "Cannot use ESP as index reg!");
368
369     bool ForceDisp32 = false;
370     bool ForceDisp8  = false;
371     if (BaseReg.getReg() == 0) {
372       // If there is no base register, we emit the special case SIB byte with
373       // MOD=0, BASE=5, to JUST get the index, scale, and displacement.
374       MCE.emitByte(ModRMByte(0, RegOpcodeField, 4));
375       ForceDisp32 = true;
376     } else if (Disp.getImmedValue() == 0 && BaseReg.getReg() != X86::EBP) {
377       // Emit no displacement ModR/M byte
378       MCE.emitByte(ModRMByte(0, RegOpcodeField, 4));
379     } else if (isDisp8(Disp.getImmedValue())) {
380       // Emit the disp8 encoding...
381       MCE.emitByte(ModRMByte(1, RegOpcodeField, 4));
382       ForceDisp8 = true;           // Make sure to force 8 bit disp if Base=EBP
383     } else {
384       // Emit the normal disp32 encoding...
385       MCE.emitByte(ModRMByte(2, RegOpcodeField, 4));
386     }
387
388     // Calculate what the SS field value should be...
389     static const unsigned SSTable[] = { ~0, 0, 1, ~0, 2, ~0, ~0, ~0, 3 };
390     unsigned SS = SSTable[Scale.getImmedValue()];
391
392     if (BaseReg.getReg() == 0) {
393       // Handle the SIB byte for the case where there is no base.  The
394       // displacement has already been output.
395       assert(IndexReg.getReg() && "Index register must be specified!");
396       emitSIBByte(SS, getX86RegNum(IndexReg.getReg()), 5);
397     } else {
398       unsigned BaseRegNo = getX86RegNum(BaseReg.getReg());
399       unsigned IndexRegNo;
400       if (IndexReg.getReg())
401         IndexRegNo = getX86RegNum(IndexReg.getReg());
402       else
403         IndexRegNo = 4;   // For example [ESP+1*<noreg>+4]
404       emitSIBByte(SS, IndexRegNo, BaseRegNo);
405     }
406
407     // Do we need to output a displacement?
408     if (Disp.getImmedValue() != 0 || ForceDisp32 || ForceDisp8) {
409       if (!ForceDisp32 && isDisp8(Disp.getImmedValue()))
410         emitConstant(Disp.getImmedValue(), 1);
411       else
412         emitConstant(Disp.getImmedValue(), 4);
413     }
414   }
415 }
416
417 static unsigned sizeOfPtr(const TargetInstrDescriptor &Desc) {
418   switch (Desc.TSFlags & X86II::ArgMask) {
419   case X86II::Arg8:   return 1;
420   case X86II::Arg16:  return 2;
421   case X86II::Arg32:  return 4;
422   case X86II::ArgF32: return 4;
423   case X86II::ArgF64: return 8;
424   case X86II::ArgF80: return 10;
425   default: assert(0 && "Memory size not set!");
426     return 0;
427   }
428 }
429
430 void Emitter::emitInstruction(MachineInstr &MI) {
431   unsigned Opcode = MI.getOpcode();
432   const TargetInstrDescriptor &Desc = II->get(Opcode);
433
434   // Emit instruction prefixes if neccesary
435   if (Desc.TSFlags & X86II::OpSize) MCE.emitByte(0x66);// Operand size...
436
437   switch (Desc.TSFlags & X86II::Op0Mask) {
438   case X86II::TB:
439     MCE.emitByte(0x0F);   // Two-byte opcode prefix
440     break;
441   case X86II::D8: case X86II::D9: case X86II::DA: case X86II::DB:
442   case X86II::DC: case X86II::DD: case X86II::DE: case X86II::DF:
443     MCE.emitByte(0xD8+
444                  (((Desc.TSFlags & X86II::Op0Mask)-X86II::D8)
445                                    >> X86II::Op0Shift));
446     break; // Two-byte opcode prefix
447   default: assert(0 && "Invalid prefix!");
448   case 0: break;  // No prefix!
449   }
450
451   unsigned char BaseOpcode = II->getBaseOpcodeFor(Opcode);
452   switch (Desc.TSFlags & X86II::FormMask) {
453   default: assert(0 && "Unknown FormMask value in X86 MachineCodeEmitter!");
454   case X86II::Pseudo:
455     if (Opcode != X86::IMPLICIT_USE)
456       std::cerr << "X86 Machine Code Emitter: No 'form', not emitting: " << MI;
457     break;
458
459   case X86II::RawFrm:
460     MCE.emitByte(BaseOpcode);
461     if (MI.getNumOperands() == 1) {
462       MachineOperand &MO = MI.getOperand(0);
463       if (MO.isPCRelativeDisp()) {
464         // Conditional branch... FIXME: this should use an MBB destination!
465         emitPCRelativeBlockAddress(cast<BasicBlock>(MO.getVRegValue()));
466       } else if (MO.isGlobalAddress()) {
467         assert(MO.isPCRelative() && "Call target is not PC Relative?");
468         emitGlobalAddressForCall(MO.getGlobal());
469       } else if (MO.isExternalSymbol()) {
470         unsigned Address = MCE.getGlobalValueAddress(MO.getSymbolName());
471         assert(Address && "Unknown external symbol!");
472         emitMaybePCRelativeValue(Address, MO.isPCRelative());
473       } else {
474         assert(0 && "Unknown RawFrm operand!");
475       }
476     }
477     break;
478
479   case X86II::AddRegFrm:
480     MCE.emitByte(BaseOpcode + getX86RegNum(MI.getOperand(0).getReg()));
481     if (MI.getNumOperands() == 2) {
482       MachineOperand &MO1 = MI.getOperand(1);
483       if (MO1.isImmediate() || MO1.getVRegValueOrNull() ||
484           MO1.isGlobalAddress() || MO1.isExternalSymbol()) {
485         unsigned Size = sizeOfPtr(Desc);
486         if (Value *V = MO1.getVRegValueOrNull()) {
487           assert(Size == 4 && "Don't know how to emit non-pointer values!");
488           emitGlobalAddressForPtr(cast<GlobalValue>(V));
489         } else if (MO1.isGlobalAddress()) {
490           assert(Size == 4 && "Don't know how to emit non-pointer values!");
491           assert(!MO1.isPCRelative() && "Function pointer ref is PC relative?");
492           emitGlobalAddressForPtr(MO1.getGlobal());
493         } else if (MO1.isExternalSymbol()) {
494           assert(Size == 4 && "Don't know how to emit non-pointer values!");
495
496           unsigned Address = MCE.getGlobalValueAddress(MO1.getSymbolName());
497           assert(Address && "Unknown external symbol!");
498           emitMaybePCRelativeValue(Address, MO1.isPCRelative());
499         } else {
500           emitConstant(MO1.getImmedValue(), Size);
501         }
502       }
503     }
504     break;
505
506   case X86II::MRMDestReg: {
507     MCE.emitByte(BaseOpcode);
508     MachineOperand &SrcOp = MI.getOperand(1+II->isTwoAddrInstr(Opcode));
509     emitRegModRMByte(MI.getOperand(0).getReg(), getX86RegNum(SrcOp.getReg()));
510     if (MI.getNumOperands() == 4)
511       emitConstant(MI.getOperand(3).getImmedValue(), sizeOfPtr(Desc));
512     break;
513   }
514   case X86II::MRMDestMem:
515     MCE.emitByte(BaseOpcode);
516     emitMemModRMByte(MI, 0, getX86RegNum(MI.getOperand(4).getReg()));
517     break;
518
519   case X86II::MRMSrcReg:
520     MCE.emitByte(BaseOpcode);
521     emitRegModRMByte(MI.getOperand(MI.getNumOperands()-1).getReg(),
522                      getX86RegNum(MI.getOperand(0).getReg()));
523     break;
524
525   case X86II::MRMSrcMem:
526     MCE.emitByte(BaseOpcode);
527     emitMemModRMByte(MI, MI.getNumOperands()-4,
528                      getX86RegNum(MI.getOperand(0).getReg()));
529     break;
530
531   case X86II::MRMS0r: case X86II::MRMS1r:
532   case X86II::MRMS2r: case X86II::MRMS3r:
533   case X86II::MRMS4r: case X86II::MRMS5r:
534   case X86II::MRMS6r: case X86II::MRMS7r:
535     MCE.emitByte(BaseOpcode);
536     emitRegModRMByte(MI.getOperand(0).getReg(),
537                      (Desc.TSFlags & X86II::FormMask)-X86II::MRMS0r);
538
539     if (MI.getOperand(MI.getNumOperands()-1).isImmediate()) {
540       unsigned Size = sizeOfPtr(Desc);
541       emitConstant(MI.getOperand(MI.getNumOperands()-1).getImmedValue(), Size);
542     }
543     break;
544
545   case X86II::MRMS0m: case X86II::MRMS1m:
546   case X86II::MRMS2m: case X86II::MRMS3m:
547   case X86II::MRMS4m: case X86II::MRMS5m:
548   case X86II::MRMS6m: case X86II::MRMS7m: 
549     MCE.emitByte(BaseOpcode);
550     emitMemModRMByte(MI, 0, (Desc.TSFlags & X86II::FormMask)-X86II::MRMS0m);
551
552     if (MI.getNumOperands() == 5) {
553       unsigned Size = sizeOfPtr(Desc);
554       emitConstant(MI.getOperand(4).getImmedValue(), Size);
555     }
556     break;
557   }
558 }