blob: 10a2c89fbacc338031869f9175bb21cf07596529 [file] [log] [blame]
Chris Lattnerb36cbd02005-07-01 22:44:09 +00001//===-- X86ATTAsmPrinter.cpp - Convert X86 LLVM code to Intel assembly ----===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to AT&T format assembly
12// language. This printer is the output mechanism used by `llc'.
13//
14//===----------------------------------------------------------------------===//
15
16#include "X86ATTAsmPrinter.h"
17#include "X86.h"
18#include "X86TargetMachine.h"
19#include "llvm/Module.h"
20#include "llvm/Support/Mangler.h"
Evan Cheng7ccced62006-02-18 00:15:05 +000021#include "llvm/Target/TargetOptions.h"
Chris Lattner2c2c6c62006-01-22 23:41:00 +000022#include <iostream>
Chris Lattnerb36cbd02005-07-01 22:44:09 +000023using namespace llvm;
Chris Lattnerb36cbd02005-07-01 22:44:09 +000024
25/// runOnMachineFunction - This uses the printMachineInstruction()
26/// method to print assembly for each instruction.
27///
28bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Jim Laskeyea348582006-07-27 02:05:13 +000029 if (Subtarget->isTargetDarwin()) {
Jim Laskeye29c2f52006-07-19 11:54:50 +000030 // Let PassManager know we need debug information and relay
31 // the MachineDebugInfo address on to DwarfWriter.
32 DW.SetDebugInfo(&getAnalysis<MachineDebugInfo>());
33 }
Evan Cheng3c992d22006-03-07 02:02:57 +000034
Chris Lattner8b8b9512005-11-21 07:51:23 +000035 SetupMachineFunction(MF);
Chris Lattnerb36cbd02005-07-01 22:44:09 +000036 O << "\n\n";
37
38 // Print out constants referenced by the function
Chris Lattnerd939f6c2005-11-21 08:32:23 +000039 EmitConstantPool(MF.getConstantPool());
Chris Lattnerb36cbd02005-07-01 22:44:09 +000040
Nate Begeman37efe672006-04-22 18:53:45 +000041 // Print out jump tables referenced by the function
42 EmitJumpTableInfo(MF.getJumpTableInfo());
43
Chris Lattnerb36cbd02005-07-01 22:44:09 +000044 // Print out labels for the function.
Evan Cheng2338c5c2006-02-07 08:38:37 +000045 const Function *F = MF.getFunction();
46 switch (F->getLinkage()) {
47 default: assert(0 && "Unknown linkage type!");
48 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattnerdad9c5a2006-05-09 05:12:53 +000049 SwitchToTextSection(DefaultTextSection, F);
Evan Cheng2338c5c2006-02-07 08:38:37 +000050 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
51 break;
52 case Function::ExternalLinkage:
Chris Lattnerdad9c5a2006-05-09 05:12:53 +000053 SwitchToTextSection(DefaultTextSection, F);
Evan Cheng2338c5c2006-02-07 08:38:37 +000054 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Chris Lattner272f9982005-12-16 00:07:30 +000055 O << "\t.globl\t" << CurrentFnName << "\n";
Evan Cheng2338c5c2006-02-07 08:38:37 +000056 break;
57 case Function::WeakLinkage:
58 case Function::LinkOnceLinkage:
Jim Laskeyea348582006-07-27 02:05:13 +000059 if (Subtarget->isTargetDarwin()) {
Chris Lattner4632d7a2006-05-09 04:59:56 +000060 SwitchToTextSection(
61 ".section __TEXT,__textcoal_nt,coalesced,pure_instructions", F);
Evan Chengf1616da2006-02-22 23:59:57 +000062 O << "\t.globl\t" << CurrentFnName << "\n";
Evan Cheng2338c5c2006-02-07 08:38:37 +000063 O << "\t.weak_definition\t" << CurrentFnName << "\n";
Evan Cheng932ad512006-05-25 21:59:08 +000064 } else if (Subtarget->TargetType == X86Subtarget::isCygwin) {
65 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
66 O << "\t.section\t.llvm.linkonce.t." << CurrentFnName
67 << ",\"ax\"\n";
68 SwitchToTextSection("", F);
69 O << "\t.weak " << CurrentFnName << "\n";
Evan Cheng2338c5c2006-02-07 08:38:37 +000070 } else {
71 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
72 O << "\t.section\t.llvm.linkonce.t." << CurrentFnName
73 << ",\"ax\",@progbits\n";
Chris Lattner4632d7a2006-05-09 04:59:56 +000074 SwitchToTextSection("", F);
Evan Cheng2338c5c2006-02-07 08:38:37 +000075 O << "\t.weak " << CurrentFnName << "\n";
76 }
77 break;
78 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +000079 O << CurrentFnName << ":\n";
80
Jim Laskeyea348582006-07-27 02:05:13 +000081 if (Subtarget->isTargetDarwin()) {
Jim Laskey6b92b8e2006-04-07 20:44:42 +000082 // Emit pre-function debug information.
Jim Laskey89d67fa2006-06-23 12:51:53 +000083 DW.BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +000084 }
85
Chris Lattnerb36cbd02005-07-01 22:44:09 +000086 // Print out code for the function.
87 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
88 I != E; ++I) {
89 // Print a label for the basic block.
Nate Begemancdf38c42006-05-02 05:37:32 +000090 if (I->pred_begin() != I->pred_end()) {
91 printBasicBlockLabel(I, true);
92 O << '\n';
93 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +000094 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
95 II != E; ++II) {
96 // Print the assembly for the instruction.
97 O << "\t";
98 printMachineInstruction(II);
99 }
100 }
Chris Lattnerac2902b2005-11-21 23:06:54 +0000101 if (HasDotTypeDotSizeDirective)
Nate Begeman73213f62005-07-12 01:37:28 +0000102 O << "\t.size " << CurrentFnName << ", .-" << CurrentFnName << "\n";
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000103
Jim Laskeyea348582006-07-27 02:05:13 +0000104 if (Subtarget->isTargetDarwin()) {
Evan Chengd5948812006-03-07 02:23:26 +0000105 // Emit post-function debug information.
Jim Laskey99db0442006-03-23 18:09:44 +0000106 DW.EndFunction();
Evan Chengd5948812006-03-07 02:23:26 +0000107 }
Evan Cheng3c992d22006-03-07 02:02:57 +0000108
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000109 // We didn't modify anything.
110 return false;
111}
112
Chris Lattnera3b8c572006-02-06 23:41:19 +0000113void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
114 const char *Modifier) {
115 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000116 const MRegisterInfo &RI = *TM.getRegisterInfo();
117 switch (MO.getType()) {
Evan Cheng8f7f7122006-05-05 05:40:20 +0000118 case MachineOperand::MO_Register: {
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000119 assert(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
120 "Virtual registers should not make it this far!");
121 O << '%';
Evan Cheng8f7f7122006-05-05 05:40:20 +0000122 unsigned Reg = MO.getReg();
Evan Chengcbe70e12006-05-31 22:34:26 +0000123 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
124 MVT::ValueType VT = (strcmp(Modifier,"subreg16") == 0)
Evan Cheng403be7e2006-05-08 08:01:26 +0000125 ? MVT::i16 : MVT::i8;
Evan Cheng8f7f7122006-05-05 05:40:20 +0000126 Reg = getX86SubSuperRegister(Reg, VT);
127 }
128 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000129 O << (char)tolower(*Name);
130 return;
Evan Cheng8f7f7122006-05-05 05:40:20 +0000131 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000132
Chris Lattner63b3d712006-05-04 17:21:20 +0000133 case MachineOperand::MO_Immediate:
Evan Cheng3c992d22006-03-07 02:02:57 +0000134 if (!Modifier || strcmp(Modifier, "debug") != 0)
135 O << '$';
Evan Cheng138a24e2006-05-26 08:04:31 +0000136 O << MO.getImmedValue();
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000137 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000138 case MachineOperand::MO_MachineBasicBlock:
139 printBasicBlockLabel(MO.getMachineBasicBlock());
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000140 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000141 case MachineOperand::MO_JumpTableIndex: {
142 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
143 if (!isMemOp) O << '$';
144 O << PrivateGlobalPrefix << "JTI" << getFunctionNumber() << "_"
145 << MO.getJumpTableIndex();
Jim Laskeyea348582006-07-27 02:05:13 +0000146 if (Subtarget->isTargetDarwin() &&
Nate Begeman2f1ae882006-07-27 01:13:04 +0000147 TM.getRelocationModel() == Reloc::PIC_)
148 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nate Begeman37efe672006-04-22 18:53:45 +0000149 return;
150 }
Evan Chenga09bd812006-02-26 08:28:12 +0000151 case MachineOperand::MO_ConstantPoolIndex: {
152 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
153 if (!isMemOp) O << '$';
154 O << PrivateGlobalPrefix << "CPI" << getFunctionNumber() << "_"
155 << MO.getConstantPoolIndex();
Jim Laskeyea348582006-07-27 02:05:13 +0000156 if (Subtarget->isTargetDarwin() &&
Chris Lattner35d86fe2006-07-26 21:12:04 +0000157 TM.getRelocationModel() == Reloc::PIC_)
Evan Chenga09bd812006-02-26 08:28:12 +0000158 O << "-\"L" << getFunctionNumber() << "$pb\"";
159 int Offset = MO.getOffset();
160 if (Offset > 0)
161 O << "+" << Offset;
162 else if (Offset < 0)
163 O << Offset;
164 return;
165 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000166 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera3b8c572006-02-06 23:41:19 +0000167 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Evan Cheng2338c5c2006-02-07 08:38:37 +0000168 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
Evan Cheng7ccced62006-02-18 00:15:05 +0000169 if (!isMemOp && !isCallOp) O << '$';
Evan Cheng2338c5c2006-02-07 08:38:37 +0000170 // Darwin block shameless ripped from PPCAsmPrinter.cpp
Jim Laskeyea348582006-07-27 02:05:13 +0000171 if (Subtarget->isTargetDarwin() &&
Evan Cheng932ad512006-05-25 21:59:08 +0000172 TM.getRelocationModel() != Reloc::Static) {
Nate Begeman72b286b2005-07-08 00:23:26 +0000173 GlobalValue *GV = MO.getGlobal();
174 std::string Name = Mang->getValueName(GV);
Evan Cheng2338c5c2006-02-07 08:38:37 +0000175 // Link-once, External, or Weakly-linked global variables need
176 // non-lazily-resolved stubs
177 if (GV->isExternal() || GV->hasWeakLinkage() ||
178 GV->hasLinkOnceLinkage()) {
179 // Dynamically-resolved functions need a stub for the function.
180 if (isCallOp && isa<Function>(GV) && cast<Function>(GV)->isExternal()) {
181 FnStubs.insert(Name);
182 O << "L" << Name << "$stub";
183 } else {
184 GVStubs.insert(Name);
185 O << "L" << Name << "$non_lazy_ptr";
186 }
Nate Begemand3a490a2005-07-12 18:34:58 +0000187 } else {
188 O << Mang->getValueName(GV);
Evan Chenga0ea0532006-02-23 02:43:52 +0000189 }
Chris Lattner35d86fe2006-07-26 21:12:04 +0000190 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Chenga0ea0532006-02-23 02:43:52 +0000191 O << "-\"L" << getFunctionNumber() << "$pb\"";
192 } else
Evan Cheng7ccced62006-02-18 00:15:05 +0000193 O << Mang->getValueName(MO.getGlobal());
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000194 int Offset = MO.getOffset();
195 if (Offset > 0)
196 O << "+" << Offset;
197 else if (Offset < 0)
198 O << Offset;
199 return;
200 }
Chris Lattnera3b8c572006-02-06 23:41:19 +0000201 case MachineOperand::MO_ExternalSymbol: {
202 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Evan Cheng932ad512006-05-25 21:59:08 +0000203 if (isCallOp &&
Jim Laskeyea348582006-07-27 02:05:13 +0000204 Subtarget->isTargetDarwin() &&
Evan Cheng932ad512006-05-25 21:59:08 +0000205 TM.getRelocationModel() != Reloc::Static) {
Evan Cheng4c1aa862006-02-22 20:19:42 +0000206 std::string Name(GlobalPrefix);
207 Name += MO.getSymbolName();
Nate Begeman72b286b2005-07-08 00:23:26 +0000208 FnStubs.insert(Name);
209 O << "L" << Name << "$stub";
210 return;
211 }
Evan Cheng4c1aa862006-02-22 20:19:42 +0000212 if (!isCallOp) O << '$';
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000213 O << GlobalPrefix << MO.getSymbolName();
214 return;
Chris Lattnera3b8c572006-02-06 23:41:19 +0000215 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000216 default:
217 O << "<unknown operand type>"; return;
218 }
219}
220
Nate Begeman391c5d22005-11-30 18:54:35 +0000221void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Nate Begeman6c7cb292005-07-14 22:52:25 +0000222 unsigned char value = MI->getOperand(Op).getImmedValue();
223 assert(value <= 7 && "Invalid ssecc argument!");
224 switch (value) {
225 case 0: O << "eq"; break;
226 case 1: O << "lt"; break;
227 case 2: O << "le"; break;
228 case 3: O << "unord"; break;
229 case 4: O << "neq"; break;
230 case 5: O << "nlt"; break;
231 case 6: O << "nle"; break;
232 case 7: O << "ord"; break;
233 }
234}
235
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000236void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op){
237 assert(isMem(MI, Op) && "Invalid memory reference!");
238
239 const MachineOperand &BaseReg = MI->getOperand(Op);
240 int ScaleVal = MI->getOperand(Op+1).getImmedValue();
241 const MachineOperand &IndexReg = MI->getOperand(Op+2);
242 const MachineOperand &DispSpec = MI->getOperand(Op+3);
243
244 if (BaseReg.isFrameIndex()) {
245 O << "[frame slot #" << BaseReg.getFrameIndex();
246 if (DispSpec.getImmedValue())
247 O << " + " << DispSpec.getImmedValue();
248 O << "]";
249 return;
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000250 }
251
Evan Chenga09bd812006-02-26 08:28:12 +0000252 if (DispSpec.isGlobalAddress() || DispSpec.isConstantPoolIndex()) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000253 printOperand(MI, Op+3, "mem");
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000254 } else {
255 int DispVal = DispSpec.getImmedValue();
256 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
257 O << DispVal;
258 }
259
260 if (IndexReg.getReg() || BaseReg.getReg()) {
261 O << "(";
262 if (BaseReg.getReg())
Chris Lattnera3b8c572006-02-06 23:41:19 +0000263 printOperand(MI, Op);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000264
265 if (IndexReg.getReg()) {
266 O << ",";
Chris Lattnera3b8c572006-02-06 23:41:19 +0000267 printOperand(MI, Op+2);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000268 if (ScaleVal != 1)
269 O << "," << ScaleVal;
270 }
271
272 O << ")";
273 }
274}
275
Evan Cheng7ccced62006-02-18 00:15:05 +0000276void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
277 O << "\"L" << getFunctionNumber() << "$pb\"\n";
278 O << "\"L" << getFunctionNumber() << "$pb\":";
279}
280
Evan Cheng62f27002006-04-28 23:11:40 +0000281
Evan Cheng55c25f22006-04-28 23:19:39 +0000282bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
Evan Cheng62f27002006-04-28 23:11:40 +0000283 const char Mode) {
284 const MRegisterInfo &RI = *TM.getRegisterInfo();
285 unsigned Reg = MO.getReg();
Evan Cheng62f27002006-04-28 23:11:40 +0000286 switch (Mode) {
287 default: return true; // Unknown mode.
288 case 'b': // Print QImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000289 Reg = getX86SubSuperRegister(Reg, MVT::i8);
Evan Cheng62f27002006-04-28 23:11:40 +0000290 break;
291 case 'h': // Print QImode high register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000292 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
Evan Cheng62f27002006-04-28 23:11:40 +0000293 break;
294 case 'w': // Print HImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000295 Reg = getX86SubSuperRegister(Reg, MVT::i16);
Evan Cheng62f27002006-04-28 23:11:40 +0000296 break;
297 case 'k': // Print SImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000298 Reg = getX86SubSuperRegister(Reg, MVT::i32);
Evan Cheng62f27002006-04-28 23:11:40 +0000299 break;
300 }
301
Evan Cheng8f7f7122006-05-05 05:40:20 +0000302 O << '%';
303 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
304 O << (char)tolower(*Name);
Evan Cheng62f27002006-04-28 23:11:40 +0000305 return false;
306}
307
Evan Cheng3d48a902006-04-28 21:19:05 +0000308/// PrintAsmOperand - Print out an operand for an inline asm expression.
309///
310bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
311 unsigned AsmVariant,
312 const char *ExtraCode) {
313 // Does this asm operand have a single letter operand modifier?
314 if (ExtraCode && ExtraCode[0]) {
315 if (ExtraCode[1] != 0) return true; // Unknown modifier.
316
317 switch (ExtraCode[0]) {
318 default: return true; // Unknown modifier.
Evan Cheng62f27002006-04-28 23:11:40 +0000319 case 'b': // Print QImode register
320 case 'h': // Print QImode high register
321 case 'w': // Print HImode register
322 case 'k': // Print SImode register
Evan Cheng55c25f22006-04-28 23:19:39 +0000323 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
Evan Cheng3d48a902006-04-28 21:19:05 +0000324 }
325 }
326
327 printOperand(MI, OpNo);
328 return false;
329}
330
331bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
332 unsigned OpNo,
333 unsigned AsmVariant,
334 const char *ExtraCode) {
335 if (ExtraCode && ExtraCode[0])
336 return true; // Unknown modifier.
337 printMemReference(MI, OpNo);
338 return false;
339}
340
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000341/// printMachineInstruction -- Print out a single X86 LLVM instruction
342/// MI in Intel syntax to the current output stream.
343///
344void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
345 ++EmittedInsts;
Evan Cheng67caa392006-01-26 02:27:43 +0000346 // This works around some Darwin assembler bugs.
Jim Laskeyea348582006-07-27 02:05:13 +0000347 if (Subtarget->isTargetDarwin()) {
Evan Cheng67caa392006-01-26 02:27:43 +0000348 switch (MI->getOpcode()) {
349 case X86::REP_MOVSB:
350 O << "rep/movsb (%esi),(%edi)\n";
351 return;
352 case X86::REP_MOVSD:
353 O << "rep/movsl (%esi),(%edi)\n";
354 return;
355 case X86::REP_MOVSW:
356 O << "rep/movsw (%esi),(%edi)\n";
357 return;
358 case X86::REP_STOSB:
359 O << "rep/stosb\n";
360 return;
361 case X86::REP_STOSD:
362 O << "rep/stosl\n";
363 return;
364 case X86::REP_STOSW:
365 O << "rep/stosw\n";
366 return;
367 default:
368 break;
369 }
370 }
371
Evan Cheng8f7f7122006-05-05 05:40:20 +0000372 // See if a truncate instruction can be turned into a nop.
373 switch (MI->getOpcode()) {
374 default: break;
Evan Cheng069287d2006-05-16 07:21:53 +0000375 case X86::TRUNC_GR32_GR16:
376 case X86::TRUNC_GR32_GR8:
377 case X86::TRUNC_GR16_GR8: {
Evan Cheng8f7f7122006-05-05 05:40:20 +0000378 const MachineOperand &MO0 = MI->getOperand(0);
379 const MachineOperand &MO1 = MI->getOperand(1);
380 unsigned Reg0 = MO0.getReg();
381 unsigned Reg1 = MO1.getReg();
Evan Cheng069287d2006-05-16 07:21:53 +0000382 if (MI->getOpcode() == X86::TRUNC_GR32_GR16)
Evan Cheng403be7e2006-05-08 08:01:26 +0000383 Reg1 = getX86SubSuperRegister(Reg1, MVT::i16);
Evan Cheng8f7f7122006-05-05 05:40:20 +0000384 else
Evan Cheng403be7e2006-05-08 08:01:26 +0000385 Reg1 = getX86SubSuperRegister(Reg1, MVT::i8);
386 O << CommentString << " TRUNCATE ";
387 if (Reg0 != Reg1)
388 O << "\n\t";
Evan Cheng8f7f7122006-05-05 05:40:20 +0000389 break;
390 }
391 }
392
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000393 // Call the autogenerated instruction printer routines.
394 printInstruction(MI);
395}
396
397// Include the auto-generated portion of the assembly writer.
398#include "X86GenAsmWriter.inc"
399