blob: b9d38d148a0ce41e1eb9092e4485ab80bbe6834f [file] [log] [blame]
Chris Lattner97f06932009-10-19 20:20:46 +00001//===-- ARMAsmPrinter.cpp - Print machine code to an ARM .s file ----------===//
2//
Rafael Espindola7bc59bc2006-05-14 22:18:28 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
Rafael Espindola7bc59bc2006-05-14 22:18:28 +00006// 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 GAS-format ARM assembly language.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner95b2c7d2006-12-19 22:59:26 +000015#define DEBUG_TYPE "asm-printer"
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000016#include "ARM.h"
Anton Korobeynikov88ce6672009-05-23 19:51:20 +000017#include "ARMBuildAttrs.h"
Evan Chenga8e29892007-01-19 07:51:42 +000018#include "ARMAddressingModes.h"
19#include "ARMConstantPoolValue.h"
Jim Grosbach7ac16092010-10-01 22:39:28 +000020#include "InstPrinter/ARMInstPrinter.h"
Chris Lattner97f06932009-10-19 20:20:46 +000021#include "ARMMachineFunctionInfo.h"
22#include "ARMMCInstLower.h"
23#include "ARMTargetMachine.h"
Dale Johannesen3f282aa2010-04-26 20:07:31 +000024#include "llvm/Analysis/DebugInfo.h"
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000025#include "llvm/Constants.h"
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000026#include "llvm/Module.h"
Benjamin Kramere55b15f2009-12-28 12:27:56 +000027#include "llvm/Type.h"
Dan Gohmancf20ac42009-08-13 01:36:44 +000028#include "llvm/Assembly/Writer.h"
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000029#include "llvm/CodeGen/AsmPrinter.h"
Chris Lattnerb0f294c2009-10-19 18:38:33 +000030#include "llvm/CodeGen/MachineModuleInfoImpls.h"
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000031#include "llvm/CodeGen/MachineFunctionPass.h"
Evan Chenga8e29892007-01-19 07:51:42 +000032#include "llvm/CodeGen/MachineJumpTableInfo.h"
Anton Korobeynikov362dd0b2010-02-15 22:37:53 +000033#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Chris Lattnerb0f294c2009-10-19 18:38:33 +000034#include "llvm/MC/MCAsmInfo.h"
35#include "llvm/MC/MCContext.h"
Bill Wendlingbecd83e2010-03-09 00:40:17 +000036#include "llvm/MC/MCExpr.h"
Chris Lattner97f06932009-10-19 20:20:46 +000037#include "llvm/MC/MCInst.h"
Chris Lattnerf9bdedd2009-08-10 18:15:01 +000038#include "llvm/MC/MCSectionMachO.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000039#include "llvm/MC/MCStreamer.h"
Chris Lattner325d3dc2009-09-13 17:14:04 +000040#include "llvm/MC/MCSymbol.h"
Chris Lattnerd62f1b42010-03-12 21:19:23 +000041#include "llvm/Target/Mangler.h"
Rafael Espindolab01c4bb2006-07-27 11:38:51 +000042#include "llvm/Target/TargetData.h"
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000043#include "llvm/Target/TargetMachine.h"
Evan Cheng5be54b02007-01-19 19:25:36 +000044#include "llvm/Target/TargetOptions.h"
Daniel Dunbar51b198a2009-07-15 20:24:03 +000045#include "llvm/Target/TargetRegistry.h"
Evan Chengc324ecb2009-07-24 18:19:46 +000046#include "llvm/ADT/SmallPtrSet.h"
Jim Grosbachc40d9f92009-09-01 18:49:12 +000047#include "llvm/ADT/SmallString.h"
Bob Wilson54c78ef2009-11-06 23:33:28 +000048#include "llvm/ADT/StringExtras.h"
Chris Lattner97f06932009-10-19 20:20:46 +000049#include "llvm/Support/CommandLine.h"
Devang Patel59135f42010-08-04 22:39:39 +000050#include "llvm/Support/Debug.h"
Torok Edwin30464702009-07-08 20:55:50 +000051#include "llvm/Support/ErrorHandling.h"
Chris Lattnerb23569a2010-04-04 08:18:47 +000052#include "llvm/Support/raw_ostream.h"
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000053#include <cctype>
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000054using namespace llvm;
55
Jim Grosbach91729002010-07-21 23:03:52 +000056namespace llvm {
57 namespace ARM {
58 enum DW_ISA {
59 DW_ISA_ARM_thumb = 1,
60 DW_ISA_ARM_arm = 2
61 };
62 }
63}
64
Chris Lattner95b2c7d2006-12-19 22:59:26 +000065namespace {
Chris Lattner4a071d62009-10-19 17:59:19 +000066 class ARMAsmPrinter : public AsmPrinter {
Evan Chenga8e29892007-01-19 07:51:42 +000067
68 /// Subtarget - Keep a pointer to the ARMSubtarget around so that we can
69 /// make the right decision when printing asm code for different targets.
70 const ARMSubtarget *Subtarget;
71
72 /// AFI - Keep a pointer to ARMFunctionInfo for the current
Evan Cheng6d63a722008-09-18 07:27:23 +000073 /// MachineFunction.
Evan Chenga8e29892007-01-19 07:51:42 +000074 ARMFunctionInfo *AFI;
75
Evan Cheng6d63a722008-09-18 07:27:23 +000076 /// MCP - Keep a pointer to constantpool entries of the current
77 /// MachineFunction.
78 const MachineConstantPool *MCP;
79
Bill Wendling57f0db82009-02-24 08:30:20 +000080 public:
Chris Lattnerb23569a2010-04-04 08:18:47 +000081 explicit ARMAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
82 : AsmPrinter(TM, Streamer), AFI(NULL), MCP(NULL) {
Bill Wendling57f0db82009-02-24 08:30:20 +000083 Subtarget = &TM.getSubtarget<ARMSubtarget>();
84 }
85
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000086 virtual const char *getPassName() const {
87 return "ARM Assembly Printer";
88 }
Jim Grosbachb0739b72010-09-02 01:02:06 +000089
Chris Lattner35c33bd2010-04-04 04:47:45 +000090 void printOperand(const MachineInstr *MI, int OpNum, raw_ostream &O,
Evan Chenga8e29892007-01-19 07:51:42 +000091 const char *Modifier = 0);
Bob Wilson54c78ef2009-11-06 23:33:28 +000092
Evan Cheng055b0312009-06-29 07:51:04 +000093 virtual bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
Chris Lattnerc75c0282010-04-04 05:29:35 +000094 unsigned AsmVariant, const char *ExtraCode,
95 raw_ostream &O);
Evan Cheng055b0312009-06-29 07:51:04 +000096 virtual bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNum,
Bob Wilson224c2442009-05-19 05:53:42 +000097 unsigned AsmVariant,
Chris Lattnerc75c0282010-04-04 05:29:35 +000098 const char *ExtraCode, raw_ostream &O);
Rafael Espindola7bc59bc2006-05-14 22:18:28 +000099
Jim Grosbach2317e402010-09-30 01:57:53 +0000100 void EmitJumpTable(const MachineInstr *MI);
101 void EmitJump2Table(const MachineInstr *MI);
Chris Lattnera786cea2010-01-28 01:10:34 +0000102 virtual void EmitInstruction(const MachineInstr *MI);
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000103 bool runOnMachineFunction(MachineFunction &F);
Jim Grosbachb0739b72010-09-02 01:02:06 +0000104
Chris Lattnera2406192010-01-28 00:19:24 +0000105 virtual void EmitConstantPool() {} // we emit constant pools customly!
Chris Lattner953ebb72010-01-27 23:58:11 +0000106 virtual void EmitFunctionEntryLabel();
Bob Wilson812209a2009-09-30 22:06:26 +0000107 void EmitStartOfAsmFile(Module &M);
Chris Lattner4a071d62009-10-19 17:59:19 +0000108 void EmitEndOfAsmFile(Module &M);
Evan Chenga8e29892007-01-19 07:51:42 +0000109
Jim Grosbach2d0f53b2010-09-28 17:05:56 +0000110 void PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS);
111
Devang Patel59135f42010-08-04 22:39:39 +0000112 MachineLocation getDebugValueLocation(const MachineInstr *MI) const {
113 MachineLocation Location;
114 assert (MI->getNumOperands() == 4 && "Invalid no. of machine operands!");
115 // Frame address. Currently handles register +- offset only.
116 if (MI->getOperand(0).isReg() && MI->getOperand(1).isImm())
117 Location.set(MI->getOperand(0).getReg(), MI->getOperand(1).getImm());
118 else {
119 DEBUG(dbgs() << "DBG_VALUE instruction ignored! " << *MI << "\n");
120 }
121 return Location;
122 }
123
Jim Grosbach91729002010-07-21 23:03:52 +0000124 virtual unsigned getISAEncoding() {
125 // ARM/Darwin adds ISA to the DWARF info for each function.
126 if (!Subtarget->isTargetDarwin())
127 return 0;
128 return Subtarget->isThumb() ?
129 llvm::ARM::DW_ISA_ARM_thumb : llvm::ARM::DW_ISA_ARM_arm;
130 }
131
Chris Lattner0890cf12010-01-25 19:51:38 +0000132 MCSymbol *GetARMSetPICJumpTableLabel2(unsigned uid, unsigned uid2,
133 const MachineBasicBlock *MBB) const;
134 MCSymbol *GetARMJTIPICJumpTableLabel2(unsigned uid, unsigned uid2) const;
Chris Lattnerbfcb0962010-01-25 19:39:52 +0000135
Jim Grosbach433a5782010-09-24 20:47:58 +0000136 MCSymbol *GetARMSJLJEHLabel(void) const;
137
Evan Cheng711b6dc2008-08-08 06:56:16 +0000138 /// EmitMachineConstantPoolValue - Print a machine constantpool value to
139 /// the .s file.
Evan Chenga8e29892007-01-19 07:51:42 +0000140 virtual void EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
Chris Lattner9d7efd32010-04-04 07:05:53 +0000141 SmallString<128> Str;
142 raw_svector_ostream OS(Str);
143 EmitMachineConstantPoolValue(MCPV, OS);
144 OutStreamer.EmitRawText(OS.str());
145 }
Jim Grosbachb0739b72010-09-02 01:02:06 +0000146
Chris Lattner9d7efd32010-04-04 07:05:53 +0000147 void EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV,
148 raw_ostream &O) {
Chris Lattnerea3cb402010-01-20 07:33:29 +0000149 switch (TM.getTargetData()->getTypeAllocSize(MCPV->getType())) {
150 case 1: O << MAI->getData8bitsDirective(0); break;
151 case 2: O << MAI->getData16bitsDirective(0); break;
152 case 4: O << MAI->getData32bitsDirective(0); break;
153 default: assert(0 && "Unknown CPV size");
154 }
Evan Chenga8e29892007-01-19 07:51:42 +0000155
Evan Cheng711b6dc2008-08-08 06:56:16 +0000156 ARMConstantPoolValue *ACPV = static_cast<ARMConstantPoolValue*>(MCPV);
Jim Grosbach3fb2b1e2009-09-01 01:57:56 +0000157
158 if (ACPV->isLSDA()) {
Chris Lattner9d7efd32010-04-04 07:05:53 +0000159 O << MAI->getPrivateGlobalPrefix() << "_LSDA_" << getFunctionNumber();
Bob Wilson28989a82009-11-02 16:59:06 +0000160 } else if (ACPV->isBlockAddress()) {
Chris Lattner0752cda2010-04-05 16:32:14 +0000161 O << *GetBlockAddressSymbol(ACPV->getBlockAddress());
Bob Wilson28989a82009-11-02 16:59:06 +0000162 } else if (ACPV->isGlobalValue()) {
Dan Gohman46510a72010-04-15 01:51:59 +0000163 const GlobalValue *GV = ACPV->getGV();
Evan Chenge4e4ed32009-08-28 23:18:09 +0000164 bool isIndirect = Subtarget->isTargetDarwin() &&
Evan Cheng63476a82009-09-03 07:04:02 +0000165 Subtarget->GVIsIndirectSymbol(GV, TM.getRelocationModel());
Evan Chenge4e4ed32009-08-28 23:18:09 +0000166 if (!isIndirect)
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000167 O << *Mang->getSymbol(GV);
Evan Chenge4e4ed32009-08-28 23:18:09 +0000168 else {
169 // FIXME: Remove this when Darwin transition to @GOT like syntax.
Chris Lattner7a2ba942010-01-16 18:37:32 +0000170 MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattner10b318b2010-01-17 21:43:43 +0000171 O << *Sym;
Jim Grosbachb0739b72010-09-02 01:02:06 +0000172
Chris Lattnerb8f64a72009-10-19 18:49:14 +0000173 MachineModuleInfoMachO &MMIMachO =
174 MMI->getObjFileInfo<MachineModuleInfoMachO>();
Bill Wendlingcebae362010-03-10 22:34:10 +0000175 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerb8f64a72009-10-19 18:49:14 +0000176 GV->hasHiddenVisibility() ? MMIMachO.getHiddenGVStubEntry(Sym) :
177 MMIMachO.getGVStubEntry(Sym);
Bill Wendlingcebae362010-03-10 22:34:10 +0000178 if (StubSym.getPointer() == 0)
179 StubSym = MachineModuleInfoImpl::
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000180 StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
Evan Chenge4e4ed32009-08-28 23:18:09 +0000181 }
Bob Wilson28989a82009-11-02 16:59:06 +0000182 } else {
183 assert(ACPV->isExtSymbol() && "unrecognized constant pool value");
Chris Lattner10b318b2010-01-17 21:43:43 +0000184 O << *GetExternalSymbolSymbol(ACPV->getSymbol());
Bob Wilson28989a82009-11-02 16:59:06 +0000185 }
Jim Grosbache9952212009-09-04 01:38:51 +0000186
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000187 if (ACPV->hasModifier()) O << "(" << ACPV->getModifier() << ")";
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000188 if (ACPV->getPCAdjustment() != 0) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000189 O << "-(" << MAI->getPrivateGlobalPrefix() << "PC"
Evan Chenge7e0d622009-11-06 22:24:13 +0000190 << getFunctionNumber() << "_" << ACPV->getLabelId()
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000191 << "+" << (unsigned)ACPV->getPCAdjustment();
192 if (ACPV->mustAddCurrentAddress())
193 O << "-.";
Chris Lattner8b378752010-01-15 23:26:49 +0000194 O << ')';
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +0000195 }
Evan Chenga8e29892007-01-19 07:51:42 +0000196 }
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000197 };
198} // end of anonymous namespace
199
Chris Lattner953ebb72010-01-27 23:58:11 +0000200void ARMAsmPrinter::EmitFunctionEntryLabel() {
201 if (AFI->isThumbFunction()) {
Chris Lattner9d7efd32010-04-04 07:05:53 +0000202 OutStreamer.EmitRawText(StringRef("\t.code\t16"));
Chris Lattner0752cda2010-04-05 16:32:14 +0000203 if (!Subtarget->isTargetDarwin())
Chris Lattner9d7efd32010-04-04 07:05:53 +0000204 OutStreamer.EmitRawText(StringRef("\t.thumb_func"));
Chris Lattner0752cda2010-04-05 16:32:14 +0000205 else {
206 // This needs to emit to a temporary string to get properly quoted
207 // MCSymbols when they have spaces in them.
208 SmallString<128> Tmp;
209 raw_svector_ostream OS(Tmp);
210 OS << "\t.thumb_func\t" << *CurrentFnSym;
211 OutStreamer.EmitRawText(OS.str());
212 }
Chris Lattner953ebb72010-01-27 23:58:11 +0000213 }
Jim Grosbachb0739b72010-09-02 01:02:06 +0000214
Chris Lattner953ebb72010-01-27 23:58:11 +0000215 OutStreamer.EmitLabel(CurrentFnSym);
216}
217
Jim Grosbach2317e402010-09-30 01:57:53 +0000218/// runOnMachineFunction - This uses the EmitInstruction()
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000219/// method to print assembly for each instruction.
220///
221bool ARMAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Evan Chenga8e29892007-01-19 07:51:42 +0000222 AFI = MF.getInfo<ARMFunctionInfo>();
Evan Cheng6d63a722008-09-18 07:27:23 +0000223 MCP = MF.getConstantPool();
Rafael Espindola4b442b52006-05-23 02:48:20 +0000224
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000225 return AsmPrinter::runOnMachineFunction(MF);
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000226}
227
Evan Cheng055b0312009-06-29 07:51:04 +0000228void ARMAsmPrinter::printOperand(const MachineInstr *MI, int OpNum,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000229 raw_ostream &O, const char *Modifier) {
Evan Cheng055b0312009-06-29 07:51:04 +0000230 const MachineOperand &MO = MI->getOperand(OpNum);
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +0000231 unsigned TF = MO.getTargetFlags();
232
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000233 switch (MO.getType()) {
Chris Lattner8bc86cb2009-10-19 20:59:55 +0000234 default:
235 assert(0 && "<unknown operand type>");
Bob Wilson5bafff32009-06-22 23:27:02 +0000236 case MachineOperand::MO_Register: {
237 unsigned Reg = MO.getReg();
Chris Lattner8bc86cb2009-10-19 20:59:55 +0000238 assert(TargetRegisterInfo::isPhysicalRegister(Reg));
Jim Grosbach35636282010-10-06 21:22:32 +0000239 assert(!MO.getSubReg() && "Subregs should be eliminated!");
240 O << ARMInstPrinter::getRegisterName(Reg);
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000241 break;
Bob Wilson5bafff32009-06-22 23:27:02 +0000242 }
Evan Chenga8e29892007-01-19 07:51:42 +0000243 case MachineOperand::MO_Immediate: {
Evan Cheng5adb66a2009-09-28 09:14:39 +0000244 int64_t Imm = MO.getImm();
Anton Korobeynikov632606c2009-10-08 20:43:22 +0000245 O << '#';
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +0000246 if ((Modifier && strcmp(Modifier, "lo16") == 0) ||
Jim Grosbach4dea9412010-10-06 16:51:55 +0000247 (TF == ARMII::MO_LO16))
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +0000248 O << ":lower16:";
249 else if ((Modifier && strcmp(Modifier, "hi16") == 0) ||
Jim Grosbach4dea9412010-10-06 16:51:55 +0000250 (TF == ARMII::MO_HI16))
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +0000251 O << ":upper16:";
Anton Korobeynikov632606c2009-10-08 20:43:22 +0000252 O << Imm;
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000253 break;
Evan Chenga8e29892007-01-19 07:51:42 +0000254 }
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000255 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner1b2eb0e2010-03-13 21:04:28 +0000256 O << *MO.getMBB()->getSymbol();
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000257 return;
Rafael Espindola84b19be2006-07-16 01:02:57 +0000258 case MachineOperand::MO_GlobalAddress: {
Evan Chenga8e29892007-01-19 07:51:42 +0000259 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Dan Gohman46510a72010-04-15 01:51:59 +0000260 const GlobalValue *GV = MO.getGlobal();
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +0000261
262 if ((Modifier && strcmp(Modifier, "lo16") == 0) ||
263 (TF & ARMII::MO_LO16))
264 O << ":lower16:";
265 else if ((Modifier && strcmp(Modifier, "hi16") == 0) ||
266 (TF & ARMII::MO_HI16))
267 O << ":upper16:";
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000268 O << *Mang->getSymbol(GV);
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000269
Chris Lattner0c08d092010-04-03 22:28:33 +0000270 printOffset(MO.getOffset(), O);
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000271
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000272 if (isCallOp && Subtarget->isTargetELF() &&
273 TM.getRelocationModel() == Reloc::PIC_)
274 O << "(PLT)";
Evan Chenga8e29892007-01-19 07:51:42 +0000275 break;
Rafael Espindola84b19be2006-07-16 01:02:57 +0000276 }
Evan Chenga8e29892007-01-19 07:51:42 +0000277 case MachineOperand::MO_ExternalSymbol: {
278 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Chris Lattner10b318b2010-01-17 21:43:43 +0000279 O << *GetExternalSymbolSymbol(MO.getSymbolName());
Jim Grosbachb0739b72010-09-02 01:02:06 +0000280
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000281 if (isCallOp && Subtarget->isTargetELF() &&
282 TM.getRelocationModel() == Reloc::PIC_)
283 O << "(PLT)";
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000284 break;
Evan Chenga8e29892007-01-19 07:51:42 +0000285 }
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000286 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner1b46f432010-01-23 07:00:21 +0000287 O << *GetCPISymbol(MO.getIndex());
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000288 break;
Evan Chenga8e29892007-01-19 07:51:42 +0000289 case MachineOperand::MO_JumpTableIndex:
Chris Lattner1b46f432010-01-23 07:00:21 +0000290 O << *GetJTISymbol(MO.getIndex());
Evan Chenga8e29892007-01-19 07:51:42 +0000291 break;
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000292 }
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000293}
294
Evan Cheng055b0312009-06-29 07:51:04 +0000295//===--------------------------------------------------------------------===//
296
Chris Lattner0890cf12010-01-25 19:51:38 +0000297MCSymbol *ARMAsmPrinter::
298GetARMSetPICJumpTableLabel2(unsigned uid, unsigned uid2,
299 const MachineBasicBlock *MBB) const {
300 SmallString<60> Name;
301 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix()
Chris Lattnerbfcb0962010-01-25 19:39:52 +0000302 << getFunctionNumber() << '_' << uid << '_' << uid2
Chris Lattner0890cf12010-01-25 19:51:38 +0000303 << "_set_" << MBB->getNumber();
Chris Lattner9b97a732010-03-30 18:10:53 +0000304 return OutContext.GetOrCreateSymbol(Name.str());
Chris Lattner0890cf12010-01-25 19:51:38 +0000305}
306
307MCSymbol *ARMAsmPrinter::
308GetARMJTIPICJumpTableLabel2(unsigned uid, unsigned uid2) const {
309 SmallString<60> Name;
310 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "JTI"
Chris Lattner281e7762010-01-25 23:28:03 +0000311 << getFunctionNumber() << '_' << uid << '_' << uid2;
Chris Lattner9b97a732010-03-30 18:10:53 +0000312 return OutContext.GetOrCreateSymbol(Name.str());
Chris Lattnerbfcb0962010-01-25 19:39:52 +0000313}
314
Jim Grosbach433a5782010-09-24 20:47:58 +0000315
316MCSymbol *ARMAsmPrinter::GetARMSJLJEHLabel(void) const {
317 SmallString<60> Name;
318 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "SJLJEH"
319 << getFunctionNumber();
320 return OutContext.GetOrCreateSymbol(Name.str());
321}
322
Evan Cheng055b0312009-06-29 07:51:04 +0000323bool ARMAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000324 unsigned AsmVariant, const char *ExtraCode,
325 raw_ostream &O) {
Evan Chenga8e29892007-01-19 07:51:42 +0000326 // Does this asm operand have a single letter operand modifier?
327 if (ExtraCode && ExtraCode[0]) {
328 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov8e9ece72009-08-08 23:10:41 +0000329
Evan Chenga8e29892007-01-19 07:51:42 +0000330 switch (ExtraCode[0]) {
331 default: return true; // Unknown modifier.
Bob Wilson9b4b00a2009-07-09 23:54:51 +0000332 case 'a': // Print as a memory address.
333 if (MI->getOperand(OpNum).isReg()) {
Jim Grosbach2f24c4e2010-09-30 15:25:22 +0000334 O << "["
335 << ARMInstPrinter::getRegisterName(MI->getOperand(OpNum).getReg())
336 << "]";
Bob Wilson9b4b00a2009-07-09 23:54:51 +0000337 return false;
338 }
339 // Fallthrough
340 case 'c': // Don't print "#" before an immediate operand.
Bob Wilson4f38b382009-08-21 21:58:55 +0000341 if (!MI->getOperand(OpNum).isImm())
342 return true;
Jim Grosbach2317e402010-09-30 01:57:53 +0000343 O << MI->getOperand(OpNum).getImm();
Bob Wilson8f343462009-04-06 21:46:51 +0000344 return false;
Evan Chenge21e3962007-04-04 00:13:29 +0000345 case 'P': // Print a VFP double precision register.
Evan Chengd831cda2009-12-08 23:06:22 +0000346 case 'q': // Print a NEON quad precision register.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000347 printOperand(MI, OpNum, O);
Evan Cheng23a95702007-03-08 22:42:46 +0000348 return false;
Evan Chenga8e29892007-01-19 07:51:42 +0000349 case 'Q':
Bob Wilsond984eb62010-05-27 20:23:42 +0000350 case 'R':
Bob Wilsond984eb62010-05-27 20:23:42 +0000351 case 'H':
Evan Cheng12616722010-05-27 23:45:31 +0000352 report_fatal_error("llvm does not support 'Q', 'R', and 'H' modifiers!");
Bob Wilsond984eb62010-05-27 20:23:42 +0000353 return true;
Evan Cheng84f60b72010-05-27 22:08:38 +0000354 }
Evan Chenga8e29892007-01-19 07:51:42 +0000355 }
Jim Grosbache9952212009-09-04 01:38:51 +0000356
Chris Lattner35c33bd2010-04-04 04:47:45 +0000357 printOperand(MI, OpNum, O);
Evan Chenga8e29892007-01-19 07:51:42 +0000358 return false;
359}
360
Bob Wilson224c2442009-05-19 05:53:42 +0000361bool ARMAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
Evan Cheng055b0312009-06-29 07:51:04 +0000362 unsigned OpNum, unsigned AsmVariant,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000363 const char *ExtraCode,
364 raw_ostream &O) {
Bob Wilson224c2442009-05-19 05:53:42 +0000365 if (ExtraCode && ExtraCode[0])
366 return true; // Unknown modifier.
Bob Wilson765cc0b2009-10-13 20:50:28 +0000367
368 const MachineOperand &MO = MI->getOperand(OpNum);
369 assert(MO.isReg() && "unexpected inline asm memory operand");
Jim Grosbach2317e402010-09-30 01:57:53 +0000370 O << "[" << ARMInstPrinter::getRegisterName(MO.getReg()) << "]";
Bob Wilson224c2442009-05-19 05:53:42 +0000371 return false;
372}
373
Bob Wilson812209a2009-09-30 22:06:26 +0000374void ARMAsmPrinter::EmitStartOfAsmFile(Module &M) {
Bob Wilson0fb34682009-09-30 00:23:42 +0000375 if (Subtarget->isTargetDarwin()) {
376 Reloc::Model RelocM = TM.getRelocationModel();
377 if (RelocM == Reloc::PIC_ || RelocM == Reloc::DynamicNoPIC) {
378 // Declare all the text sections up front (before the DWARF sections
379 // emitted by AsmPrinter::doInitialization) so the assembler will keep
380 // them together at the beginning of the object file. This helps
381 // avoid out-of-range branches that are due a fundamental limitation of
382 // the way symbol offsets are encoded with the current Darwin ARM
383 // relocations.
Jim Grosbachb0739b72010-09-02 01:02:06 +0000384 const TargetLoweringObjectFileMachO &TLOFMacho =
Dan Gohman0d805c32010-04-17 16:44:48 +0000385 static_cast<const TargetLoweringObjectFileMachO &>(
386 getObjFileLowering());
Bob Wilson29e06692009-09-30 22:25:37 +0000387 OutStreamer.SwitchSection(TLOFMacho.getTextSection());
388 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
389 OutStreamer.SwitchSection(TLOFMacho.getConstTextCoalSection());
390 if (RelocM == Reloc::DynamicNoPIC) {
391 const MCSection *sect =
Chris Lattner22772212010-04-08 20:40:11 +0000392 OutContext.getMachOSection("__TEXT", "__symbol_stub4",
393 MCSectionMachO::S_SYMBOL_STUBS,
394 12, SectionKind::getText());
Bob Wilson29e06692009-09-30 22:25:37 +0000395 OutStreamer.SwitchSection(sect);
396 } else {
397 const MCSection *sect =
Chris Lattner22772212010-04-08 20:40:11 +0000398 OutContext.getMachOSection("__TEXT", "__picsymbolstub4",
399 MCSectionMachO::S_SYMBOL_STUBS,
400 16, SectionKind::getText());
Bob Wilson29e06692009-09-30 22:25:37 +0000401 OutStreamer.SwitchSection(sect);
402 }
Bob Wilson63db5942010-07-30 19:55:47 +0000403 const MCSection *StaticInitSect =
404 OutContext.getMachOSection("__TEXT", "__StaticInit",
405 MCSectionMachO::S_REGULAR |
406 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
407 SectionKind::getText());
408 OutStreamer.SwitchSection(StaticInitSect);
Bob Wilson0fb34682009-09-30 00:23:42 +0000409 }
410 }
411
Jim Grosbache5165492009-11-09 00:11:35 +0000412 // Use unified assembler syntax.
Jason W Kimafd1cc22010-09-30 02:45:56 +0000413 OutStreamer.EmitAssemblerFlag(MCAF_SyntaxUnified);
Anton Korobeynikovd61eca52009-06-17 23:43:18 +0000414
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000415 // Emit ARM Build Attributes
416 if (Subtarget->isTargetELF()) {
417 // CPU Type
Anton Korobeynikovd260c242009-06-01 19:03:17 +0000418 std::string CPUString = Subtarget->getCPUString();
419 if (CPUString != "generic")
Chris Lattner9d7efd32010-04-04 07:05:53 +0000420 OutStreamer.EmitRawText("\t.cpu " + Twine(CPUString));
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000421
422 // FIXME: Emit FPU type
423 if (Subtarget->hasVFP2())
Chris Lattner9d7efd32010-04-04 07:05:53 +0000424 OutStreamer.EmitRawText("\t.eabi_attribute " +
425 Twine(ARMBuildAttrs::VFP_arch) + ", 2");
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000426
427 // Signal various FP modes.
Chris Lattner9d7efd32010-04-04 07:05:53 +0000428 if (!UnsafeFPMath) {
429 OutStreamer.EmitRawText("\t.eabi_attribute " +
430 Twine(ARMBuildAttrs::ABI_FP_denormal) + ", 1");
431 OutStreamer.EmitRawText("\t.eabi_attribute " +
432 Twine(ARMBuildAttrs::ABI_FP_exceptions) + ", 1");
433 }
Jim Grosbachb0739b72010-09-02 01:02:06 +0000434
Evan Cheng60108e92010-07-15 22:07:12 +0000435 if (NoInfsFPMath && NoNaNsFPMath)
Chris Lattner9d7efd32010-04-04 07:05:53 +0000436 OutStreamer.EmitRawText("\t.eabi_attribute " +
437 Twine(ARMBuildAttrs::ABI_FP_number_model)+ ", 1");
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000438 else
Chris Lattner9d7efd32010-04-04 07:05:53 +0000439 OutStreamer.EmitRawText("\t.eabi_attribute " +
440 Twine(ARMBuildAttrs::ABI_FP_number_model)+ ", 3");
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000441
442 // 8-bytes alignment stuff.
Chris Lattner9d7efd32010-04-04 07:05:53 +0000443 OutStreamer.EmitRawText("\t.eabi_attribute " +
444 Twine(ARMBuildAttrs::ABI_align8_needed) + ", 1");
445 OutStreamer.EmitRawText("\t.eabi_attribute " +
446 Twine(ARMBuildAttrs::ABI_align8_preserved) + ", 1");
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000447
Anton Korobeynikov567d14f2009-08-05 19:04:42 +0000448 // Hard float. Use both S and D registers and conform to AAPCS-VFP.
Chris Lattner9d7efd32010-04-04 07:05:53 +0000449 if (Subtarget->isAAPCS_ABI() && FloatABIType == FloatABI::Hard) {
450 OutStreamer.EmitRawText("\t.eabi_attribute " +
451 Twine(ARMBuildAttrs::ABI_HardFP_use) + ", 3");
452 OutStreamer.EmitRawText("\t.eabi_attribute " +
453 Twine(ARMBuildAttrs::ABI_VFP_args) + ", 1");
454 }
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000455 // FIXME: Should we signal R9 usage?
456 }
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000457}
458
Anton Korobeynikov0f3cc652008-08-07 09:54:23 +0000459
Chris Lattner4a071d62009-10-19 17:59:19 +0000460void ARMAsmPrinter::EmitEndOfAsmFile(Module &M) {
Evan Cheng5be54b02007-01-19 19:25:36 +0000461 if (Subtarget->isTargetDarwin()) {
Chris Lattnerf61159b2009-08-03 22:18:15 +0000462 // All darwin targets use mach-o.
Dan Gohman0d805c32010-04-17 16:44:48 +0000463 const TargetLoweringObjectFileMachO &TLOFMacho =
464 static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattnerb0f294c2009-10-19 18:38:33 +0000465 MachineModuleInfoMachO &MMIMacho =
466 MMI->getObjFileInfo<MachineModuleInfoMachO>();
Jim Grosbache9952212009-09-04 01:38:51 +0000467
Evan Chenga8e29892007-01-19 07:51:42 +0000468 // Output non-lazy-pointers for external and common global variables.
Chris Lattnerb0f294c2009-10-19 18:38:33 +0000469 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetGVStubList();
Bill Wendlingcebae362010-03-10 22:34:10 +0000470
Chris Lattnerb0f294c2009-10-19 18:38:33 +0000471 if (!Stubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000472 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000473 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattnerc076a972009-08-10 18:01:34 +0000474 EmitAlignment(2);
Chris Lattnerb0f294c2009-10-19 18:38:33 +0000475 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Bill Wendlingbecd83e2010-03-09 00:40:17 +0000476 // L_foo$stub:
477 OutStreamer.EmitLabel(Stubs[i].first);
478 // .indirect_symbol _foo
Bill Wendling52a50e52010-03-11 01:18:13 +0000479 MachineModuleInfoImpl::StubValueTy &MCSym = Stubs[i].second;
480 OutStreamer.EmitSymbolAttribute(MCSym.getPointer(),MCSA_IndirectSymbol);
Bill Wendlingcf6f28d2010-03-09 00:43:34 +0000481
Bill Wendling52a50e52010-03-11 01:18:13 +0000482 if (MCSym.getInt())
Bill Wendlingcf6f28d2010-03-09 00:43:34 +0000483 // External to current translation unit.
484 OutStreamer.EmitIntValue(0, 4/*size*/, 0/*addrspace*/);
485 else
486 // Internal to current translation unit.
Bill Wendling5e1b55d2010-03-31 18:47:10 +0000487 //
Jim Grosbach1b935a32010-09-22 16:45:13 +0000488 // When we place the LSDA into the TEXT section, the type info
489 // pointers need to be indirect and pc-rel. We accomplish this by
490 // using NLPs; however, sometimes the types are local to the file.
491 // We need to fill in the value for the NLP in those cases.
Bill Wendling52a50e52010-03-11 01:18:13 +0000492 OutStreamer.EmitValue(MCSymbolRefExpr::Create(MCSym.getPointer(),
493 OutContext),
Bill Wendlingcf6f28d2010-03-09 00:43:34 +0000494 4/*size*/, 0/*addrspace*/);
Evan Chengae94e592008-12-05 01:06:39 +0000495 }
Bill Wendlingbecd83e2010-03-09 00:40:17 +0000496
497 Stubs.clear();
498 OutStreamer.AddBlankLine();
Evan Chenga8e29892007-01-19 07:51:42 +0000499 }
500
Chris Lattnere4d9ea82009-10-19 18:44:38 +0000501 Stubs = MMIMacho.GetHiddenGVStubList();
502 if (!Stubs.empty()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000503 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattnerf3231de2009-08-10 18:02:16 +0000504 EmitAlignment(2);
Bill Wendlingbecd83e2010-03-09 00:40:17 +0000505 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
506 // L_foo$stub:
507 OutStreamer.EmitLabel(Stubs[i].first);
508 // .long _foo
Bill Wendlingcebae362010-03-10 22:34:10 +0000509 OutStreamer.EmitValue(MCSymbolRefExpr::
510 Create(Stubs[i].second.getPointer(),
511 OutContext),
Bill Wendlingbecd83e2010-03-09 00:40:17 +0000512 4/*size*/, 0/*addrspace*/);
513 }
Bill Wendlingcf6f28d2010-03-09 00:43:34 +0000514
515 Stubs.clear();
516 OutStreamer.AddBlankLine();
Evan Chengae94e592008-12-05 01:06:39 +0000517 }
518
Evan Chenga8e29892007-01-19 07:51:42 +0000519 // Funny Darwin hack: This flag tells the linker that no global symbols
520 // contain code that falls through to other global symbols (e.g. the obvious
521 // implementation of multiple entry points). If this doesn't occur, the
522 // linker can safely perform dead code stripping. Since LLVM never
523 // generates code that does this, it is always safe to set.
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000524 OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
Rafael Espindolab01c4bb2006-07-27 11:38:51 +0000525 }
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000526}
Anton Korobeynikov0bd89712008-08-17 13:55:10 +0000527
Chris Lattner97f06932009-10-19 20:20:46 +0000528//===----------------------------------------------------------------------===//
529
Jim Grosbach988ce092010-09-18 00:05:05 +0000530static MCSymbol *getPICLabel(const char *Prefix, unsigned FunctionNumber,
531 unsigned LabelId, MCContext &Ctx) {
532
533 MCSymbol *Label = Ctx.GetOrCreateSymbol(Twine(Prefix)
534 + "PC" + Twine(FunctionNumber) + "_" + Twine(LabelId));
535 return Label;
536}
537
Jim Grosbacha2244cb2010-09-22 17:39:48 +0000538void ARMAsmPrinter::EmitJumpTable(const MachineInstr *MI) {
539 unsigned Opcode = MI->getOpcode();
540 int OpNum = 1;
541 if (Opcode == ARM::BR_JTadd)
542 OpNum = 2;
543 else if (Opcode == ARM::BR_JTm)
544 OpNum = 3;
545
546 const MachineOperand &MO1 = MI->getOperand(OpNum);
547 const MachineOperand &MO2 = MI->getOperand(OpNum+1); // Unique Id
548 unsigned JTI = MO1.getIndex();
549
550 // Emit a label for the jump table.
551 MCSymbol *JTISymbol = GetARMJTIPICJumpTableLabel2(JTI, MO2.getImm());
552 OutStreamer.EmitLabel(JTISymbol);
553
554 // Emit each entry of the table.
555 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
556 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
557 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
558
559 for (unsigned i = 0, e = JTBBs.size(); i != e; ++i) {
560 MachineBasicBlock *MBB = JTBBs[i];
561 // Construct an MCExpr for the entry. We want a value of the form:
562 // (BasicBlockAddr - TableBeginAddr)
563 //
564 // For example, a table with entries jumping to basic blocks BB0 and BB1
565 // would look like:
566 // LJTI_0_0:
567 // .word (LBB0 - LJTI_0_0)
568 // .word (LBB1 - LJTI_0_0)
569 const MCExpr *Expr = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
570
571 if (TM.getRelocationModel() == Reloc::PIC_)
572 Expr = MCBinaryExpr::CreateSub(Expr, MCSymbolRefExpr::Create(JTISymbol,
573 OutContext),
574 OutContext);
575 OutStreamer.EmitValue(Expr, 4);
576 }
577}
578
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000579void ARMAsmPrinter::EmitJump2Table(const MachineInstr *MI) {
580 unsigned Opcode = MI->getOpcode();
581 int OpNum = (Opcode == ARM::t2BR_JT) ? 2 : 1;
582 const MachineOperand &MO1 = MI->getOperand(OpNum);
583 const MachineOperand &MO2 = MI->getOperand(OpNum+1); // Unique Id
584 unsigned JTI = MO1.getIndex();
585
586 // Emit a label for the jump table.
587 MCSymbol *JTISymbol = GetARMJTIPICJumpTableLabel2(JTI, MO2.getImm());
588 OutStreamer.EmitLabel(JTISymbol);
589
590 // Emit each entry of the table.
591 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
592 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
593 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000594 unsigned OffsetWidth = 4;
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000595 if (MI->getOpcode() == ARM::t2TBB)
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000596 OffsetWidth = 1;
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000597 else if (MI->getOpcode() == ARM::t2TBH)
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000598 OffsetWidth = 2;
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000599
600 for (unsigned i = 0, e = JTBBs.size(); i != e; ++i) {
601 MachineBasicBlock *MBB = JTBBs[i];
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000602 const MCExpr *MBBSymbolExpr = MCSymbolRefExpr::Create(MBB->getSymbol(),
603 OutContext);
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000604 // If this isn't a TBB or TBH, the entries are direct branch instructions.
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000605 if (OffsetWidth == 4) {
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000606 MCInst BrInst;
607 BrInst.setOpcode(ARM::t2B);
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000608 BrInst.addOperand(MCOperand::CreateExpr(MBBSymbolExpr));
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000609 OutStreamer.EmitInstruction(BrInst);
610 continue;
611 }
612 // Otherwise it's an offset from the dispatch instruction. Construct an
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000613 // MCExpr for the entry. We want a value of the form:
614 // (BasicBlockAddr - TableBeginAddr) / 2
615 //
616 // For example, a TBB table with entries jumping to basic blocks BB0 and BB1
617 // would look like:
618 // LJTI_0_0:
619 // .byte (LBB0 - LJTI_0_0) / 2
620 // .byte (LBB1 - LJTI_0_0) / 2
621 const MCExpr *Expr =
622 MCBinaryExpr::CreateSub(MBBSymbolExpr,
623 MCSymbolRefExpr::Create(JTISymbol, OutContext),
624 OutContext);
625 Expr = MCBinaryExpr::CreateDiv(Expr, MCConstantExpr::Create(2, OutContext),
626 OutContext);
627 OutStreamer.EmitValue(Expr, OffsetWidth);
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000628 }
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000629
630 // Make sure the instruction that follows TBB is 2-byte aligned.
631 // FIXME: Constant island pass should insert an "ALIGN" instruction instead.
632 if (MI->getOpcode() == ARM::t2TBB)
633 EmitAlignment(1);
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000634}
635
Jim Grosbach2d0f53b2010-09-28 17:05:56 +0000636void ARMAsmPrinter::PrintDebugValueComment(const MachineInstr *MI,
637 raw_ostream &OS) {
638 unsigned NOps = MI->getNumOperands();
639 assert(NOps==4);
640 OS << '\t' << MAI->getCommentString() << "DEBUG_VALUE: ";
641 // cast away const; DIetc do not take const operands for some reason.
642 DIVariable V(const_cast<MDNode *>(MI->getOperand(NOps-1).getMetadata()));
643 OS << V.getName();
644 OS << " <- ";
645 // Frame address. Currently handles register +- offset only.
646 assert(MI->getOperand(0).isReg() && MI->getOperand(1).isImm());
647 OS << '['; printOperand(MI, 0, OS); OS << '+'; printOperand(MI, 1, OS);
648 OS << ']';
649 OS << "+";
650 printOperand(MI, NOps-2, OS);
651}
652
Jim Grosbachb454cda2010-09-29 15:23:40 +0000653void ARMAsmPrinter::EmitInstruction(const MachineInstr *MI) {
Chris Lattner96bc2172009-10-20 00:52:47 +0000654 ARMMCInstLower MCInstLowering(OutContext, *Mang, *this);
Chris Lattner97f06932009-10-19 20:20:46 +0000655 switch (MI->getOpcode()) {
Chris Lattnerc6b8a992009-10-20 05:58:02 +0000656 case ARM::t2MOVi32imm:
657 assert(0 && "Should be lowered by thumb2it pass");
Chris Lattner4d152222009-10-19 22:23:04 +0000658 default: break;
Jim Grosbach2d0f53b2010-09-28 17:05:56 +0000659 case ARM::DBG_VALUE: {
660 if (isVerbose() && OutStreamer.hasRawTextSupport()) {
661 SmallString<128> TmpStr;
662 raw_svector_ostream OS(TmpStr);
663 PrintDebugValueComment(MI, OS);
664 OutStreamer.EmitRawText(StringRef(OS.str()));
665 }
666 return;
667 }
Jim Grosbachfbd18732010-09-17 23:41:53 +0000668 case ARM::tPICADD: {
669 // This is a pseudo op for a label + instruction sequence, which looks like:
670 // LPC0:
671 // add r0, pc
672 // This adds the address of LPC0 to r0.
673
674 // Emit the label.
Jim Grosbach988ce092010-09-18 00:05:05 +0000675 OutStreamer.EmitLabel(getPICLabel(MAI->getPrivateGlobalPrefix(),
676 getFunctionNumber(), MI->getOperand(2).getImm(),
677 OutContext));
Jim Grosbachfbd18732010-09-17 23:41:53 +0000678
679 // Form and emit the add.
680 MCInst AddInst;
681 AddInst.setOpcode(ARM::tADDhirr);
682 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
683 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
684 AddInst.addOperand(MCOperand::CreateReg(ARM::PC));
685 // Add predicate operands.
686 AddInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
687 AddInst.addOperand(MCOperand::CreateReg(0));
688 OutStreamer.EmitInstruction(AddInst);
689 return;
690 }
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000691 case ARM::PICADD: {
Chris Lattner4d152222009-10-19 22:23:04 +0000692 // This is a pseudo op for a label + instruction sequence, which looks like:
693 // LPC0:
694 // add r0, pc, r0
695 // This adds the address of LPC0 to r0.
Jim Grosbachb0739b72010-09-02 01:02:06 +0000696
Chris Lattner4d152222009-10-19 22:23:04 +0000697 // Emit the label.
Jim Grosbach988ce092010-09-18 00:05:05 +0000698 OutStreamer.EmitLabel(getPICLabel(MAI->getPrivateGlobalPrefix(),
699 getFunctionNumber(), MI->getOperand(2).getImm(),
700 OutContext));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000701
Jim Grosbachf3f09522010-09-14 21:05:34 +0000702 // Form and emit the add.
Chris Lattner4d152222009-10-19 22:23:04 +0000703 MCInst AddInst;
704 AddInst.setOpcode(ARM::ADDrr);
705 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
706 AddInst.addOperand(MCOperand::CreateReg(ARM::PC));
707 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(1).getReg()));
Jim Grosbach5b46d622010-09-14 21:28:17 +0000708 // Add predicate operands.
709 AddInst.addOperand(MCOperand::CreateImm(MI->getOperand(3).getImm()));
710 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(4).getReg()));
711 // Add 's' bit operand (always reg0 for this)
712 AddInst.addOperand(MCOperand::CreateReg(0));
Chris Lattner850d2e22010-02-03 01:16:28 +0000713 OutStreamer.EmitInstruction(AddInst);
Chris Lattner4d152222009-10-19 22:23:04 +0000714 return;
715 }
Jim Grosbacha28abbe2010-09-17 16:25:52 +0000716 case ARM::PICSTR:
717 case ARM::PICSTRB:
718 case ARM::PICSTRH:
719 case ARM::PICLDR:
720 case ARM::PICLDRB:
721 case ARM::PICLDRH:
722 case ARM::PICLDRSB:
723 case ARM::PICLDRSH: {
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000724 // This is a pseudo op for a label + instruction sequence, which looks like:
725 // LPC0:
Jim Grosbacha28abbe2010-09-17 16:25:52 +0000726 // OP r0, [pc, r0]
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000727 // The LCP0 label is referenced by a constant pool entry in order to get
728 // a PC-relative address at the ldr instruction.
729
730 // Emit the label.
Jim Grosbach988ce092010-09-18 00:05:05 +0000731 OutStreamer.EmitLabel(getPICLabel(MAI->getPrivateGlobalPrefix(),
732 getFunctionNumber(), MI->getOperand(2).getImm(),
733 OutContext));
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000734
735 // Form and emit the load
Jim Grosbacha28abbe2010-09-17 16:25:52 +0000736 unsigned Opcode;
737 switch (MI->getOpcode()) {
738 default:
739 llvm_unreachable("Unexpected opcode!");
740 case ARM::PICSTR: Opcode = ARM::STR; break;
741 case ARM::PICSTRB: Opcode = ARM::STRB; break;
742 case ARM::PICSTRH: Opcode = ARM::STRH; break;
743 case ARM::PICLDR: Opcode = ARM::LDR; break;
744 case ARM::PICLDRB: Opcode = ARM::LDRB; break;
745 case ARM::PICLDRH: Opcode = ARM::LDRH; break;
746 case ARM::PICLDRSB: Opcode = ARM::LDRSB; break;
747 case ARM::PICLDRSH: Opcode = ARM::LDRSH; break;
748 }
749 MCInst LdStInst;
750 LdStInst.setOpcode(Opcode);
751 LdStInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
752 LdStInst.addOperand(MCOperand::CreateReg(ARM::PC));
753 LdStInst.addOperand(MCOperand::CreateReg(MI->getOperand(1).getReg()));
754 LdStInst.addOperand(MCOperand::CreateImm(0));
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000755 // Add predicate operands.
Jim Grosbacha28abbe2010-09-17 16:25:52 +0000756 LdStInst.addOperand(MCOperand::CreateImm(MI->getOperand(3).getImm()));
757 LdStInst.addOperand(MCOperand::CreateReg(MI->getOperand(4).getReg()));
758 OutStreamer.EmitInstruction(LdStInst);
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000759
760 return;
761 }
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000762 case ARM::CONSTPOOL_ENTRY: {
Chris Lattnera70e6442009-10-19 22:33:05 +0000763 /// CONSTPOOL_ENTRY - This instruction represents a floating constant pool
764 /// in the function. The first operand is the ID# for this instruction, the
765 /// second is the index into the MachineConstantPool that this is, the third
766 /// is the size in bytes of this constant pool entry.
767 unsigned LabelId = (unsigned)MI->getOperand(0).getImm();
768 unsigned CPIdx = (unsigned)MI->getOperand(1).getIndex();
769
770 EmitAlignment(2);
Chris Lattner1b46f432010-01-23 07:00:21 +0000771 OutStreamer.EmitLabel(GetCPISymbol(LabelId));
Chris Lattnera70e6442009-10-19 22:33:05 +0000772
773 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx];
774 if (MCPE.isMachineConstantPoolEntry())
775 EmitMachineConstantPoolValue(MCPE.Val.MachineCPVal);
776 else
777 EmitGlobalConstant(MCPE.Val.ConstVal);
Jim Grosbachb0739b72010-09-02 01:02:06 +0000778
Chris Lattnera70e6442009-10-19 22:33:05 +0000779 return;
780 }
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000781 case ARM::MOVi2pieces: {
782 // FIXME: We'd like to remove the asm string in the .td file, but the
Chris Lattner017d9472009-10-20 00:40:56 +0000783 // This is a hack that lowers as a two instruction sequence.
784 unsigned DstReg = MI->getOperand(0).getReg();
785 unsigned ImmVal = (unsigned)MI->getOperand(1).getImm();
786
787 unsigned SOImmValV1 = ARM_AM::getSOImmTwoPartFirst(ImmVal);
788 unsigned SOImmValV2 = ARM_AM::getSOImmTwoPartSecond(ImmVal);
Jim Grosbachb0739b72010-09-02 01:02:06 +0000789
Chris Lattner017d9472009-10-20 00:40:56 +0000790 {
791 MCInst TmpInst;
792 TmpInst.setOpcode(ARM::MOVi);
793 TmpInst.addOperand(MCOperand::CreateReg(DstReg));
794 TmpInst.addOperand(MCOperand::CreateImm(SOImmValV1));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000795
Chris Lattner017d9472009-10-20 00:40:56 +0000796 // Predicate.
797 TmpInst.addOperand(MCOperand::CreateImm(MI->getOperand(2).getImm()));
798 TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(3).getReg()));
Chris Lattner233917c2009-10-20 00:46:11 +0000799
800 TmpInst.addOperand(MCOperand::CreateReg(0)); // cc_out
Chris Lattner850d2e22010-02-03 01:16:28 +0000801 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner017d9472009-10-20 00:40:56 +0000802 }
803
804 {
805 MCInst TmpInst;
806 TmpInst.setOpcode(ARM::ORRri);
807 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // dstreg
808 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // inreg
809 TmpInst.addOperand(MCOperand::CreateImm(SOImmValV2)); // so_imm
810 // Predicate.
811 TmpInst.addOperand(MCOperand::CreateImm(MI->getOperand(2).getImm()));
812 TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(3).getReg()));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000813
Chris Lattner017d9472009-10-20 00:40:56 +0000814 TmpInst.addOperand(MCOperand::CreateReg(0)); // cc_out
Chris Lattner850d2e22010-02-03 01:16:28 +0000815 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner017d9472009-10-20 00:40:56 +0000816 }
Jim Grosbachb0739b72010-09-02 01:02:06 +0000817 return;
Chris Lattner017d9472009-10-20 00:40:56 +0000818 }
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000819 case ARM::MOVi32imm: {
820 // FIXME: We'd like to remove the asm string in the .td file, but the
Chris Lattner161dcbf2009-10-20 01:11:37 +0000821 // This is a hack that lowers as a two instruction sequence.
822 unsigned DstReg = MI->getOperand(0).getReg();
Rafael Espindola18c10212010-05-12 05:16:34 +0000823 const MachineOperand &MO = MI->getOperand(1);
824 MCOperand V1, V2;
825 if (MO.isImm()) {
826 unsigned ImmVal = (unsigned)MI->getOperand(1).getImm();
827 V1 = MCOperand::CreateImm(ImmVal & 65535);
828 V2 = MCOperand::CreateImm(ImmVal >> 16);
829 } else if (MO.isGlobal()) {
Jim Grosbachc686e332010-09-17 18:25:25 +0000830 MCSymbol *Symbol = MCInstLowering.GetGlobalAddressSymbol(MO.getGlobal());
Rafael Espindola18c10212010-05-12 05:16:34 +0000831 const MCSymbolRefExpr *SymRef1 =
Duncan Sands34727662010-07-12 08:16:59 +0000832 MCSymbolRefExpr::Create(Symbol,
833 MCSymbolRefExpr::VK_ARM_LO16, OutContext);
Rafael Espindola18c10212010-05-12 05:16:34 +0000834 const MCSymbolRefExpr *SymRef2 =
Duncan Sands34727662010-07-12 08:16:59 +0000835 MCSymbolRefExpr::Create(Symbol,
836 MCSymbolRefExpr::VK_ARM_HI16, OutContext);
Rafael Espindola18c10212010-05-12 05:16:34 +0000837 V1 = MCOperand::CreateExpr(SymRef1);
838 V2 = MCOperand::CreateExpr(SymRef2);
839 } else {
Jim Grosbachf0633e42010-09-22 20:55:15 +0000840 // FIXME: External symbol?
Rafael Espindola18c10212010-05-12 05:16:34 +0000841 MI->dump();
842 llvm_unreachable("cannot handle this operand");
843 }
844
Chris Lattner161dcbf2009-10-20 01:11:37 +0000845 {
846 MCInst TmpInst;
847 TmpInst.setOpcode(ARM::MOVi16);
848 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // dstreg
Rafael Espindola18c10212010-05-12 05:16:34 +0000849 TmpInst.addOperand(V1); // lower16(imm)
Jim Grosbachb0739b72010-09-02 01:02:06 +0000850
Chris Lattner161dcbf2009-10-20 01:11:37 +0000851 // Predicate.
852 TmpInst.addOperand(MCOperand::CreateImm(MI->getOperand(2).getImm()));
853 TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(3).getReg()));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000854
Chris Lattner850d2e22010-02-03 01:16:28 +0000855 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner161dcbf2009-10-20 01:11:37 +0000856 }
Jim Grosbachb0739b72010-09-02 01:02:06 +0000857
Chris Lattner161dcbf2009-10-20 01:11:37 +0000858 {
859 MCInst TmpInst;
860 TmpInst.setOpcode(ARM::MOVTi16);
861 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // dstreg
862 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // srcreg
Rafael Espindola18c10212010-05-12 05:16:34 +0000863 TmpInst.addOperand(V2); // upper16(imm)
Jim Grosbachb0739b72010-09-02 01:02:06 +0000864
Chris Lattner161dcbf2009-10-20 01:11:37 +0000865 // Predicate.
866 TmpInst.addOperand(MCOperand::CreateImm(MI->getOperand(2).getImm()));
867 TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(3).getReg()));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000868
Chris Lattner850d2e22010-02-03 01:16:28 +0000869 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner161dcbf2009-10-20 01:11:37 +0000870 }
Jim Grosbachb0739b72010-09-02 01:02:06 +0000871
Chris Lattner161dcbf2009-10-20 01:11:37 +0000872 return;
873 }
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000874 case ARM::t2TBB:
875 case ARM::t2TBH:
876 case ARM::t2BR_JT: {
877 // Lower and emit the instruction itself, then the jump table following it.
878 MCInst TmpInst;
879 MCInstLowering.Lower(MI, TmpInst);
880 OutStreamer.EmitInstruction(TmpInst);
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000881 EmitJump2Table(MI);
882 return;
883 }
884 case ARM::tBR_JTr:
885 case ARM::BR_JTr:
886 case ARM::BR_JTm:
Jim Grosbacha2244cb2010-09-22 17:39:48 +0000887 case ARM::BR_JTadd: {
888 // Lower and emit the instruction itself, then the jump table following it.
889 MCInst TmpInst;
890 MCInstLowering.Lower(MI, TmpInst);
891 OutStreamer.EmitInstruction(TmpInst);
892 EmitJumpTable(MI);
893 return;
894 }
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000895 case ARM::TRAP: {
896 // Non-Darwin binutils don't yet support the "trap" mnemonic.
897 // FIXME: Remove this special case when they do.
898 if (!Subtarget->isTargetDarwin()) {
Jim Grosbach78890f42010-10-01 23:21:38 +0000899 //.long 0xe7ffdefe @ trap
Jim Grosbachb2dda4b2010-09-23 19:42:17 +0000900 uint32_t Val = 0xe7ffdefeUL;
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000901 OutStreamer.AddComment("trap");
902 OutStreamer.EmitIntValue(Val, 4);
903 return;
904 }
905 break;
906 }
907 case ARM::tTRAP: {
908 // Non-Darwin binutils don't yet support the "trap" mnemonic.
909 // FIXME: Remove this special case when they do.
910 if (!Subtarget->isTargetDarwin()) {
Jim Grosbach78890f42010-10-01 23:21:38 +0000911 //.short 57086 @ trap
Benjamin Kramerc8ab9eb2010-09-23 18:57:26 +0000912 uint16_t Val = 0xdefe;
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000913 OutStreamer.AddComment("trap");
914 OutStreamer.EmitIntValue(Val, 2);
915 return;
916 }
917 break;
918 }
Jim Grosbach433a5782010-09-24 20:47:58 +0000919 case ARM::t2Int_eh_sjlj_setjmp:
920 case ARM::t2Int_eh_sjlj_setjmp_nofp:
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000921 case ARM::tInt_eh_sjlj_setjmp: {
Jim Grosbach433a5782010-09-24 20:47:58 +0000922 // Two incoming args: GPR:$src, GPR:$val
923 // mov $val, pc
924 // adds $val, #7
925 // str $val, [$src, #4]
926 // movs r0, #0
927 // b 1f
928 // movs r0, #1
929 // 1:
930 unsigned SrcReg = MI->getOperand(0).getReg();
931 unsigned ValReg = MI->getOperand(1).getReg();
932 MCSymbol *Label = GetARMSJLJEHLabel();
933 {
934 MCInst TmpInst;
935 TmpInst.setOpcode(ARM::tMOVgpr2tgpr);
936 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
937 TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
938 // 's' bit operand
939 TmpInst.addOperand(MCOperand::CreateReg(ARM::CPSR));
940 OutStreamer.AddComment("eh_setjmp begin");
941 OutStreamer.EmitInstruction(TmpInst);
942 }
943 {
944 MCInst TmpInst;
945 TmpInst.setOpcode(ARM::tADDi3);
946 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
947 // 's' bit operand
948 TmpInst.addOperand(MCOperand::CreateReg(ARM::CPSR));
949 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
950 TmpInst.addOperand(MCOperand::CreateImm(7));
951 // Predicate.
952 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
953 TmpInst.addOperand(MCOperand::CreateReg(0));
954 OutStreamer.EmitInstruction(TmpInst);
955 }
956 {
957 MCInst TmpInst;
958 TmpInst.setOpcode(ARM::tSTR);
959 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
960 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
961 // The offset immediate is #4. The operand value is scaled by 4 for the
962 // tSTR instruction.
963 TmpInst.addOperand(MCOperand::CreateImm(1));
964 TmpInst.addOperand(MCOperand::CreateReg(0));
965 // Predicate.
966 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
967 TmpInst.addOperand(MCOperand::CreateReg(0));
968 OutStreamer.EmitInstruction(TmpInst);
969 }
970 {
971 MCInst TmpInst;
972 TmpInst.setOpcode(ARM::tMOVi8);
973 TmpInst.addOperand(MCOperand::CreateReg(ARM::R0));
974 TmpInst.addOperand(MCOperand::CreateReg(ARM::CPSR));
975 TmpInst.addOperand(MCOperand::CreateImm(0));
976 // Predicate.
977 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
978 TmpInst.addOperand(MCOperand::CreateReg(0));
979 OutStreamer.EmitInstruction(TmpInst);
980 }
981 {
982 const MCExpr *SymbolExpr = MCSymbolRefExpr::Create(Label, OutContext);
983 MCInst TmpInst;
984 TmpInst.setOpcode(ARM::tB);
985 TmpInst.addOperand(MCOperand::CreateExpr(SymbolExpr));
986 OutStreamer.EmitInstruction(TmpInst);
987 }
988 {
989 MCInst TmpInst;
990 TmpInst.setOpcode(ARM::tMOVi8);
991 TmpInst.addOperand(MCOperand::CreateReg(ARM::R0));
992 TmpInst.addOperand(MCOperand::CreateReg(ARM::CPSR));
993 TmpInst.addOperand(MCOperand::CreateImm(1));
994 // Predicate.
995 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
996 TmpInst.addOperand(MCOperand::CreateReg(0));
997 OutStreamer.AddComment("eh_setjmp end");
998 OutStreamer.EmitInstruction(TmpInst);
999 }
1000 OutStreamer.EmitLabel(Label);
1001 return;
1002 }
1003
Jim Grosbach45390082010-09-23 23:33:56 +00001004 case ARM::Int_eh_sjlj_setjmp_nofp:
Jim Grosbacha3fbadf2010-09-30 19:53:58 +00001005 case ARM::Int_eh_sjlj_setjmp: {
Jim Grosbach45390082010-09-23 23:33:56 +00001006 // Two incoming args: GPR:$src, GPR:$val
1007 // add $val, pc, #8
1008 // str $val, [$src, #+4]
1009 // mov r0, #0
1010 // add pc, pc, #0
1011 // mov r0, #1
1012 unsigned SrcReg = MI->getOperand(0).getReg();
1013 unsigned ValReg = MI->getOperand(1).getReg();
1014
1015 {
1016 MCInst TmpInst;
1017 TmpInst.setOpcode(ARM::ADDri);
1018 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
1019 TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
1020 TmpInst.addOperand(MCOperand::CreateImm(8));
1021 // Predicate.
1022 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1023 TmpInst.addOperand(MCOperand::CreateReg(0));
1024 // 's' bit operand (always reg0 for this).
1025 TmpInst.addOperand(MCOperand::CreateReg(0));
1026 OutStreamer.AddComment("eh_setjmp begin");
1027 OutStreamer.EmitInstruction(TmpInst);
1028 }
1029 {
1030 MCInst TmpInst;
1031 TmpInst.setOpcode(ARM::STR);
1032 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
1033 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1034 TmpInst.addOperand(MCOperand::CreateReg(0));
1035 TmpInst.addOperand(MCOperand::CreateImm(4));
1036 // Predicate.
1037 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1038 TmpInst.addOperand(MCOperand::CreateReg(0));
1039 OutStreamer.EmitInstruction(TmpInst);
1040 }
1041 {
1042 MCInst TmpInst;
1043 TmpInst.setOpcode(ARM::MOVi);
1044 TmpInst.addOperand(MCOperand::CreateReg(ARM::R0));
1045 TmpInst.addOperand(MCOperand::CreateImm(0));
1046 // Predicate.
1047 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1048 TmpInst.addOperand(MCOperand::CreateReg(0));
1049 // 's' bit operand (always reg0 for this).
1050 TmpInst.addOperand(MCOperand::CreateReg(0));
1051 OutStreamer.EmitInstruction(TmpInst);
1052 }
1053 {
1054 MCInst TmpInst;
1055 TmpInst.setOpcode(ARM::ADDri);
1056 TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
1057 TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
1058 TmpInst.addOperand(MCOperand::CreateImm(0));
1059 // Predicate.
1060 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1061 TmpInst.addOperand(MCOperand::CreateReg(0));
1062 // 's' bit operand (always reg0 for this).
1063 TmpInst.addOperand(MCOperand::CreateReg(0));
1064 OutStreamer.EmitInstruction(TmpInst);
1065 }
1066 {
1067 MCInst TmpInst;
1068 TmpInst.setOpcode(ARM::MOVi);
1069 TmpInst.addOperand(MCOperand::CreateReg(ARM::R0));
1070 TmpInst.addOperand(MCOperand::CreateImm(1));
1071 // Predicate.
1072 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1073 TmpInst.addOperand(MCOperand::CreateReg(0));
1074 // 's' bit operand (always reg0 for this).
1075 TmpInst.addOperand(MCOperand::CreateReg(0));
1076 OutStreamer.AddComment("eh_setjmp end");
1077 OutStreamer.EmitInstruction(TmpInst);
1078 }
1079 return;
1080 }
Jim Grosbach5acb3de2010-09-27 21:47:04 +00001081 case ARM::Int_eh_sjlj_longjmp: {
1082 // ldr sp, [$src, #8]
1083 // ldr $scratch, [$src, #4]
1084 // ldr r7, [$src]
1085 // bx $scratch
1086 unsigned SrcReg = MI->getOperand(0).getReg();
1087 unsigned ScratchReg = MI->getOperand(1).getReg();
1088 {
1089 MCInst TmpInst;
1090 TmpInst.setOpcode(ARM::LDR);
1091 TmpInst.addOperand(MCOperand::CreateReg(ARM::SP));
1092 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1093 TmpInst.addOperand(MCOperand::CreateReg(0));
1094 TmpInst.addOperand(MCOperand::CreateImm(8));
1095 // Predicate.
1096 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1097 TmpInst.addOperand(MCOperand::CreateReg(0));
1098 OutStreamer.EmitInstruction(TmpInst);
1099 }
1100 {
1101 MCInst TmpInst;
1102 TmpInst.setOpcode(ARM::LDR);
1103 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1104 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1105 TmpInst.addOperand(MCOperand::CreateReg(0));
1106 TmpInst.addOperand(MCOperand::CreateImm(4));
1107 // Predicate.
1108 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1109 TmpInst.addOperand(MCOperand::CreateReg(0));
1110 OutStreamer.EmitInstruction(TmpInst);
1111 }
1112 {
1113 MCInst TmpInst;
1114 TmpInst.setOpcode(ARM::LDR);
1115 TmpInst.addOperand(MCOperand::CreateReg(ARM::R7));
1116 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1117 TmpInst.addOperand(MCOperand::CreateReg(0));
1118 TmpInst.addOperand(MCOperand::CreateImm(0));
1119 // Predicate.
1120 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1121 TmpInst.addOperand(MCOperand::CreateReg(0));
1122 OutStreamer.EmitInstruction(TmpInst);
1123 }
1124 {
1125 MCInst TmpInst;
1126 TmpInst.setOpcode(ARM::BRIND);
1127 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1128 // Predicate.
1129 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1130 TmpInst.addOperand(MCOperand::CreateReg(0));
1131 OutStreamer.EmitInstruction(TmpInst);
1132 }
1133 return;
1134 }
Jim Grosbach385cc5e2010-09-27 22:28:11 +00001135 case ARM::tInt_eh_sjlj_longjmp: {
1136 // ldr $scratch, [$src, #8]
1137 // mov sp, $scratch
1138 // ldr $scratch, [$src, #4]
1139 // ldr r7, [$src]
1140 // bx $scratch
1141 unsigned SrcReg = MI->getOperand(0).getReg();
1142 unsigned ScratchReg = MI->getOperand(1).getReg();
1143 {
1144 MCInst TmpInst;
1145 TmpInst.setOpcode(ARM::tLDR);
1146 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1147 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1148 // The offset immediate is #8. The operand value is scaled by 4 for the
1149 // tSTR instruction.
1150 TmpInst.addOperand(MCOperand::CreateImm(2));
1151 TmpInst.addOperand(MCOperand::CreateReg(0));
1152 // Predicate.
1153 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1154 TmpInst.addOperand(MCOperand::CreateReg(0));
1155 OutStreamer.EmitInstruction(TmpInst);
1156 }
1157 {
1158 MCInst TmpInst;
1159 TmpInst.setOpcode(ARM::tMOVtgpr2gpr);
1160 TmpInst.addOperand(MCOperand::CreateReg(ARM::SP));
1161 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1162 // Predicate.
1163 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1164 TmpInst.addOperand(MCOperand::CreateReg(0));
1165 OutStreamer.EmitInstruction(TmpInst);
1166 }
1167 {
1168 MCInst TmpInst;
1169 TmpInst.setOpcode(ARM::tLDR);
1170 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1171 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1172 TmpInst.addOperand(MCOperand::CreateImm(1));
1173 TmpInst.addOperand(MCOperand::CreateReg(0));
1174 // Predicate.
1175 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1176 TmpInst.addOperand(MCOperand::CreateReg(0));
1177 OutStreamer.EmitInstruction(TmpInst);
1178 }
1179 {
1180 MCInst TmpInst;
1181 TmpInst.setOpcode(ARM::tLDR);
1182 TmpInst.addOperand(MCOperand::CreateReg(ARM::R7));
1183 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1184 TmpInst.addOperand(MCOperand::CreateImm(0));
1185 TmpInst.addOperand(MCOperand::CreateReg(0));
1186 // Predicate.
1187 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1188 TmpInst.addOperand(MCOperand::CreateReg(0));
1189 OutStreamer.EmitInstruction(TmpInst);
1190 }
1191 {
1192 MCInst TmpInst;
1193 TmpInst.setOpcode(ARM::tBX_RET_vararg);
1194 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1195 // Predicate.
1196 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1197 TmpInst.addOperand(MCOperand::CreateReg(0));
1198 OutStreamer.EmitInstruction(TmpInst);
1199 }
1200 return;
1201 }
Chris Lattner97f06932009-10-19 20:20:46 +00001202 }
Jim Grosbachb0739b72010-09-02 01:02:06 +00001203
Chris Lattner97f06932009-10-19 20:20:46 +00001204 MCInst TmpInst;
1205 MCInstLowering.Lower(MI, TmpInst);
Chris Lattner850d2e22010-02-03 01:16:28 +00001206 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner97f06932009-10-19 20:20:46 +00001207}
Daniel Dunbar2685a292009-10-20 05:15:36 +00001208
1209//===----------------------------------------------------------------------===//
1210// Target Registry Stuff
1211//===----------------------------------------------------------------------===//
1212
1213static MCInstPrinter *createARMMCInstPrinter(const Target &T,
1214 unsigned SyntaxVariant,
Chris Lattnerd3740872010-04-04 05:04:31 +00001215 const MCAsmInfo &MAI) {
Daniel Dunbar2685a292009-10-20 05:15:36 +00001216 if (SyntaxVariant == 0)
Jim Grosbach74d7e6c2010-09-17 21:33:25 +00001217 return new ARMInstPrinter(MAI);
Daniel Dunbar2685a292009-10-20 05:15:36 +00001218 return 0;
1219}
1220
1221// Force static initialization.
1222extern "C" void LLVMInitializeARMAsmPrinter() {
1223 RegisterAsmPrinter<ARMAsmPrinter> X(TheARMTarget);
1224 RegisterAsmPrinter<ARMAsmPrinter> Y(TheThumbTarget);
1225
1226 TargetRegistry::RegisterMCInstPrinter(TheARMTarget, createARMMCInstPrinter);
1227 TargetRegistry::RegisterMCInstPrinter(TheThumbTarget, createARMMCInstPrinter);
1228}
1229