blob: ba1a164eb001b000237bf49a13a93e1fc1e735e4 [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"
28#include "llvm/Support/Mangler.h"
29#include "llvm/Target/TargetAsmInfo.h"
30#include "llvm/Target/TargetOptions.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000031using namespace llvm;
32
33STATISTIC(EmittedInsts, "Number of machine instrs printed");
34
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +000035static X86MachineFunctionInfo calculateFunctionInfo(const Function *F,
36 const TargetData *TD) {
37 X86MachineFunctionInfo Info;
38 uint64_t Size = 0;
39
40 switch (F->getCallingConv()) {
41 case CallingConv::X86_StdCall:
42 Info.setDecorationStyle(StdCall);
43 break;
44 case CallingConv::X86_FastCall:
45 Info.setDecorationStyle(FastCall);
46 break;
47 default:
48 return Info;
49 }
50
51 unsigned argNum = 1;
52 for (Function::const_arg_iterator AI = F->arg_begin(), AE = F->arg_end();
53 AI != AE; ++AI, ++argNum) {
54 const Type* Ty = AI->getType();
55
56 // 'Dereference' type in case of byval parameter attribute
57 if (F->paramHasAttr(argNum, ParamAttr::ByVal))
58 Ty = cast<PointerType>(Ty)->getElementType();
59
60 // Size should be aligned to DWORD boundary
61 Size += ((TD->getABITypeSize(Ty) + 3)/4)*4;
62 }
63
64 // We're not supporting tooooo huge arguments :)
65 Info.setBytesToPopOnReturn((unsigned int)Size);
66 return Info;
67}
68
69
70/// decorateName - Query FunctionInfoMap and use this information for various
71/// name decoration.
72void X86IntelAsmPrinter::decorateName(std::string &Name,
73 const GlobalValue *GV) {
74 const Function *F = dyn_cast<Function>(GV);
75 if (!F) return;
76
77 // We don't want to decorate non-stdcall or non-fastcall functions right now
78 unsigned CC = F->getCallingConv();
79 if (CC != CallingConv::X86_StdCall && CC != CallingConv::X86_FastCall)
80 return;
81
82 FMFInfoMap::const_iterator info_item = FunctionInfoMap.find(F);
83
84 const X86MachineFunctionInfo *Info;
85 if (info_item == FunctionInfoMap.end()) {
86 // Calculate apropriate function info and populate map
87 FunctionInfoMap[F] = calculateFunctionInfo(F, TM.getTargetData());
88 Info = &FunctionInfoMap[F];
89 } else {
90 Info = &info_item->second;
91 }
92
93 const FunctionType *FT = F->getFunctionType();
94 switch (Info->getDecorationStyle()) {
95 case None:
96 break;
97 case StdCall:
98 // "Pure" variadic functions do not receive @0 suffix.
99 if (!FT->isVarArg() || (FT->getNumParams() == 0) ||
100 (FT->getNumParams() == 1 && F->hasStructRetAttr()))
101 Name += '@' + utostr_32(Info->getBytesToPopOnReturn());
102 break;
103 case FastCall:
104 // "Pure" variadic functions do not receive @0 suffix.
105 if (!FT->isVarArg() || (FT->getNumParams() == 0) ||
106 (FT->getNumParams() == 1 && F->hasStructRetAttr()))
107 Name += '@' + utostr_32(Info->getBytesToPopOnReturn());
108
109 if (Name[0] == '_')
110 Name[0] = '@';
111 else
112 Name = '@' + Name;
113
114 break;
115 default:
116 assert(0 && "Unsupported DecorationStyle");
117 }
118}
119
120
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000121std::string X86IntelAsmPrinter::getSectionForFunction(const Function &F) const {
122 // Intel asm always emits functions to _text.
123 return "_text";
124}
125
126/// runOnMachineFunction - This uses the printMachineInstruction()
127/// method to print assembly for each instruction.
128///
129bool X86IntelAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
130 SetupMachineFunction(MF);
131 O << "\n\n";
132
133 // Print out constants referenced by the function
134 EmitConstantPool(MF.getConstantPool());
135
136 // Print out labels for the function.
137 const Function *F = MF.getFunction();
138 unsigned CC = F->getCallingConv();
139
140 // Populate function information map. Actually, We don't want to populate
141 // non-stdcall or non-fastcall functions' information right now.
142 if (CC == CallingConv::X86_StdCall || CC == CallingConv::X86_FastCall)
143 FunctionInfoMap[F] = *MF.getInfo<X86MachineFunctionInfo>();
144
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +0000145 decorateName(CurrentFnName, F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000146
147 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
148
Evan Cheng2e8d3d42008-03-25 22:29:46 +0000149 unsigned FnAlign = OptimizeForSize ? 1 : 4;
Devang Patel009a8d12008-09-04 21:03:41 +0000150 if (FnAlign == 4 && (F->getNotes() & FN_NOTE_OptimizeForSize))
151 FnAlign = 1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000152 switch (F->getLinkage()) {
153 default: assert(0 && "Unsupported linkage type!");
154 case Function::InternalLinkage:
Evan Cheng2e8d3d42008-03-25 22:29:46 +0000155 EmitAlignment(FnAlign);
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000156 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 case Function::DLLExportLinkage:
158 DLLExportedFns.insert(CurrentFnName);
159 //FALLS THROUGH
160 case Function::ExternalLinkage:
161 O << "\tpublic " << CurrentFnName << "\n";
Evan Cheng2e8d3d42008-03-25 22:29:46 +0000162 EmitAlignment(FnAlign);
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000163 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 }
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000165
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000166 O << CurrentFnName << "\tproc near\n";
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000167
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000168 // Print out code for the function.
169 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
170 I != E; ++I) {
171 // Print a label for the basic block if there are any predecessors.
Dan Gohman3f7d94b2007-10-03 19:26:29 +0000172 if (!I->pred_empty()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000173 printBasicBlockLabel(I, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000174 O << '\n';
175 }
176 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
177 II != E; ++II) {
178 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179 printMachineInstruction(II);
180 }
181 }
182
183 // Print out jump tables referenced by the function.
184 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
185
186 O << CurrentFnName << "\tendp\n";
187
188 // We didn't modify anything.
189 return false;
190}
191
192void X86IntelAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000193 unsigned char value = MI->getOperand(Op).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000194 assert(value <= 7 && "Invalid ssecc argument!");
195 switch (value) {
196 case 0: O << "eq"; break;
197 case 1: O << "lt"; break;
198 case 2: O << "le"; break;
199 case 3: O << "unord"; break;
200 case 4: O << "neq"; break;
201 case 5: O << "nlt"; break;
202 case 6: O << "nle"; break;
203 case 7: O << "ord"; break;
204 }
205}
206
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000207void X86IntelAsmPrinter::printOp(const MachineOperand &MO,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000208 const char *Modifier) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000209 switch (MO.getType()) {
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000210 case MachineOperand::MO_Register: {
Dan Gohman1e57df32008-02-10 18:45:23 +0000211 if (TargetRegisterInfo::isPhysicalRegister(MO.getReg())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 unsigned Reg = MO.getReg();
213 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
Duncan Sands92c43912008-06-06 12:08:01 +0000214 MVT VT = (strcmp(Modifier,"subreg64") == 0) ?
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000215 MVT::i64 : ((strcmp(Modifier, "subreg32") == 0) ? MVT::i32 :
216 ((strcmp(Modifier,"subreg16") == 0) ? MVT::i16 :MVT::i8));
217 Reg = getX86SubSuperRegister(Reg, VT);
218 }
Evan Cheng00d04a72008-07-07 22:21:06 +0000219 O << TRI->getName(Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000220 } else
221 O << "reg" << MO.getReg();
222 return;
223 }
224 case MachineOperand::MO_Immediate:
Chris Lattnera96056a2007-12-30 20:49:49 +0000225 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000226 return;
227 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner6017d482007-12-30 23:10:15 +0000228 printBasicBlockLabel(MO.getMBB());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000229 return;
230 case MachineOperand::MO_JumpTableIndex: {
231 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
232 if (!isMemOp) O << "OFFSET ";
Evan Cheng477013c2007-10-14 05:57:21 +0000233 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000234 << "_" << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000235 return;
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000236 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237 case MachineOperand::MO_ConstantPoolIndex: {
238 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
239 if (!isMemOp) O << "OFFSET ";
240 O << "[" << TAI->getPrivateGlobalPrefix() << "CPI"
Chris Lattner6017d482007-12-30 23:10:15 +0000241 << getFunctionNumber() << "_" << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000242 int Offset = MO.getOffset();
243 if (Offset > 0)
244 O << " + " << Offset;
245 else if (Offset < 0)
246 O << Offset;
247 O << "]";
248 return;
249 }
250 case MachineOperand::MO_GlobalAddress: {
251 bool isCallOp = Modifier && !strcmp(Modifier, "call");
252 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000253 GlobalValue *GV = MO.getGlobal();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254 std::string Name = Mang->getValueName(GV);
255
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +0000256 decorateName(Name, GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000257
258 if (!isMemOp && !isCallOp) O << "OFFSET ";
259 if (GV->hasDLLImportLinkage()) {
260 // FIXME: This should be fixed with full support of stdcall & fastcall
261 // CC's
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000262 O << "__imp_";
263 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000264 O << Name;
265 int Offset = MO.getOffset();
266 if (Offset > 0)
267 O << " + " << Offset;
268 else if (Offset < 0)
269 O << Offset;
270 return;
271 }
272 case MachineOperand::MO_ExternalSymbol: {
273 bool isCallOp = Modifier && !strcmp(Modifier, "call");
274 if (!isCallOp) O << "OFFSET ";
275 O << TAI->getGlobalPrefix() << MO.getSymbolName();
276 return;
277 }
278 default:
279 O << "<unknown operand type>"; return;
280 }
281}
282
283void X86IntelAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
284 const char *Modifier) {
285 assert(isMem(MI, Op) && "Invalid memory reference!");
286
287 const MachineOperand &BaseReg = MI->getOperand(Op);
Chris Lattnera96056a2007-12-30 20:49:49 +0000288 int ScaleVal = MI->getOperand(Op+1).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000289 const MachineOperand &IndexReg = MI->getOperand(Op+2);
290 const MachineOperand &DispSpec = MI->getOperand(Op+3);
291
292 O << "[";
293 bool NeedPlus = false;
294 if (BaseReg.getReg()) {
295 printOp(BaseReg, Modifier);
296 NeedPlus = true;
297 }
298
299 if (IndexReg.getReg()) {
300 if (NeedPlus) O << " + ";
301 if (ScaleVal != 1)
302 O << ScaleVal << "*";
303 printOp(IndexReg, Modifier);
304 NeedPlus = true;
305 }
306
307 if (DispSpec.isGlobalAddress() || DispSpec.isConstantPoolIndex() ||
308 DispSpec.isJumpTableIndex()) {
309 if (NeedPlus)
310 O << " + ";
311 printOp(DispSpec, "mem");
312 } else {
Chris Lattnera96056a2007-12-30 20:49:49 +0000313 int DispVal = DispSpec.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000314 if (DispVal || (!BaseReg.getReg() && !IndexReg.getReg())) {
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +0000315 if (NeedPlus) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000316 if (DispVal > 0)
317 O << " + ";
318 else {
319 O << " - ";
320 DispVal = -DispVal;
321 }
Anton Korobeynikov8c90d2a2008-02-20 11:22:39 +0000322 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000323 O << DispVal;
324 }
325 }
326 O << "]";
327}
328
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000329void X86IntelAsmPrinter::printPICJumpTableSetLabel(unsigned uid,
Evan Cheng6fb06762007-11-09 01:32:10 +0000330 const MachineBasicBlock *MBB) const {
331 if (!TAI->getSetDirective())
332 return;
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000333
Evan Cheng6fb06762007-11-09 01:32:10 +0000334 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
335 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
Evan Cheng45c1edb2008-02-28 00:43:03 +0000336 printBasicBlockLabel(MBB, false, false, false);
Evan Cheng6fb06762007-11-09 01:32:10 +0000337 O << '-' << "\"L" << getFunctionNumber() << "$pb\"'\n";
338}
339
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000340void X86IntelAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Evan Cheng477013c2007-10-14 05:57:21 +0000341 O << "\"L" << getFunctionNumber() << "$pb\"\n";
342 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000343}
344
345bool X86IntelAsmPrinter::printAsmMRegister(const MachineOperand &MO,
346 const char Mode) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000347 unsigned Reg = MO.getReg();
348 switch (Mode) {
349 default: return true; // Unknown mode.
350 case 'b': // Print QImode register
351 Reg = getX86SubSuperRegister(Reg, MVT::i8);
352 break;
353 case 'h': // Print QImode high register
354 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
355 break;
356 case 'w': // Print HImode register
357 Reg = getX86SubSuperRegister(Reg, MVT::i16);
358 break;
359 case 'k': // Print SImode register
360 Reg = getX86SubSuperRegister(Reg, MVT::i32);
361 break;
362 }
363
Evan Cheng00d04a72008-07-07 22:21:06 +0000364 O << '%' << TRI->getName(Reg);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365 return false;
366}
367
368/// PrintAsmOperand - Print out an operand for an inline asm expression.
369///
370bool X86IntelAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000371 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000372 const char *ExtraCode) {
373 // Does this asm operand have a single letter operand modifier?
374 if (ExtraCode && ExtraCode[0]) {
375 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000376
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000377 switch (ExtraCode[0]) {
378 default: return true; // Unknown modifier.
379 case 'b': // Print QImode register
380 case 'h': // Print QImode high register
381 case 'w': // Print HImode register
382 case 'k': // Print SImode register
383 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
384 }
385 }
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000386
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000387 printOperand(MI, OpNo);
388 return false;
389}
390
391bool X86IntelAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
392 unsigned OpNo,
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000393 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000394 const char *ExtraCode) {
395 if (ExtraCode && ExtraCode[0])
396 return true; // Unknown modifier.
397 printMemReference(MI, OpNo);
398 return false;
399}
400
401/// printMachineInstruction -- Print out a single X86 LLVM instruction
402/// MI in Intel syntax to the current output stream.
403///
404void X86IntelAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
405 ++EmittedInsts;
406
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000407 // Call the autogenerated instruction printer routines.
408 printInstruction(MI);
409}
410
411bool X86IntelAsmPrinter::doInitialization(Module &M) {
Anton Korobeynikovb34a9a12008-06-28 11:07:35 +0000412 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000413
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000414 Mang->markCharUnacceptable('.');
415
416 O << "\t.686\n\t.model flat\n\n";
417
418 // Emit declarations for external functions.
419 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
420 if (I->isDeclaration()) {
421 std::string Name = Mang->getValueName(I);
Anton Korobeynikov2e7832f2008-06-28 11:07:54 +0000422 decorateName(Name, I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000423
424 O << "\textern " ;
425 if (I->hasDLLImportLinkage()) {
426 O << "__imp_";
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000427 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000428 O << Name << ":near\n";
429 }
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000430
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000431 // Emit declarations for external globals. Note that VC++ always declares
432 // external globals to have type byte, and if that's good enough for VC++...
433 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
434 I != E; ++I) {
435 if (I->isDeclaration()) {
436 std::string Name = Mang->getValueName(I);
437
438 O << "\textern " ;
439 if (I->hasDLLImportLinkage()) {
440 O << "__imp_";
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000441 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000442 O << Name << ":byte\n";
443 }
444 }
445
Dan Gohman4a558a32007-07-25 19:33:14 +0000446 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000447}
448
449bool X86IntelAsmPrinter::doFinalization(Module &M) {
450 const TargetData *TD = TM.getTargetData();
451
452 // Print out module-level global variables here.
453 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
454 I != E; ++I) {
455 if (I->isDeclaration()) continue; // External global require no code
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000456
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000457 // Check to see if this is a special global used by LLVM, if so, emit it.
458 if (EmitSpecialLLVMGlobal(I))
459 continue;
Anton Korobeynikovd91d3602008-06-28 11:07:18 +0000460
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000461 std::string name = Mang->getValueName(I);
462 Constant *C = I->getInitializer();
463 unsigned Align = TD->getPreferredAlignmentLog(I);
464 bool bCustomSegment = false;
465
466 switch (I->getLinkage()) {
Dale Johannesen49c44122008-05-14 20:12:51 +0000467 case GlobalValue::CommonLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000468 case GlobalValue::LinkOnceLinkage:
469 case GlobalValue::WeakLinkage:
470 SwitchToDataSection("");
471 O << name << "?\tsegment common 'COMMON'\n";
472 bCustomSegment = true;
473 // FIXME: the default alignment is 16 bytes, but 1, 2, 4, and 256
474 // are also available.
475 break;
476 case GlobalValue::AppendingLinkage:
477 SwitchToDataSection("");
478 O << name << "?\tsegment public 'DATA'\n";
479 bCustomSegment = true;
480 // FIXME: the default alignment is 16 bytes, but 1, 2, 4, and 256
481 // are also available.
482 break;
483 case GlobalValue::DLLExportLinkage:
484 DLLExportedGVs.insert(name);
485 // FALL THROUGH
486 case GlobalValue::ExternalLinkage:
487 O << "\tpublic " << name << "\n";
488 // FALL THROUGH
489 case GlobalValue::InternalLinkage:
490 SwitchToDataSection(TAI->getDataSection(), I);
491 break;
492 default:
493 assert(0 && "Unknown linkage type!");
494 }
495
496 if (!bCustomSegment)
497 EmitAlignment(Align, I);
498
499 O << name << ":\t\t\t\t" << TAI->getCommentString()
500 << " " << I->getName() << '\n';
501
502 EmitGlobalConstant(C);
503
504 if (bCustomSegment)
505 O << name << "?\tends\n";
506 }
507
508 // Output linker support code for dllexported globals
Anton Korobeynikovb34a9a12008-06-28 11:07:35 +0000509 if (!DLLExportedGVs.empty() || !DLLExportedFns.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000510 SwitchToDataSection("");
511 O << "; WARNING: The following code is valid only with MASM v8.x and (possible) higher\n"
512 << "; This version of MASM is usually shipped with Microsoft Visual Studio 2005\n"
513 << "; or (possible) further versions. Unfortunately, there is no way to support\n"
514 << "; dllexported symbols in the earlier versions of MASM in fully automatic way\n\n";
515 O << "_drectve\t segment info alias('.drectve')\n";
516 }
517
Anton Korobeynikovbafd3672008-06-27 21:22:49 +0000518 for (StringSet<>::iterator i = DLLExportedGVs.begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000519 e = DLLExportedGVs.end();
Anton Korobeynikovb34a9a12008-06-28 11:07:35 +0000520 i != e; ++i)
Anton Korobeynikovbafd3672008-06-27 21:22:49 +0000521 O << "\t db ' /EXPORT:" << i->getKeyData() << ",data'\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000522
Anton Korobeynikovbafd3672008-06-27 21:22:49 +0000523 for (StringSet<>::iterator i = DLLExportedFns.begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 e = DLLExportedFns.end();
Anton Korobeynikovb34a9a12008-06-28 11:07:35 +0000525 i != e; ++i)
Anton Korobeynikovbafd3672008-06-27 21:22:49 +0000526 O << "\t db ' /EXPORT:" << i->getKeyData() << "'\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527
Anton Korobeynikovb34a9a12008-06-28 11:07:35 +0000528 if (!DLLExportedGVs.empty() || !DLLExportedFns.empty())
Anton Korobeynikovbafd3672008-06-27 21:22:49 +0000529 O << "_drectve\t ends\n";
Anton Korobeynikovbafd3672008-06-27 21:22:49 +0000530
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000531 // Bypass X86SharedAsmPrinter::doFinalization().
Dan Gohman4a558a32007-07-25 19:33:14 +0000532 bool Result = AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000533 SwitchToDataSection("");
534 O << "\tend\n";
Dan Gohman4a558a32007-07-25 19:33:14 +0000535 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000536}
537
538void X86IntelAsmPrinter::EmitString(const ConstantArray *CVA) const {
539 unsigned NumElts = CVA->getNumOperands();
540 if (NumElts) {
541 // ML does not have escape sequences except '' for '. It also has a maximum
542 // string length of 255.
543 unsigned len = 0;
544 bool inString = false;
545 for (unsigned i = 0; i < NumElts; i++) {
546 int n = cast<ConstantInt>(CVA->getOperand(i))->getZExtValue() & 255;
547 if (len == 0)
548 O << "\tdb ";
549
550 if (n >= 32 && n <= 127) {
551 if (!inString) {
552 if (len > 0) {
553 O << ",'";
554 len += 2;
555 } else {
556 O << "'";
557 len++;
558 }
559 inString = true;
560 }
561 if (n == '\'') {
562 O << "'";
563 len++;
564 }
565 O << char(n);
566 } else {
567 if (inString) {
568 O << "'";
569 len++;
570 inString = false;
571 }
572 if (len > 0) {
573 O << ",";
574 len++;
575 }
576 O << n;
577 len += 1 + (n > 9) + (n > 99);
578 }
579
580 if (len > 60) {
581 if (inString) {
582 O << "'";
583 inString = false;
584 }
585 O << "\n";
586 len = 0;
587 }
588 }
589
590 if (len > 0) {
591 if (inString)
592 O << "'";
593 O << "\n";
594 }
595 }
596}
597
598// Include the auto-generated portion of the assembly writer.
599#include "X86GenAsmWriter1.inc"