blob: ab46b279382dcfabd0bc7a4efcc548d336818e13 [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: {
Dan Gohman46510a72010-04-15 01:51:59 +0000259 const GlobalValue *GV = MO.getGlobal();
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +0000260 if ((Modifier && strcmp(Modifier, "lo16") == 0) ||
261 (TF & ARMII::MO_LO16))
262 O << ":lower16:";
263 else if ((Modifier && strcmp(Modifier, "hi16") == 0) ||
264 (TF & ARMII::MO_HI16))
265 O << ":upper16:";
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000266 O << *Mang->getSymbol(GV);
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000267
Chris Lattner0c08d092010-04-03 22:28:33 +0000268 printOffset(MO.getOffset(), O);
Jim Grosbach1d6111c2010-10-06 21:36:43 +0000269 if (TF == ARMII::MO_PLT)
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000270 O << "(PLT)";
Evan Chenga8e29892007-01-19 07:51:42 +0000271 break;
Rafael Espindola84b19be2006-07-16 01:02:57 +0000272 }
Evan Chenga8e29892007-01-19 07:51:42 +0000273 case MachineOperand::MO_ExternalSymbol: {
Chris Lattner10b318b2010-01-17 21:43:43 +0000274 O << *GetExternalSymbolSymbol(MO.getSymbolName());
Jim Grosbach1d6111c2010-10-06 21:36:43 +0000275 if (TF == ARMII::MO_PLT)
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000276 O << "(PLT)";
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000277 break;
Evan Chenga8e29892007-01-19 07:51:42 +0000278 }
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000279 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner1b46f432010-01-23 07:00:21 +0000280 O << *GetCPISymbol(MO.getIndex());
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000281 break;
Evan Chenga8e29892007-01-19 07:51:42 +0000282 case MachineOperand::MO_JumpTableIndex:
Chris Lattner1b46f432010-01-23 07:00:21 +0000283 O << *GetJTISymbol(MO.getIndex());
Evan Chenga8e29892007-01-19 07:51:42 +0000284 break;
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000285 }
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000286}
287
Evan Cheng055b0312009-06-29 07:51:04 +0000288//===--------------------------------------------------------------------===//
289
Chris Lattner0890cf12010-01-25 19:51:38 +0000290MCSymbol *ARMAsmPrinter::
291GetARMSetPICJumpTableLabel2(unsigned uid, unsigned uid2,
292 const MachineBasicBlock *MBB) const {
293 SmallString<60> Name;
294 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix()
Chris Lattnerbfcb0962010-01-25 19:39:52 +0000295 << getFunctionNumber() << '_' << uid << '_' << uid2
Chris Lattner0890cf12010-01-25 19:51:38 +0000296 << "_set_" << MBB->getNumber();
Chris Lattner9b97a732010-03-30 18:10:53 +0000297 return OutContext.GetOrCreateSymbol(Name.str());
Chris Lattner0890cf12010-01-25 19:51:38 +0000298}
299
300MCSymbol *ARMAsmPrinter::
301GetARMJTIPICJumpTableLabel2(unsigned uid, unsigned uid2) const {
302 SmallString<60> Name;
303 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "JTI"
Chris Lattner281e7762010-01-25 23:28:03 +0000304 << getFunctionNumber() << '_' << uid << '_' << uid2;
Chris Lattner9b97a732010-03-30 18:10:53 +0000305 return OutContext.GetOrCreateSymbol(Name.str());
Chris Lattnerbfcb0962010-01-25 19:39:52 +0000306}
307
Jim Grosbach433a5782010-09-24 20:47:58 +0000308
309MCSymbol *ARMAsmPrinter::GetARMSJLJEHLabel(void) const {
310 SmallString<60> Name;
311 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "SJLJEH"
312 << getFunctionNumber();
313 return OutContext.GetOrCreateSymbol(Name.str());
314}
315
Evan Cheng055b0312009-06-29 07:51:04 +0000316bool ARMAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000317 unsigned AsmVariant, const char *ExtraCode,
318 raw_ostream &O) {
Evan Chenga8e29892007-01-19 07:51:42 +0000319 // Does this asm operand have a single letter operand modifier?
320 if (ExtraCode && ExtraCode[0]) {
321 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov8e9ece72009-08-08 23:10:41 +0000322
Evan Chenga8e29892007-01-19 07:51:42 +0000323 switch (ExtraCode[0]) {
324 default: return true; // Unknown modifier.
Bob Wilson9b4b00a2009-07-09 23:54:51 +0000325 case 'a': // Print as a memory address.
326 if (MI->getOperand(OpNum).isReg()) {
Jim Grosbach2f24c4e2010-09-30 15:25:22 +0000327 O << "["
328 << ARMInstPrinter::getRegisterName(MI->getOperand(OpNum).getReg())
329 << "]";
Bob Wilson9b4b00a2009-07-09 23:54:51 +0000330 return false;
331 }
332 // Fallthrough
333 case 'c': // Don't print "#" before an immediate operand.
Bob Wilson4f38b382009-08-21 21:58:55 +0000334 if (!MI->getOperand(OpNum).isImm())
335 return true;
Jim Grosbach2317e402010-09-30 01:57:53 +0000336 O << MI->getOperand(OpNum).getImm();
Bob Wilson8f343462009-04-06 21:46:51 +0000337 return false;
Evan Chenge21e3962007-04-04 00:13:29 +0000338 case 'P': // Print a VFP double precision register.
Evan Chengd831cda2009-12-08 23:06:22 +0000339 case 'q': // Print a NEON quad precision register.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000340 printOperand(MI, OpNum, O);
Evan Cheng23a95702007-03-08 22:42:46 +0000341 return false;
Evan Chenga8e29892007-01-19 07:51:42 +0000342 case 'Q':
Bob Wilsond984eb62010-05-27 20:23:42 +0000343 case 'R':
Bob Wilsond984eb62010-05-27 20:23:42 +0000344 case 'H':
Evan Cheng12616722010-05-27 23:45:31 +0000345 report_fatal_error("llvm does not support 'Q', 'R', and 'H' modifiers!");
Bob Wilsond984eb62010-05-27 20:23:42 +0000346 return true;
Evan Cheng84f60b72010-05-27 22:08:38 +0000347 }
Evan Chenga8e29892007-01-19 07:51:42 +0000348 }
Jim Grosbache9952212009-09-04 01:38:51 +0000349
Chris Lattner35c33bd2010-04-04 04:47:45 +0000350 printOperand(MI, OpNum, O);
Evan Chenga8e29892007-01-19 07:51:42 +0000351 return false;
352}
353
Bob Wilson224c2442009-05-19 05:53:42 +0000354bool ARMAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
Evan Cheng055b0312009-06-29 07:51:04 +0000355 unsigned OpNum, unsigned AsmVariant,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000356 const char *ExtraCode,
357 raw_ostream &O) {
Bob Wilson224c2442009-05-19 05:53:42 +0000358 if (ExtraCode && ExtraCode[0])
359 return true; // Unknown modifier.
Bob Wilson765cc0b2009-10-13 20:50:28 +0000360
361 const MachineOperand &MO = MI->getOperand(OpNum);
362 assert(MO.isReg() && "unexpected inline asm memory operand");
Jim Grosbach2317e402010-09-30 01:57:53 +0000363 O << "[" << ARMInstPrinter::getRegisterName(MO.getReg()) << "]";
Bob Wilson224c2442009-05-19 05:53:42 +0000364 return false;
365}
366
Bob Wilson812209a2009-09-30 22:06:26 +0000367void ARMAsmPrinter::EmitStartOfAsmFile(Module &M) {
Bob Wilson0fb34682009-09-30 00:23:42 +0000368 if (Subtarget->isTargetDarwin()) {
369 Reloc::Model RelocM = TM.getRelocationModel();
370 if (RelocM == Reloc::PIC_ || RelocM == Reloc::DynamicNoPIC) {
371 // Declare all the text sections up front (before the DWARF sections
372 // emitted by AsmPrinter::doInitialization) so the assembler will keep
373 // them together at the beginning of the object file. This helps
374 // avoid out-of-range branches that are due a fundamental limitation of
375 // the way symbol offsets are encoded with the current Darwin ARM
376 // relocations.
Jim Grosbachb0739b72010-09-02 01:02:06 +0000377 const TargetLoweringObjectFileMachO &TLOFMacho =
Dan Gohman0d805c32010-04-17 16:44:48 +0000378 static_cast<const TargetLoweringObjectFileMachO &>(
379 getObjFileLowering());
Bob Wilson29e06692009-09-30 22:25:37 +0000380 OutStreamer.SwitchSection(TLOFMacho.getTextSection());
381 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
382 OutStreamer.SwitchSection(TLOFMacho.getConstTextCoalSection());
383 if (RelocM == Reloc::DynamicNoPIC) {
384 const MCSection *sect =
Chris Lattner22772212010-04-08 20:40:11 +0000385 OutContext.getMachOSection("__TEXT", "__symbol_stub4",
386 MCSectionMachO::S_SYMBOL_STUBS,
387 12, SectionKind::getText());
Bob Wilson29e06692009-09-30 22:25:37 +0000388 OutStreamer.SwitchSection(sect);
389 } else {
390 const MCSection *sect =
Chris Lattner22772212010-04-08 20:40:11 +0000391 OutContext.getMachOSection("__TEXT", "__picsymbolstub4",
392 MCSectionMachO::S_SYMBOL_STUBS,
393 16, SectionKind::getText());
Bob Wilson29e06692009-09-30 22:25:37 +0000394 OutStreamer.SwitchSection(sect);
395 }
Bob Wilson63db5942010-07-30 19:55:47 +0000396 const MCSection *StaticInitSect =
397 OutContext.getMachOSection("__TEXT", "__StaticInit",
398 MCSectionMachO::S_REGULAR |
399 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
400 SectionKind::getText());
401 OutStreamer.SwitchSection(StaticInitSect);
Bob Wilson0fb34682009-09-30 00:23:42 +0000402 }
403 }
404
Jim Grosbache5165492009-11-09 00:11:35 +0000405 // Use unified assembler syntax.
Jason W Kimafd1cc22010-09-30 02:45:56 +0000406 OutStreamer.EmitAssemblerFlag(MCAF_SyntaxUnified);
Anton Korobeynikovd61eca52009-06-17 23:43:18 +0000407
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000408 // Emit ARM Build Attributes
409 if (Subtarget->isTargetELF()) {
410 // CPU Type
Anton Korobeynikovd260c242009-06-01 19:03:17 +0000411 std::string CPUString = Subtarget->getCPUString();
412 if (CPUString != "generic")
Chris Lattner9d7efd32010-04-04 07:05:53 +0000413 OutStreamer.EmitRawText("\t.cpu " + Twine(CPUString));
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000414
415 // FIXME: Emit FPU type
416 if (Subtarget->hasVFP2())
Chris Lattner9d7efd32010-04-04 07:05:53 +0000417 OutStreamer.EmitRawText("\t.eabi_attribute " +
418 Twine(ARMBuildAttrs::VFP_arch) + ", 2");
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000419
420 // Signal various FP modes.
Chris Lattner9d7efd32010-04-04 07:05:53 +0000421 if (!UnsafeFPMath) {
422 OutStreamer.EmitRawText("\t.eabi_attribute " +
423 Twine(ARMBuildAttrs::ABI_FP_denormal) + ", 1");
424 OutStreamer.EmitRawText("\t.eabi_attribute " +
425 Twine(ARMBuildAttrs::ABI_FP_exceptions) + ", 1");
426 }
Jim Grosbachb0739b72010-09-02 01:02:06 +0000427
Evan Cheng60108e92010-07-15 22:07:12 +0000428 if (NoInfsFPMath && NoNaNsFPMath)
Chris Lattner9d7efd32010-04-04 07:05:53 +0000429 OutStreamer.EmitRawText("\t.eabi_attribute " +
430 Twine(ARMBuildAttrs::ABI_FP_number_model)+ ", 1");
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000431 else
Chris Lattner9d7efd32010-04-04 07:05:53 +0000432 OutStreamer.EmitRawText("\t.eabi_attribute " +
433 Twine(ARMBuildAttrs::ABI_FP_number_model)+ ", 3");
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000434
435 // 8-bytes alignment stuff.
Chris Lattner9d7efd32010-04-04 07:05:53 +0000436 OutStreamer.EmitRawText("\t.eabi_attribute " +
437 Twine(ARMBuildAttrs::ABI_align8_needed) + ", 1");
438 OutStreamer.EmitRawText("\t.eabi_attribute " +
439 Twine(ARMBuildAttrs::ABI_align8_preserved) + ", 1");
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000440
Anton Korobeynikov567d14f2009-08-05 19:04:42 +0000441 // Hard float. Use both S and D registers and conform to AAPCS-VFP.
Chris Lattner9d7efd32010-04-04 07:05:53 +0000442 if (Subtarget->isAAPCS_ABI() && FloatABIType == FloatABI::Hard) {
443 OutStreamer.EmitRawText("\t.eabi_attribute " +
444 Twine(ARMBuildAttrs::ABI_HardFP_use) + ", 3");
445 OutStreamer.EmitRawText("\t.eabi_attribute " +
446 Twine(ARMBuildAttrs::ABI_VFP_args) + ", 1");
447 }
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000448 // FIXME: Should we signal R9 usage?
449 }
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000450}
451
Anton Korobeynikov0f3cc652008-08-07 09:54:23 +0000452
Chris Lattner4a071d62009-10-19 17:59:19 +0000453void ARMAsmPrinter::EmitEndOfAsmFile(Module &M) {
Evan Cheng5be54b02007-01-19 19:25:36 +0000454 if (Subtarget->isTargetDarwin()) {
Chris Lattnerf61159b2009-08-03 22:18:15 +0000455 // All darwin targets use mach-o.
Dan Gohman0d805c32010-04-17 16:44:48 +0000456 const TargetLoweringObjectFileMachO &TLOFMacho =
457 static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattnerb0f294c2009-10-19 18:38:33 +0000458 MachineModuleInfoMachO &MMIMacho =
459 MMI->getObjFileInfo<MachineModuleInfoMachO>();
Jim Grosbache9952212009-09-04 01:38:51 +0000460
Evan Chenga8e29892007-01-19 07:51:42 +0000461 // Output non-lazy-pointers for external and common global variables.
Chris Lattnerb0f294c2009-10-19 18:38:33 +0000462 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetGVStubList();
Bill Wendlingcebae362010-03-10 22:34:10 +0000463
Chris Lattnerb0f294c2009-10-19 18:38:33 +0000464 if (!Stubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000465 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000466 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattnerc076a972009-08-10 18:01:34 +0000467 EmitAlignment(2);
Chris Lattnerb0f294c2009-10-19 18:38:33 +0000468 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Bill Wendlingbecd83e2010-03-09 00:40:17 +0000469 // L_foo$stub:
470 OutStreamer.EmitLabel(Stubs[i].first);
471 // .indirect_symbol _foo
Bill Wendling52a50e52010-03-11 01:18:13 +0000472 MachineModuleInfoImpl::StubValueTy &MCSym = Stubs[i].second;
473 OutStreamer.EmitSymbolAttribute(MCSym.getPointer(),MCSA_IndirectSymbol);
Bill Wendlingcf6f28d2010-03-09 00:43:34 +0000474
Bill Wendling52a50e52010-03-11 01:18:13 +0000475 if (MCSym.getInt())
Bill Wendlingcf6f28d2010-03-09 00:43:34 +0000476 // External to current translation unit.
477 OutStreamer.EmitIntValue(0, 4/*size*/, 0/*addrspace*/);
478 else
479 // Internal to current translation unit.
Bill Wendling5e1b55d2010-03-31 18:47:10 +0000480 //
Jim Grosbach1b935a32010-09-22 16:45:13 +0000481 // When we place the LSDA into the TEXT section, the type info
482 // pointers need to be indirect and pc-rel. We accomplish this by
483 // using NLPs; however, sometimes the types are local to the file.
484 // We need to fill in the value for the NLP in those cases.
Bill Wendling52a50e52010-03-11 01:18:13 +0000485 OutStreamer.EmitValue(MCSymbolRefExpr::Create(MCSym.getPointer(),
486 OutContext),
Bill Wendlingcf6f28d2010-03-09 00:43:34 +0000487 4/*size*/, 0/*addrspace*/);
Evan Chengae94e592008-12-05 01:06:39 +0000488 }
Bill Wendlingbecd83e2010-03-09 00:40:17 +0000489
490 Stubs.clear();
491 OutStreamer.AddBlankLine();
Evan Chenga8e29892007-01-19 07:51:42 +0000492 }
493
Chris Lattnere4d9ea82009-10-19 18:44:38 +0000494 Stubs = MMIMacho.GetHiddenGVStubList();
495 if (!Stubs.empty()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000496 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattnerf3231de2009-08-10 18:02:16 +0000497 EmitAlignment(2);
Bill Wendlingbecd83e2010-03-09 00:40:17 +0000498 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
499 // L_foo$stub:
500 OutStreamer.EmitLabel(Stubs[i].first);
501 // .long _foo
Bill Wendlingcebae362010-03-10 22:34:10 +0000502 OutStreamer.EmitValue(MCSymbolRefExpr::
503 Create(Stubs[i].second.getPointer(),
504 OutContext),
Bill Wendlingbecd83e2010-03-09 00:40:17 +0000505 4/*size*/, 0/*addrspace*/);
506 }
Bill Wendlingcf6f28d2010-03-09 00:43:34 +0000507
508 Stubs.clear();
509 OutStreamer.AddBlankLine();
Evan Chengae94e592008-12-05 01:06:39 +0000510 }
511
Evan Chenga8e29892007-01-19 07:51:42 +0000512 // Funny Darwin hack: This flag tells the linker that no global symbols
513 // contain code that falls through to other global symbols (e.g. the obvious
514 // implementation of multiple entry points). If this doesn't occur, the
515 // linker can safely perform dead code stripping. Since LLVM never
516 // generates code that does this, it is always safe to set.
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000517 OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
Rafael Espindolab01c4bb2006-07-27 11:38:51 +0000518 }
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000519}
Anton Korobeynikov0bd89712008-08-17 13:55:10 +0000520
Chris Lattner97f06932009-10-19 20:20:46 +0000521//===----------------------------------------------------------------------===//
522
Jim Grosbach988ce092010-09-18 00:05:05 +0000523static MCSymbol *getPICLabel(const char *Prefix, unsigned FunctionNumber,
524 unsigned LabelId, MCContext &Ctx) {
525
526 MCSymbol *Label = Ctx.GetOrCreateSymbol(Twine(Prefix)
527 + "PC" + Twine(FunctionNumber) + "_" + Twine(LabelId));
528 return Label;
529}
530
Jim Grosbacha2244cb2010-09-22 17:39:48 +0000531void ARMAsmPrinter::EmitJumpTable(const MachineInstr *MI) {
532 unsigned Opcode = MI->getOpcode();
533 int OpNum = 1;
534 if (Opcode == ARM::BR_JTadd)
535 OpNum = 2;
536 else if (Opcode == ARM::BR_JTm)
537 OpNum = 3;
538
539 const MachineOperand &MO1 = MI->getOperand(OpNum);
540 const MachineOperand &MO2 = MI->getOperand(OpNum+1); // Unique Id
541 unsigned JTI = MO1.getIndex();
542
543 // Emit a label for the jump table.
544 MCSymbol *JTISymbol = GetARMJTIPICJumpTableLabel2(JTI, MO2.getImm());
545 OutStreamer.EmitLabel(JTISymbol);
546
547 // Emit each entry of the table.
548 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
549 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
550 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
551
552 for (unsigned i = 0, e = JTBBs.size(); i != e; ++i) {
553 MachineBasicBlock *MBB = JTBBs[i];
554 // Construct an MCExpr for the entry. We want a value of the form:
555 // (BasicBlockAddr - TableBeginAddr)
556 //
557 // For example, a table with entries jumping to basic blocks BB0 and BB1
558 // would look like:
559 // LJTI_0_0:
560 // .word (LBB0 - LJTI_0_0)
561 // .word (LBB1 - LJTI_0_0)
562 const MCExpr *Expr = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
563
564 if (TM.getRelocationModel() == Reloc::PIC_)
565 Expr = MCBinaryExpr::CreateSub(Expr, MCSymbolRefExpr::Create(JTISymbol,
566 OutContext),
567 OutContext);
568 OutStreamer.EmitValue(Expr, 4);
569 }
570}
571
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000572void ARMAsmPrinter::EmitJump2Table(const MachineInstr *MI) {
573 unsigned Opcode = MI->getOpcode();
574 int OpNum = (Opcode == ARM::t2BR_JT) ? 2 : 1;
575 const MachineOperand &MO1 = MI->getOperand(OpNum);
576 const MachineOperand &MO2 = MI->getOperand(OpNum+1); // Unique Id
577 unsigned JTI = MO1.getIndex();
578
579 // Emit a label for the jump table.
580 MCSymbol *JTISymbol = GetARMJTIPICJumpTableLabel2(JTI, MO2.getImm());
581 OutStreamer.EmitLabel(JTISymbol);
582
583 // Emit each entry of the table.
584 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
585 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
586 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000587 unsigned OffsetWidth = 4;
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000588 if (MI->getOpcode() == ARM::t2TBB)
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000589 OffsetWidth = 1;
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000590 else if (MI->getOpcode() == ARM::t2TBH)
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000591 OffsetWidth = 2;
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000592
593 for (unsigned i = 0, e = JTBBs.size(); i != e; ++i) {
594 MachineBasicBlock *MBB = JTBBs[i];
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000595 const MCExpr *MBBSymbolExpr = MCSymbolRefExpr::Create(MBB->getSymbol(),
596 OutContext);
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000597 // If this isn't a TBB or TBH, the entries are direct branch instructions.
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000598 if (OffsetWidth == 4) {
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000599 MCInst BrInst;
600 BrInst.setOpcode(ARM::t2B);
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000601 BrInst.addOperand(MCOperand::CreateExpr(MBBSymbolExpr));
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000602 OutStreamer.EmitInstruction(BrInst);
603 continue;
604 }
605 // Otherwise it's an offset from the dispatch instruction. Construct an
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000606 // MCExpr for the entry. We want a value of the form:
607 // (BasicBlockAddr - TableBeginAddr) / 2
608 //
609 // For example, a TBB table with entries jumping to basic blocks BB0 and BB1
610 // would look like:
611 // LJTI_0_0:
612 // .byte (LBB0 - LJTI_0_0) / 2
613 // .byte (LBB1 - LJTI_0_0) / 2
614 const MCExpr *Expr =
615 MCBinaryExpr::CreateSub(MBBSymbolExpr,
616 MCSymbolRefExpr::Create(JTISymbol, OutContext),
617 OutContext);
618 Expr = MCBinaryExpr::CreateDiv(Expr, MCConstantExpr::Create(2, OutContext),
619 OutContext);
620 OutStreamer.EmitValue(Expr, OffsetWidth);
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000621 }
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000622
623 // Make sure the instruction that follows TBB is 2-byte aligned.
624 // FIXME: Constant island pass should insert an "ALIGN" instruction instead.
625 if (MI->getOpcode() == ARM::t2TBB)
626 EmitAlignment(1);
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000627}
628
Jim Grosbach2d0f53b2010-09-28 17:05:56 +0000629void ARMAsmPrinter::PrintDebugValueComment(const MachineInstr *MI,
630 raw_ostream &OS) {
631 unsigned NOps = MI->getNumOperands();
632 assert(NOps==4);
633 OS << '\t' << MAI->getCommentString() << "DEBUG_VALUE: ";
634 // cast away const; DIetc do not take const operands for some reason.
635 DIVariable V(const_cast<MDNode *>(MI->getOperand(NOps-1).getMetadata()));
636 OS << V.getName();
637 OS << " <- ";
638 // Frame address. Currently handles register +- offset only.
639 assert(MI->getOperand(0).isReg() && MI->getOperand(1).isImm());
640 OS << '['; printOperand(MI, 0, OS); OS << '+'; printOperand(MI, 1, OS);
641 OS << ']';
642 OS << "+";
643 printOperand(MI, NOps-2, OS);
644}
645
Jim Grosbachb454cda2010-09-29 15:23:40 +0000646void ARMAsmPrinter::EmitInstruction(const MachineInstr *MI) {
Chris Lattner96bc2172009-10-20 00:52:47 +0000647 ARMMCInstLower MCInstLowering(OutContext, *Mang, *this);
Chris Lattner97f06932009-10-19 20:20:46 +0000648 switch (MI->getOpcode()) {
Chris Lattnerc6b8a992009-10-20 05:58:02 +0000649 case ARM::t2MOVi32imm:
650 assert(0 && "Should be lowered by thumb2it pass");
Chris Lattner4d152222009-10-19 22:23:04 +0000651 default: break;
Jim Grosbach2d0f53b2010-09-28 17:05:56 +0000652 case ARM::DBG_VALUE: {
653 if (isVerbose() && OutStreamer.hasRawTextSupport()) {
654 SmallString<128> TmpStr;
655 raw_svector_ostream OS(TmpStr);
656 PrintDebugValueComment(MI, OS);
657 OutStreamer.EmitRawText(StringRef(OS.str()));
658 }
659 return;
660 }
Jim Grosbachfbd18732010-09-17 23:41:53 +0000661 case ARM::tPICADD: {
662 // This is a pseudo op for a label + instruction sequence, which looks like:
663 // LPC0:
664 // add r0, pc
665 // This adds the address of LPC0 to r0.
666
667 // Emit the label.
Jim Grosbach988ce092010-09-18 00:05:05 +0000668 OutStreamer.EmitLabel(getPICLabel(MAI->getPrivateGlobalPrefix(),
669 getFunctionNumber(), MI->getOperand(2).getImm(),
670 OutContext));
Jim Grosbachfbd18732010-09-17 23:41:53 +0000671
672 // Form and emit the add.
673 MCInst AddInst;
674 AddInst.setOpcode(ARM::tADDhirr);
675 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
676 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
677 AddInst.addOperand(MCOperand::CreateReg(ARM::PC));
678 // Add predicate operands.
679 AddInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
680 AddInst.addOperand(MCOperand::CreateReg(0));
681 OutStreamer.EmitInstruction(AddInst);
682 return;
683 }
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000684 case ARM::PICADD: {
Chris Lattner4d152222009-10-19 22:23:04 +0000685 // This is a pseudo op for a label + instruction sequence, which looks like:
686 // LPC0:
687 // add r0, pc, r0
688 // This adds the address of LPC0 to r0.
Jim Grosbachb0739b72010-09-02 01:02:06 +0000689
Chris Lattner4d152222009-10-19 22:23:04 +0000690 // Emit the label.
Jim Grosbach988ce092010-09-18 00:05:05 +0000691 OutStreamer.EmitLabel(getPICLabel(MAI->getPrivateGlobalPrefix(),
692 getFunctionNumber(), MI->getOperand(2).getImm(),
693 OutContext));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000694
Jim Grosbachf3f09522010-09-14 21:05:34 +0000695 // Form and emit the add.
Chris Lattner4d152222009-10-19 22:23:04 +0000696 MCInst AddInst;
697 AddInst.setOpcode(ARM::ADDrr);
698 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
699 AddInst.addOperand(MCOperand::CreateReg(ARM::PC));
700 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(1).getReg()));
Jim Grosbach5b46d622010-09-14 21:28:17 +0000701 // Add predicate operands.
702 AddInst.addOperand(MCOperand::CreateImm(MI->getOperand(3).getImm()));
703 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(4).getReg()));
704 // Add 's' bit operand (always reg0 for this)
705 AddInst.addOperand(MCOperand::CreateReg(0));
Chris Lattner850d2e22010-02-03 01:16:28 +0000706 OutStreamer.EmitInstruction(AddInst);
Chris Lattner4d152222009-10-19 22:23:04 +0000707 return;
708 }
Jim Grosbacha28abbe2010-09-17 16:25:52 +0000709 case ARM::PICSTR:
710 case ARM::PICSTRB:
711 case ARM::PICSTRH:
712 case ARM::PICLDR:
713 case ARM::PICLDRB:
714 case ARM::PICLDRH:
715 case ARM::PICLDRSB:
716 case ARM::PICLDRSH: {
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000717 // This is a pseudo op for a label + instruction sequence, which looks like:
718 // LPC0:
Jim Grosbacha28abbe2010-09-17 16:25:52 +0000719 // OP r0, [pc, r0]
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000720 // The LCP0 label is referenced by a constant pool entry in order to get
721 // a PC-relative address at the ldr instruction.
722
723 // Emit the label.
Jim Grosbach988ce092010-09-18 00:05:05 +0000724 OutStreamer.EmitLabel(getPICLabel(MAI->getPrivateGlobalPrefix(),
725 getFunctionNumber(), MI->getOperand(2).getImm(),
726 OutContext));
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000727
728 // Form and emit the load
Jim Grosbacha28abbe2010-09-17 16:25:52 +0000729 unsigned Opcode;
730 switch (MI->getOpcode()) {
731 default:
732 llvm_unreachable("Unexpected opcode!");
733 case ARM::PICSTR: Opcode = ARM::STR; break;
734 case ARM::PICSTRB: Opcode = ARM::STRB; break;
735 case ARM::PICSTRH: Opcode = ARM::STRH; break;
736 case ARM::PICLDR: Opcode = ARM::LDR; break;
737 case ARM::PICLDRB: Opcode = ARM::LDRB; break;
738 case ARM::PICLDRH: Opcode = ARM::LDRH; break;
739 case ARM::PICLDRSB: Opcode = ARM::LDRSB; break;
740 case ARM::PICLDRSH: Opcode = ARM::LDRSH; break;
741 }
742 MCInst LdStInst;
743 LdStInst.setOpcode(Opcode);
744 LdStInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
745 LdStInst.addOperand(MCOperand::CreateReg(ARM::PC));
746 LdStInst.addOperand(MCOperand::CreateReg(MI->getOperand(1).getReg()));
747 LdStInst.addOperand(MCOperand::CreateImm(0));
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000748 // Add predicate operands.
Jim Grosbacha28abbe2010-09-17 16:25:52 +0000749 LdStInst.addOperand(MCOperand::CreateImm(MI->getOperand(3).getImm()));
750 LdStInst.addOperand(MCOperand::CreateReg(MI->getOperand(4).getReg()));
751 OutStreamer.EmitInstruction(LdStInst);
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000752
753 return;
754 }
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000755 case ARM::CONSTPOOL_ENTRY: {
Chris Lattnera70e6442009-10-19 22:33:05 +0000756 /// CONSTPOOL_ENTRY - This instruction represents a floating constant pool
757 /// in the function. The first operand is the ID# for this instruction, the
758 /// second is the index into the MachineConstantPool that this is, the third
759 /// is the size in bytes of this constant pool entry.
760 unsigned LabelId = (unsigned)MI->getOperand(0).getImm();
761 unsigned CPIdx = (unsigned)MI->getOperand(1).getIndex();
762
763 EmitAlignment(2);
Chris Lattner1b46f432010-01-23 07:00:21 +0000764 OutStreamer.EmitLabel(GetCPISymbol(LabelId));
Chris Lattnera70e6442009-10-19 22:33:05 +0000765
766 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx];
767 if (MCPE.isMachineConstantPoolEntry())
768 EmitMachineConstantPoolValue(MCPE.Val.MachineCPVal);
769 else
770 EmitGlobalConstant(MCPE.Val.ConstVal);
Jim Grosbachb0739b72010-09-02 01:02:06 +0000771
Chris Lattnera70e6442009-10-19 22:33:05 +0000772 return;
773 }
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000774 case ARM::MOVi2pieces: {
775 // FIXME: We'd like to remove the asm string in the .td file, but the
Chris Lattner017d9472009-10-20 00:40:56 +0000776 // This is a hack that lowers as a two instruction sequence.
777 unsigned DstReg = MI->getOperand(0).getReg();
778 unsigned ImmVal = (unsigned)MI->getOperand(1).getImm();
779
780 unsigned SOImmValV1 = ARM_AM::getSOImmTwoPartFirst(ImmVal);
781 unsigned SOImmValV2 = ARM_AM::getSOImmTwoPartSecond(ImmVal);
Jim Grosbachb0739b72010-09-02 01:02:06 +0000782
Chris Lattner017d9472009-10-20 00:40:56 +0000783 {
784 MCInst TmpInst;
785 TmpInst.setOpcode(ARM::MOVi);
786 TmpInst.addOperand(MCOperand::CreateReg(DstReg));
787 TmpInst.addOperand(MCOperand::CreateImm(SOImmValV1));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000788
Chris Lattner017d9472009-10-20 00:40:56 +0000789 // Predicate.
790 TmpInst.addOperand(MCOperand::CreateImm(MI->getOperand(2).getImm()));
791 TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(3).getReg()));
Chris Lattner233917c2009-10-20 00:46:11 +0000792
793 TmpInst.addOperand(MCOperand::CreateReg(0)); // cc_out
Chris Lattner850d2e22010-02-03 01:16:28 +0000794 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner017d9472009-10-20 00:40:56 +0000795 }
796
797 {
798 MCInst TmpInst;
799 TmpInst.setOpcode(ARM::ORRri);
800 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // dstreg
801 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // inreg
802 TmpInst.addOperand(MCOperand::CreateImm(SOImmValV2)); // so_imm
803 // Predicate.
804 TmpInst.addOperand(MCOperand::CreateImm(MI->getOperand(2).getImm()));
805 TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(3).getReg()));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000806
Chris Lattner017d9472009-10-20 00:40:56 +0000807 TmpInst.addOperand(MCOperand::CreateReg(0)); // cc_out
Chris Lattner850d2e22010-02-03 01:16:28 +0000808 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner017d9472009-10-20 00:40:56 +0000809 }
Jim Grosbachb0739b72010-09-02 01:02:06 +0000810 return;
Chris Lattner017d9472009-10-20 00:40:56 +0000811 }
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000812 case ARM::MOVi32imm: {
813 // FIXME: We'd like to remove the asm string in the .td file, but the
Chris Lattner161dcbf2009-10-20 01:11:37 +0000814 // This is a hack that lowers as a two instruction sequence.
815 unsigned DstReg = MI->getOperand(0).getReg();
Rafael Espindola18c10212010-05-12 05:16:34 +0000816 const MachineOperand &MO = MI->getOperand(1);
817 MCOperand V1, V2;
818 if (MO.isImm()) {
819 unsigned ImmVal = (unsigned)MI->getOperand(1).getImm();
820 V1 = MCOperand::CreateImm(ImmVal & 65535);
821 V2 = MCOperand::CreateImm(ImmVal >> 16);
822 } else if (MO.isGlobal()) {
Jim Grosbachc686e332010-09-17 18:25:25 +0000823 MCSymbol *Symbol = MCInstLowering.GetGlobalAddressSymbol(MO.getGlobal());
Rafael Espindola18c10212010-05-12 05:16:34 +0000824 const MCSymbolRefExpr *SymRef1 =
Duncan Sands34727662010-07-12 08:16:59 +0000825 MCSymbolRefExpr::Create(Symbol,
826 MCSymbolRefExpr::VK_ARM_LO16, OutContext);
Rafael Espindola18c10212010-05-12 05:16:34 +0000827 const MCSymbolRefExpr *SymRef2 =
Duncan Sands34727662010-07-12 08:16:59 +0000828 MCSymbolRefExpr::Create(Symbol,
829 MCSymbolRefExpr::VK_ARM_HI16, OutContext);
Rafael Espindola18c10212010-05-12 05:16:34 +0000830 V1 = MCOperand::CreateExpr(SymRef1);
831 V2 = MCOperand::CreateExpr(SymRef2);
832 } else {
Jim Grosbachf0633e42010-09-22 20:55:15 +0000833 // FIXME: External symbol?
Rafael Espindola18c10212010-05-12 05:16:34 +0000834 MI->dump();
835 llvm_unreachable("cannot handle this operand");
836 }
837
Chris Lattner161dcbf2009-10-20 01:11:37 +0000838 {
839 MCInst TmpInst;
840 TmpInst.setOpcode(ARM::MOVi16);
841 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // dstreg
Rafael Espindola18c10212010-05-12 05:16:34 +0000842 TmpInst.addOperand(V1); // lower16(imm)
Jim Grosbachb0739b72010-09-02 01:02:06 +0000843
Chris Lattner161dcbf2009-10-20 01:11:37 +0000844 // Predicate.
845 TmpInst.addOperand(MCOperand::CreateImm(MI->getOperand(2).getImm()));
846 TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(3).getReg()));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000847
Chris Lattner850d2e22010-02-03 01:16:28 +0000848 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner161dcbf2009-10-20 01:11:37 +0000849 }
Jim Grosbachb0739b72010-09-02 01:02:06 +0000850
Chris Lattner161dcbf2009-10-20 01:11:37 +0000851 {
852 MCInst TmpInst;
853 TmpInst.setOpcode(ARM::MOVTi16);
854 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // dstreg
855 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // srcreg
Rafael Espindola18c10212010-05-12 05:16:34 +0000856 TmpInst.addOperand(V2); // upper16(imm)
Jim Grosbachb0739b72010-09-02 01:02:06 +0000857
Chris Lattner161dcbf2009-10-20 01:11:37 +0000858 // Predicate.
859 TmpInst.addOperand(MCOperand::CreateImm(MI->getOperand(2).getImm()));
860 TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(3).getReg()));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000861
Chris Lattner850d2e22010-02-03 01:16:28 +0000862 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner161dcbf2009-10-20 01:11:37 +0000863 }
Jim Grosbachb0739b72010-09-02 01:02:06 +0000864
Chris Lattner161dcbf2009-10-20 01:11:37 +0000865 return;
866 }
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000867 case ARM::t2TBB:
868 case ARM::t2TBH:
869 case ARM::t2BR_JT: {
870 // Lower and emit the instruction itself, then the jump table following it.
871 MCInst TmpInst;
872 MCInstLowering.Lower(MI, TmpInst);
873 OutStreamer.EmitInstruction(TmpInst);
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000874 EmitJump2Table(MI);
875 return;
876 }
877 case ARM::tBR_JTr:
878 case ARM::BR_JTr:
879 case ARM::BR_JTm:
Jim Grosbacha2244cb2010-09-22 17:39:48 +0000880 case ARM::BR_JTadd: {
881 // Lower and emit the instruction itself, then the jump table following it.
882 MCInst TmpInst;
883 MCInstLowering.Lower(MI, TmpInst);
884 OutStreamer.EmitInstruction(TmpInst);
885 EmitJumpTable(MI);
886 return;
887 }
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000888 case ARM::TRAP: {
889 // Non-Darwin binutils don't yet support the "trap" mnemonic.
890 // FIXME: Remove this special case when they do.
891 if (!Subtarget->isTargetDarwin()) {
Jim Grosbach78890f42010-10-01 23:21:38 +0000892 //.long 0xe7ffdefe @ trap
Jim Grosbachb2dda4b2010-09-23 19:42:17 +0000893 uint32_t Val = 0xe7ffdefeUL;
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000894 OutStreamer.AddComment("trap");
895 OutStreamer.EmitIntValue(Val, 4);
896 return;
897 }
898 break;
899 }
900 case ARM::tTRAP: {
901 // Non-Darwin binutils don't yet support the "trap" mnemonic.
902 // FIXME: Remove this special case when they do.
903 if (!Subtarget->isTargetDarwin()) {
Jim Grosbach78890f42010-10-01 23:21:38 +0000904 //.short 57086 @ trap
Benjamin Kramerc8ab9eb2010-09-23 18:57:26 +0000905 uint16_t Val = 0xdefe;
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000906 OutStreamer.AddComment("trap");
907 OutStreamer.EmitIntValue(Val, 2);
908 return;
909 }
910 break;
911 }
Jim Grosbach433a5782010-09-24 20:47:58 +0000912 case ARM::t2Int_eh_sjlj_setjmp:
913 case ARM::t2Int_eh_sjlj_setjmp_nofp:
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000914 case ARM::tInt_eh_sjlj_setjmp: {
Jim Grosbach433a5782010-09-24 20:47:58 +0000915 // Two incoming args: GPR:$src, GPR:$val
916 // mov $val, pc
917 // adds $val, #7
918 // str $val, [$src, #4]
919 // movs r0, #0
920 // b 1f
921 // movs r0, #1
922 // 1:
923 unsigned SrcReg = MI->getOperand(0).getReg();
924 unsigned ValReg = MI->getOperand(1).getReg();
925 MCSymbol *Label = GetARMSJLJEHLabel();
926 {
927 MCInst TmpInst;
928 TmpInst.setOpcode(ARM::tMOVgpr2tgpr);
929 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
930 TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
931 // 's' bit operand
932 TmpInst.addOperand(MCOperand::CreateReg(ARM::CPSR));
933 OutStreamer.AddComment("eh_setjmp begin");
934 OutStreamer.EmitInstruction(TmpInst);
935 }
936 {
937 MCInst TmpInst;
938 TmpInst.setOpcode(ARM::tADDi3);
939 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
940 // 's' bit operand
941 TmpInst.addOperand(MCOperand::CreateReg(ARM::CPSR));
942 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
943 TmpInst.addOperand(MCOperand::CreateImm(7));
944 // Predicate.
945 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
946 TmpInst.addOperand(MCOperand::CreateReg(0));
947 OutStreamer.EmitInstruction(TmpInst);
948 }
949 {
950 MCInst TmpInst;
951 TmpInst.setOpcode(ARM::tSTR);
952 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
953 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
954 // The offset immediate is #4. The operand value is scaled by 4 for the
955 // tSTR instruction.
956 TmpInst.addOperand(MCOperand::CreateImm(1));
957 TmpInst.addOperand(MCOperand::CreateReg(0));
958 // Predicate.
959 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
960 TmpInst.addOperand(MCOperand::CreateReg(0));
961 OutStreamer.EmitInstruction(TmpInst);
962 }
963 {
964 MCInst TmpInst;
965 TmpInst.setOpcode(ARM::tMOVi8);
966 TmpInst.addOperand(MCOperand::CreateReg(ARM::R0));
967 TmpInst.addOperand(MCOperand::CreateReg(ARM::CPSR));
968 TmpInst.addOperand(MCOperand::CreateImm(0));
969 // Predicate.
970 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
971 TmpInst.addOperand(MCOperand::CreateReg(0));
972 OutStreamer.EmitInstruction(TmpInst);
973 }
974 {
975 const MCExpr *SymbolExpr = MCSymbolRefExpr::Create(Label, OutContext);
976 MCInst TmpInst;
977 TmpInst.setOpcode(ARM::tB);
978 TmpInst.addOperand(MCOperand::CreateExpr(SymbolExpr));
979 OutStreamer.EmitInstruction(TmpInst);
980 }
981 {
982 MCInst TmpInst;
983 TmpInst.setOpcode(ARM::tMOVi8);
984 TmpInst.addOperand(MCOperand::CreateReg(ARM::R0));
985 TmpInst.addOperand(MCOperand::CreateReg(ARM::CPSR));
986 TmpInst.addOperand(MCOperand::CreateImm(1));
987 // Predicate.
988 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
989 TmpInst.addOperand(MCOperand::CreateReg(0));
990 OutStreamer.AddComment("eh_setjmp end");
991 OutStreamer.EmitInstruction(TmpInst);
992 }
993 OutStreamer.EmitLabel(Label);
994 return;
995 }
996
Jim Grosbach45390082010-09-23 23:33:56 +0000997 case ARM::Int_eh_sjlj_setjmp_nofp:
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000998 case ARM::Int_eh_sjlj_setjmp: {
Jim Grosbach45390082010-09-23 23:33:56 +0000999 // Two incoming args: GPR:$src, GPR:$val
1000 // add $val, pc, #8
1001 // str $val, [$src, #+4]
1002 // mov r0, #0
1003 // add pc, pc, #0
1004 // mov r0, #1
1005 unsigned SrcReg = MI->getOperand(0).getReg();
1006 unsigned ValReg = MI->getOperand(1).getReg();
1007
1008 {
1009 MCInst TmpInst;
1010 TmpInst.setOpcode(ARM::ADDri);
1011 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
1012 TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
1013 TmpInst.addOperand(MCOperand::CreateImm(8));
1014 // Predicate.
1015 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1016 TmpInst.addOperand(MCOperand::CreateReg(0));
1017 // 's' bit operand (always reg0 for this).
1018 TmpInst.addOperand(MCOperand::CreateReg(0));
1019 OutStreamer.AddComment("eh_setjmp begin");
1020 OutStreamer.EmitInstruction(TmpInst);
1021 }
1022 {
1023 MCInst TmpInst;
1024 TmpInst.setOpcode(ARM::STR);
1025 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
1026 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1027 TmpInst.addOperand(MCOperand::CreateReg(0));
1028 TmpInst.addOperand(MCOperand::CreateImm(4));
1029 // Predicate.
1030 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1031 TmpInst.addOperand(MCOperand::CreateReg(0));
1032 OutStreamer.EmitInstruction(TmpInst);
1033 }
1034 {
1035 MCInst TmpInst;
1036 TmpInst.setOpcode(ARM::MOVi);
1037 TmpInst.addOperand(MCOperand::CreateReg(ARM::R0));
1038 TmpInst.addOperand(MCOperand::CreateImm(0));
1039 // Predicate.
1040 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1041 TmpInst.addOperand(MCOperand::CreateReg(0));
1042 // 's' bit operand (always reg0 for this).
1043 TmpInst.addOperand(MCOperand::CreateReg(0));
1044 OutStreamer.EmitInstruction(TmpInst);
1045 }
1046 {
1047 MCInst TmpInst;
1048 TmpInst.setOpcode(ARM::ADDri);
1049 TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
1050 TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
1051 TmpInst.addOperand(MCOperand::CreateImm(0));
1052 // Predicate.
1053 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1054 TmpInst.addOperand(MCOperand::CreateReg(0));
1055 // 's' bit operand (always reg0 for this).
1056 TmpInst.addOperand(MCOperand::CreateReg(0));
1057 OutStreamer.EmitInstruction(TmpInst);
1058 }
1059 {
1060 MCInst TmpInst;
1061 TmpInst.setOpcode(ARM::MOVi);
1062 TmpInst.addOperand(MCOperand::CreateReg(ARM::R0));
1063 TmpInst.addOperand(MCOperand::CreateImm(1));
1064 // Predicate.
1065 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1066 TmpInst.addOperand(MCOperand::CreateReg(0));
1067 // 's' bit operand (always reg0 for this).
1068 TmpInst.addOperand(MCOperand::CreateReg(0));
1069 OutStreamer.AddComment("eh_setjmp end");
1070 OutStreamer.EmitInstruction(TmpInst);
1071 }
1072 return;
1073 }
Jim Grosbach5acb3de2010-09-27 21:47:04 +00001074 case ARM::Int_eh_sjlj_longjmp: {
1075 // ldr sp, [$src, #8]
1076 // ldr $scratch, [$src, #4]
1077 // ldr r7, [$src]
1078 // bx $scratch
1079 unsigned SrcReg = MI->getOperand(0).getReg();
1080 unsigned ScratchReg = MI->getOperand(1).getReg();
1081 {
1082 MCInst TmpInst;
1083 TmpInst.setOpcode(ARM::LDR);
1084 TmpInst.addOperand(MCOperand::CreateReg(ARM::SP));
1085 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1086 TmpInst.addOperand(MCOperand::CreateReg(0));
1087 TmpInst.addOperand(MCOperand::CreateImm(8));
1088 // Predicate.
1089 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1090 TmpInst.addOperand(MCOperand::CreateReg(0));
1091 OutStreamer.EmitInstruction(TmpInst);
1092 }
1093 {
1094 MCInst TmpInst;
1095 TmpInst.setOpcode(ARM::LDR);
1096 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1097 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1098 TmpInst.addOperand(MCOperand::CreateReg(0));
1099 TmpInst.addOperand(MCOperand::CreateImm(4));
1100 // Predicate.
1101 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1102 TmpInst.addOperand(MCOperand::CreateReg(0));
1103 OutStreamer.EmitInstruction(TmpInst);
1104 }
1105 {
1106 MCInst TmpInst;
1107 TmpInst.setOpcode(ARM::LDR);
1108 TmpInst.addOperand(MCOperand::CreateReg(ARM::R7));
1109 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1110 TmpInst.addOperand(MCOperand::CreateReg(0));
1111 TmpInst.addOperand(MCOperand::CreateImm(0));
1112 // Predicate.
1113 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1114 TmpInst.addOperand(MCOperand::CreateReg(0));
1115 OutStreamer.EmitInstruction(TmpInst);
1116 }
1117 {
1118 MCInst TmpInst;
1119 TmpInst.setOpcode(ARM::BRIND);
1120 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1121 // Predicate.
1122 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1123 TmpInst.addOperand(MCOperand::CreateReg(0));
1124 OutStreamer.EmitInstruction(TmpInst);
1125 }
1126 return;
1127 }
Jim Grosbach385cc5e2010-09-27 22:28:11 +00001128 case ARM::tInt_eh_sjlj_longjmp: {
1129 // ldr $scratch, [$src, #8]
1130 // mov sp, $scratch
1131 // ldr $scratch, [$src, #4]
1132 // ldr r7, [$src]
1133 // bx $scratch
1134 unsigned SrcReg = MI->getOperand(0).getReg();
1135 unsigned ScratchReg = MI->getOperand(1).getReg();
1136 {
1137 MCInst TmpInst;
1138 TmpInst.setOpcode(ARM::tLDR);
1139 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1140 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1141 // The offset immediate is #8. The operand value is scaled by 4 for the
1142 // tSTR instruction.
1143 TmpInst.addOperand(MCOperand::CreateImm(2));
1144 TmpInst.addOperand(MCOperand::CreateReg(0));
1145 // Predicate.
1146 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1147 TmpInst.addOperand(MCOperand::CreateReg(0));
1148 OutStreamer.EmitInstruction(TmpInst);
1149 }
1150 {
1151 MCInst TmpInst;
1152 TmpInst.setOpcode(ARM::tMOVtgpr2gpr);
1153 TmpInst.addOperand(MCOperand::CreateReg(ARM::SP));
1154 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1155 // Predicate.
1156 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1157 TmpInst.addOperand(MCOperand::CreateReg(0));
1158 OutStreamer.EmitInstruction(TmpInst);
1159 }
1160 {
1161 MCInst TmpInst;
1162 TmpInst.setOpcode(ARM::tLDR);
1163 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1164 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1165 TmpInst.addOperand(MCOperand::CreateImm(1));
1166 TmpInst.addOperand(MCOperand::CreateReg(0));
1167 // Predicate.
1168 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1169 TmpInst.addOperand(MCOperand::CreateReg(0));
1170 OutStreamer.EmitInstruction(TmpInst);
1171 }
1172 {
1173 MCInst TmpInst;
1174 TmpInst.setOpcode(ARM::tLDR);
1175 TmpInst.addOperand(MCOperand::CreateReg(ARM::R7));
1176 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1177 TmpInst.addOperand(MCOperand::CreateImm(0));
1178 TmpInst.addOperand(MCOperand::CreateReg(0));
1179 // Predicate.
1180 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1181 TmpInst.addOperand(MCOperand::CreateReg(0));
1182 OutStreamer.EmitInstruction(TmpInst);
1183 }
1184 {
1185 MCInst TmpInst;
1186 TmpInst.setOpcode(ARM::tBX_RET_vararg);
1187 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1188 // Predicate.
1189 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1190 TmpInst.addOperand(MCOperand::CreateReg(0));
1191 OutStreamer.EmitInstruction(TmpInst);
1192 }
1193 return;
1194 }
Chris Lattner97f06932009-10-19 20:20:46 +00001195 }
Jim Grosbachb0739b72010-09-02 01:02:06 +00001196
Chris Lattner97f06932009-10-19 20:20:46 +00001197 MCInst TmpInst;
1198 MCInstLowering.Lower(MI, TmpInst);
Chris Lattner850d2e22010-02-03 01:16:28 +00001199 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner97f06932009-10-19 20:20:46 +00001200}
Daniel Dunbar2685a292009-10-20 05:15:36 +00001201
1202//===----------------------------------------------------------------------===//
1203// Target Registry Stuff
1204//===----------------------------------------------------------------------===//
1205
1206static MCInstPrinter *createARMMCInstPrinter(const Target &T,
1207 unsigned SyntaxVariant,
Chris Lattnerd3740872010-04-04 05:04:31 +00001208 const MCAsmInfo &MAI) {
Daniel Dunbar2685a292009-10-20 05:15:36 +00001209 if (SyntaxVariant == 0)
Jim Grosbach74d7e6c2010-09-17 21:33:25 +00001210 return new ARMInstPrinter(MAI);
Daniel Dunbar2685a292009-10-20 05:15:36 +00001211 return 0;
1212}
1213
1214// Force static initialization.
1215extern "C" void LLVMInitializeARMAsmPrinter() {
1216 RegisterAsmPrinter<ARMAsmPrinter> X(TheARMTarget);
1217 RegisterAsmPrinter<ARMAsmPrinter> Y(TheThumbTarget);
1218
1219 TargetRegistry::RegisterMCInstPrinter(TheARMTarget, createARMMCInstPrinter);
1220 TargetRegistry::RegisterMCInstPrinter(TheThumbTarget, createARMMCInstPrinter);
1221}
1222