blob: b0e6ed127d4be1c4d5d8d7e5ba8fc12809d111f9 [file] [log] [blame]
Dan Gohman8bc49c22007-06-25 15:11:25 +00001//===-- X86ATTAsmPrinter.cpp - Convert X86 LLVM code to AT&T assembly -----===//
Chris Lattnerb36cbd02005-07-01 22:44:09 +00002//
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 Lattner95b2c7d2006-12-19 22:59:26 +000016#define DEBUG_TYPE "asm-printer"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000017#include "X86ATTAsmPrinter.h"
18#include "X86.h"
Anton Korobeynikovd05ca652007-01-16 16:41:57 +000019#include "X86COFF.h"
Anton Korobeynikovf8248682006-09-20 22:03:51 +000020#include "X86MachineFunctionInfo.h"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000021#include "X86TargetMachine.h"
Jim Laskeya0f3d172006-09-07 22:06:40 +000022#include "X86TargetAsmInfo.h"
Anton Korobeynikov7f705592007-01-12 19:20:47 +000023#include "llvm/ADT/StringExtras.h"
Anton Korobeynikovf8248682006-09-20 22:03:51 +000024#include "llvm/CallingConv.h"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000025#include "llvm/Module.h"
26#include "llvm/Support/Mangler.h"
Jim Laskeya0f3d172006-09-07 22:06:40 +000027#include "llvm/Target/TargetAsmInfo.h"
Evan Cheng7ccced62006-02-18 00:15:05 +000028#include "llvm/Target/TargetOptions.h"
Chris Lattner95b2c7d2006-12-19 22:59:26 +000029#include "llvm/ADT/Statistic.h"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000030using namespace llvm;
Chris Lattnerb36cbd02005-07-01 22:44:09 +000031
Chris Lattner95b2c7d2006-12-19 22:59:26 +000032STATISTIC(EmittedInsts, "Number of machine instrs printed");
33
Evan Cheng071b9d52007-01-18 01:49:58 +000034static std::string computePICLabel(unsigned FnNum,
35 const TargetAsmInfo *TAI,
36 const X86Subtarget* Subtarget) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +000037 std::string label;
Evan Cheng071b9d52007-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 Korobeynikov7f705592007-01-12 19:20:47 +000043 assert(0 && "Don't know how to print PIC label!\n");
44
45 return label;
46}
47
Chris Lattnerafbfded2006-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 Korobeynikov317848f2007-01-03 11:43:14 +000061 } else if (Subtarget->isTargetCygMing()) {
Dan Gohmanaf67ea72007-06-14 15:00:27 +000062 return "\t.section\t.text$linkonce." + CurrentFnName + ",\"ax\"";
Chris Lattnerafbfded2006-10-05 02:43:52 +000063 } else {
64 return "\t.section\t.llvm.linkonce.t." + CurrentFnName +
Dan Gohmanaf67ea72007-06-14 15:00:27 +000065 ",\"ax\",@progbits";
Chris Lattnerafbfded2006-10-05 02:43:52 +000066 }
67 }
68}
69
Chris Lattnerb36cbd02005-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 Korobeynikov2a07e2f2007-05-05 09:04:50 +000074 if (TAI->doesSupportDebugInformation()) {
Jim Laskeye29c2f52006-07-19 11:54:50 +000075 // Let PassManager know we need debug information and relay
Jim Laskey44c3b9f2007-01-26 21:22:28 +000076 // the MachineModuleInfo address on to DwarfWriter.
77 DW.SetModuleInfo(&getAnalysis<MachineModuleInfo>());
Jim Laskeye29c2f52006-07-19 11:54:50 +000078 }
Evan Cheng3c992d22006-03-07 02:02:57 +000079
Chris Lattner8b8b9512005-11-21 07:51:23 +000080 SetupMachineFunction(MF);
Chris Lattnerb36cbd02005-07-01 22:44:09 +000081 O << "\n\n";
82
83 // Print out constants referenced by the function
Chris Lattnerd939f6c2005-11-21 08:32:23 +000084 EmitConstantPool(MF.getConstantPool());
Chris Lattnerb36cbd02005-07-01 22:44:09 +000085
86 // Print out labels for the function.
Evan Cheng2338c5c2006-02-07 08:38:37 +000087 const Function *F = MF.getFunction();
Anton Korobeynikovf8248682006-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 Lattnere87e1152006-09-26 03:57:53 +000092 if (CC == CallingConv::X86_StdCall || CC == CallingConv::X86_FastCall)
Chris Lattnerd15dff22007-04-17 17:21:52 +000093 FunctionInfoMap[F] = *MF.getInfo<X86MachineFunctionInfo>();
Anton Korobeynikovf8248682006-09-20 22:03:51 +000094
95 X86SharedAsmPrinter::decorateName(CurrentFnName, F);
96
Anton Korobeynikovd5f317d2007-01-07 00:41:20 +000097 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Anton Korobeynikovcea9d1d2007-01-06 18:24:26 +000098
Evan Cheng2338c5c2006-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 Chengad5e9ca2007-07-25 23:36:05 +0000102 if (Subtarget->isTargetDarwin())
103 // FIXME: This should be parameterized somewhere.
104 EmitAlignment(4, F, 0, true, 0x90);
105 else
106 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Evan Cheng2338c5c2006-02-07 08:38:37 +0000107 break;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000108 case Function::DLLExportLinkage:
109 DLLExportedFns.insert(Mang->makeNameProper(F->getName(), ""));
110 //FALLS THROUGH
Evan Cheng2338c5c2006-02-07 08:38:37 +0000111 case Function::ExternalLinkage:
Evan Chengad5e9ca2007-07-25 23:36:05 +0000112 if (Subtarget->isTargetDarwin())
113 // FIXME: This should be parameterized somewhere.
114 EmitAlignment(4, F, 0, true, 0x90);
115 else
116 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000117 O << "\t.globl\t" << CurrentFnName << "\n";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000118 break;
Evan Cheng2338c5c2006-02-07 08:38:37 +0000119 case Function::LinkOnceLinkage:
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000120 case Function::WeakLinkage:
Jim Laskeyea348582006-07-27 02:05:13 +0000121 if (Subtarget->isTargetDarwin()) {
Evan Chengad5e9ca2007-07-25 23:36:05 +0000122 // FIXME: This should be parameterized somewhere.
123 EmitAlignment(4, F, 0, true, 0x90);
Evan Chengf1616da2006-02-22 23:59:57 +0000124 O << "\t.globl\t" << CurrentFnName << "\n";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000125 O << "\t.weak_definition\t" << CurrentFnName << "\n";
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000126 } else if (Subtarget->isTargetCygMing()) {
Evan Cheng932ad512006-05-25 21:59:08 +0000127 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Anton Korobeynikovb7188b12006-10-17 20:29:49 +0000128 O << "\t.globl " << CurrentFnName << "\n";
Anton Korobeynikov66413092007-02-23 01:58:50 +0000129 O << "\t.linkonce discard\n";
Anton Korobeynikovb7188b12006-10-17 20:29:49 +0000130 } else {
131 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohman825811d2007-07-30 15:08:02 +0000132 O << "\t.weak\t" << CurrentFnName << "\n";
Anton Korobeynikovb7188b12006-10-17 20:29:49 +0000133 }
134 break;
Evan Cheng2338c5c2006-02-07 08:38:37 +0000135 }
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000136 if (F->hasHiddenVisibility()) {
Chris Lattner43bbc5c2007-01-14 06:29:53 +0000137 if (const char *Directive = TAI->getHiddenDirective())
138 O << Directive << CurrentFnName << "\n";
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000139 } else if (F->hasProtectedVisibility()) {
140 if (const char *Directive = TAI->getProtectedDirective())
141 O << Directive << CurrentFnName << "\n";
142 }
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000143
144 if (Subtarget->isTargetELF())
Dan Gohman825811d2007-07-30 15:08:02 +0000145 O << "\t.type\t" << CurrentFnName << ",@function\n";
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000146 else if (Subtarget->isTargetCygMing()) {
147 O << "\t.def\t " << CurrentFnName
148 << ";\t.scl\t" <<
149 (F->getLinkage() == Function::InternalLinkage ? COFF::C_STAT : COFF::C_EXT)
150 << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
151 << ";\t.endef\n";
152 }
153
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000154 O << CurrentFnName << ":\n";
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000155 // Add some workaround for linkonce linkage on Cygwin\MinGW
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000156 if (Subtarget->isTargetCygMing() &&
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000157 (F->getLinkage() == Function::LinkOnceLinkage ||
158 F->getLinkage() == Function::WeakLinkage))
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000159 O << "Lllvm$workaround$fake$stub$" << CurrentFnName << ":\n";
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000160
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +0000161 if (TAI->doesSupportDebugInformation()) {
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000162 // Emit pre-function debug information.
Jim Laskey89d67fa2006-06-23 12:51:53 +0000163 DW.BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000164 }
165
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000166 // Print out code for the function.
167 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
168 I != E; ++I) {
169 // Print a label for the basic block.
Nate Begemancdf38c42006-05-02 05:37:32 +0000170 if (I->pred_begin() != I->pred_end()) {
171 printBasicBlockLabel(I, true);
172 O << '\n';
173 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000174 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
175 II != E; ++II) {
176 // Print the assembly for the instruction.
177 O << "\t";
178 printMachineInstruction(II);
179 }
180 }
Evan Cheng67afece2006-08-28 22:14:16 +0000181
Jim Laskey563321a2006-09-06 18:34:40 +0000182 if (TAI->hasDotTypeDotSizeDirective())
Dan Gohmana9f64342007-08-01 14:42:30 +0000183 O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n";
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000184
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +0000185 if (TAI->doesSupportDebugInformation()) {
Evan Chengd5948812006-03-07 02:23:26 +0000186 // Emit post-function debug information.
Jim Laskey99db0442006-03-23 18:09:44 +0000187 DW.EndFunction();
Evan Chengd5948812006-03-07 02:23:26 +0000188 }
Evan Cheng3c992d22006-03-07 02:02:57 +0000189
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +0000190 // Print out jump tables referenced by the function.
191 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
192
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000193 // We didn't modify anything.
194 return false;
195}
196
Evan Chengae19abc2007-01-18 22:27:12 +0000197static inline bool printGOT(TargetMachine &TM, const X86Subtarget* ST) {
198 return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
199}
200
201static inline bool printStub(TargetMachine &TM, const X86Subtarget* ST) {
202 return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
203}
204
Chris Lattnera3b8c572006-02-06 23:41:19 +0000205void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng28b514392006-12-05 19:50:18 +0000206 const char *Modifier, bool NotRIPRel) {
Chris Lattnera3b8c572006-02-06 23:41:19 +0000207 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000208 const MRegisterInfo &RI = *TM.getRegisterInfo();
209 switch (MO.getType()) {
Evan Cheng8f7f7122006-05-05 05:40:20 +0000210 case MachineOperand::MO_Register: {
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000211 assert(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
212 "Virtual registers should not make it this far!");
213 O << '%';
Evan Cheng8f7f7122006-05-05 05:40:20 +0000214 unsigned Reg = MO.getReg();
Evan Chengcbe70e12006-05-31 22:34:26 +0000215 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000216 MVT::ValueType VT = (strcmp(Modifier+6,"64") == 0) ?
217 MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
218 ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
Evan Cheng8f7f7122006-05-05 05:40:20 +0000219 Reg = getX86SubSuperRegister(Reg, VT);
220 }
221 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000222 O << (char)tolower(*Name);
223 return;
Evan Cheng8f7f7122006-05-05 05:40:20 +0000224 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000225
Chris Lattner63b3d712006-05-04 17:21:20 +0000226 case MachineOperand::MO_Immediate:
Chris Lattnerb4828722007-01-25 02:53:24 +0000227 if (!Modifier ||
228 (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
Evan Cheng3c992d22006-03-07 02:02:57 +0000229 O << '$';
Evan Cheng138a24e2006-05-26 08:04:31 +0000230 O << MO.getImmedValue();
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000231 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000232 case MachineOperand::MO_MachineBasicBlock:
233 printBasicBlockLabel(MO.getMachineBasicBlock());
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000234 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000235 case MachineOperand::MO_JumpTableIndex: {
236 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
237 if (!isMemOp) O << '$';
Jim Laskey563321a2006-09-06 18:34:40 +0000238 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
Nate Begeman37efe672006-04-22 18:53:45 +0000239 << MO.getJumpTableIndex();
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000240
241 if (TM.getRelocationModel() == Reloc::PIC_) {
242 if (Subtarget->isPICStyleStub())
Evan Cheng071b9d52007-01-18 01:49:58 +0000243 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
244 << "$pb\"";
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000245 else if (Subtarget->isPICStyleGOT())
246 O << "@GOTOFF";
247 }
248
Evan Chengae19abc2007-01-18 22:27:12 +0000249 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
Evan Cheng25ab6902006-09-08 06:48:29 +0000250 O << "(%rip)";
Nate Begeman37efe672006-04-22 18:53:45 +0000251 return;
252 }
Evan Chenga09bd812006-02-26 08:28:12 +0000253 case MachineOperand::MO_ConstantPoolIndex: {
254 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
255 if (!isMemOp) O << '$';
Jim Laskey563321a2006-09-06 18:34:40 +0000256 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
Evan Chenga09bd812006-02-26 08:28:12 +0000257 << MO.getConstantPoolIndex();
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000258
259 if (TM.getRelocationModel() == Reloc::PIC_) {
260 if (Subtarget->isPICStyleStub())
Evan Cheng071b9d52007-01-18 01:49:58 +0000261 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
262 << "$pb\"";
Evan Chengae19abc2007-01-18 22:27:12 +0000263 else if (Subtarget->isPICStyleGOT())
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000264 O << "@GOTOFF";
265 }
266
Evan Chenga09bd812006-02-26 08:28:12 +0000267 int Offset = MO.getOffset();
268 if (Offset > 0)
269 O << "+" << Offset;
270 else if (Offset < 0)
271 O << Offset;
Evan Cheng25ab6902006-09-08 06:48:29 +0000272
Evan Chengae19abc2007-01-18 22:27:12 +0000273 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
Evan Cheng25ab6902006-09-08 06:48:29 +0000274 O << "(%rip)";
Evan Chenga09bd812006-02-26 08:28:12 +0000275 return;
276 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000277 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera3b8c572006-02-06 23:41:19 +0000278 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Evan Cheng2338c5c2006-02-07 08:38:37 +0000279 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
Dan Gohman2a3250c2007-04-26 21:07:05 +0000280 bool needCloseParen = false;
Evan Cheng25ab6902006-09-08 06:48:29 +0000281
Anton Korobeynikovf8248682006-09-20 22:03:51 +0000282 GlobalValue *GV = MO.getGlobal();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000283 GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
284 bool isThreadLocal = GVar && GVar->isThreadLocal();
285
Evan Cheng25ab6902006-09-08 06:48:29 +0000286 std::string Name = Mang->getValueName(GV);
Chris Lattnere87e1152006-09-26 03:57:53 +0000287 X86SharedAsmPrinter::decorateName(Name, GV);
Anton Korobeynikovf8248682006-09-20 22:03:51 +0000288
Dan Gohman2a3250c2007-04-26 21:07:05 +0000289 if (!isMemOp && !isCallOp)
290 O << '$';
291 else if (Name[0] == '$') {
292 // The name begins with a dollar-sign. In order to avoid having it look
293 // like an integer immediate to the assembler, enclose it in parens.
294 O << '(';
295 needCloseParen = true;
296 }
297
Evan Chengae19abc2007-01-18 22:27:12 +0000298 if (printStub(TM, Subtarget)) {
Evan Cheng111354f2007-06-04 18:54:57 +0000299 // Link-once, declaration, or Weakly-linked global variables need
Evan Cheng2338c5c2006-02-07 08:38:37 +0000300 // non-lazily-resolved stubs
Reid Spencer5cbf9852007-01-30 20:08:39 +0000301 if (GV->isDeclaration() ||
Evan Chengae19abc2007-01-18 22:27:12 +0000302 GV->hasWeakLinkage() ||
303 GV->hasLinkOnceLinkage()) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000304 // Dynamically-resolved functions need a stub for the function.
Evan Cheng25ab6902006-09-08 06:48:29 +0000305 if (isCallOp && isa<Function>(GV)) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000306 FnStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000307 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000308 } else {
309 GVStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000310 O << TAI->getPrivateGlobalPrefix() << Name << "$non_lazy_ptr";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000311 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000312 } else {
Evan Chengae19abc2007-01-18 22:27:12 +0000313 if (GV->hasDLLImportLinkage())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000314 O << "__imp_";
Evan Cheng25ab6902006-09-08 06:48:29 +0000315 O << Name;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000316 }
317
Chris Lattner35d86fe2006-07-26 21:12:04 +0000318 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng071b9d52007-01-18 01:49:58 +0000319 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
320 << "$pb\"";
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000321 } else {
322 if (GV->hasDLLImportLinkage()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000323 O << "__imp_";
324 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000325 O << Name;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000326
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000327 if (isCallOp && isa<Function>(GV)) {
Evan Chengae19abc2007-01-18 22:27:12 +0000328 if (printGOT(TM, Subtarget)) {
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000329 // Assemble call via PLT for non-local symbols
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000330 if (!(GV->hasHiddenVisibility() || GV->hasProtectedVisibility()) ||
331 GV->isDeclaration())
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000332 O << "@PLT";
333 }
Reid Spencer5cbf9852007-01-30 20:08:39 +0000334 if (Subtarget->isTargetCygMing() && GV->isDeclaration())
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000335 // Save function name for later type emission
336 FnStubs.insert(Name);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000337 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000338 }
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000339
Evan Cheng6d7d3102006-12-01 07:38:23 +0000340 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000341 ExtWeakSymbols.insert(GV);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000342
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000343 int Offset = MO.getOffset();
344 if (Offset > 0)
345 O << "+" << Offset;
346 else if (Offset < 0)
347 O << Offset;
Evan Cheng25ab6902006-09-08 06:48:29 +0000348
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000349 if (isThreadLocal) {
350 if (TM.getRelocationModel() == Reloc::PIC_)
351 O << "@TLSGD"; // general dynamic TLS model
352 else
353 if (GV->isDeclaration())
354 O << "@INDNTPOFF"; // initial exec TLS model
355 else
356 O << "@NTPOFF"; // local exec TLS model
357 } else if (isMemOp) {
Evan Chengae19abc2007-01-18 22:27:12 +0000358 if (printGOT(TM, Subtarget)) {
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000359 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000360 O << "@GOT";
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000361 else
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000362 O << "@GOTOFF";
Evan Chengae19abc2007-01-18 22:27:12 +0000363 } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel) {
Evan Cheng111354f2007-06-04 18:54:57 +0000364 if ((GV->isDeclaration() ||
Evan Chengae19abc2007-01-18 22:27:12 +0000365 GV->hasWeakLinkage() ||
366 GV->hasLinkOnceLinkage()) &&
367 TM.getRelocationModel() != Reloc::Static)
368 O << "@GOTPCREL";
Dan Gohman2a3250c2007-04-26 21:07:05 +0000369
370 if (needCloseParen) {
371 needCloseParen = false;
372 O << ')';
373 }
374
Evan Chengae19abc2007-01-18 22:27:12 +0000375 // Use rip when possible to reduce code size, except when
376 // index or base register are also part of the address. e.g.
377 // foo(%rip)(%rcx,%rax,4) is not legal
378 O << "(%rip)";
379 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000380 }
381
Dan Gohman2a3250c2007-04-26 21:07:05 +0000382 if (needCloseParen)
383 O << ')';
384
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000385 return;
386 }
Chris Lattnera3b8c572006-02-06 23:41:19 +0000387 case MachineOperand::MO_ExternalSymbol: {
388 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Dan Gohman2a3250c2007-04-26 21:07:05 +0000389 bool needCloseParen = false;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000390 std::string Name(TAI->getGlobalPrefix());
391 Name += MO.getSymbolName();
Evan Chengae19abc2007-01-18 22:27:12 +0000392 if (isCallOp && printStub(TM, Subtarget)) {
Nate Begeman72b286b2005-07-08 00:23:26 +0000393 FnStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000394 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
Nate Begeman72b286b2005-07-08 00:23:26 +0000395 return;
396 }
Dan Gohman2a3250c2007-04-26 21:07:05 +0000397 if (!isCallOp)
398 O << '$';
399 else if (Name[0] == '$') {
400 // The name begins with a dollar-sign. In order to avoid having it look
401 // like an integer immediate to the assembler, enclose it in parens.
402 O << '(';
403 needCloseParen = true;
404 }
405
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000406 O << Name;
407
Evan Chengae19abc2007-01-18 22:27:12 +0000408 if (printGOT(TM, Subtarget)) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000409 std::string GOTName(TAI->getGlobalPrefix());
410 GOTName+="_GLOBAL_OFFSET_TABLE_";
411 if (Name == GOTName)
Evan Chengae19abc2007-01-18 22:27:12 +0000412 // HACK! Emit extra offset to PC during printing GOT offset to
413 // compensate for the size of popl instruction. The resulting code
414 // should look like:
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000415 // call .piclabel
416 // piclabel:
417 // popl %some_register
418 // addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
Evan Cheng071b9d52007-01-18 01:49:58 +0000419 O << " + [.-"
420 << computePICLabel(getFunctionNumber(), TAI, Subtarget) << "]";
Evan Chengae19abc2007-01-18 22:27:12 +0000421
422 if (isCallOp)
423 O << "@PLT";
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000424 }
425
Dan Gohman2a3250c2007-04-26 21:07:05 +0000426 if (needCloseParen)
427 O << ')';
428
Evan Chengae19abc2007-01-18 22:27:12 +0000429 if (!isCallOp && Subtarget->isPICStyleRIPRel())
Evan Cheng25ab6902006-09-08 06:48:29 +0000430 O << "(%rip)";
431
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000432 return;
Chris Lattnera3b8c572006-02-06 23:41:19 +0000433 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000434 default:
435 O << "<unknown operand type>"; return;
436 }
437}
438
Nate Begeman391c5d22005-11-30 18:54:35 +0000439void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Nate Begeman6c7cb292005-07-14 22:52:25 +0000440 unsigned char value = MI->getOperand(Op).getImmedValue();
441 assert(value <= 7 && "Invalid ssecc argument!");
442 switch (value) {
443 case 0: O << "eq"; break;
444 case 1: O << "lt"; break;
445 case 2: O << "le"; break;
446 case 3: O << "unord"; break;
447 case 4: O << "neq"; break;
448 case 5: O << "nlt"; break;
449 case 6: O << "nle"; break;
450 case 7: O << "ord"; break;
451 }
452}
453
Evan Cheng25ab6902006-09-08 06:48:29 +0000454void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
455 const char *Modifier){
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000456 assert(isMem(MI, Op) && "Invalid memory reference!");
Chris Lattner32c9a452007-01-14 00:13:07 +0000457 MachineOperand BaseReg = MI->getOperand(Op);
458 MachineOperand IndexReg = MI->getOperand(Op+2);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000459 const MachineOperand &DispSpec = MI->getOperand(Op+3);
460
Evan Cheng28b514392006-12-05 19:50:18 +0000461 bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
Evan Chengc9676de2006-08-29 22:14:48 +0000462 if (DispSpec.isGlobalAddress() ||
463 DispSpec.isConstantPoolIndex() ||
464 DispSpec.isJumpTableIndex()) {
Evan Cheng28b514392006-12-05 19:50:18 +0000465 printOperand(MI, Op+3, "mem", NotRIPRel);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000466 } else {
467 int DispVal = DispSpec.getImmedValue();
468 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
469 O << DispVal;
470 }
471
472 if (IndexReg.getReg() || BaseReg.getReg()) {
Chris Lattner32c9a452007-01-14 00:13:07 +0000473 unsigned ScaleVal = MI->getOperand(Op+1).getImmedValue();
474 unsigned BaseRegOperand = 0, IndexRegOperand = 2;
475
476 // There are cases where we can end up with ESP/RSP in the indexreg slot.
477 // If this happens, swap the base/index register to support assemblers that
478 // don't work when the index is *SP.
479 if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
480 assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
481 std::swap(BaseReg, IndexReg);
482 std::swap(BaseRegOperand, IndexRegOperand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000483 }
Chris Lattner32c9a452007-01-14 00:13:07 +0000484
485 O << "(";
486 if (BaseReg.getReg())
487 printOperand(MI, Op+BaseRegOperand, Modifier);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000488
489 if (IndexReg.getReg()) {
490 O << ",";
Chris Lattner32c9a452007-01-14 00:13:07 +0000491 printOperand(MI, Op+IndexRegOperand, Modifier);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000492 if (ScaleVal != 1)
493 O << "," << ScaleVal;
494 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000495 O << ")";
496 }
497}
498
Evan Cheng7ccced62006-02-18 00:15:05 +0000499void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Evan Cheng071b9d52007-01-18 01:49:58 +0000500 std::string label = computePICLabel(getFunctionNumber(), TAI, Subtarget);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000501 O << label << "\n" << label << ":";
Evan Cheng7ccced62006-02-18 00:15:05 +0000502}
503
Evan Cheng62f27002006-04-28 23:11:40 +0000504
Evan Cheng55c25f22006-04-28 23:19:39 +0000505bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
Evan Cheng62f27002006-04-28 23:11:40 +0000506 const char Mode) {
507 const MRegisterInfo &RI = *TM.getRegisterInfo();
508 unsigned Reg = MO.getReg();
Evan Cheng62f27002006-04-28 23:11:40 +0000509 switch (Mode) {
510 default: return true; // Unknown mode.
511 case 'b': // Print QImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000512 Reg = getX86SubSuperRegister(Reg, MVT::i8);
Evan Cheng62f27002006-04-28 23:11:40 +0000513 break;
514 case 'h': // Print QImode high register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000515 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
Evan Cheng62f27002006-04-28 23:11:40 +0000516 break;
517 case 'w': // Print HImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000518 Reg = getX86SubSuperRegister(Reg, MVT::i16);
Evan Cheng62f27002006-04-28 23:11:40 +0000519 break;
520 case 'k': // Print SImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000521 Reg = getX86SubSuperRegister(Reg, MVT::i32);
Evan Cheng62f27002006-04-28 23:11:40 +0000522 break;
523 }
524
Evan Cheng8f7f7122006-05-05 05:40:20 +0000525 O << '%';
526 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
527 O << (char)tolower(*Name);
Evan Cheng62f27002006-04-28 23:11:40 +0000528 return false;
529}
530
Evan Cheng3d48a902006-04-28 21:19:05 +0000531/// PrintAsmOperand - Print out an operand for an inline asm expression.
532///
533bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
534 unsigned AsmVariant,
535 const char *ExtraCode) {
536 // Does this asm operand have a single letter operand modifier?
537 if (ExtraCode && ExtraCode[0]) {
538 if (ExtraCode[1] != 0) return true; // Unknown modifier.
539
540 switch (ExtraCode[0]) {
541 default: return true; // Unknown modifier.
Chris Lattnerb4828722007-01-25 02:53:24 +0000542 case 'c': // Don't print "$" before a global var name or constant.
Chris Lattner0d924992006-10-31 20:12:30 +0000543 printOperand(MI, OpNo, "mem");
544 return false;
Evan Cheng62f27002006-04-28 23:11:40 +0000545 case 'b': // Print QImode register
546 case 'h': // Print QImode high register
547 case 'w': // Print HImode register
548 case 'k': // Print SImode register
Chris Lattner14393522007-03-25 02:01:03 +0000549 if (MI->getOperand(OpNo).isReg())
550 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
551 printOperand(MI, OpNo);
552 return false;
Chris Lattner7cd5e072007-03-25 01:44:57 +0000553
554 case 'P': // Don't print @PLT, but do print as memory.
555 printOperand(MI, OpNo, "mem");
556 return false;
Evan Cheng3d48a902006-04-28 21:19:05 +0000557 }
558 }
559
560 printOperand(MI, OpNo);
561 return false;
562}
563
564bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
565 unsigned OpNo,
566 unsigned AsmVariant,
567 const char *ExtraCode) {
568 if (ExtraCode && ExtraCode[0])
569 return true; // Unknown modifier.
570 printMemReference(MI, OpNo);
571 return false;
572}
573
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000574/// printMachineInstruction -- Print out a single X86 LLVM instruction
Dan Gohman8bc49c22007-06-25 15:11:25 +0000575/// MI in AT&T syntax to the current output stream.
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000576///
577void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
578 ++EmittedInsts;
Evan Cheng67caa392006-01-26 02:27:43 +0000579
Evan Cheng8f7f7122006-05-05 05:40:20 +0000580 // See if a truncate instruction can be turned into a nop.
581 switch (MI->getOpcode()) {
582 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000583 case X86::PsMOVZX64rr32:
584 O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
585 break;
Evan Cheng8f7f7122006-05-05 05:40:20 +0000586 }
587
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000588 // Call the autogenerated instruction printer routines.
589 printInstruction(MI);
590}
591
592// Include the auto-generated portion of the assembly writer.
593#include "X86GenAsmWriter.inc"
594