In Thumb2, direct branches can be encoded as either a "short" conditional branch...
[oota-llvm.git] / lib / Target / ARM / ARMAsmBackend.cpp
1 //===-- ARMAsmBackend.cpp - ARM Assembler Backend -------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "ARM.h"
11 #include "ARMAddressingModes.h"
12 #include "ARMFixupKinds.h"
13 #include "llvm/ADT/Twine.h"
14 #include "llvm/MC/MCAssembler.h"
15 #include "llvm/MC/MCDirectives.h"
16 #include "llvm/MC/MCExpr.h"
17 #include "llvm/MC/MCObjectFormat.h"
18 #include "llvm/MC/MCObjectWriter.h"
19 #include "llvm/MC/MCSectionELF.h"
20 #include "llvm/MC/MCSectionMachO.h"
21 #include "llvm/Object/MachOFormat.h"
22 #include "llvm/Support/ELF.h"
23 #include "llvm/Support/ErrorHandling.h"
24 #include "llvm/Support/raw_ostream.h"
25 #include "llvm/Target/TargetAsmBackend.h"
26 #include "llvm/Target/TargetRegistry.h"
27 using namespace llvm;
28
29 namespace {
30 class ARMAsmBackend : public TargetAsmBackend {
31   bool isThumbMode;  // Currently emitting Thumb code.
32 public:
33   ARMAsmBackend(const Target &T) : TargetAsmBackend(), isThumbMode(false) {}
34
35   bool MayNeedRelaxation(const MCInst &Inst) const;
36
37   void RelaxInstruction(const MCInst &Inst, MCInst &Res) const;
38
39   bool WriteNopData(uint64_t Count, MCObjectWriter *OW) const;
40
41   void HandleAssemblerFlag(MCAssemblerFlag Flag) {
42     switch (Flag) {
43     default: break;
44     case MCAF_Code16:
45       setIsThumb(true);
46       break;
47     case MCAF_Code32:
48       setIsThumb(false);
49       break;
50     }
51   }
52
53   unsigned getPointerSize() const { return 4; }
54   bool isThumb() const { return isThumbMode; }
55   void setIsThumb(bool it) { isThumbMode = it; }
56 };
57 } // end anonymous namespace
58
59 bool ARMAsmBackend::MayNeedRelaxation(const MCInst &Inst) const {
60   // FIXME: Thumb targets, different move constant targets..
61   return false;
62 }
63
64 void ARMAsmBackend::RelaxInstruction(const MCInst &Inst, MCInst &Res) const {
65   assert(0 && "ARMAsmBackend::RelaxInstruction() unimplemented");
66   return;
67 }
68
69 bool ARMAsmBackend::WriteNopData(uint64_t Count, MCObjectWriter *OW) const {
70   if (isThumb()) {
71     assert (((Count & 1) == 0) && "Unaligned Nop data fragment!");
72     // FIXME: 0xbf00 is the ARMv7 value. For v6 and before, we'll need to
73     // use 0x46c0 (which is a 'mov r8, r8' insn).
74     Count /= 2;
75     for (uint64_t i = 0; i != Count; ++i)
76       OW->Write16(0xbf00);
77     return true;
78   }
79   // ARM mode
80   Count /= 4;
81   for (uint64_t i = 0; i != Count; ++i)
82     OW->Write32(0xe1a00000);
83   return true;
84 }
85
86 static unsigned adjustFixupValue(unsigned Kind, uint64_t Value) {
87   switch (Kind) {
88   default:
89     llvm_unreachable("Unknown fixup kind!");
90   case FK_Data_4:
91     return Value;
92   case ARM::fixup_arm_movt_hi16:
93   case ARM::fixup_arm_movw_lo16: {
94     unsigned Hi4 = (Value & 0xF000) >> 12;
95     unsigned Lo12 = Value & 0x0FFF;
96     // inst{19-16} = Hi4;
97     // inst{11-0} = Lo12;
98     Value = (Hi4 << 16) | (Lo12);
99     return Value;
100   }
101   case ARM::fixup_arm_ldst_pcrel_12:
102     // ARM PC-relative values are offset by 8.
103     Value -= 4;
104     // FALLTHROUGH
105   case ARM::fixup_t2_ldst_pcrel_12: {
106     // Offset by 4, adjusted by two due to the half-word ordering of thumb.
107     Value -= 4;
108     bool isAdd = true;
109     if ((int64_t)Value < 0) {
110       Value = -Value;
111       isAdd = false;
112     }
113     assert ((Value < 4096) && "Out of range pc-relative fixup value!");
114     Value |= isAdd << 23;
115
116     // Same addressing mode as fixup_arm_pcrel_10,
117     // but with 16-bit halfwords swapped.
118     if (Kind == ARM::fixup_t2_ldst_pcrel_12) {
119       uint64_t swapped = (Value & 0xFFFF0000) >> 16;
120       swapped |= (Value & 0x0000FFFF) << 16;
121       return swapped;
122     }
123
124     return Value;
125   }
126   case ARM::fixup_arm_adr_pcrel_12: {
127     // ARM PC-relative values are offset by 8.
128     Value -= 8;
129     unsigned opc = 4; // bits {24-21}. Default to add: 0b0100
130     if ((int64_t)Value < 0) {
131       Value = -Value;
132       opc = 2; // 0b0010
133     }
134     assert(ARM_AM::getSOImmVal(Value) != -1 &&
135            "Out of range pc-relative fixup value!");
136     // Encode the immediate and shift the opcode into place.
137     return ARM_AM::getSOImmVal(Value) | (opc << 21);
138   }
139   case ARM::fixup_arm_branch:
140     // These values don't encode the low two bits since they're always zero.
141     // Offset by 8 just as above.
142     return 0xffffff & ((Value - 8) >> 2);
143   case ARM::fixup_t2_uncondbranch: {
144     Value = Value - 4;
145     Value >>= 1; // Low bit is not encoded.
146
147     uint32_t out = 0;
148     bool I =  Value & 0x800000;
149     bool J1 = Value & 0x400000;
150     bool J2 = Value & 0x200000;
151     J1 ^= I;
152     J2 ^= I;
153     
154     out |= I  << 26; // S bit
155     out |= !J1 << 13; // J1 bit
156     out |= !J2 << 11; // J2 bit
157     out |= (Value & 0x1FF800)  << 5; // imm6 field
158     out |= (Value & 0x0007FF);        // imm11 field
159     
160     uint64_t swapped = (out & 0xFFFF0000) >> 16;
161     swapped |= (out & 0x0000FFFF) << 16;
162     return swapped;
163   }
164   case ARM::fixup_t2_condbranch: {
165     Value = Value - 4;
166     Value >>= 1; // Low bit is not encoded.
167     
168     uint64_t out = 0;
169     out |= (Value & 0x80000) << 7; // S bit
170     out |= (Value & 0x40000) >> 7; // J2 bit
171     out |= (Value & 0x20000) >> 4; // J1 bit
172     out |= (Value & 0x1F800) << 5; // imm6 field
173     out |= (Value & 0x007FF);      // imm11 field
174
175     uint32_t swapped = (out & 0xFFFF0000) >> 16;
176     swapped |= (out & 0x0000FFFF) << 16;
177     return swapped;
178   }
179   case ARM::fixup_arm_thumb_bl: {
180     // The value doesn't encode the low bit (always zero) and is offset by
181     // four. The value is encoded into disjoint bit positions in the destination
182     // opcode. x = unchanged, I = immediate value bit, S = sign extension bit
183     //
184     //   BL:  xxxxxSIIIIIIIIII xxxxxIIIIIIIIIII
185     //
186     // Note that the halfwords are stored high first, low second; so we need
187     // to transpose the fixup value here to map properly.
188     unsigned isNeg = (int64_t(Value) < 0) ? 1 : 0;
189     uint32_t Binary = 0;
190     Value = 0x3fffff & ((Value - 4) >> 1);
191     Binary  = (Value & 0x7ff) << 16;    // Low imm11 value.
192     Binary |= (Value & 0x1ffc00) >> 11; // High imm10 value.
193     Binary |= isNeg << 10;              // Sign bit.
194     return Binary;
195   }
196   case ARM::fixup_arm_thumb_blx: {
197     // The value doesn't encode the low two bits (always zero) and is offset by
198     // four (see fixup_arm_thumb_cp). The value is encoded into disjoint bit
199     // positions in the destination opcode. x = unchanged, I = immediate value
200     // bit, S = sign extension bit, 0 = zero.
201     //
202     //   BLX: xxxxxSIIIIIIIIII xxxxxIIIIIIIIII0
203     //
204     // Note that the halfwords are stored high first, low second; so we need
205     // to transpose the fixup value here to map properly.
206     unsigned isNeg = (int64_t(Value) < 0) ? 1 : 0;
207     uint32_t Binary = 0;
208     Value = 0xfffff & ((Value - 2) >> 2);
209     Binary  = (Value & 0x3ff) << 17;    // Low imm10L value.
210     Binary |= (Value & 0xffc00) >> 10;  // High imm10H value.
211     Binary |= isNeg << 10;              // Sign bit.
212     return Binary;
213   }
214   case ARM::fixup_arm_thumb_cp:
215     // Offset by 4, and don't encode the low two bits. Two bytes of that
216     // 'off by 4' is implicitly handled by the half-word ordering of the
217     // Thumb encoding, so we only need to adjust by 2 here.
218     return ((Value - 2) >> 2) & 0xff;
219   case ARM::fixup_arm_thumb_cb: {
220     // Offset by 4 and don't encode the lower bit, which is always 0.
221     uint32_t Binary = (Value - 4) >> 1;
222     return ((Binary & 0x20) << 9) | ((Binary & 0x1f) << 3);
223   }
224   case ARM::fixup_arm_thumb_br:
225     // Offset by 4 and don't encode the lower bit, which is always 0.
226     return ((Value - 4) >> 1) & 0x7ff;
227   case ARM::fixup_arm_thumb_bcc:
228     // Offset by 4 and don't encode the lower bit, which is always 0.
229     return ((Value - 4) >> 1) & 0xff;
230   case ARM::fixup_arm_pcrel_10:
231     Value = Value - 4; // ARM fixups offset by an additional word and don't
232                        // need to adjust for the half-word ordering.
233     // Fall through.
234   case ARM::fixup_t2_pcrel_10: {
235     // Offset by 4, adjusted by two due to the half-word ordering of thumb.
236     Value = Value - 4;
237     bool isAdd = true;
238     if ((int64_t)Value < 0) {
239       Value = -Value;
240       isAdd = false;
241     }
242     // These values don't encode the low two bits since they're always zero.
243     Value >>= 2;
244     assert ((Value < 256) && "Out of range pc-relative fixup value!");
245     Value |= isAdd << 23;
246
247     // Same addressing mode as fixup_arm_pcrel_10,
248     // but with 16-bit halfwords swapped.
249     if (Kind == ARM::fixup_t2_pcrel_10) {
250       uint32_t swapped = (Value & 0xFFFF0000) >> 16;
251       swapped |= (Value & 0x0000FFFF) << 16;
252       return swapped;
253     }
254
255     return Value;
256   }
257   }
258 }
259
260 namespace {
261
262 // FIXME: This should be in a separate file.
263 // ELF is an ELF of course...
264 class ELFARMAsmBackend : public ARMAsmBackend {
265   MCELFObjectFormat Format;
266
267 public:
268   Triple::OSType OSType;
269   ELFARMAsmBackend(const Target &T, Triple::OSType _OSType)
270     : ARMAsmBackend(T), OSType(_OSType) {
271     HasScatteredSymbols = true;
272   }
273
274   virtual const MCObjectFormat &getObjectFormat() const {
275     return Format;
276   }
277
278   void ApplyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
279                   uint64_t Value) const;
280
281   MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
282     return createELFObjectWriter(OS, /*Is64Bit=*/false,
283                                  OSType, ELF::EM_ARM,
284                                  /*IsLittleEndian=*/true,
285                                  /*HasRelocationAddend=*/false);
286   }
287 };
288
289 // FIXME: Raise this to share code between Darwin and ELF.
290 void ELFARMAsmBackend::ApplyFixup(const MCFixup &Fixup, char *Data,
291                                   unsigned DataSize, uint64_t Value) const {
292   unsigned NumBytes = 4;        // FIXME: 2 for Thumb
293   Value = adjustFixupValue(Fixup.getKind(), Value);
294   if (!Value) return;           // Doesn't change encoding.
295
296   unsigned Offset = Fixup.getOffset();
297   assert(Offset % NumBytes == 0 && "Offset mod NumBytes is nonzero!");
298
299   // For each byte of the fragment that the fixup touches, mask in the bits from
300   // the fixup value. The Value has been "split up" into the appropriate
301   // bitfields above.
302   for (unsigned i = 0; i != NumBytes; ++i)
303     Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);
304 }
305
306 // FIXME: This should be in a separate file.
307 class DarwinARMAsmBackend : public ARMAsmBackend {
308   MCMachOObjectFormat Format;
309 public:
310   DarwinARMAsmBackend(const Target &T) : ARMAsmBackend(T) {
311     HasScatteredSymbols = true;
312   }
313
314   virtual const MCObjectFormat &getObjectFormat() const {
315     return Format;
316   }
317
318   void ApplyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
319                   uint64_t Value) const;
320
321   MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
322     // FIXME: Subtarget info should be derived. Force v7 for now.
323     return createMachObjectWriter(OS, /*Is64Bit=*/false,
324                                   object::mach::CTM_ARM,
325                                   object::mach::CSARM_V7,
326                                   /*IsLittleEndian=*/true);
327   }
328
329   virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
330     return false;
331   }
332 };
333
334 /// getFixupKindNumBytes - The number of bytes the fixup may change.
335 static unsigned getFixupKindNumBytes(unsigned Kind) {
336   switch (Kind) {
337   default:
338     llvm_unreachable("Unknown fixup kind!");
339
340   case ARM::fixup_arm_thumb_bcc:
341   case ARM::fixup_arm_thumb_cp:
342     return 1;
343
344   case ARM::fixup_arm_thumb_br:
345   case ARM::fixup_arm_thumb_cb:
346     return 2;
347
348   case ARM::fixup_arm_ldst_pcrel_12:
349   case ARM::fixup_arm_pcrel_10:
350   case ARM::fixup_arm_adr_pcrel_12:
351   case ARM::fixup_arm_branch:
352     return 3;
353
354   case FK_Data_4:
355   case ARM::fixup_t2_ldst_pcrel_12:
356   case ARM::fixup_t2_condbranch:
357   case ARM::fixup_t2_uncondbranch:
358   case ARM::fixup_t2_pcrel_10:
359   case ARM::fixup_arm_thumb_bl:
360   case ARM::fixup_arm_thumb_blx:
361     return 4;
362   }
363 }
364
365 void DarwinARMAsmBackend::ApplyFixup(const MCFixup &Fixup, char *Data,
366                                      unsigned DataSize, uint64_t Value) const {
367   unsigned NumBytes = getFixupKindNumBytes(Fixup.getKind());
368   Value = adjustFixupValue(Fixup.getKind(), Value);
369   if (!Value) return;           // Doesn't change encoding.
370
371   unsigned Offset = Fixup.getOffset();
372   assert(Offset + NumBytes <= DataSize && "Invalid fixup offset!");
373
374   // For each byte of the fragment that the fixup touches, mask in the
375   // bits from the fixup value.
376   for (unsigned i = 0; i != NumBytes; ++i)
377     Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);
378 }
379
380 } // end anonymous namespace
381
382 TargetAsmBackend *llvm::createARMAsmBackend(const Target &T,
383                                             const std::string &TT) {
384   switch (Triple(TT).getOS()) {
385   case Triple::Darwin:
386     return new DarwinARMAsmBackend(T);
387   case Triple::MinGW32:
388   case Triple::Cygwin:
389   case Triple::Win32:
390     assert(0 && "Windows not supported on ARM");
391   default:
392     return new ELFARMAsmBackend(T, Triple(TT).getOS());
393   }
394 }