blob: 32553ca8dd66d09ad6f8a32dce49eb5147d292c7 [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));
Bob Wilsonde0ae8f2010-09-16 04:55:00 +0000239 if (Modifier && strcmp(Modifier, "lane") == 0) {
Jim Grosbacha4c3c8f2010-09-15 20:26:25 +0000240 unsigned RegNum = getARMRegisterNumbering(Reg);
Chris Lattner9d1c1ad2010-04-04 18:06:11 +0000241 unsigned DReg =
Jakob Stoklund Olesene00fa642010-05-25 00:15:15 +0000242 TM.getRegisterInfo()->getMatchingSuperReg(Reg,
243 RegNum & 1 ? ARM::ssub_1 : ARM::ssub_0, &ARM::DPR_VFP2RegClass);
Jim Grosbach2317e402010-09-30 01:57:53 +0000244 O << ARMInstPrinter::getRegisterName(DReg) << '[' << (RegNum & 1) << ']';
Chris Lattner8bc86cb2009-10-19 20:59:55 +0000245 } else {
Anton Korobeynikove8ea0112009-11-07 15:20:32 +0000246 assert(!MO.getSubReg() && "Subregs should be eliminated!");
Jim Grosbach2317e402010-09-30 01:57:53 +0000247 O << ARMInstPrinter::getRegisterName(Reg);
Chris Lattner8bc86cb2009-10-19 20:59:55 +0000248 }
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000249 break;
Bob Wilson5bafff32009-06-22 23:27:02 +0000250 }
Evan Chenga8e29892007-01-19 07:51:42 +0000251 case MachineOperand::MO_Immediate: {
Evan Cheng5adb66a2009-09-28 09:14:39 +0000252 int64_t Imm = MO.getImm();
Anton Korobeynikov632606c2009-10-08 20:43:22 +0000253 O << '#';
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +0000254 if ((Modifier && strcmp(Modifier, "lo16") == 0) ||
255 (TF & ARMII::MO_LO16))
256 O << ":lower16:";
257 else if ((Modifier && strcmp(Modifier, "hi16") == 0) ||
258 (TF & ARMII::MO_HI16))
259 O << ":upper16:";
Anton Korobeynikov632606c2009-10-08 20:43:22 +0000260 O << Imm;
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000261 break;
Evan Chenga8e29892007-01-19 07:51:42 +0000262 }
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000263 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner1b2eb0e2010-03-13 21:04:28 +0000264 O << *MO.getMBB()->getSymbol();
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000265 return;
Rafael Espindola84b19be2006-07-16 01:02:57 +0000266 case MachineOperand::MO_GlobalAddress: {
Evan Chenga8e29892007-01-19 07:51:42 +0000267 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Dan Gohman46510a72010-04-15 01:51:59 +0000268 const GlobalValue *GV = MO.getGlobal();
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +0000269
270 if ((Modifier && strcmp(Modifier, "lo16") == 0) ||
271 (TF & ARMII::MO_LO16))
272 O << ":lower16:";
273 else if ((Modifier && strcmp(Modifier, "hi16") == 0) ||
274 (TF & ARMII::MO_HI16))
275 O << ":upper16:";
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000276 O << *Mang->getSymbol(GV);
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000277
Chris Lattner0c08d092010-04-03 22:28:33 +0000278 printOffset(MO.getOffset(), O);
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000279
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000280 if (isCallOp && Subtarget->isTargetELF() &&
281 TM.getRelocationModel() == Reloc::PIC_)
282 O << "(PLT)";
Evan Chenga8e29892007-01-19 07:51:42 +0000283 break;
Rafael Espindola84b19be2006-07-16 01:02:57 +0000284 }
Evan Chenga8e29892007-01-19 07:51:42 +0000285 case MachineOperand::MO_ExternalSymbol: {
286 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Chris Lattner10b318b2010-01-17 21:43:43 +0000287 O << *GetExternalSymbolSymbol(MO.getSymbolName());
Jim Grosbachb0739b72010-09-02 01:02:06 +0000288
Lauro Ramos Venancio0ae4a332007-04-22 00:04:12 +0000289 if (isCallOp && Subtarget->isTargetELF() &&
290 TM.getRelocationModel() == Reloc::PIC_)
291 O << "(PLT)";
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000292 break;
Evan Chenga8e29892007-01-19 07:51:42 +0000293 }
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000294 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner1b46f432010-01-23 07:00:21 +0000295 O << *GetCPISymbol(MO.getIndex());
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000296 break;
Evan Chenga8e29892007-01-19 07:51:42 +0000297 case MachineOperand::MO_JumpTableIndex:
Chris Lattner1b46f432010-01-23 07:00:21 +0000298 O << *GetJTISymbol(MO.getIndex());
Evan Chenga8e29892007-01-19 07:51:42 +0000299 break;
Rafael Espindola2f99b6b2006-05-25 12:57:06 +0000300 }
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000301}
302
Evan Cheng055b0312009-06-29 07:51:04 +0000303//===--------------------------------------------------------------------===//
304
Chris Lattner0890cf12010-01-25 19:51:38 +0000305MCSymbol *ARMAsmPrinter::
306GetARMSetPICJumpTableLabel2(unsigned uid, unsigned uid2,
307 const MachineBasicBlock *MBB) const {
308 SmallString<60> Name;
309 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix()
Chris Lattnerbfcb0962010-01-25 19:39:52 +0000310 << getFunctionNumber() << '_' << uid << '_' << uid2
Chris Lattner0890cf12010-01-25 19:51:38 +0000311 << "_set_" << MBB->getNumber();
Chris Lattner9b97a732010-03-30 18:10:53 +0000312 return OutContext.GetOrCreateSymbol(Name.str());
Chris Lattner0890cf12010-01-25 19:51:38 +0000313}
314
315MCSymbol *ARMAsmPrinter::
316GetARMJTIPICJumpTableLabel2(unsigned uid, unsigned uid2) const {
317 SmallString<60> Name;
318 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "JTI"
Chris Lattner281e7762010-01-25 23:28:03 +0000319 << getFunctionNumber() << '_' << uid << '_' << uid2;
Chris Lattner9b97a732010-03-30 18:10:53 +0000320 return OutContext.GetOrCreateSymbol(Name.str());
Chris Lattnerbfcb0962010-01-25 19:39:52 +0000321}
322
Jim Grosbach433a5782010-09-24 20:47:58 +0000323
324MCSymbol *ARMAsmPrinter::GetARMSJLJEHLabel(void) const {
325 SmallString<60> Name;
326 raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "SJLJEH"
327 << getFunctionNumber();
328 return OutContext.GetOrCreateSymbol(Name.str());
329}
330
Evan Cheng055b0312009-06-29 07:51:04 +0000331bool ARMAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000332 unsigned AsmVariant, const char *ExtraCode,
333 raw_ostream &O) {
Evan Chenga8e29892007-01-19 07:51:42 +0000334 // Does this asm operand have a single letter operand modifier?
335 if (ExtraCode && ExtraCode[0]) {
336 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov8e9ece72009-08-08 23:10:41 +0000337
Evan Chenga8e29892007-01-19 07:51:42 +0000338 switch (ExtraCode[0]) {
339 default: return true; // Unknown modifier.
Bob Wilson9b4b00a2009-07-09 23:54:51 +0000340 case 'a': // Print as a memory address.
341 if (MI->getOperand(OpNum).isReg()) {
Jim Grosbach2f24c4e2010-09-30 15:25:22 +0000342 O << "["
343 << ARMInstPrinter::getRegisterName(MI->getOperand(OpNum).getReg())
344 << "]";
Bob Wilson9b4b00a2009-07-09 23:54:51 +0000345 return false;
346 }
347 // Fallthrough
348 case 'c': // Don't print "#" before an immediate operand.
Bob Wilson4f38b382009-08-21 21:58:55 +0000349 if (!MI->getOperand(OpNum).isImm())
350 return true;
Jim Grosbach2317e402010-09-30 01:57:53 +0000351 O << MI->getOperand(OpNum).getImm();
Bob Wilson8f343462009-04-06 21:46:51 +0000352 return false;
Evan Chenge21e3962007-04-04 00:13:29 +0000353 case 'P': // Print a VFP double precision register.
Evan Chengd831cda2009-12-08 23:06:22 +0000354 case 'q': // Print a NEON quad precision register.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000355 printOperand(MI, OpNum, O);
Evan Cheng23a95702007-03-08 22:42:46 +0000356 return false;
Evan Chenga8e29892007-01-19 07:51:42 +0000357 case 'Q':
Bob Wilsond984eb62010-05-27 20:23:42 +0000358 case 'R':
Bob Wilsond984eb62010-05-27 20:23:42 +0000359 case 'H':
Evan Cheng12616722010-05-27 23:45:31 +0000360 report_fatal_error("llvm does not support 'Q', 'R', and 'H' modifiers!");
Bob Wilsond984eb62010-05-27 20:23:42 +0000361 return true;
Evan Cheng84f60b72010-05-27 22:08:38 +0000362 }
Evan Chenga8e29892007-01-19 07:51:42 +0000363 }
Jim Grosbache9952212009-09-04 01:38:51 +0000364
Chris Lattner35c33bd2010-04-04 04:47:45 +0000365 printOperand(MI, OpNum, O);
Evan Chenga8e29892007-01-19 07:51:42 +0000366 return false;
367}
368
Bob Wilson224c2442009-05-19 05:53:42 +0000369bool ARMAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
Evan Cheng055b0312009-06-29 07:51:04 +0000370 unsigned OpNum, unsigned AsmVariant,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000371 const char *ExtraCode,
372 raw_ostream &O) {
Bob Wilson224c2442009-05-19 05:53:42 +0000373 if (ExtraCode && ExtraCode[0])
374 return true; // Unknown modifier.
Bob Wilson765cc0b2009-10-13 20:50:28 +0000375
376 const MachineOperand &MO = MI->getOperand(OpNum);
377 assert(MO.isReg() && "unexpected inline asm memory operand");
Jim Grosbach2317e402010-09-30 01:57:53 +0000378 O << "[" << ARMInstPrinter::getRegisterName(MO.getReg()) << "]";
Bob Wilson224c2442009-05-19 05:53:42 +0000379 return false;
380}
381
Bob Wilson812209a2009-09-30 22:06:26 +0000382void ARMAsmPrinter::EmitStartOfAsmFile(Module &M) {
Bob Wilson0fb34682009-09-30 00:23:42 +0000383 if (Subtarget->isTargetDarwin()) {
384 Reloc::Model RelocM = TM.getRelocationModel();
385 if (RelocM == Reloc::PIC_ || RelocM == Reloc::DynamicNoPIC) {
386 // Declare all the text sections up front (before the DWARF sections
387 // emitted by AsmPrinter::doInitialization) so the assembler will keep
388 // them together at the beginning of the object file. This helps
389 // avoid out-of-range branches that are due a fundamental limitation of
390 // the way symbol offsets are encoded with the current Darwin ARM
391 // relocations.
Jim Grosbachb0739b72010-09-02 01:02:06 +0000392 const TargetLoweringObjectFileMachO &TLOFMacho =
Dan Gohman0d805c32010-04-17 16:44:48 +0000393 static_cast<const TargetLoweringObjectFileMachO &>(
394 getObjFileLowering());
Bob Wilson29e06692009-09-30 22:25:37 +0000395 OutStreamer.SwitchSection(TLOFMacho.getTextSection());
396 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
397 OutStreamer.SwitchSection(TLOFMacho.getConstTextCoalSection());
398 if (RelocM == Reloc::DynamicNoPIC) {
399 const MCSection *sect =
Chris Lattner22772212010-04-08 20:40:11 +0000400 OutContext.getMachOSection("__TEXT", "__symbol_stub4",
401 MCSectionMachO::S_SYMBOL_STUBS,
402 12, SectionKind::getText());
Bob Wilson29e06692009-09-30 22:25:37 +0000403 OutStreamer.SwitchSection(sect);
404 } else {
405 const MCSection *sect =
Chris Lattner22772212010-04-08 20:40:11 +0000406 OutContext.getMachOSection("__TEXT", "__picsymbolstub4",
407 MCSectionMachO::S_SYMBOL_STUBS,
408 16, SectionKind::getText());
Bob Wilson29e06692009-09-30 22:25:37 +0000409 OutStreamer.SwitchSection(sect);
410 }
Bob Wilson63db5942010-07-30 19:55:47 +0000411 const MCSection *StaticInitSect =
412 OutContext.getMachOSection("__TEXT", "__StaticInit",
413 MCSectionMachO::S_REGULAR |
414 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
415 SectionKind::getText());
416 OutStreamer.SwitchSection(StaticInitSect);
Bob Wilson0fb34682009-09-30 00:23:42 +0000417 }
418 }
419
Jim Grosbache5165492009-11-09 00:11:35 +0000420 // Use unified assembler syntax.
Jason W Kimafd1cc22010-09-30 02:45:56 +0000421 OutStreamer.EmitAssemblerFlag(MCAF_SyntaxUnified);
Anton Korobeynikovd61eca52009-06-17 23:43:18 +0000422
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000423 // Emit ARM Build Attributes
424 if (Subtarget->isTargetELF()) {
425 // CPU Type
Anton Korobeynikovd260c242009-06-01 19:03:17 +0000426 std::string CPUString = Subtarget->getCPUString();
427 if (CPUString != "generic")
Chris Lattner9d7efd32010-04-04 07:05:53 +0000428 OutStreamer.EmitRawText("\t.cpu " + Twine(CPUString));
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000429
430 // FIXME: Emit FPU type
431 if (Subtarget->hasVFP2())
Chris Lattner9d7efd32010-04-04 07:05:53 +0000432 OutStreamer.EmitRawText("\t.eabi_attribute " +
433 Twine(ARMBuildAttrs::VFP_arch) + ", 2");
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000434
435 // Signal various FP modes.
Chris Lattner9d7efd32010-04-04 07:05:53 +0000436 if (!UnsafeFPMath) {
437 OutStreamer.EmitRawText("\t.eabi_attribute " +
438 Twine(ARMBuildAttrs::ABI_FP_denormal) + ", 1");
439 OutStreamer.EmitRawText("\t.eabi_attribute " +
440 Twine(ARMBuildAttrs::ABI_FP_exceptions) + ", 1");
441 }
Jim Grosbachb0739b72010-09-02 01:02:06 +0000442
Evan Cheng60108e92010-07-15 22:07:12 +0000443 if (NoInfsFPMath && NoNaNsFPMath)
Chris Lattner9d7efd32010-04-04 07:05:53 +0000444 OutStreamer.EmitRawText("\t.eabi_attribute " +
445 Twine(ARMBuildAttrs::ABI_FP_number_model)+ ", 1");
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000446 else
Chris Lattner9d7efd32010-04-04 07:05:53 +0000447 OutStreamer.EmitRawText("\t.eabi_attribute " +
448 Twine(ARMBuildAttrs::ABI_FP_number_model)+ ", 3");
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000449
450 // 8-bytes alignment stuff.
Chris Lattner9d7efd32010-04-04 07:05:53 +0000451 OutStreamer.EmitRawText("\t.eabi_attribute " +
452 Twine(ARMBuildAttrs::ABI_align8_needed) + ", 1");
453 OutStreamer.EmitRawText("\t.eabi_attribute " +
454 Twine(ARMBuildAttrs::ABI_align8_preserved) + ", 1");
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000455
Anton Korobeynikov567d14f2009-08-05 19:04:42 +0000456 // Hard float. Use both S and D registers and conform to AAPCS-VFP.
Chris Lattner9d7efd32010-04-04 07:05:53 +0000457 if (Subtarget->isAAPCS_ABI() && FloatABIType == FloatABI::Hard) {
458 OutStreamer.EmitRawText("\t.eabi_attribute " +
459 Twine(ARMBuildAttrs::ABI_HardFP_use) + ", 3");
460 OutStreamer.EmitRawText("\t.eabi_attribute " +
461 Twine(ARMBuildAttrs::ABI_VFP_args) + ", 1");
462 }
Anton Korobeynikov88ce6672009-05-23 19:51:20 +0000463 // FIXME: Should we signal R9 usage?
464 }
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000465}
466
Anton Korobeynikov0f3cc652008-08-07 09:54:23 +0000467
Chris Lattner4a071d62009-10-19 17:59:19 +0000468void ARMAsmPrinter::EmitEndOfAsmFile(Module &M) {
Evan Cheng5be54b02007-01-19 19:25:36 +0000469 if (Subtarget->isTargetDarwin()) {
Chris Lattnerf61159b2009-08-03 22:18:15 +0000470 // All darwin targets use mach-o.
Dan Gohman0d805c32010-04-17 16:44:48 +0000471 const TargetLoweringObjectFileMachO &TLOFMacho =
472 static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattnerb0f294c2009-10-19 18:38:33 +0000473 MachineModuleInfoMachO &MMIMacho =
474 MMI->getObjFileInfo<MachineModuleInfoMachO>();
Jim Grosbache9952212009-09-04 01:38:51 +0000475
Evan Chenga8e29892007-01-19 07:51:42 +0000476 // Output non-lazy-pointers for external and common global variables.
Chris Lattnerb0f294c2009-10-19 18:38:33 +0000477 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetGVStubList();
Bill Wendlingcebae362010-03-10 22:34:10 +0000478
Chris Lattnerb0f294c2009-10-19 18:38:33 +0000479 if (!Stubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000480 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000481 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattnerc076a972009-08-10 18:01:34 +0000482 EmitAlignment(2);
Chris Lattnerb0f294c2009-10-19 18:38:33 +0000483 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Bill Wendlingbecd83e2010-03-09 00:40:17 +0000484 // L_foo$stub:
485 OutStreamer.EmitLabel(Stubs[i].first);
486 // .indirect_symbol _foo
Bill Wendling52a50e52010-03-11 01:18:13 +0000487 MachineModuleInfoImpl::StubValueTy &MCSym = Stubs[i].second;
488 OutStreamer.EmitSymbolAttribute(MCSym.getPointer(),MCSA_IndirectSymbol);
Bill Wendlingcf6f28d2010-03-09 00:43:34 +0000489
Bill Wendling52a50e52010-03-11 01:18:13 +0000490 if (MCSym.getInt())
Bill Wendlingcf6f28d2010-03-09 00:43:34 +0000491 // External to current translation unit.
492 OutStreamer.EmitIntValue(0, 4/*size*/, 0/*addrspace*/);
493 else
494 // Internal to current translation unit.
Bill Wendling5e1b55d2010-03-31 18:47:10 +0000495 //
Jim Grosbach1b935a32010-09-22 16:45:13 +0000496 // When we place the LSDA into the TEXT section, the type info
497 // pointers need to be indirect and pc-rel. We accomplish this by
498 // using NLPs; however, sometimes the types are local to the file.
499 // We need to fill in the value for the NLP in those cases.
Bill Wendling52a50e52010-03-11 01:18:13 +0000500 OutStreamer.EmitValue(MCSymbolRefExpr::Create(MCSym.getPointer(),
501 OutContext),
Bill Wendlingcf6f28d2010-03-09 00:43:34 +0000502 4/*size*/, 0/*addrspace*/);
Evan Chengae94e592008-12-05 01:06:39 +0000503 }
Bill Wendlingbecd83e2010-03-09 00:40:17 +0000504
505 Stubs.clear();
506 OutStreamer.AddBlankLine();
Evan Chenga8e29892007-01-19 07:51:42 +0000507 }
508
Chris Lattnere4d9ea82009-10-19 18:44:38 +0000509 Stubs = MMIMacho.GetHiddenGVStubList();
510 if (!Stubs.empty()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000511 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattnerf3231de2009-08-10 18:02:16 +0000512 EmitAlignment(2);
Bill Wendlingbecd83e2010-03-09 00:40:17 +0000513 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
514 // L_foo$stub:
515 OutStreamer.EmitLabel(Stubs[i].first);
516 // .long _foo
Bill Wendlingcebae362010-03-10 22:34:10 +0000517 OutStreamer.EmitValue(MCSymbolRefExpr::
518 Create(Stubs[i].second.getPointer(),
519 OutContext),
Bill Wendlingbecd83e2010-03-09 00:40:17 +0000520 4/*size*/, 0/*addrspace*/);
521 }
Bill Wendlingcf6f28d2010-03-09 00:43:34 +0000522
523 Stubs.clear();
524 OutStreamer.AddBlankLine();
Evan Chengae94e592008-12-05 01:06:39 +0000525 }
526
Evan Chenga8e29892007-01-19 07:51:42 +0000527 // Funny Darwin hack: This flag tells the linker that no global symbols
528 // contain code that falls through to other global symbols (e.g. the obvious
529 // implementation of multiple entry points). If this doesn't occur, the
530 // linker can safely perform dead code stripping. Since LLVM never
531 // generates code that does this, it is always safe to set.
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000532 OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
Rafael Espindolab01c4bb2006-07-27 11:38:51 +0000533 }
Rafael Espindola7bc59bc2006-05-14 22:18:28 +0000534}
Anton Korobeynikov0bd89712008-08-17 13:55:10 +0000535
Chris Lattner97f06932009-10-19 20:20:46 +0000536//===----------------------------------------------------------------------===//
537
Jim Grosbach988ce092010-09-18 00:05:05 +0000538static MCSymbol *getPICLabel(const char *Prefix, unsigned FunctionNumber,
539 unsigned LabelId, MCContext &Ctx) {
540
541 MCSymbol *Label = Ctx.GetOrCreateSymbol(Twine(Prefix)
542 + "PC" + Twine(FunctionNumber) + "_" + Twine(LabelId));
543 return Label;
544}
545
Jim Grosbacha2244cb2010-09-22 17:39:48 +0000546void ARMAsmPrinter::EmitJumpTable(const MachineInstr *MI) {
547 unsigned Opcode = MI->getOpcode();
548 int OpNum = 1;
549 if (Opcode == ARM::BR_JTadd)
550 OpNum = 2;
551 else if (Opcode == ARM::BR_JTm)
552 OpNum = 3;
553
554 const MachineOperand &MO1 = MI->getOperand(OpNum);
555 const MachineOperand &MO2 = MI->getOperand(OpNum+1); // Unique Id
556 unsigned JTI = MO1.getIndex();
557
558 // Emit a label for the jump table.
559 MCSymbol *JTISymbol = GetARMJTIPICJumpTableLabel2(JTI, MO2.getImm());
560 OutStreamer.EmitLabel(JTISymbol);
561
562 // Emit each entry of the table.
563 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
564 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
565 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
566
567 for (unsigned i = 0, e = JTBBs.size(); i != e; ++i) {
568 MachineBasicBlock *MBB = JTBBs[i];
569 // Construct an MCExpr for the entry. We want a value of the form:
570 // (BasicBlockAddr - TableBeginAddr)
571 //
572 // For example, a table with entries jumping to basic blocks BB0 and BB1
573 // would look like:
574 // LJTI_0_0:
575 // .word (LBB0 - LJTI_0_0)
576 // .word (LBB1 - LJTI_0_0)
577 const MCExpr *Expr = MCSymbolRefExpr::Create(MBB->getSymbol(), OutContext);
578
579 if (TM.getRelocationModel() == Reloc::PIC_)
580 Expr = MCBinaryExpr::CreateSub(Expr, MCSymbolRefExpr::Create(JTISymbol,
581 OutContext),
582 OutContext);
583 OutStreamer.EmitValue(Expr, 4);
584 }
585}
586
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000587void ARMAsmPrinter::EmitJump2Table(const MachineInstr *MI) {
588 unsigned Opcode = MI->getOpcode();
589 int OpNum = (Opcode == ARM::t2BR_JT) ? 2 : 1;
590 const MachineOperand &MO1 = MI->getOperand(OpNum);
591 const MachineOperand &MO2 = MI->getOperand(OpNum+1); // Unique Id
592 unsigned JTI = MO1.getIndex();
593
594 // Emit a label for the jump table.
595 MCSymbol *JTISymbol = GetARMJTIPICJumpTableLabel2(JTI, MO2.getImm());
596 OutStreamer.EmitLabel(JTISymbol);
597
598 // Emit each entry of the table.
599 const MachineJumpTableInfo *MJTI = MF->getJumpTableInfo();
600 const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
601 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000602 unsigned OffsetWidth = 4;
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000603 if (MI->getOpcode() == ARM::t2TBB)
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000604 OffsetWidth = 1;
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000605 else if (MI->getOpcode() == ARM::t2TBH)
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000606 OffsetWidth = 2;
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000607
608 for (unsigned i = 0, e = JTBBs.size(); i != e; ++i) {
609 MachineBasicBlock *MBB = JTBBs[i];
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000610 const MCExpr *MBBSymbolExpr = MCSymbolRefExpr::Create(MBB->getSymbol(),
611 OutContext);
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000612 // If this isn't a TBB or TBH, the entries are direct branch instructions.
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000613 if (OffsetWidth == 4) {
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000614 MCInst BrInst;
615 BrInst.setOpcode(ARM::t2B);
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000616 BrInst.addOperand(MCOperand::CreateExpr(MBBSymbolExpr));
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000617 OutStreamer.EmitInstruction(BrInst);
618 continue;
619 }
620 // Otherwise it's an offset from the dispatch instruction. Construct an
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000621 // MCExpr for the entry. We want a value of the form:
622 // (BasicBlockAddr - TableBeginAddr) / 2
623 //
624 // For example, a TBB table with entries jumping to basic blocks BB0 and BB1
625 // would look like:
626 // LJTI_0_0:
627 // .byte (LBB0 - LJTI_0_0) / 2
628 // .byte (LBB1 - LJTI_0_0) / 2
629 const MCExpr *Expr =
630 MCBinaryExpr::CreateSub(MBBSymbolExpr,
631 MCSymbolRefExpr::Create(JTISymbol, OutContext),
632 OutContext);
633 Expr = MCBinaryExpr::CreateDiv(Expr, MCConstantExpr::Create(2, OutContext),
634 OutContext);
635 OutStreamer.EmitValue(Expr, OffsetWidth);
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000636 }
Jim Grosbach205a5fa2010-09-22 17:15:35 +0000637
638 // Make sure the instruction that follows TBB is 2-byte aligned.
639 // FIXME: Constant island pass should insert an "ALIGN" instruction instead.
640 if (MI->getOpcode() == ARM::t2TBB)
641 EmitAlignment(1);
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000642}
643
Jim Grosbach2d0f53b2010-09-28 17:05:56 +0000644void ARMAsmPrinter::PrintDebugValueComment(const MachineInstr *MI,
645 raw_ostream &OS) {
646 unsigned NOps = MI->getNumOperands();
647 assert(NOps==4);
648 OS << '\t' << MAI->getCommentString() << "DEBUG_VALUE: ";
649 // cast away const; DIetc do not take const operands for some reason.
650 DIVariable V(const_cast<MDNode *>(MI->getOperand(NOps-1).getMetadata()));
651 OS << V.getName();
652 OS << " <- ";
653 // Frame address. Currently handles register +- offset only.
654 assert(MI->getOperand(0).isReg() && MI->getOperand(1).isImm());
655 OS << '['; printOperand(MI, 0, OS); OS << '+'; printOperand(MI, 1, OS);
656 OS << ']';
657 OS << "+";
658 printOperand(MI, NOps-2, OS);
659}
660
Jim Grosbachb454cda2010-09-29 15:23:40 +0000661void ARMAsmPrinter::EmitInstruction(const MachineInstr *MI) {
Chris Lattner96bc2172009-10-20 00:52:47 +0000662 ARMMCInstLower MCInstLowering(OutContext, *Mang, *this);
Chris Lattner97f06932009-10-19 20:20:46 +0000663 switch (MI->getOpcode()) {
Chris Lattnerc6b8a992009-10-20 05:58:02 +0000664 case ARM::t2MOVi32imm:
665 assert(0 && "Should be lowered by thumb2it pass");
Chris Lattner4d152222009-10-19 22:23:04 +0000666 default: break;
Jim Grosbach2d0f53b2010-09-28 17:05:56 +0000667 case ARM::DBG_VALUE: {
668 if (isVerbose() && OutStreamer.hasRawTextSupport()) {
669 SmallString<128> TmpStr;
670 raw_svector_ostream OS(TmpStr);
671 PrintDebugValueComment(MI, OS);
672 OutStreamer.EmitRawText(StringRef(OS.str()));
673 }
674 return;
675 }
Jim Grosbachfbd18732010-09-17 23:41:53 +0000676 case ARM::tPICADD: {
677 // This is a pseudo op for a label + instruction sequence, which looks like:
678 // LPC0:
679 // add r0, pc
680 // This adds the address of LPC0 to r0.
681
682 // Emit the label.
Jim Grosbach988ce092010-09-18 00:05:05 +0000683 OutStreamer.EmitLabel(getPICLabel(MAI->getPrivateGlobalPrefix(),
684 getFunctionNumber(), MI->getOperand(2).getImm(),
685 OutContext));
Jim Grosbachfbd18732010-09-17 23:41:53 +0000686
687 // Form and emit the add.
688 MCInst AddInst;
689 AddInst.setOpcode(ARM::tADDhirr);
690 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
691 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
692 AddInst.addOperand(MCOperand::CreateReg(ARM::PC));
693 // Add predicate operands.
694 AddInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
695 AddInst.addOperand(MCOperand::CreateReg(0));
696 OutStreamer.EmitInstruction(AddInst);
697 return;
698 }
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000699 case ARM::PICADD: {
Chris Lattner4d152222009-10-19 22:23:04 +0000700 // This is a pseudo op for a label + instruction sequence, which looks like:
701 // LPC0:
702 // add r0, pc, r0
703 // This adds the address of LPC0 to r0.
Jim Grosbachb0739b72010-09-02 01:02:06 +0000704
Chris Lattner4d152222009-10-19 22:23:04 +0000705 // Emit the label.
Jim Grosbach988ce092010-09-18 00:05:05 +0000706 OutStreamer.EmitLabel(getPICLabel(MAI->getPrivateGlobalPrefix(),
707 getFunctionNumber(), MI->getOperand(2).getImm(),
708 OutContext));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000709
Jim Grosbachf3f09522010-09-14 21:05:34 +0000710 // Form and emit the add.
Chris Lattner4d152222009-10-19 22:23:04 +0000711 MCInst AddInst;
712 AddInst.setOpcode(ARM::ADDrr);
713 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
714 AddInst.addOperand(MCOperand::CreateReg(ARM::PC));
715 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(1).getReg()));
Jim Grosbach5b46d622010-09-14 21:28:17 +0000716 // Add predicate operands.
717 AddInst.addOperand(MCOperand::CreateImm(MI->getOperand(3).getImm()));
718 AddInst.addOperand(MCOperand::CreateReg(MI->getOperand(4).getReg()));
719 // Add 's' bit operand (always reg0 for this)
720 AddInst.addOperand(MCOperand::CreateReg(0));
Chris Lattner850d2e22010-02-03 01:16:28 +0000721 OutStreamer.EmitInstruction(AddInst);
Chris Lattner4d152222009-10-19 22:23:04 +0000722 return;
723 }
Jim Grosbacha28abbe2010-09-17 16:25:52 +0000724 case ARM::PICSTR:
725 case ARM::PICSTRB:
726 case ARM::PICSTRH:
727 case ARM::PICLDR:
728 case ARM::PICLDRB:
729 case ARM::PICLDRH:
730 case ARM::PICLDRSB:
731 case ARM::PICLDRSH: {
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000732 // This is a pseudo op for a label + instruction sequence, which looks like:
733 // LPC0:
Jim Grosbacha28abbe2010-09-17 16:25:52 +0000734 // OP r0, [pc, r0]
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000735 // The LCP0 label is referenced by a constant pool entry in order to get
736 // a PC-relative address at the ldr instruction.
737
738 // Emit the label.
Jim Grosbach988ce092010-09-18 00:05:05 +0000739 OutStreamer.EmitLabel(getPICLabel(MAI->getPrivateGlobalPrefix(),
740 getFunctionNumber(), MI->getOperand(2).getImm(),
741 OutContext));
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000742
743 // Form and emit the load
Jim Grosbacha28abbe2010-09-17 16:25:52 +0000744 unsigned Opcode;
745 switch (MI->getOpcode()) {
746 default:
747 llvm_unreachable("Unexpected opcode!");
748 case ARM::PICSTR: Opcode = ARM::STR; break;
749 case ARM::PICSTRB: Opcode = ARM::STRB; break;
750 case ARM::PICSTRH: Opcode = ARM::STRH; break;
751 case ARM::PICLDR: Opcode = ARM::LDR; break;
752 case ARM::PICLDRB: Opcode = ARM::LDRB; break;
753 case ARM::PICLDRH: Opcode = ARM::LDRH; break;
754 case ARM::PICLDRSB: Opcode = ARM::LDRSB; break;
755 case ARM::PICLDRSH: Opcode = ARM::LDRSH; break;
756 }
757 MCInst LdStInst;
758 LdStInst.setOpcode(Opcode);
759 LdStInst.addOperand(MCOperand::CreateReg(MI->getOperand(0).getReg()));
760 LdStInst.addOperand(MCOperand::CreateReg(ARM::PC));
761 LdStInst.addOperand(MCOperand::CreateReg(MI->getOperand(1).getReg()));
762 LdStInst.addOperand(MCOperand::CreateImm(0));
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000763 // Add predicate operands.
Jim Grosbacha28abbe2010-09-17 16:25:52 +0000764 LdStInst.addOperand(MCOperand::CreateImm(MI->getOperand(3).getImm()));
765 LdStInst.addOperand(MCOperand::CreateReg(MI->getOperand(4).getReg()));
766 OutStreamer.EmitInstruction(LdStInst);
Jim Grosbachb74ca9d2010-09-16 17:43:25 +0000767
768 return;
769 }
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000770 case ARM::CONSTPOOL_ENTRY: {
Chris Lattnera70e6442009-10-19 22:33:05 +0000771 /// CONSTPOOL_ENTRY - This instruction represents a floating constant pool
772 /// in the function. The first operand is the ID# for this instruction, the
773 /// second is the index into the MachineConstantPool that this is, the third
774 /// is the size in bytes of this constant pool entry.
775 unsigned LabelId = (unsigned)MI->getOperand(0).getImm();
776 unsigned CPIdx = (unsigned)MI->getOperand(1).getIndex();
777
778 EmitAlignment(2);
Chris Lattner1b46f432010-01-23 07:00:21 +0000779 OutStreamer.EmitLabel(GetCPISymbol(LabelId));
Chris Lattnera70e6442009-10-19 22:33:05 +0000780
781 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx];
782 if (MCPE.isMachineConstantPoolEntry())
783 EmitMachineConstantPoolValue(MCPE.Val.MachineCPVal);
784 else
785 EmitGlobalConstant(MCPE.Val.ConstVal);
Jim Grosbachb0739b72010-09-02 01:02:06 +0000786
Chris Lattnera70e6442009-10-19 22:33:05 +0000787 return;
788 }
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000789 case ARM::MOVi2pieces: {
790 // FIXME: We'd like to remove the asm string in the .td file, but the
Chris Lattner017d9472009-10-20 00:40:56 +0000791 // This is a hack that lowers as a two instruction sequence.
792 unsigned DstReg = MI->getOperand(0).getReg();
793 unsigned ImmVal = (unsigned)MI->getOperand(1).getImm();
794
795 unsigned SOImmValV1 = ARM_AM::getSOImmTwoPartFirst(ImmVal);
796 unsigned SOImmValV2 = ARM_AM::getSOImmTwoPartSecond(ImmVal);
Jim Grosbachb0739b72010-09-02 01:02:06 +0000797
Chris Lattner017d9472009-10-20 00:40:56 +0000798 {
799 MCInst TmpInst;
800 TmpInst.setOpcode(ARM::MOVi);
801 TmpInst.addOperand(MCOperand::CreateReg(DstReg));
802 TmpInst.addOperand(MCOperand::CreateImm(SOImmValV1));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000803
Chris Lattner017d9472009-10-20 00:40:56 +0000804 // Predicate.
805 TmpInst.addOperand(MCOperand::CreateImm(MI->getOperand(2).getImm()));
806 TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(3).getReg()));
Chris Lattner233917c2009-10-20 00:46:11 +0000807
808 TmpInst.addOperand(MCOperand::CreateReg(0)); // cc_out
Chris Lattner850d2e22010-02-03 01:16:28 +0000809 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner017d9472009-10-20 00:40:56 +0000810 }
811
812 {
813 MCInst TmpInst;
814 TmpInst.setOpcode(ARM::ORRri);
815 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // dstreg
816 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // inreg
817 TmpInst.addOperand(MCOperand::CreateImm(SOImmValV2)); // so_imm
818 // Predicate.
819 TmpInst.addOperand(MCOperand::CreateImm(MI->getOperand(2).getImm()));
820 TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(3).getReg()));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000821
Chris Lattner017d9472009-10-20 00:40:56 +0000822 TmpInst.addOperand(MCOperand::CreateReg(0)); // cc_out
Chris Lattner850d2e22010-02-03 01:16:28 +0000823 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner017d9472009-10-20 00:40:56 +0000824 }
Jim Grosbachb0739b72010-09-02 01:02:06 +0000825 return;
Chris Lattner017d9472009-10-20 00:40:56 +0000826 }
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000827 case ARM::MOVi32imm: {
828 // FIXME: We'd like to remove the asm string in the .td file, but the
Chris Lattner161dcbf2009-10-20 01:11:37 +0000829 // This is a hack that lowers as a two instruction sequence.
830 unsigned DstReg = MI->getOperand(0).getReg();
Rafael Espindola18c10212010-05-12 05:16:34 +0000831 const MachineOperand &MO = MI->getOperand(1);
832 MCOperand V1, V2;
833 if (MO.isImm()) {
834 unsigned ImmVal = (unsigned)MI->getOperand(1).getImm();
835 V1 = MCOperand::CreateImm(ImmVal & 65535);
836 V2 = MCOperand::CreateImm(ImmVal >> 16);
837 } else if (MO.isGlobal()) {
Jim Grosbachc686e332010-09-17 18:25:25 +0000838 MCSymbol *Symbol = MCInstLowering.GetGlobalAddressSymbol(MO.getGlobal());
Rafael Espindola18c10212010-05-12 05:16:34 +0000839 const MCSymbolRefExpr *SymRef1 =
Duncan Sands34727662010-07-12 08:16:59 +0000840 MCSymbolRefExpr::Create(Symbol,
841 MCSymbolRefExpr::VK_ARM_LO16, OutContext);
Rafael Espindola18c10212010-05-12 05:16:34 +0000842 const MCSymbolRefExpr *SymRef2 =
Duncan Sands34727662010-07-12 08:16:59 +0000843 MCSymbolRefExpr::Create(Symbol,
844 MCSymbolRefExpr::VK_ARM_HI16, OutContext);
Rafael Espindola18c10212010-05-12 05:16:34 +0000845 V1 = MCOperand::CreateExpr(SymRef1);
846 V2 = MCOperand::CreateExpr(SymRef2);
847 } else {
Jim Grosbachf0633e42010-09-22 20:55:15 +0000848 // FIXME: External symbol?
Rafael Espindola18c10212010-05-12 05:16:34 +0000849 MI->dump();
850 llvm_unreachable("cannot handle this operand");
851 }
852
Chris Lattner161dcbf2009-10-20 01:11:37 +0000853 {
854 MCInst TmpInst;
855 TmpInst.setOpcode(ARM::MOVi16);
856 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // dstreg
Rafael Espindola18c10212010-05-12 05:16:34 +0000857 TmpInst.addOperand(V1); // lower16(imm)
Jim Grosbachb0739b72010-09-02 01:02:06 +0000858
Chris Lattner161dcbf2009-10-20 01:11:37 +0000859 // Predicate.
860 TmpInst.addOperand(MCOperand::CreateImm(MI->getOperand(2).getImm()));
861 TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(3).getReg()));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000862
Chris Lattner850d2e22010-02-03 01:16:28 +0000863 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner161dcbf2009-10-20 01:11:37 +0000864 }
Jim Grosbachb0739b72010-09-02 01:02:06 +0000865
Chris Lattner161dcbf2009-10-20 01:11:37 +0000866 {
867 MCInst TmpInst;
868 TmpInst.setOpcode(ARM::MOVTi16);
869 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // dstreg
870 TmpInst.addOperand(MCOperand::CreateReg(DstReg)); // srcreg
Rafael Espindola18c10212010-05-12 05:16:34 +0000871 TmpInst.addOperand(V2); // upper16(imm)
Jim Grosbachb0739b72010-09-02 01:02:06 +0000872
Chris Lattner161dcbf2009-10-20 01:11:37 +0000873 // Predicate.
874 TmpInst.addOperand(MCOperand::CreateImm(MI->getOperand(2).getImm()));
875 TmpInst.addOperand(MCOperand::CreateReg(MI->getOperand(3).getReg()));
Jim Grosbachb0739b72010-09-02 01:02:06 +0000876
Chris Lattner850d2e22010-02-03 01:16:28 +0000877 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner161dcbf2009-10-20 01:11:37 +0000878 }
Jim Grosbachb0739b72010-09-02 01:02:06 +0000879
Chris Lattner161dcbf2009-10-20 01:11:37 +0000880 return;
881 }
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000882 case ARM::t2TBB:
883 case ARM::t2TBH:
884 case ARM::t2BR_JT: {
885 // Lower and emit the instruction itself, then the jump table following it.
886 MCInst TmpInst;
887 MCInstLowering.Lower(MI, TmpInst);
888 OutStreamer.EmitInstruction(TmpInst);
Jim Grosbach882ef2b2010-09-21 23:28:16 +0000889 EmitJump2Table(MI);
890 return;
891 }
892 case ARM::tBR_JTr:
893 case ARM::BR_JTr:
894 case ARM::BR_JTm:
Jim Grosbacha2244cb2010-09-22 17:39:48 +0000895 case ARM::BR_JTadd: {
896 // Lower and emit the instruction itself, then the jump table following it.
897 MCInst TmpInst;
898 MCInstLowering.Lower(MI, TmpInst);
899 OutStreamer.EmitInstruction(TmpInst);
900 EmitJumpTable(MI);
901 return;
902 }
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000903 case ARM::TRAP: {
904 // Non-Darwin binutils don't yet support the "trap" mnemonic.
905 // FIXME: Remove this special case when they do.
906 if (!Subtarget->isTargetDarwin()) {
Jim Grosbach78890f42010-10-01 23:21:38 +0000907 //.long 0xe7ffdefe @ trap
Jim Grosbachb2dda4b2010-09-23 19:42:17 +0000908 uint32_t Val = 0xe7ffdefeUL;
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000909 OutStreamer.AddComment("trap");
910 OutStreamer.EmitIntValue(Val, 4);
911 return;
912 }
913 break;
914 }
915 case ARM::tTRAP: {
916 // Non-Darwin binutils don't yet support the "trap" mnemonic.
917 // FIXME: Remove this special case when they do.
918 if (!Subtarget->isTargetDarwin()) {
Jim Grosbach78890f42010-10-01 23:21:38 +0000919 //.short 57086 @ trap
Benjamin Kramerc8ab9eb2010-09-23 18:57:26 +0000920 uint16_t Val = 0xdefe;
Jim Grosbach2e6ae132010-09-23 18:05:37 +0000921 OutStreamer.AddComment("trap");
922 OutStreamer.EmitIntValue(Val, 2);
923 return;
924 }
925 break;
926 }
Jim Grosbach433a5782010-09-24 20:47:58 +0000927 case ARM::t2Int_eh_sjlj_setjmp:
928 case ARM::t2Int_eh_sjlj_setjmp_nofp:
Jim Grosbacha3fbadf2010-09-30 19:53:58 +0000929 case ARM::tInt_eh_sjlj_setjmp: {
Jim Grosbach433a5782010-09-24 20:47:58 +0000930 // Two incoming args: GPR:$src, GPR:$val
931 // mov $val, pc
932 // adds $val, #7
933 // str $val, [$src, #4]
934 // movs r0, #0
935 // b 1f
936 // movs r0, #1
937 // 1:
938 unsigned SrcReg = MI->getOperand(0).getReg();
939 unsigned ValReg = MI->getOperand(1).getReg();
940 MCSymbol *Label = GetARMSJLJEHLabel();
941 {
942 MCInst TmpInst;
943 TmpInst.setOpcode(ARM::tMOVgpr2tgpr);
944 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
945 TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
946 // 's' bit operand
947 TmpInst.addOperand(MCOperand::CreateReg(ARM::CPSR));
948 OutStreamer.AddComment("eh_setjmp begin");
949 OutStreamer.EmitInstruction(TmpInst);
950 }
951 {
952 MCInst TmpInst;
953 TmpInst.setOpcode(ARM::tADDi3);
954 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
955 // 's' bit operand
956 TmpInst.addOperand(MCOperand::CreateReg(ARM::CPSR));
957 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
958 TmpInst.addOperand(MCOperand::CreateImm(7));
959 // Predicate.
960 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
961 TmpInst.addOperand(MCOperand::CreateReg(0));
962 OutStreamer.EmitInstruction(TmpInst);
963 }
964 {
965 MCInst TmpInst;
966 TmpInst.setOpcode(ARM::tSTR);
967 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
968 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
969 // The offset immediate is #4. The operand value is scaled by 4 for the
970 // tSTR instruction.
971 TmpInst.addOperand(MCOperand::CreateImm(1));
972 TmpInst.addOperand(MCOperand::CreateReg(0));
973 // Predicate.
974 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
975 TmpInst.addOperand(MCOperand::CreateReg(0));
976 OutStreamer.EmitInstruction(TmpInst);
977 }
978 {
979 MCInst TmpInst;
980 TmpInst.setOpcode(ARM::tMOVi8);
981 TmpInst.addOperand(MCOperand::CreateReg(ARM::R0));
982 TmpInst.addOperand(MCOperand::CreateReg(ARM::CPSR));
983 TmpInst.addOperand(MCOperand::CreateImm(0));
984 // Predicate.
985 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
986 TmpInst.addOperand(MCOperand::CreateReg(0));
987 OutStreamer.EmitInstruction(TmpInst);
988 }
989 {
990 const MCExpr *SymbolExpr = MCSymbolRefExpr::Create(Label, OutContext);
991 MCInst TmpInst;
992 TmpInst.setOpcode(ARM::tB);
993 TmpInst.addOperand(MCOperand::CreateExpr(SymbolExpr));
994 OutStreamer.EmitInstruction(TmpInst);
995 }
996 {
997 MCInst TmpInst;
998 TmpInst.setOpcode(ARM::tMOVi8);
999 TmpInst.addOperand(MCOperand::CreateReg(ARM::R0));
1000 TmpInst.addOperand(MCOperand::CreateReg(ARM::CPSR));
1001 TmpInst.addOperand(MCOperand::CreateImm(1));
1002 // Predicate.
1003 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1004 TmpInst.addOperand(MCOperand::CreateReg(0));
1005 OutStreamer.AddComment("eh_setjmp end");
1006 OutStreamer.EmitInstruction(TmpInst);
1007 }
1008 OutStreamer.EmitLabel(Label);
1009 return;
1010 }
1011
Jim Grosbach45390082010-09-23 23:33:56 +00001012 case ARM::Int_eh_sjlj_setjmp_nofp:
Jim Grosbacha3fbadf2010-09-30 19:53:58 +00001013 case ARM::Int_eh_sjlj_setjmp: {
Jim Grosbach45390082010-09-23 23:33:56 +00001014 // Two incoming args: GPR:$src, GPR:$val
1015 // add $val, pc, #8
1016 // str $val, [$src, #+4]
1017 // mov r0, #0
1018 // add pc, pc, #0
1019 // mov r0, #1
1020 unsigned SrcReg = MI->getOperand(0).getReg();
1021 unsigned ValReg = MI->getOperand(1).getReg();
1022
1023 {
1024 MCInst TmpInst;
1025 TmpInst.setOpcode(ARM::ADDri);
1026 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
1027 TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
1028 TmpInst.addOperand(MCOperand::CreateImm(8));
1029 // Predicate.
1030 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1031 TmpInst.addOperand(MCOperand::CreateReg(0));
1032 // 's' bit operand (always reg0 for this).
1033 TmpInst.addOperand(MCOperand::CreateReg(0));
1034 OutStreamer.AddComment("eh_setjmp begin");
1035 OutStreamer.EmitInstruction(TmpInst);
1036 }
1037 {
1038 MCInst TmpInst;
1039 TmpInst.setOpcode(ARM::STR);
1040 TmpInst.addOperand(MCOperand::CreateReg(ValReg));
1041 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1042 TmpInst.addOperand(MCOperand::CreateReg(0));
1043 TmpInst.addOperand(MCOperand::CreateImm(4));
1044 // Predicate.
1045 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1046 TmpInst.addOperand(MCOperand::CreateReg(0));
1047 OutStreamer.EmitInstruction(TmpInst);
1048 }
1049 {
1050 MCInst TmpInst;
1051 TmpInst.setOpcode(ARM::MOVi);
1052 TmpInst.addOperand(MCOperand::CreateReg(ARM::R0));
1053 TmpInst.addOperand(MCOperand::CreateImm(0));
1054 // Predicate.
1055 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1056 TmpInst.addOperand(MCOperand::CreateReg(0));
1057 // 's' bit operand (always reg0 for this).
1058 TmpInst.addOperand(MCOperand::CreateReg(0));
1059 OutStreamer.EmitInstruction(TmpInst);
1060 }
1061 {
1062 MCInst TmpInst;
1063 TmpInst.setOpcode(ARM::ADDri);
1064 TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
1065 TmpInst.addOperand(MCOperand::CreateReg(ARM::PC));
1066 TmpInst.addOperand(MCOperand::CreateImm(0));
1067 // Predicate.
1068 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1069 TmpInst.addOperand(MCOperand::CreateReg(0));
1070 // 's' bit operand (always reg0 for this).
1071 TmpInst.addOperand(MCOperand::CreateReg(0));
1072 OutStreamer.EmitInstruction(TmpInst);
1073 }
1074 {
1075 MCInst TmpInst;
1076 TmpInst.setOpcode(ARM::MOVi);
1077 TmpInst.addOperand(MCOperand::CreateReg(ARM::R0));
1078 TmpInst.addOperand(MCOperand::CreateImm(1));
1079 // Predicate.
1080 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1081 TmpInst.addOperand(MCOperand::CreateReg(0));
1082 // 's' bit operand (always reg0 for this).
1083 TmpInst.addOperand(MCOperand::CreateReg(0));
1084 OutStreamer.AddComment("eh_setjmp end");
1085 OutStreamer.EmitInstruction(TmpInst);
1086 }
1087 return;
1088 }
Jim Grosbach5acb3de2010-09-27 21:47:04 +00001089 case ARM::Int_eh_sjlj_longjmp: {
1090 // ldr sp, [$src, #8]
1091 // ldr $scratch, [$src, #4]
1092 // ldr r7, [$src]
1093 // bx $scratch
1094 unsigned SrcReg = MI->getOperand(0).getReg();
1095 unsigned ScratchReg = MI->getOperand(1).getReg();
1096 {
1097 MCInst TmpInst;
1098 TmpInst.setOpcode(ARM::LDR);
1099 TmpInst.addOperand(MCOperand::CreateReg(ARM::SP));
1100 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1101 TmpInst.addOperand(MCOperand::CreateReg(0));
1102 TmpInst.addOperand(MCOperand::CreateImm(8));
1103 // Predicate.
1104 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1105 TmpInst.addOperand(MCOperand::CreateReg(0));
1106 OutStreamer.EmitInstruction(TmpInst);
1107 }
1108 {
1109 MCInst TmpInst;
1110 TmpInst.setOpcode(ARM::LDR);
1111 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1112 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1113 TmpInst.addOperand(MCOperand::CreateReg(0));
1114 TmpInst.addOperand(MCOperand::CreateImm(4));
1115 // Predicate.
1116 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1117 TmpInst.addOperand(MCOperand::CreateReg(0));
1118 OutStreamer.EmitInstruction(TmpInst);
1119 }
1120 {
1121 MCInst TmpInst;
1122 TmpInst.setOpcode(ARM::LDR);
1123 TmpInst.addOperand(MCOperand::CreateReg(ARM::R7));
1124 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1125 TmpInst.addOperand(MCOperand::CreateReg(0));
1126 TmpInst.addOperand(MCOperand::CreateImm(0));
1127 // Predicate.
1128 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1129 TmpInst.addOperand(MCOperand::CreateReg(0));
1130 OutStreamer.EmitInstruction(TmpInst);
1131 }
1132 {
1133 MCInst TmpInst;
1134 TmpInst.setOpcode(ARM::BRIND);
1135 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1136 // Predicate.
1137 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1138 TmpInst.addOperand(MCOperand::CreateReg(0));
1139 OutStreamer.EmitInstruction(TmpInst);
1140 }
1141 return;
1142 }
Jim Grosbach385cc5e2010-09-27 22:28:11 +00001143 case ARM::tInt_eh_sjlj_longjmp: {
1144 // ldr $scratch, [$src, #8]
1145 // mov sp, $scratch
1146 // ldr $scratch, [$src, #4]
1147 // ldr r7, [$src]
1148 // bx $scratch
1149 unsigned SrcReg = MI->getOperand(0).getReg();
1150 unsigned ScratchReg = MI->getOperand(1).getReg();
1151 {
1152 MCInst TmpInst;
1153 TmpInst.setOpcode(ARM::tLDR);
1154 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1155 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1156 // The offset immediate is #8. The operand value is scaled by 4 for the
1157 // tSTR instruction.
1158 TmpInst.addOperand(MCOperand::CreateImm(2));
1159 TmpInst.addOperand(MCOperand::CreateReg(0));
1160 // Predicate.
1161 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1162 TmpInst.addOperand(MCOperand::CreateReg(0));
1163 OutStreamer.EmitInstruction(TmpInst);
1164 }
1165 {
1166 MCInst TmpInst;
1167 TmpInst.setOpcode(ARM::tMOVtgpr2gpr);
1168 TmpInst.addOperand(MCOperand::CreateReg(ARM::SP));
1169 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1170 // Predicate.
1171 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1172 TmpInst.addOperand(MCOperand::CreateReg(0));
1173 OutStreamer.EmitInstruction(TmpInst);
1174 }
1175 {
1176 MCInst TmpInst;
1177 TmpInst.setOpcode(ARM::tLDR);
1178 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1179 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1180 TmpInst.addOperand(MCOperand::CreateImm(1));
1181 TmpInst.addOperand(MCOperand::CreateReg(0));
1182 // Predicate.
1183 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1184 TmpInst.addOperand(MCOperand::CreateReg(0));
1185 OutStreamer.EmitInstruction(TmpInst);
1186 }
1187 {
1188 MCInst TmpInst;
1189 TmpInst.setOpcode(ARM::tLDR);
1190 TmpInst.addOperand(MCOperand::CreateReg(ARM::R7));
1191 TmpInst.addOperand(MCOperand::CreateReg(SrcReg));
1192 TmpInst.addOperand(MCOperand::CreateImm(0));
1193 TmpInst.addOperand(MCOperand::CreateReg(0));
1194 // Predicate.
1195 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1196 TmpInst.addOperand(MCOperand::CreateReg(0));
1197 OutStreamer.EmitInstruction(TmpInst);
1198 }
1199 {
1200 MCInst TmpInst;
1201 TmpInst.setOpcode(ARM::tBX_RET_vararg);
1202 TmpInst.addOperand(MCOperand::CreateReg(ScratchReg));
1203 // Predicate.
1204 TmpInst.addOperand(MCOperand::CreateImm(ARMCC::AL));
1205 TmpInst.addOperand(MCOperand::CreateReg(0));
1206 OutStreamer.EmitInstruction(TmpInst);
1207 }
1208 return;
1209 }
Chris Lattner97f06932009-10-19 20:20:46 +00001210 }
Jim Grosbachb0739b72010-09-02 01:02:06 +00001211
Chris Lattner97f06932009-10-19 20:20:46 +00001212 MCInst TmpInst;
1213 MCInstLowering.Lower(MI, TmpInst);
Chris Lattner850d2e22010-02-03 01:16:28 +00001214 OutStreamer.EmitInstruction(TmpInst);
Chris Lattner97f06932009-10-19 20:20:46 +00001215}
Daniel Dunbar2685a292009-10-20 05:15:36 +00001216
1217//===----------------------------------------------------------------------===//
1218// Target Registry Stuff
1219//===----------------------------------------------------------------------===//
1220
1221static MCInstPrinter *createARMMCInstPrinter(const Target &T,
1222 unsigned SyntaxVariant,
Chris Lattnerd3740872010-04-04 05:04:31 +00001223 const MCAsmInfo &MAI) {
Daniel Dunbar2685a292009-10-20 05:15:36 +00001224 if (SyntaxVariant == 0)
Jim Grosbach74d7e6c2010-09-17 21:33:25 +00001225 return new ARMInstPrinter(MAI);
Daniel Dunbar2685a292009-10-20 05:15:36 +00001226 return 0;
1227}
1228
1229// Force static initialization.
1230extern "C" void LLVMInitializeARMAsmPrinter() {
1231 RegisterAsmPrinter<ARMAsmPrinter> X(TheARMTarget);
1232 RegisterAsmPrinter<ARMAsmPrinter> Y(TheThumbTarget);
1233
1234 TargetRegistry::RegisterMCInstPrinter(TheARMTarget, createARMMCInstPrinter);
1235 TargetRegistry::RegisterMCInstPrinter(TheThumbTarget, createARMMCInstPrinter);
1236}
1237