blob: 17de05300786b82abae51898907e96d993f08d2d [file] [log] [blame]
Chris Lattnerb9740462005-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
Chris Lattner1ef9cd42006-12-19 22:59:26 +000016#define DEBUG_TYPE "asm-printer"
Chris Lattnerb9740462005-07-01 22:44:09 +000017#include "X86ATTAsmPrinter.h"
18#include "X86.h"
Anton Korobeynikov4f01b782007-01-16 16:41:57 +000019#include "X86COFF.h"
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +000020#include "X86MachineFunctionInfo.h"
Chris Lattnerb9740462005-07-01 22:44:09 +000021#include "X86TargetMachine.h"
Jim Laskey261779b2006-09-07 22:06:40 +000022#include "X86TargetAsmInfo.h"
Anton Korobeynikova0554d92007-01-12 19:20:47 +000023#include "llvm/ADT/StringExtras.h"
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +000024#include "llvm/CallingConv.h"
Chris Lattnerb9740462005-07-01 22:44:09 +000025#include "llvm/Module.h"
26#include "llvm/Support/Mangler.h"
Jim Laskey261779b2006-09-07 22:06:40 +000027#include "llvm/Target/TargetAsmInfo.h"
Evan Cheng5588de92006-02-18 00:15:05 +000028#include "llvm/Target/TargetOptions.h"
Chris Lattner1ef9cd42006-12-19 22:59:26 +000029#include "llvm/ADT/Statistic.h"
Chris Lattnerb9740462005-07-01 22:44:09 +000030using namespace llvm;
Chris Lattnerb9740462005-07-01 22:44:09 +000031
Chris Lattner1ef9cd42006-12-19 22:59:26 +000032STATISTIC(EmittedInsts, "Number of machine instrs printed");
33
Evan Cheng4b8d03e2007-01-18 01:49:58 +000034static std::string computePICLabel(unsigned FnNum,
35 const TargetAsmInfo *TAI,
36 const X86Subtarget* Subtarget) {
Anton Korobeynikova0554d92007-01-12 19:20:47 +000037 std::string label;
Evan Cheng4b8d03e2007-01-18 01:49:58 +000038 if (Subtarget->isTargetDarwin())
39 label = "\"L" + utostr_32(FnNum) + "$pb\"";
40 else if (Subtarget->isTargetELF())
41 label = ".Lllvm$" + utostr_32(FnNum) + "$piclabel";
42 else
Anton Korobeynikova0554d92007-01-12 19:20:47 +000043 assert(0 && "Don't know how to print PIC label!\n");
44
45 return label;
46}
47
Chris Lattnerb82247b2006-10-05 02:43:52 +000048/// getSectionForFunction - Return the section that we should emit the
49/// specified function body into.
50std::string X86ATTAsmPrinter::getSectionForFunction(const Function &F) const {
51 switch (F.getLinkage()) {
52 default: assert(0 && "Unknown linkage type!");
53 case Function::InternalLinkage:
54 case Function::DLLExportLinkage:
55 case Function::ExternalLinkage:
56 return TAI->getTextSection();
57 case Function::WeakLinkage:
58 case Function::LinkOnceLinkage:
59 if (Subtarget->isTargetDarwin()) {
60 return ".section __TEXT,__textcoal_nt,coalesced,pure_instructions";
Anton Korobeynikov4efbbc92007-01-03 11:43:14 +000061 } else if (Subtarget->isTargetCygMing()) {
Anton Korobeynikov24b7ac32006-10-18 09:12:29 +000062 return "\t.section\t.text$linkonce." + CurrentFnName + ",\"ax\"\n";
Chris Lattnerb82247b2006-10-05 02:43:52 +000063 } else {
64 return "\t.section\t.llvm.linkonce.t." + CurrentFnName +
65 ",\"ax\",@progbits\n";
66 }
67 }
68}
69
Chris Lattnerb9740462005-07-01 22:44:09 +000070/// runOnMachineFunction - This uses the printMachineInstruction()
71/// method to print assembly for each instruction.
72///
73bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Anton Korobeynikov4db00902007-05-05 09:04:50 +000074 if (TAI->doesSupportDebugInformation()) {
Jim Laskey5ba7c232006-07-19 11:54:50 +000075 // Let PassManager know we need debug information and relay
Jim Laskeyc56315c2007-01-26 21:22:28 +000076 // the MachineModuleInfo address on to DwarfWriter.
77 DW.SetModuleInfo(&getAnalysis<MachineModuleInfo>());
Jim Laskey5ba7c232006-07-19 11:54:50 +000078 }
Evan Cheng30d7b702006-03-07 02:02:57 +000079
Chris Lattner99946fb2005-11-21 07:51:23 +000080 SetupMachineFunction(MF);
Chris Lattnerb9740462005-07-01 22:44:09 +000081 O << "\n\n";
82
83 // Print out constants referenced by the function
Chris Lattner8a5f3c12005-11-21 08:32:23 +000084 EmitConstantPool(MF.getConstantPool());
Chris Lattnerb9740462005-07-01 22:44:09 +000085
86 // Print out labels for the function.
Evan Cheng5a766802006-02-07 08:38:37 +000087 const Function *F = MF.getFunction();
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +000088 unsigned CC = F->getCallingConv();
89
90 // Populate function information map. Actually, We don't want to populate
91 // non-stdcall or non-fastcall functions' information right now.
Chris Lattner104aa5d2006-09-26 03:57:53 +000092 if (CC == CallingConv::X86_StdCall || CC == CallingConv::X86_FastCall)
Chris Lattnerff0598d2007-04-17 17:21:52 +000093 FunctionInfoMap[F] = *MF.getInfo<X86MachineFunctionInfo>();
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +000094
95 X86SharedAsmPrinter::decorateName(CurrentFnName, F);
96
Anton Korobeynikova9ab1092007-01-07 00:41:20 +000097 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Anton Korobeynikovbb162f42007-01-06 18:24:26 +000098
Evan Cheng5a766802006-02-07 08:38:37 +000099 switch (F->getLinkage()) {
100 default: assert(0 && "Unknown linkage type!");
101 case Function::InternalLinkage: // Symbols default to internal.
Evan Cheng5a766802006-02-07 08:38:37 +0000102 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
103 break;
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000104 case Function::DLLExportLinkage:
105 DLLExportedFns.insert(Mang->makeNameProper(F->getName(), ""));
106 //FALLS THROUGH
Evan Cheng5a766802006-02-07 08:38:37 +0000107 case Function::ExternalLinkage:
Evan Cheng5a766802006-02-07 08:38:37 +0000108 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000109 O << "\t.globl\t" << CurrentFnName << "\n";
Evan Cheng5a766802006-02-07 08:38:37 +0000110 break;
Evan Cheng5a766802006-02-07 08:38:37 +0000111 case Function::LinkOnceLinkage:
Anton Korobeynikov24b7ac32006-10-18 09:12:29 +0000112 case Function::WeakLinkage:
Jim Laskey3b4866e2006-07-27 02:05:13 +0000113 if (Subtarget->isTargetDarwin()) {
Evan Cheng7714a592006-02-22 23:59:57 +0000114 O << "\t.globl\t" << CurrentFnName << "\n";
Evan Cheng5a766802006-02-07 08:38:37 +0000115 O << "\t.weak_definition\t" << CurrentFnName << "\n";
Anton Korobeynikov4efbbc92007-01-03 11:43:14 +0000116 } else if (Subtarget->isTargetCygMing()) {
Evan Cheng2554e3d2006-05-25 21:59:08 +0000117 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Anton Korobeynikov75b01be2006-10-17 20:29:49 +0000118 O << "\t.globl " << CurrentFnName << "\n";
Anton Korobeynikov01b49ce2007-02-23 01:58:50 +0000119 O << "\t.linkonce discard\n";
Anton Korobeynikov75b01be2006-10-17 20:29:49 +0000120 } else {
121 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
122 O << "\t.weak " << CurrentFnName << "\n";
123 }
124 break;
Evan Cheng5a766802006-02-07 08:38:37 +0000125 }
Anton Korobeynikov39f3cff2007-04-29 18:35:00 +0000126 if (F->hasHiddenVisibility()) {
Chris Lattner8c51bf52007-01-14 06:29:53 +0000127 if (const char *Directive = TAI->getHiddenDirective())
128 O << Directive << CurrentFnName << "\n";
Anton Korobeynikov39f3cff2007-04-29 18:35:00 +0000129 } else if (F->hasProtectedVisibility()) {
130 if (const char *Directive = TAI->getProtectedDirective())
131 O << Directive << CurrentFnName << "\n";
132 }
Anton Korobeynikov4f01b782007-01-16 16:41:57 +0000133
134 if (Subtarget->isTargetELF())
135 O << "\t.type " << CurrentFnName << ",@function\n";
136 else if (Subtarget->isTargetCygMing()) {
137 O << "\t.def\t " << CurrentFnName
138 << ";\t.scl\t" <<
139 (F->getLinkage() == Function::InternalLinkage ? COFF::C_STAT : COFF::C_EXT)
140 << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
141 << ";\t.endef\n";
142 }
143
Chris Lattnerb9740462005-07-01 22:44:09 +0000144 O << CurrentFnName << ":\n";
Anton Korobeynikov24b7ac32006-10-18 09:12:29 +0000145 // Add some workaround for linkonce linkage on Cygwin\MinGW
Anton Korobeynikov4efbbc92007-01-03 11:43:14 +0000146 if (Subtarget->isTargetCygMing() &&
Anton Korobeynikov24b7ac32006-10-18 09:12:29 +0000147 (F->getLinkage() == Function::LinkOnceLinkage ||
148 F->getLinkage() == Function::WeakLinkage))
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000149 O << "Lllvm$workaround$fake$stub$" << CurrentFnName << ":\n";
Chris Lattnerb9740462005-07-01 22:44:09 +0000150
Anton Korobeynikov4db00902007-05-05 09:04:50 +0000151 if (TAI->doesSupportDebugInformation()) {
Jim Laskeyc0d65182006-04-07 20:44:42 +0000152 // Emit pre-function debug information.
Jim Laskeya7b2bd52006-06-23 12:51:53 +0000153 DW.BeginFunction(&MF);
Jim Laskeyc0d65182006-04-07 20:44:42 +0000154 }
155
Chris Lattnerb9740462005-07-01 22:44:09 +0000156 // Print out code for the function.
157 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
158 I != E; ++I) {
159 // Print a label for the basic block.
Nate Begemanb9d4f832006-05-02 05:37:32 +0000160 if (I->pred_begin() != I->pred_end()) {
161 printBasicBlockLabel(I, true);
162 O << '\n';
163 }
Chris Lattnerb9740462005-07-01 22:44:09 +0000164 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
165 II != E; ++II) {
166 // Print the assembly for the instruction.
167 O << "\t";
168 printMachineInstruction(II);
169 }
170 }
Evan Cheng00884b52006-08-28 22:14:16 +0000171
Jim Laskeya6211dc2006-09-06 18:34:40 +0000172 if (TAI->hasDotTypeDotSizeDirective())
Nate Begeman83b492b2005-07-12 01:37:28 +0000173 O << "\t.size " << CurrentFnName << ", .-" << CurrentFnName << "\n";
Chris Lattnerb9740462005-07-01 22:44:09 +0000174
Anton Korobeynikov4db00902007-05-05 09:04:50 +0000175 if (TAI->doesSupportDebugInformation()) {
Evan Chenga4a4ceb2006-03-07 02:23:26 +0000176 // Emit post-function debug information.
Jim Laskeycf0166f2006-03-23 18:09:44 +0000177 DW.EndFunction();
Evan Chenga4a4ceb2006-03-07 02:23:26 +0000178 }
Evan Cheng30d7b702006-03-07 02:02:57 +0000179
Anton Korobeynikov4db00902007-05-05 09:04:50 +0000180 // Print out jump tables referenced by the function.
181 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
182
Chris Lattnerb9740462005-07-01 22:44:09 +0000183 // We didn't modify anything.
184 return false;
185}
186
Evan Cheng97057f32007-01-18 22:27:12 +0000187static inline bool printGOT(TargetMachine &TM, const X86Subtarget* ST) {
188 return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
189}
190
191static inline bool printStub(TargetMachine &TM, const X86Subtarget* ST) {
192 return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
193}
194
Chris Lattnerd62a3bf2006-02-06 23:41:19 +0000195void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
Evan Chengdd60ca02006-12-05 19:50:18 +0000196 const char *Modifier, bool NotRIPRel) {
Chris Lattnerd62a3bf2006-02-06 23:41:19 +0000197 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattnerb9740462005-07-01 22:44:09 +0000198 const MRegisterInfo &RI = *TM.getRegisterInfo();
199 switch (MO.getType()) {
Evan Chengddb6cc12006-05-05 05:40:20 +0000200 case MachineOperand::MO_Register: {
Chris Lattnerb9740462005-07-01 22:44:09 +0000201 assert(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
202 "Virtual registers should not make it this far!");
203 O << '%';
Evan Chengddb6cc12006-05-05 05:40:20 +0000204 unsigned Reg = MO.getReg();
Evan Chengcfaffdd2006-05-31 22:34:26 +0000205 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000206 MVT::ValueType VT = (strcmp(Modifier+6,"64") == 0) ?
207 MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
208 ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
Evan Chengddb6cc12006-05-05 05:40:20 +0000209 Reg = getX86SubSuperRegister(Reg, VT);
210 }
211 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
Chris Lattnerb9740462005-07-01 22:44:09 +0000212 O << (char)tolower(*Name);
213 return;
Evan Chengddb6cc12006-05-05 05:40:20 +0000214 }
Chris Lattnerb9740462005-07-01 22:44:09 +0000215
Chris Lattnerfef7a2d2006-05-04 17:21:20 +0000216 case MachineOperand::MO_Immediate:
Chris Lattnere4bf50c2007-01-25 02:53:24 +0000217 if (!Modifier ||
218 (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
Evan Cheng30d7b702006-03-07 02:02:57 +0000219 O << '$';
Evan Cheng70145f22006-05-26 08:04:31 +0000220 O << MO.getImmedValue();
Chris Lattnerb9740462005-07-01 22:44:09 +0000221 return;
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000222 case MachineOperand::MO_MachineBasicBlock:
223 printBasicBlockLabel(MO.getMachineBasicBlock());
Chris Lattnerb9740462005-07-01 22:44:09 +0000224 return;
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000225 case MachineOperand::MO_JumpTableIndex: {
226 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
227 if (!isMemOp) O << '$';
Jim Laskeya6211dc2006-09-06 18:34:40 +0000228 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000229 << MO.getJumpTableIndex();
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000230
231 if (TM.getRelocationModel() == Reloc::PIC_) {
232 if (Subtarget->isPICStyleStub())
Evan Cheng4b8d03e2007-01-18 01:49:58 +0000233 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
234 << "$pb\"";
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000235 else if (Subtarget->isPICStyleGOT())
236 O << "@GOTOFF";
237 }
238
Evan Cheng97057f32007-01-18 22:27:12 +0000239 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000240 O << "(%rip)";
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000241 return;
242 }
Evan Cheng75b87832006-02-26 08:28:12 +0000243 case MachineOperand::MO_ConstantPoolIndex: {
244 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
245 if (!isMemOp) O << '$';
Jim Laskeya6211dc2006-09-06 18:34:40 +0000246 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
Evan Cheng75b87832006-02-26 08:28:12 +0000247 << MO.getConstantPoolIndex();
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000248
249 if (TM.getRelocationModel() == Reloc::PIC_) {
250 if (Subtarget->isPICStyleStub())
Evan Cheng4b8d03e2007-01-18 01:49:58 +0000251 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
252 << "$pb\"";
Evan Cheng97057f32007-01-18 22:27:12 +0000253 else if (Subtarget->isPICStyleGOT())
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000254 O << "@GOTOFF";
255 }
256
Evan Cheng75b87832006-02-26 08:28:12 +0000257 int Offset = MO.getOffset();
258 if (Offset > 0)
259 O << "+" << Offset;
260 else if (Offset < 0)
261 O << Offset;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000262
Evan Cheng97057f32007-01-18 22:27:12 +0000263 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000264 O << "(%rip)";
Evan Cheng75b87832006-02-26 08:28:12 +0000265 return;
266 }
Chris Lattnerb9740462005-07-01 22:44:09 +0000267 case MachineOperand::MO_GlobalAddress: {
Chris Lattnerd62a3bf2006-02-06 23:41:19 +0000268 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Evan Cheng5a766802006-02-07 08:38:37 +0000269 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
Dan Gohmana30eabd2007-04-26 21:07:05 +0000270 bool needCloseParen = false;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000271
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +0000272 GlobalValue *GV = MO.getGlobal();
Lauro Ramos Venancio25188892007-04-20 21:38:10 +0000273 GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
274 bool isThreadLocal = GVar && GVar->isThreadLocal();
275
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000276 std::string Name = Mang->getValueName(GV);
Chris Lattner104aa5d2006-09-26 03:57:53 +0000277 X86SharedAsmPrinter::decorateName(Name, GV);
Anton Korobeynikov3c5b3df2006-09-20 22:03:51 +0000278
Dan Gohmana30eabd2007-04-26 21:07:05 +0000279 if (!isMemOp && !isCallOp)
280 O << '$';
281 else if (Name[0] == '$') {
282 // The name begins with a dollar-sign. In order to avoid having it look
283 // like an integer immediate to the assembler, enclose it in parens.
284 O << '(';
285 needCloseParen = true;
286 }
287
Evan Cheng97057f32007-01-18 22:27:12 +0000288 if (printStub(TM, Subtarget)) {
Evan Cheng5a766802006-02-07 08:38:37 +0000289 // Link-once, External, or Weakly-linked global variables need
290 // non-lazily-resolved stubs
Reid Spencer5301e7c2007-01-30 20:08:39 +0000291 if (GV->isDeclaration() ||
Evan Cheng97057f32007-01-18 22:27:12 +0000292 GV->hasWeakLinkage() ||
293 GV->hasLinkOnceLinkage()) {
Evan Cheng5a766802006-02-07 08:38:37 +0000294 // Dynamically-resolved functions need a stub for the function.
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000295 if (isCallOp && isa<Function>(GV)) {
Evan Cheng5a766802006-02-07 08:38:37 +0000296 FnStubs.insert(Name);
Evan Cheng4b8d03e2007-01-18 01:49:58 +0000297 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
Evan Cheng5a766802006-02-07 08:38:37 +0000298 } else {
299 GVStubs.insert(Name);
Evan Cheng4b8d03e2007-01-18 01:49:58 +0000300 O << TAI->getPrivateGlobalPrefix() << Name << "$non_lazy_ptr";
Evan Cheng5a766802006-02-07 08:38:37 +0000301 }
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000302 } else {
Evan Cheng97057f32007-01-18 22:27:12 +0000303 if (GV->hasDLLImportLinkage())
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000304 O << "__imp_";
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000305 O << Name;
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000306 }
307
Chris Lattner9e56e5c2006-07-26 21:12:04 +0000308 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng4b8d03e2007-01-18 01:49:58 +0000309 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
310 << "$pb\"";
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000311 } else {
312 if (GV->hasDLLImportLinkage()) {
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000313 O << "__imp_";
314 }
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000315 O << Name;
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000316
Anton Korobeynikov4f01b782007-01-16 16:41:57 +0000317 if (isCallOp && isa<Function>(GV)) {
Evan Cheng97057f32007-01-18 22:27:12 +0000318 if (printGOT(TM, Subtarget)) {
Anton Korobeynikov4f01b782007-01-16 16:41:57 +0000319 // Assemble call via PLT for non-local symbols
Anton Korobeynikov39f3cff2007-04-29 18:35:00 +0000320 if (!(GV->hasHiddenVisibility() || GV->hasProtectedVisibility()) ||
321 GV->isDeclaration())
Anton Korobeynikov4f01b782007-01-16 16:41:57 +0000322 O << "@PLT";
323 }
Reid Spencer5301e7c2007-01-30 20:08:39 +0000324 if (Subtarget->isTargetCygMing() && GV->isDeclaration())
Anton Korobeynikov4f01b782007-01-16 16:41:57 +0000325 // Save function name for later type emission
326 FnStubs.insert(Name);
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000327 }
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000328 }
Anton Korobeynikov12c94942006-12-01 00:25:12 +0000329
Evan Cheng5b020342006-12-01 07:38:23 +0000330 if (GV->hasExternalWeakLinkage())
Rafael Espindolad7998d02006-12-18 03:37:18 +0000331 ExtWeakSymbols.insert(GV);
Anton Korobeynikovd61d39e2006-09-14 18:23:27 +0000332
Chris Lattnerb9740462005-07-01 22:44:09 +0000333 int Offset = MO.getOffset();
334 if (Offset > 0)
335 O << "+" << Offset;
336 else if (Offset < 0)
337 O << Offset;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000338
Lauro Ramos Venancio25188892007-04-20 21:38:10 +0000339 if (isThreadLocal) {
340 if (TM.getRelocationModel() == Reloc::PIC_)
341 O << "@TLSGD"; // general dynamic TLS model
342 else
343 if (GV->isDeclaration())
344 O << "@INDNTPOFF"; // initial exec TLS model
345 else
346 O << "@NTPOFF"; // local exec TLS model
347 } else if (isMemOp) {
Evan Cheng97057f32007-01-18 22:27:12 +0000348 if (printGOT(TM, Subtarget)) {
Anton Korobeynikov3f6d5282007-01-17 10:33:08 +0000349 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000350 O << "@GOT";
Anton Korobeynikov3f6d5282007-01-17 10:33:08 +0000351 else
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000352 O << "@GOTOFF";
Evan Cheng97057f32007-01-18 22:27:12 +0000353 } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel) {
354 if ((GV->hasExternalLinkage() ||
355 GV->hasWeakLinkage() ||
356 GV->hasLinkOnceLinkage()) &&
357 TM.getRelocationModel() != Reloc::Static)
358 O << "@GOTPCREL";
Dan Gohmana30eabd2007-04-26 21:07:05 +0000359
360 if (needCloseParen) {
361 needCloseParen = false;
362 O << ')';
363 }
364
Evan Cheng97057f32007-01-18 22:27:12 +0000365 // Use rip when possible to reduce code size, except when
366 // index or base register are also part of the address. e.g.
367 // foo(%rip)(%rcx,%rax,4) is not legal
368 O << "(%rip)";
369 }
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000370 }
371
Dan Gohmana30eabd2007-04-26 21:07:05 +0000372 if (needCloseParen)
373 O << ')';
374
Chris Lattnerb9740462005-07-01 22:44:09 +0000375 return;
376 }
Chris Lattnerd62a3bf2006-02-06 23:41:19 +0000377 case MachineOperand::MO_ExternalSymbol: {
378 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Dan Gohmana30eabd2007-04-26 21:07:05 +0000379 bool needCloseParen = false;
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000380 std::string Name(TAI->getGlobalPrefix());
381 Name += MO.getSymbolName();
Evan Cheng97057f32007-01-18 22:27:12 +0000382 if (isCallOp && printStub(TM, Subtarget)) {
Nate Begemanb62a4c82005-07-08 00:23:26 +0000383 FnStubs.insert(Name);
Evan Cheng4b8d03e2007-01-18 01:49:58 +0000384 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
Nate Begemanb62a4c82005-07-08 00:23:26 +0000385 return;
386 }
Dan Gohmana30eabd2007-04-26 21:07:05 +0000387 if (!isCallOp)
388 O << '$';
389 else if (Name[0] == '$') {
390 // The name begins with a dollar-sign. In order to avoid having it look
391 // like an integer immediate to the assembler, enclose it in parens.
392 O << '(';
393 needCloseParen = true;
394 }
395
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000396 O << Name;
397
Evan Cheng97057f32007-01-18 22:27:12 +0000398 if (printGOT(TM, Subtarget)) {
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000399 std::string GOTName(TAI->getGlobalPrefix());
400 GOTName+="_GLOBAL_OFFSET_TABLE_";
401 if (Name == GOTName)
Evan Cheng97057f32007-01-18 22:27:12 +0000402 // HACK! Emit extra offset to PC during printing GOT offset to
403 // compensate for the size of popl instruction. The resulting code
404 // should look like:
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000405 // call .piclabel
406 // piclabel:
407 // popl %some_register
408 // addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
Evan Cheng4b8d03e2007-01-18 01:49:58 +0000409 O << " + [.-"
410 << computePICLabel(getFunctionNumber(), TAI, Subtarget) << "]";
Evan Cheng97057f32007-01-18 22:27:12 +0000411
412 if (isCallOp)
413 O << "@PLT";
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000414 }
415
Dan Gohmana30eabd2007-04-26 21:07:05 +0000416 if (needCloseParen)
417 O << ')';
418
Evan Cheng97057f32007-01-18 22:27:12 +0000419 if (!isCallOp && Subtarget->isPICStyleRIPRel())
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000420 O << "(%rip)";
421
Chris Lattnerb9740462005-07-01 22:44:09 +0000422 return;
Chris Lattnerd62a3bf2006-02-06 23:41:19 +0000423 }
Chris Lattnerb9740462005-07-01 22:44:09 +0000424 default:
425 O << "<unknown operand type>"; return;
426 }
427}
428
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000429void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Nate Begeman0f38dc42005-07-14 22:52:25 +0000430 unsigned char value = MI->getOperand(Op).getImmedValue();
431 assert(value <= 7 && "Invalid ssecc argument!");
432 switch (value) {
433 case 0: O << "eq"; break;
434 case 1: O << "lt"; break;
435 case 2: O << "le"; break;
436 case 3: O << "unord"; break;
437 case 4: O << "neq"; break;
438 case 5: O << "nlt"; break;
439 case 6: O << "nle"; break;
440 case 7: O << "ord"; break;
441 }
442}
443
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000444void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
445 const char *Modifier){
Chris Lattnerb9740462005-07-01 22:44:09 +0000446 assert(isMem(MI, Op) && "Invalid memory reference!");
Chris Lattner5544e172007-01-14 00:13:07 +0000447 MachineOperand BaseReg = MI->getOperand(Op);
448 MachineOperand IndexReg = MI->getOperand(Op+2);
Chris Lattnerb9740462005-07-01 22:44:09 +0000449 const MachineOperand &DispSpec = MI->getOperand(Op+3);
450
Evan Chengdd60ca02006-12-05 19:50:18 +0000451 bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
Evan Cheng6d464142006-08-29 22:14:48 +0000452 if (DispSpec.isGlobalAddress() ||
453 DispSpec.isConstantPoolIndex() ||
454 DispSpec.isJumpTableIndex()) {
Evan Chengdd60ca02006-12-05 19:50:18 +0000455 printOperand(MI, Op+3, "mem", NotRIPRel);
Chris Lattnerb9740462005-07-01 22:44:09 +0000456 } else {
457 int DispVal = DispSpec.getImmedValue();
458 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
459 O << DispVal;
460 }
461
462 if (IndexReg.getReg() || BaseReg.getReg()) {
Chris Lattner5544e172007-01-14 00:13:07 +0000463 unsigned ScaleVal = MI->getOperand(Op+1).getImmedValue();
464 unsigned BaseRegOperand = 0, IndexRegOperand = 2;
465
466 // There are cases where we can end up with ESP/RSP in the indexreg slot.
467 // If this happens, swap the base/index register to support assemblers that
468 // don't work when the index is *SP.
469 if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
470 assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
471 std::swap(BaseReg, IndexReg);
472 std::swap(BaseRegOperand, IndexRegOperand);
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000473 }
Chris Lattner5544e172007-01-14 00:13:07 +0000474
475 O << "(";
476 if (BaseReg.getReg())
477 printOperand(MI, Op+BaseRegOperand, Modifier);
Chris Lattnerb9740462005-07-01 22:44:09 +0000478
479 if (IndexReg.getReg()) {
480 O << ",";
Chris Lattner5544e172007-01-14 00:13:07 +0000481 printOperand(MI, Op+IndexRegOperand, Modifier);
Chris Lattnerb9740462005-07-01 22:44:09 +0000482 if (ScaleVal != 1)
483 O << "," << ScaleVal;
484 }
Chris Lattnerb9740462005-07-01 22:44:09 +0000485 O << ")";
486 }
487}
488
Evan Cheng5588de92006-02-18 00:15:05 +0000489void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Evan Cheng4b8d03e2007-01-18 01:49:58 +0000490 std::string label = computePICLabel(getFunctionNumber(), TAI, Subtarget);
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000491 O << label << "\n" << label << ":";
Evan Cheng5588de92006-02-18 00:15:05 +0000492}
493
Evan Chengb244b802006-04-28 23:11:40 +0000494
Evan Chengd3696032006-04-28 23:19:39 +0000495bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
Evan Chengb244b802006-04-28 23:11:40 +0000496 const char Mode) {
497 const MRegisterInfo &RI = *TM.getRegisterInfo();
498 unsigned Reg = MO.getReg();
Evan Chengb244b802006-04-28 23:11:40 +0000499 switch (Mode) {
500 default: return true; // Unknown mode.
501 case 'b': // Print QImode register
Evan Chengddb6cc12006-05-05 05:40:20 +0000502 Reg = getX86SubSuperRegister(Reg, MVT::i8);
Evan Chengb244b802006-04-28 23:11:40 +0000503 break;
504 case 'h': // Print QImode high register
Evan Chengddb6cc12006-05-05 05:40:20 +0000505 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
Evan Chengb244b802006-04-28 23:11:40 +0000506 break;
507 case 'w': // Print HImode register
Evan Chengddb6cc12006-05-05 05:40:20 +0000508 Reg = getX86SubSuperRegister(Reg, MVT::i16);
Evan Chengb244b802006-04-28 23:11:40 +0000509 break;
510 case 'k': // Print SImode register
Evan Chengddb6cc12006-05-05 05:40:20 +0000511 Reg = getX86SubSuperRegister(Reg, MVT::i32);
Evan Chengb244b802006-04-28 23:11:40 +0000512 break;
513 }
514
Evan Chengddb6cc12006-05-05 05:40:20 +0000515 O << '%';
516 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
517 O << (char)tolower(*Name);
Evan Chengb244b802006-04-28 23:11:40 +0000518 return false;
519}
520
Evan Cheng68a44dc2006-04-28 21:19:05 +0000521/// PrintAsmOperand - Print out an operand for an inline asm expression.
522///
523bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
524 unsigned AsmVariant,
525 const char *ExtraCode) {
526 // Does this asm operand have a single letter operand modifier?
527 if (ExtraCode && ExtraCode[0]) {
528 if (ExtraCode[1] != 0) return true; // Unknown modifier.
529
530 switch (ExtraCode[0]) {
531 default: return true; // Unknown modifier.
Chris Lattnere4bf50c2007-01-25 02:53:24 +0000532 case 'c': // Don't print "$" before a global var name or constant.
Chris Lattner60ce5582006-10-31 20:12:30 +0000533 printOperand(MI, OpNo, "mem");
534 return false;
Evan Chengb244b802006-04-28 23:11:40 +0000535 case 'b': // Print QImode register
536 case 'h': // Print QImode high register
537 case 'w': // Print HImode register
538 case 'k': // Print SImode register
Chris Lattner927f30d2007-03-25 02:01:03 +0000539 if (MI->getOperand(OpNo).isReg())
540 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
541 printOperand(MI, OpNo);
542 return false;
Chris Lattnerc8ddca72007-03-25 01:44:57 +0000543
544 case 'P': // Don't print @PLT, but do print as memory.
545 printOperand(MI, OpNo, "mem");
546 return false;
Evan Cheng68a44dc2006-04-28 21:19:05 +0000547 }
548 }
549
550 printOperand(MI, OpNo);
551 return false;
552}
553
554bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
555 unsigned OpNo,
556 unsigned AsmVariant,
557 const char *ExtraCode) {
558 if (ExtraCode && ExtraCode[0])
559 return true; // Unknown modifier.
560 printMemReference(MI, OpNo);
561 return false;
562}
563
Chris Lattnerb9740462005-07-01 22:44:09 +0000564/// printMachineInstruction -- Print out a single X86 LLVM instruction
565/// MI in Intel syntax to the current output stream.
566///
567void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
568 ++EmittedInsts;
Evan Chengfcdce6d2006-01-26 02:27:43 +0000569
Evan Chengddb6cc12006-05-05 05:40:20 +0000570 // See if a truncate instruction can be turned into a nop.
571 switch (MI->getOpcode()) {
572 default: break;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000573 case X86::TRUNC_64to32:
574 case X86::TRUNC_64to16:
575 case X86::TRUNC_32to16:
576 case X86::TRUNC_32to8:
577 case X86::TRUNC_16to8:
578 case X86::TRUNC_32_to8:
579 case X86::TRUNC_16_to8: {
Evan Chengddb6cc12006-05-05 05:40:20 +0000580 const MachineOperand &MO0 = MI->getOperand(0);
581 const MachineOperand &MO1 = MI->getOperand(1);
582 unsigned Reg0 = MO0.getReg();
583 unsigned Reg1 = MO1.getReg();
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000584 unsigned Opc = MI->getOpcode();
585 if (Opc == X86::TRUNC_64to32)
586 Reg1 = getX86SubSuperRegister(Reg1, MVT::i32);
587 else if (Opc == X86::TRUNC_32to16 || Opc == X86::TRUNC_64to16)
Evan Cheng9733bde2006-05-08 08:01:26 +0000588 Reg1 = getX86SubSuperRegister(Reg1, MVT::i16);
Evan Chengddb6cc12006-05-05 05:40:20 +0000589 else
Evan Cheng9733bde2006-05-08 08:01:26 +0000590 Reg1 = getX86SubSuperRegister(Reg1, MVT::i8);
Jim Laskeya6211dc2006-09-06 18:34:40 +0000591 O << TAI->getCommentString() << " TRUNCATE ";
Evan Cheng9733bde2006-05-08 08:01:26 +0000592 if (Reg0 != Reg1)
593 O << "\n\t";
Evan Chengddb6cc12006-05-05 05:40:20 +0000594 break;
595 }
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000596 case X86::PsMOVZX64rr32:
597 O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
598 break;
Evan Chengddb6cc12006-05-05 05:40:20 +0000599 }
600
Chris Lattnerb9740462005-07-01 22:44:09 +0000601 // Call the autogenerated instruction printer routines.
602 printInstruction(MI);
603}
604
605// Include the auto-generated portion of the assembly writer.
606#include "X86GenAsmWriter.inc"
607