blob: 9d4df93c1b4686c319c6fa6b42382e03b5542245 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- X86IntelAsmPrinter.cpp - Convert X86 LLVM code to Intel assembly --===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to Intel format assembly language.
12// This printer is the output mechanism used by `llc'.
13//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "asm-printer"
17#include "X86IntelAsmPrinter.h"
Cédric Venet4fce6e22008-08-24 12:30:46 +000018#include "X86InstrInfo.h"
19#include "X86TargetAsmInfo.h"
20#include "X86.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021#include "llvm/CallingConv.h"
22#include "llvm/Constants.h"
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +000023#include "llvm/DerivedTypes.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024#include "llvm/Module.h"
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +000025#include "llvm/ADT/Statistic.h"
26#include "llvm/ADT/StringExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027#include "llvm/Assembly/Writer.h"
Bill Wendling4ff1cdf2009-02-18 23:12:06 +000028#include "llvm/CodeGen/DwarfWriter.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029#include "llvm/Support/Mangler.h"
30#include "llvm/Target/TargetAsmInfo.h"
31#include "llvm/Target/TargetOptions.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000032using namespace llvm;
33
34STATISTIC(EmittedInsts, "Number of machine instrs printed");
35
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +000036static X86MachineFunctionInfo calculateFunctionInfo(const Function *F,
37 const TargetData *TD) {
38 X86MachineFunctionInfo Info;
39 uint64_t Size = 0;
40
41 switch (F->getCallingConv()) {
42 case CallingConv::X86_StdCall:
43 Info.setDecorationStyle(StdCall);
44 break;
45 case CallingConv::X86_FastCall:
46 Info.setDecorationStyle(FastCall);
47 break;
48 default:
49 return Info;
50 }
51
52 unsigned argNum = 1;
53 for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
54 AI != AE; ++AI, ++argNum) {
55 const Type* Ty = AI->getType();
56
57 // 'Dereference' type in case of byval parameter attribute
Devang Pateld222f862008-09-25 21:00:45 +000058 if (F->paramHasAttr(argNum, Attribute::ByVal))
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +000059 Ty = cast<PointerType>(Ty)->getElementType();
60
61 // Size should be aligned to DWORD boundary
Duncan Sandsec4f97d2009-05-09 07:06:46 +000062 Size += ((TD->getTypeAllocSize(Ty) + 3)/4)*4;
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +000063 }
64
65 // We're not supporting tooooo huge arguments :)
66 Info.setBytesToPopOnReturn((unsigned int)Size);
67 return Info;
68}
69
70
71/// decorateName - Query FunctionInfoMap and use this information for various
72/// name decoration.
73void X86IntelAsmPrinter::decorateName(std::string &Name,
74 const GlobalValue *GV) {
75 const Function *F = dyn_cast<Function>(GV);
76 if (!F) return;
77
78 // We don't want to decorate non-stdcall or non-fastcall functions right now
79 unsigned CC = F->getCallingConv();
80 if (CC != CallingConv::X86_StdCall && CC != CallingConv::X86_FastCall)
81 return;
82
83 FMFInfoMap::const_iterator info_item = FunctionInfoMap.find(F);
84
85 const X86MachineFunctionInfo *Info;
86 if (info_item == FunctionInfoMap.end()) {
87 // Calculate apropriate function info and populate map
88 FunctionInfoMap[F] = calculateFunctionInfo(F, TM.getTargetData());
89 Info = &FunctionInfoMap[F];
90 } else {
91 Info = &info_item->second;
92 }
93
94 const FunctionType *FT = F->getFunctionType();
95 switch (Info->getDecorationStyle()) {
96 case None:
97 break;
98 case StdCall:
99 // "Pure" variadic functions do not receive @0 suffix.
100 if (!FT->isVarArg() || (FT->getNumParams() == 0) ||
101 (FT->getNumParams() == 1 && F->hasStructRetAttr()))
102 Name += '@' + utostr_32(Info->getBytesToPopOnReturn());
103 break;
104 case FastCall:
105 // "Pure" variadic functions do not receive @0 suffix.
106 if (!FT->isVarArg() || (FT->getNumParams() == 0) ||
107 (FT->getNumParams() == 1 && F->hasStructRetAttr()))
108 Name += '@' + utostr_32(Info->getBytesToPopOnReturn());
109
110 if (Name[0] == '_')
111 Name[0] = '@';
112 else
113 Name = '@' + Name;
114
115 break;
116 default:
117 assert(0 && "Unsupported DecorationStyle");
118 }
119}
120
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000121/// runOnMachineFunction - This uses the printMachineInstruction()
122/// method to print assembly for each instruction.
123///
124bool X86IntelAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling4f405312009-02-24 08:30:20 +0000125 this->MF = &MF;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126 SetupMachineFunction(MF);
127 O << "\n\n";
128
129 // Print out constants referenced by the function
130 EmitConstantPool(MF.getConstantPool());
131
132 // Print out labels for the function.
133 const Function *F = MF.getFunction();
134 unsigned CC = F->getCallingConv();
Bill Wendling25a8ae32009-06-30 22:38:32 +0000135 unsigned FnAlign = MF.getAlignment();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000136
137 // Populate function information map. Actually, We don't want to populate
138 // non-stdcall or non-fastcall functions' information right now.
139 if (CC == CallingConv::X86_StdCall || CC == CallingConv::X86_FastCall)
140 FunctionInfoMap[F] = *MF.getInfo<X86MachineFunctionInfo>();
141
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +0000142 decorateName(CurrentFnName, F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143
Anton Korobeynikovcf87a3d2008-09-24 22:13:07 +0000144 SwitchToTextSection("_text", F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 switch (F->getLinkage()) {
146 default: assert(0 && "Unsupported linkage type!");
Rafael Espindolaa168fc92009-01-15 20:18:42 +0000147 case Function::PrivateLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 case Function::InternalLinkage:
Evan Cheng2e8d3d42008-03-25 22:29:46 +0000149 EmitAlignment(FnAlign);
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000150 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000151 case Function::DLLExportLinkage:
152 DLLExportedFns.insert(CurrentFnName);
153 //FALLS THROUGH
154 case Function::ExternalLinkage:
155 O << "\tpublic " << CurrentFnName << "\n";
Evan Cheng2e8d3d42008-03-25 22:29:46 +0000156 EmitAlignment(FnAlign);
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000157 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000158 }
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000159
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160 O << CurrentFnName << "\tproc near\n";
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000161
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000162 // Print out code for the function.
163 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
164 I != E; ++I) {
165 // Print a label for the basic block if there are any predecessors.
Dan Gohman3f7d94b2007-10-03 19:26:29 +0000166 if (!I->pred_empty()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000167 printBasicBlockLabel(I, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168 O << '\n';
169 }
170 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
171 II != E; ++II) {
172 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000173 printMachineInstruction(II);
174 }
175 }
176
177 // Print out jump tables referenced by the function.
178 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
179
180 O << CurrentFnName << "\tendp\n";
181
Dan Gohmaneb94abd2008-11-07 19:49:17 +0000182 O.flush();
183
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184 // We didn't modify anything.
185 return false;
186}
187
188void X86IntelAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000189 unsigned char value = MI->getOperand(Op).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 assert(value <= 7 && "Invalid ssecc argument!");
191 switch (value) {
192 case 0: O << "eq"; break;
193 case 1: O << "lt"; break;
194 case 2: O << "le"; break;
195 case 3: O << "unord"; break;
196 case 4: O << "neq"; break;
197 case 5: O << "nlt"; break;
198 case 6: O << "nle"; break;
199 case 7: O << "ord"; break;
200 }
201}
202
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000203void X86IntelAsmPrinter::printOp(const MachineOperand &MO,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000204 const char *Modifier) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205 switch (MO.getType()) {
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000206 case MachineOperand::MO_Register: {
Dan Gohman1e57df32008-02-10 18:45:23 +0000207 if (TargetRegisterInfo::isPhysicalRegister(MO.getReg())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 unsigned Reg = MO.getReg();
209 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
Duncan Sands92c43912008-06-06 12:08:01 +0000210 MVT VT = (strcmp(Modifier,"subreg64") == 0) ?
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000211 MVT::i64 : ((strcmp(Modifier, "subreg32") == 0) ? MVT::i32 :
212 ((strcmp(Modifier,"subreg16") == 0) ? MVT::i16 :MVT::i8));
213 Reg = getX86SubSuperRegister(Reg, VT);
214 }
Evan Cheng00d04a72008-07-07 22:21:06 +0000215 O << TRI->getName(Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000216 } else
217 O << "reg" << MO.getReg();
218 return;
219 }
220 case MachineOperand::MO_Immediate:
Chris Lattnera96056a2007-12-30 20:49:49 +0000221 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000222 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000223 case MachineOperand::MO_JumpTableIndex: {
224 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
225 if (!isMemOp) O << "OFFSET ";
Evan Cheng477013c2007-10-14 05:57:21 +0000226 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000227 << "_" << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 return;
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000229 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000230 case MachineOperand::MO_ConstantPoolIndex: {
231 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
232 if (!isMemOp) O << "OFFSET ";
233 O << "[" << TAI->getPrivateGlobalPrefix() << "CPI"
Chris Lattner6017d482007-12-30 23:10:15 +0000234 << getFunctionNumber() << "_" << MO.getIndex();
Anton Korobeynikov440f23d2008-11-22 16:15:34 +0000235 printOffset(MO.getOffset());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000236 O << "]";
237 return;
238 }
239 case MachineOperand::MO_GlobalAddress: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000240 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000241 GlobalValue *GV = MO.getGlobal();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000242 std::string Name = Mang->getValueName(GV);
243
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +0000244 decorateName(Name, GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245
Chris Lattner357a0ca2009-06-20 19:34:09 +0000246 if (!isMemOp) O << "OFFSET ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000247 if (GV->hasDLLImportLinkage()) {
248 // FIXME: This should be fixed with full support of stdcall & fastcall
249 // CC's
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000250 O << "__imp_";
251 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000252 O << Name;
Anton Korobeynikov440f23d2008-11-22 16:15:34 +0000253 printOffset(MO.getOffset());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254 return;
255 }
256 case MachineOperand::MO_ExternalSymbol: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000257 O << TAI->getGlobalPrefix() << MO.getSymbolName();
258 return;
259 }
260 default:
261 O << "<unknown operand type>"; return;
262 }
263}
264
Chris Lattner357a0ca2009-06-20 19:34:09 +0000265void X86IntelAsmPrinter::print_pcrel_imm(const MachineInstr *MI, unsigned OpNo){
266 const MachineOperand &MO = MI->getOperand(OpNo);
267 switch (MO.getType()) {
268 default: assert(0 && "Unknown pcrel immediate operand");
269 case MachineOperand::MO_Immediate:
270 O << MO.getImm();
271 return;
272 case MachineOperand::MO_MachineBasicBlock:
273 printBasicBlockLabel(MO.getMBB());
274 return;
275
276 case MachineOperand::MO_GlobalAddress: {
277 GlobalValue *GV = MO.getGlobal();
278 std::string Name = Mang->getValueName(GV);
279 decorateName(Name, GV);
280
281 if (GV->hasDLLImportLinkage()) {
282 // FIXME: This should be fixed with full support of stdcall & fastcall
283 // CC's
284 O << "__imp_";
285 }
286 O << Name;
287 printOffset(MO.getOffset());
288 return;
289 }
290
291 case MachineOperand::MO_ExternalSymbol:
292 O << TAI->getGlobalPrefix() << MO.getSymbolName();
293 return;
294 }
295}
296
297
Rafael Espindolabca99f72009-04-08 21:14:34 +0000298void X86IntelAsmPrinter::printLeaMemReference(const MachineInstr *MI,
299 unsigned Op,
300 const char *Modifier) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301 const MachineOperand &BaseReg = MI->getOperand(Op);
Chris Lattnera96056a2007-12-30 20:49:49 +0000302 int ScaleVal = MI->getOperand(Op+1).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000303 const MachineOperand &IndexReg = MI->getOperand(Op+2);
304 const MachineOperand &DispSpec = MI->getOperand(Op+3);
305
306 O << "[";
307 bool NeedPlus = false;
308 if (BaseReg.getReg()) {
309 printOp(BaseReg, Modifier);
310 NeedPlus = true;
311 }
312
313 if (IndexReg.getReg()) {
314 if (NeedPlus) O << " + ";
315 if (ScaleVal != 1)
316 O << ScaleVal << "*";
317 printOp(IndexReg, Modifier);
318 NeedPlus = true;
319 }
320
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000321 if (DispSpec.isGlobal() || DispSpec.isCPI() ||
322 DispSpec.isJTI()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000323 if (NeedPlus)
324 O << " + ";
325 printOp(DispSpec, "mem");
326 } else {
Chris Lattnera96056a2007-12-30 20:49:49 +0000327 int DispVal = DispSpec.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000328 if (DispVal || (!BaseReg.getReg() && !IndexReg.getReg())) {
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +0000329 if (NeedPlus) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000330 if (DispVal > 0)
331 O << " + ";
332 else {
333 O << " - ";
334 DispVal = -DispVal;
335 }
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +0000336 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000337 O << DispVal;
338 }
339 }
340 O << "]";
341}
342
Rafael Espindolabca99f72009-04-08 21:14:34 +0000343void X86IntelAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
344 const char *Modifier) {
345 assert(isMem(MI, Op) && "Invalid memory reference!");
346 MachineOperand Segment = MI->getOperand(Op+4);
347 if (Segment.getReg()) {
348 printOperand(MI, Op+4, Modifier);
349 O << ':';
350 }
351 printLeaMemReference(MI, Op, Modifier);
352}
353
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000354void X86IntelAsmPrinter::printPICJumpTableSetLabel(unsigned uid,
Evan Cheng6fb06762007-11-09 01:32:10 +0000355 const MachineBasicBlock *MBB) const {
356 if (!TAI->getSetDirective())
357 return;
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000358
Evan Cheng6fb06762007-11-09 01:32:10 +0000359 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
360 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
Evan Cheng45c1edb2008-02-28 00:43:03 +0000361 printBasicBlockLabel(MBB, false, false, false);
Evan Cheng6fb06762007-11-09 01:32:10 +0000362 O << '-' << "\"L" << getFunctionNumber() << "$pb\"'\n";
363}
364
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365void X86IntelAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Eli Friedman378ea832009-06-19 04:48:38 +0000366 O << "L" << getFunctionNumber() << "$pb\n";
367 O << "L" << getFunctionNumber() << "$pb:";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368}
369
370bool X86IntelAsmPrinter::printAsmMRegister(const MachineOperand &MO,
371 const char Mode) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000372 unsigned Reg = MO.getReg();
373 switch (Mode) {
374 default: return true; // Unknown mode.
375 case 'b': // Print QImode register
376 Reg = getX86SubSuperRegister(Reg, MVT::i8);
377 break;
378 case 'h': // Print QImode high register
379 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
380 break;
381 case 'w': // Print HImode register
382 Reg = getX86SubSuperRegister(Reg, MVT::i16);
383 break;
384 case 'k': // Print SImode register
385 Reg = getX86SubSuperRegister(Reg, MVT::i32);
386 break;
387 }
388
Eli Friedman378ea832009-06-19 04:48:38 +0000389 O << TRI->getName(Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390 return false;
391}
392
393/// PrintAsmOperand - Print out an operand for an inline asm expression.
394///
395bool X86IntelAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000396 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000397 const char *ExtraCode) {
398 // Does this asm operand have a single letter operand modifier?
399 if (ExtraCode && ExtraCode[0]) {
400 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000401
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000402 switch (ExtraCode[0]) {
403 default: return true; // Unknown modifier.
404 case 'b': // Print QImode register
405 case 'h': // Print QImode high register
406 case 'w': // Print HImode register
407 case 'k': // Print SImode register
408 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
409 }
410 }
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000411
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412 printOperand(MI, OpNo);
413 return false;
414}
415
416bool X86IntelAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
417 unsigned OpNo,
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000418 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419 const char *ExtraCode) {
420 if (ExtraCode && ExtraCode[0])
421 return true; // Unknown modifier.
422 printMemReference(MI, OpNo);
423 return false;
424}
425
426/// printMachineInstruction -- Print out a single X86 LLVM instruction
427/// MI in Intel syntax to the current output stream.
428///
429void X86IntelAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
430 ++EmittedInsts;
431
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000432 // Call the autogenerated instruction printer routines.
433 printInstruction(MI);
434}
435
436bool X86IntelAsmPrinter::doInitialization(Module &M) {
Anton Korobeynikovb34a9a12008-06-28 11:07:35 +0000437 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000438
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000439 Mang->markCharUnacceptable('.');
440
Eli Friedman378ea832009-06-19 04:48:38 +0000441 O << "\t.686\n\t.MMX\n\t.XMM\n\t.model flat\n\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000442
443 // Emit declarations for external functions.
444 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
445 if (I->isDeclaration()) {
446 std::string Name = Mang->getValueName(I);
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +0000447 decorateName(Name, I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000448
Eli Friedman378ea832009-06-19 04:48:38 +0000449 O << "\tEXTERN " ;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000450 if (I->hasDLLImportLinkage()) {
451 O << "__imp_";
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000452 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000453 O << Name << ":near\n";
454 }
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000455
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000456 // Emit declarations for external globals. Note that VC++ always declares
457 // external globals to have type byte, and if that's good enough for VC++...
458 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
459 I != E; ++I) {
460 if (I->isDeclaration()) {
461 std::string Name = Mang->getValueName(I);
462
Eli Friedman378ea832009-06-19 04:48:38 +0000463 O << "\tEXTERN " ;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000464 if (I->hasDLLImportLinkage()) {
465 O << "__imp_";
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000466 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467 O << Name << ":byte\n";
468 }
469 }
470
Dan Gohman4a558a32007-07-25 19:33:14 +0000471 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000472}
473
474bool X86IntelAsmPrinter::doFinalization(Module &M) {
475 const TargetData *TD = TM.getTargetData();
476
477 // Print out module-level global variables here.
478 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
479 I != E; ++I) {
480 if (I->isDeclaration()) continue; // External global require no code
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000481
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000482 // Check to see if this is a special global used by LLVM, if so, emit it.
483 if (EmitSpecialLLVMGlobal(I))
484 continue;
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000485
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486 std::string name = Mang->getValueName(I);
487 Constant *C = I->getInitializer();
488 unsigned Align = TD->getPreferredAlignmentLog(I);
489 bool bCustomSegment = false;
490
491 switch (I->getLinkage()) {
Duncan Sandsb95df792009-03-11 20:14:15 +0000492 case GlobalValue::CommonLinkage:
Duncan Sands19d161f2009-03-07 15:45:40 +0000493 case GlobalValue::LinkOnceAnyLinkage:
494 case GlobalValue::LinkOnceODRLinkage:
495 case GlobalValue::WeakAnyLinkage:
496 case GlobalValue::WeakODRLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000497 SwitchToDataSection("");
Eli Friedman378ea832009-06-19 04:48:38 +0000498 O << name << "?\tSEGEMNT PARA common 'COMMON'\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499 bCustomSegment = true;
500 // FIXME: the default alignment is 16 bytes, but 1, 2, 4, and 256
501 // are also available.
502 break;
503 case GlobalValue::AppendingLinkage:
504 SwitchToDataSection("");
Eli Friedman378ea832009-06-19 04:48:38 +0000505 O << name << "?\tSEGMENT PARA public 'DATA'\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000506 bCustomSegment = true;
507 // FIXME: the default alignment is 16 bytes, but 1, 2, 4, and 256
508 // are also available.
509 break;
510 case GlobalValue::DLLExportLinkage:
511 DLLExportedGVs.insert(name);
512 // FALL THROUGH
513 case GlobalValue::ExternalLinkage:
514 O << "\tpublic " << name << "\n";
515 // FALL THROUGH
516 case GlobalValue::InternalLinkage:
Anton Korobeynikovcca60fa2008-09-24 22:16:16 +0000517 SwitchToSection(TAI->getDataSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000518 break;
519 default:
520 assert(0 && "Unknown linkage type!");
521 }
522
523 if (!bCustomSegment)
524 EmitAlignment(Align, I);
525
Evan Cheng11db8142009-03-24 00:17:40 +0000526 O << name << ":";
527 if (VerboseAsm)
Evan Cheng4c7969e2009-03-25 01:08:42 +0000528 O << "\t\t\t\t" << TAI->getCommentString()
Evan Cheng11db8142009-03-24 00:17:40 +0000529 << " " << I->getName();
530 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000531
532 EmitGlobalConstant(C);
533
534 if (bCustomSegment)
535 O << name << "?\tends\n";
536 }
537
538 // Output linker support code for dllexported globals
Anton Korobeynikovb34a9a12008-06-28 11:07:35 +0000539 if (!DLLExportedGVs.empty() || !DLLExportedFns.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540 SwitchToDataSection("");
Evan Chengfb62bbc2008-09-20 00:13:08 +0000541 O << "; WARNING: The following code is valid only with MASM v8.x"
542 << "and (possible) higher\n"
543 << "; This version of MASM is usually shipped with Microsoft "
544 << "Visual Studio 2005\n"
545 << "; or (possible) further versions. Unfortunately, there is no "
546 << "way to support\n"
547 << "; dllexported symbols in the earlier versions of MASM in fully "
548 << "automatic way\n\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000549 O << "_drectve\t segment info alias('.drectve')\n";
550 }
551
Anton Korobeynikovbafd3672008-06-27 21:22:49 +0000552 for (StringSet<>::iterator i = DLLExportedGVs.begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000553 e = DLLExportedGVs.end();
Anton Korobeynikovb34a9a12008-06-28 11:07:35 +0000554 i != e; ++i)
Anton Korobeynikovbafd3672008-06-27 21:22:49 +0000555 O << "\t db ' /EXPORT:" << i->getKeyData() << ",data'\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000556
Anton Korobeynikovbafd3672008-06-27 21:22:49 +0000557 for (StringSet<>::iterator i = DLLExportedFns.begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000558 e = DLLExportedFns.end();
Anton Korobeynikovb34a9a12008-06-28 11:07:35 +0000559 i != e; ++i)
Anton Korobeynikovbafd3672008-06-27 21:22:49 +0000560 O << "\t db ' /EXPORT:" << i->getKeyData() << "'\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561
Anton Korobeynikovb34a9a12008-06-28 11:07:35 +0000562 if (!DLLExportedGVs.empty() || !DLLExportedFns.empty())
Anton Korobeynikovbafd3672008-06-27 21:22:49 +0000563 O << "_drectve\t ends\n";
Anton Korobeynikovbafd3672008-06-27 21:22:49 +0000564
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000565 // Bypass X86SharedAsmPrinter::doFinalization().
Dan Gohman4a558a32007-07-25 19:33:14 +0000566 bool Result = AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000567 SwitchToDataSection("");
568 O << "\tend\n";
Dan Gohman4a558a32007-07-25 19:33:14 +0000569 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000570}
571
572void X86IntelAsmPrinter::EmitString(const ConstantArray *CVA) const {
573 unsigned NumElts = CVA->getNumOperands();
574 if (NumElts) {
575 // ML does not have escape sequences except '' for '. It also has a maximum
576 // string length of 255.
577 unsigned len = 0;
578 bool inString = false;
579 for (unsigned i = 0; i < NumElts; i++) {
580 int n = cast<ConstantInt>(CVA->getOperand(i))->getZExtValue() & 255;
581 if (len == 0)
582 O << "\tdb ";
583
584 if (n >= 32 && n <= 127) {
585 if (!inString) {
586 if (len > 0) {
587 O << ",'";
588 len += 2;
589 } else {
590 O << "'";
591 len++;
592 }
593 inString = true;
594 }
595 if (n == '\'') {
596 O << "'";
597 len++;
598 }
599 O << char(n);
600 } else {
601 if (inString) {
602 O << "'";
603 len++;
604 inString = false;
605 }
606 if (len > 0) {
607 O << ",";
608 len++;
609 }
610 O << n;
611 len += 1 + (n > 9) + (n > 99);
612 }
613
614 if (len > 60) {
615 if (inString) {
616 O << "'";
617 inString = false;
618 }
619 O << "\n";
620 len = 0;
621 }
622 }
623
624 if (len > 0) {
625 if (inString)
626 O << "'";
627 O << "\n";
628 }
629 }
630}
631
632// Include the auto-generated portion of the assembly writer.
633#include "X86GenAsmWriter1.inc"