Follow-up for r217020: actually commit the fix for PR20800,
[oota-llvm.git] / lib / Target / X86 / MCTargetDesc / X86AsmBackend.cpp
1 //===-- X86AsmBackend.cpp - X86 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 "MCTargetDesc/X86BaseInfo.h"
11 #include "MCTargetDesc/X86FixupKinds.h"
12 #include "llvm/ADT/StringSwitch.h"
13 #include "llvm/MC/MCAsmBackend.h"
14 #include "llvm/MC/MCAssembler.h"
15 #include "llvm/MC/MCELFObjectWriter.h"
16 #include "llvm/MC/MCExpr.h"
17 #include "llvm/MC/MCFixupKindInfo.h"
18 #include "llvm/MC/MCMachObjectWriter.h"
19 #include "llvm/MC/MCObjectWriter.h"
20 #include "llvm/MC/MCSectionCOFF.h"
21 #include "llvm/MC/MCSectionELF.h"
22 #include "llvm/MC/MCSectionMachO.h"
23 #include "llvm/Support/CommandLine.h"
24 #include "llvm/Support/ELF.h"
25 #include "llvm/Support/ErrorHandling.h"
26 #include "llvm/Support/MachO.h"
27 #include "llvm/Support/TargetRegistry.h"
28 #include "llvm/Support/raw_ostream.h"
29 using namespace llvm;
30
31 // Option to allow disabling arithmetic relaxation to workaround PR9807, which
32 // is useful when running bitwise comparison experiments on Darwin. We should be
33 // able to remove this once PR9807 is resolved.
34 static cl::opt<bool>
35 MCDisableArithRelaxation("mc-x86-disable-arith-relaxation",
36          cl::desc("Disable relaxation of arithmetic instruction for X86"));
37
38 static unsigned getFixupKindLog2Size(unsigned Kind) {
39   switch (Kind) {
40   default:
41     llvm_unreachable("invalid fixup kind!");
42   case FK_PCRel_1:
43   case FK_SecRel_1:
44   case FK_Data_1:
45     return 0;
46   case FK_PCRel_2:
47   case FK_SecRel_2:
48   case FK_Data_2:
49     return 1;
50   case FK_PCRel_4:
51   case X86::reloc_riprel_4byte:
52   case X86::reloc_riprel_4byte_movq_load:
53   case X86::reloc_signed_4byte:
54   case X86::reloc_global_offset_table:
55   case FK_SecRel_4:
56   case FK_Data_4:
57     return 2;
58   case FK_PCRel_8:
59   case FK_SecRel_8:
60   case FK_Data_8:
61   case X86::reloc_global_offset_table8:
62     return 3;
63   }
64 }
65
66 namespace {
67
68 class X86ELFObjectWriter : public MCELFObjectTargetWriter {
69 public:
70   X86ELFObjectWriter(bool is64Bit, uint8_t OSABI, uint16_t EMachine,
71                      bool HasRelocationAddend, bool foobar)
72     : MCELFObjectTargetWriter(is64Bit, OSABI, EMachine, HasRelocationAddend) {}
73 };
74
75 class X86AsmBackend : public MCAsmBackend {
76   const StringRef CPU;
77   bool HasNopl;
78   const uint64_t MaxNopLength;
79 public:
80   X86AsmBackend(const Target &T, StringRef _CPU)
81     : MCAsmBackend(), CPU(_CPU), MaxNopLength(_CPU == "slm" ? 7 : 15) {
82     HasNopl = CPU != "generic" && CPU != "i386" && CPU != "i486" &&
83               CPU != "i586" && CPU != "pentium" && CPU != "pentium-mmx" &&
84               CPU != "i686" && CPU != "k6" && CPU != "k6-2" && CPU != "k6-3" &&
85               CPU != "geode" && CPU != "winchip-c6" && CPU != "winchip2" &&
86               CPU != "c3" && CPU != "c3-2";
87   }
88
89   unsigned getNumFixupKinds() const override {
90     return X86::NumTargetFixupKinds;
91   }
92
93   const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const override {
94     const static MCFixupKindInfo Infos[X86::NumTargetFixupKinds] = {
95       { "reloc_riprel_4byte", 0, 4 * 8, MCFixupKindInfo::FKF_IsPCRel },
96       { "reloc_riprel_4byte_movq_load", 0, 4 * 8, MCFixupKindInfo::FKF_IsPCRel},
97       { "reloc_signed_4byte", 0, 4 * 8, 0},
98       { "reloc_global_offset_table", 0, 4 * 8, 0}
99     };
100
101     if (Kind < FirstTargetFixupKind)
102       return MCAsmBackend::getFixupKindInfo(Kind);
103
104     assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() &&
105            "Invalid kind!");
106     return Infos[Kind - FirstTargetFixupKind];
107   }
108
109   void applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
110                   uint64_t Value, bool IsPCRel) const override {
111     unsigned Size = 1 << getFixupKindLog2Size(Fixup.getKind());
112
113     assert(Fixup.getOffset() + Size <= DataSize &&
114            "Invalid fixup offset!");
115
116     // Check that uppper bits are either all zeros or all ones.
117     // Specifically ignore overflow/underflow as long as the leakage is
118     // limited to the lower bits. This is to remain compatible with
119     // other assemblers.
120     assert(isIntN(Size * 8 + 1, Value) &&
121            "Value does not fit in the Fixup field");
122
123     for (unsigned i = 0; i != Size; ++i)
124       Data[Fixup.getOffset() + i] = uint8_t(Value >> (i * 8));
125   }
126
127   bool mayNeedRelaxation(const MCInst &Inst) const override;
128
129   bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
130                             const MCRelaxableFragment *DF,
131                             const MCAsmLayout &Layout) const override;
132
133   void relaxInstruction(const MCInst &Inst, MCInst &Res) const override;
134
135   bool writeNopData(uint64_t Count, MCObjectWriter *OW) const override;
136 };
137 } // end anonymous namespace
138
139 static unsigned getRelaxedOpcodeBranch(unsigned Op) {
140   switch (Op) {
141   default:
142     return Op;
143
144   case X86::JAE_1: return X86::JAE_4;
145   case X86::JA_1:  return X86::JA_4;
146   case X86::JBE_1: return X86::JBE_4;
147   case X86::JB_1:  return X86::JB_4;
148   case X86::JE_1:  return X86::JE_4;
149   case X86::JGE_1: return X86::JGE_4;
150   case X86::JG_1:  return X86::JG_4;
151   case X86::JLE_1: return X86::JLE_4;
152   case X86::JL_1:  return X86::JL_4;
153   case X86::JMP_1: return X86::JMP_4;
154   case X86::JNE_1: return X86::JNE_4;
155   case X86::JNO_1: return X86::JNO_4;
156   case X86::JNP_1: return X86::JNP_4;
157   case X86::JNS_1: return X86::JNS_4;
158   case X86::JO_1:  return X86::JO_4;
159   case X86::JP_1:  return X86::JP_4;
160   case X86::JS_1:  return X86::JS_4;
161   }
162 }
163
164 static unsigned getRelaxedOpcodeArith(unsigned Op) {
165   switch (Op) {
166   default:
167     return Op;
168
169     // IMUL
170   case X86::IMUL16rri8: return X86::IMUL16rri;
171   case X86::IMUL16rmi8: return X86::IMUL16rmi;
172   case X86::IMUL32rri8: return X86::IMUL32rri;
173   case X86::IMUL32rmi8: return X86::IMUL32rmi;
174   case X86::IMUL64rri8: return X86::IMUL64rri32;
175   case X86::IMUL64rmi8: return X86::IMUL64rmi32;
176
177     // AND
178   case X86::AND16ri8: return X86::AND16ri;
179   case X86::AND16mi8: return X86::AND16mi;
180   case X86::AND32ri8: return X86::AND32ri;
181   case X86::AND32mi8: return X86::AND32mi;
182   case X86::AND64ri8: return X86::AND64ri32;
183   case X86::AND64mi8: return X86::AND64mi32;
184
185     // OR
186   case X86::OR16ri8: return X86::OR16ri;
187   case X86::OR16mi8: return X86::OR16mi;
188   case X86::OR32ri8: return X86::OR32ri;
189   case X86::OR32mi8: return X86::OR32mi;
190   case X86::OR64ri8: return X86::OR64ri32;
191   case X86::OR64mi8: return X86::OR64mi32;
192
193     // XOR
194   case X86::XOR16ri8: return X86::XOR16ri;
195   case X86::XOR16mi8: return X86::XOR16mi;
196   case X86::XOR32ri8: return X86::XOR32ri;
197   case X86::XOR32mi8: return X86::XOR32mi;
198   case X86::XOR64ri8: return X86::XOR64ri32;
199   case X86::XOR64mi8: return X86::XOR64mi32;
200
201     // ADD
202   case X86::ADD16ri8: return X86::ADD16ri;
203   case X86::ADD16mi8: return X86::ADD16mi;
204   case X86::ADD32ri8: return X86::ADD32ri;
205   case X86::ADD32mi8: return X86::ADD32mi;
206   case X86::ADD64ri8: return X86::ADD64ri32;
207   case X86::ADD64mi8: return X86::ADD64mi32;
208
209     // SUB
210   case X86::SUB16ri8: return X86::SUB16ri;
211   case X86::SUB16mi8: return X86::SUB16mi;
212   case X86::SUB32ri8: return X86::SUB32ri;
213   case X86::SUB32mi8: return X86::SUB32mi;
214   case X86::SUB64ri8: return X86::SUB64ri32;
215   case X86::SUB64mi8: return X86::SUB64mi32;
216
217     // CMP
218   case X86::CMP16ri8: return X86::CMP16ri;
219   case X86::CMP16mi8: return X86::CMP16mi;
220   case X86::CMP32ri8: return X86::CMP32ri;
221   case X86::CMP32mi8: return X86::CMP32mi;
222   case X86::CMP64ri8: return X86::CMP64ri32;
223   case X86::CMP64mi8: return X86::CMP64mi32;
224
225     // PUSH
226   case X86::PUSH32i8:  return X86::PUSHi32;
227   case X86::PUSH16i8:  return X86::PUSHi16;
228   case X86::PUSH64i8:  return X86::PUSH64i32;
229   case X86::PUSH64i16: return X86::PUSH64i32;
230   }
231 }
232
233 static unsigned getRelaxedOpcode(unsigned Op) {
234   unsigned R = getRelaxedOpcodeArith(Op);
235   if (R != Op)
236     return R;
237   return getRelaxedOpcodeBranch(Op);
238 }
239
240 bool X86AsmBackend::mayNeedRelaxation(const MCInst &Inst) const {
241   // Branches can always be relaxed.
242   if (getRelaxedOpcodeBranch(Inst.getOpcode()) != Inst.getOpcode())
243     return true;
244
245   if (MCDisableArithRelaxation)
246     return false;
247
248   // Check if this instruction is ever relaxable.
249   if (getRelaxedOpcodeArith(Inst.getOpcode()) == Inst.getOpcode())
250     return false;
251
252
253   // Check if it has an expression and is not RIP relative.
254   bool hasExp = false;
255   bool hasRIP = false;
256   for (unsigned i = 0; i < Inst.getNumOperands(); ++i) {
257     const MCOperand &Op = Inst.getOperand(i);
258     if (Op.isExpr())
259       hasExp = true;
260
261     if (Op.isReg() && Op.getReg() == X86::RIP)
262       hasRIP = true;
263   }
264
265   // FIXME: Why exactly do we need the !hasRIP? Is it just a limitation on
266   // how we do relaxations?
267   return hasExp && !hasRIP;
268 }
269
270 bool X86AsmBackend::fixupNeedsRelaxation(const MCFixup &Fixup,
271                                          uint64_t Value,
272                                          const MCRelaxableFragment *DF,
273                                          const MCAsmLayout &Layout) const {
274   // Relax if the value is too big for a (signed) i8.
275   return int64_t(Value) != int64_t(int8_t(Value));
276 }
277
278 // FIXME: Can tblgen help at all here to verify there aren't other instructions
279 // we can relax?
280 void X86AsmBackend::relaxInstruction(const MCInst &Inst, MCInst &Res) const {
281   // The only relaxations X86 does is from a 1byte pcrel to a 4byte pcrel.
282   unsigned RelaxedOp = getRelaxedOpcode(Inst.getOpcode());
283
284   if (RelaxedOp == Inst.getOpcode()) {
285     SmallString<256> Tmp;
286     raw_svector_ostream OS(Tmp);
287     Inst.dump_pretty(OS);
288     OS << "\n";
289     report_fatal_error("unexpected instruction to relax: " + OS.str());
290   }
291
292   Res = Inst;
293   Res.setOpcode(RelaxedOp);
294 }
295
296 /// \brief Write a sequence of optimal nops to the output, covering \p Count
297 /// bytes.
298 /// \return - true on success, false on failure
299 bool X86AsmBackend::writeNopData(uint64_t Count, MCObjectWriter *OW) const {
300   static const uint8_t Nops[10][10] = {
301     // nop
302     {0x90},
303     // xchg %ax,%ax
304     {0x66, 0x90},
305     // nopl (%[re]ax)
306     {0x0f, 0x1f, 0x00},
307     // nopl 0(%[re]ax)
308     {0x0f, 0x1f, 0x40, 0x00},
309     // nopl 0(%[re]ax,%[re]ax,1)
310     {0x0f, 0x1f, 0x44, 0x00, 0x00},
311     // nopw 0(%[re]ax,%[re]ax,1)
312     {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
313     // nopl 0L(%[re]ax)
314     {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
315     // nopl 0L(%[re]ax,%[re]ax,1)
316     {0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
317     // nopw 0L(%[re]ax,%[re]ax,1)
318     {0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
319     // nopw %cs:0L(%[re]ax,%[re]ax,1)
320     {0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
321   };
322
323   // This CPU doesn't support long nops. If needed add more.
324   // FIXME: Can we get this from the subtarget somehow?
325   // FIXME: We could generated something better than plain 0x90.
326   if (!HasNopl) {
327     for (uint64_t i = 0; i < Count; ++i)
328       OW->Write8(0x90);
329     return true;
330   }
331
332   // 15 is the longest single nop instruction.  Emit as many 15-byte nops as
333   // needed, then emit a nop of the remaining length.
334   do {
335     const uint8_t ThisNopLength = (uint8_t) std::min(Count, MaxNopLength);
336     const uint8_t Prefixes = ThisNopLength <= 10 ? 0 : ThisNopLength - 10;
337     for (uint8_t i = 0; i < Prefixes; i++)
338       OW->Write8(0x66);
339     const uint8_t Rest = ThisNopLength - Prefixes;
340     for (uint8_t i = 0; i < Rest; i++)
341       OW->Write8(Nops[Rest - 1][i]);
342     Count -= ThisNopLength;
343   } while (Count != 0);
344
345   return true;
346 }
347
348 /* *** */
349
350 namespace {
351
352 class ELFX86AsmBackend : public X86AsmBackend {
353 public:
354   uint8_t OSABI;
355   ELFX86AsmBackend(const Target &T, uint8_t _OSABI, StringRef CPU)
356       : X86AsmBackend(T, CPU), OSABI(_OSABI) {}
357 };
358
359 class ELFX86_32AsmBackend : public ELFX86AsmBackend {
360 public:
361   ELFX86_32AsmBackend(const Target &T, uint8_t OSABI, StringRef CPU)
362     : ELFX86AsmBackend(T, OSABI, CPU) {}
363
364   MCObjectWriter *createObjectWriter(raw_ostream &OS) const override {
365     return createX86ELFObjectWriter(OS, /*IsELF64*/ false, OSABI, ELF::EM_386);
366   }
367 };
368
369 class ELFX86_X32AsmBackend : public ELFX86AsmBackend {
370 public:
371   ELFX86_X32AsmBackend(const Target &T, uint8_t OSABI, StringRef CPU)
372       : ELFX86AsmBackend(T, OSABI, CPU) {}
373
374   MCObjectWriter *createObjectWriter(raw_ostream &OS) const override {
375     return createX86ELFObjectWriter(OS, /*IsELF64*/ false, OSABI,
376                                     ELF::EM_X86_64);
377   }
378 };
379
380 class ELFX86_64AsmBackend : public ELFX86AsmBackend {
381 public:
382   ELFX86_64AsmBackend(const Target &T, uint8_t OSABI, StringRef CPU)
383     : ELFX86AsmBackend(T, OSABI, CPU) {}
384
385   MCObjectWriter *createObjectWriter(raw_ostream &OS) const override {
386     return createX86ELFObjectWriter(OS, /*IsELF64*/ true, OSABI, ELF::EM_X86_64);
387   }
388 };
389
390 class WindowsX86AsmBackend : public X86AsmBackend {
391   bool Is64Bit;
392
393 public:
394   WindowsX86AsmBackend(const Target &T, bool is64Bit, StringRef CPU)
395     : X86AsmBackend(T, CPU)
396     , Is64Bit(is64Bit) {
397   }
398
399   MCObjectWriter *createObjectWriter(raw_ostream &OS) const override {
400     return createX86WinCOFFObjectWriter(OS, Is64Bit);
401   }
402 };
403
404 namespace CU {
405
406   /// Compact unwind encoding values.
407   enum CompactUnwindEncodings {
408     /// [RE]BP based frame where [RE]BP is pused on the stack immediately after
409     /// the return address, then [RE]SP is moved to [RE]BP.
410     UNWIND_MODE_BP_FRAME                   = 0x01000000,
411
412     /// A frameless function with a small constant stack size.
413     UNWIND_MODE_STACK_IMMD                 = 0x02000000,
414
415     /// A frameless function with a large constant stack size.
416     UNWIND_MODE_STACK_IND                  = 0x03000000,
417
418     /// No compact unwind encoding is available.
419     UNWIND_MODE_DWARF                      = 0x04000000,
420
421     /// Mask for encoding the frame registers.
422     UNWIND_BP_FRAME_REGISTERS              = 0x00007FFF,
423
424     /// Mask for encoding the frameless registers.
425     UNWIND_FRAMELESS_STACK_REG_PERMUTATION = 0x000003FF
426   };
427
428 } // end CU namespace
429
430 class DarwinX86AsmBackend : public X86AsmBackend {
431   const MCRegisterInfo &MRI;
432
433   /// \brief Number of registers that can be saved in a compact unwind encoding.
434   enum { CU_NUM_SAVED_REGS = 6 };
435
436   mutable unsigned SavedRegs[CU_NUM_SAVED_REGS];
437   bool Is64Bit;
438
439   unsigned OffsetSize;                   ///< Offset of a "push" instruction.
440   unsigned MoveInstrSize;                ///< Size of a "move" instruction.
441   unsigned StackDivide;                  ///< Amount to adjust stack size by.
442 protected:
443   /// \brief Size of a "push" instruction for the given register.
444   unsigned PushInstrSize(unsigned Reg) const {
445     switch (Reg) {
446       case X86::EBX:
447       case X86::ECX:
448       case X86::EDX:
449       case X86::EDI:
450       case X86::ESI:
451       case X86::EBP:
452       case X86::RBX:
453       case X86::RBP:
454         return 1;
455       case X86::R12:
456       case X86::R13:
457       case X86::R14:
458       case X86::R15:
459         return 2;
460     }
461     return 1;
462   }
463
464   /// \brief Implementation of algorithm to generate the compact unwind encoding
465   /// for the CFI instructions.
466   uint32_t
467   generateCompactUnwindEncodingImpl(ArrayRef<MCCFIInstruction> Instrs) const {
468     if (Instrs.empty()) return 0;
469
470     // Reset the saved registers.
471     unsigned SavedRegIdx = 0;
472     memset(SavedRegs, 0, sizeof(SavedRegs));
473
474     bool HasFP = false;
475
476     // Encode that we are using EBP/RBP as the frame pointer.
477     uint32_t CompactUnwindEncoding = 0;
478
479     unsigned SubtractInstrIdx = Is64Bit ? 3 : 2;
480     unsigned InstrOffset = 0;
481     unsigned StackAdjust = 0;
482     unsigned StackSize = 0;
483     unsigned PrevStackSize = 0;
484     unsigned NumDefCFAOffsets = 0;
485
486     for (unsigned i = 0, e = Instrs.size(); i != e; ++i) {
487       const MCCFIInstruction &Inst = Instrs[i];
488
489       switch (Inst.getOperation()) {
490       default:
491         // Any other CFI directives indicate a frame that we aren't prepared
492         // to represent via compact unwind, so just bail out.
493         return 0;
494       case MCCFIInstruction::OpDefCfaRegister: {
495         // Defines a frame pointer. E.g.
496         //
497         //     movq %rsp, %rbp
498         //  L0:
499         //     .cfi_def_cfa_register %rbp
500         //
501         HasFP = true;
502         assert(MRI.getLLVMRegNum(Inst.getRegister(), true) ==
503                (Is64Bit ? X86::RBP : X86::EBP) && "Invalid frame pointer!");
504
505         // Reset the counts.
506         memset(SavedRegs, 0, sizeof(SavedRegs));
507         StackAdjust = 0;
508         SavedRegIdx = 0;
509         InstrOffset += MoveInstrSize;
510         break;
511       }
512       case MCCFIInstruction::OpDefCfaOffset: {
513         // Defines a new offset for the CFA. E.g.
514         //
515         //  With frame:
516         //  
517         //     pushq %rbp
518         //  L0:
519         //     .cfi_def_cfa_offset 16
520         //
521         //  Without frame:
522         //
523         //     subq $72, %rsp
524         //  L0:
525         //     .cfi_def_cfa_offset 80
526         //
527         PrevStackSize = StackSize;
528         StackSize = std::abs(Inst.getOffset()) / StackDivide;
529         ++NumDefCFAOffsets;
530         break;
531       }
532       case MCCFIInstruction::OpOffset: {
533         // Defines a "push" of a callee-saved register. E.g.
534         //
535         //     pushq %r15
536         //     pushq %r14
537         //     pushq %rbx
538         //  L0:
539         //     subq $120, %rsp
540         //  L1:
541         //     .cfi_offset %rbx, -40
542         //     .cfi_offset %r14, -32
543         //     .cfi_offset %r15, -24
544         //
545         if (SavedRegIdx == CU_NUM_SAVED_REGS)
546           // If there are too many saved registers, we cannot use a compact
547           // unwind encoding.
548           return CU::UNWIND_MODE_DWARF;
549
550         unsigned Reg = MRI.getLLVMRegNum(Inst.getRegister(), true);
551         SavedRegs[SavedRegIdx++] = Reg;
552         StackAdjust += OffsetSize;
553         InstrOffset += PushInstrSize(Reg);
554         break;
555       }
556       }
557     }
558
559     StackAdjust /= StackDivide;
560
561     if (HasFP) {
562       if ((StackAdjust & 0xFF) != StackAdjust)
563         // Offset was too big for a compact unwind encoding.
564         return CU::UNWIND_MODE_DWARF;
565
566       // Get the encoding of the saved registers when we have a frame pointer.
567       uint32_t RegEnc = encodeCompactUnwindRegistersWithFrame();
568       if (RegEnc == ~0U) return CU::UNWIND_MODE_DWARF;
569
570       CompactUnwindEncoding |= CU::UNWIND_MODE_BP_FRAME;
571       CompactUnwindEncoding |= (StackAdjust & 0xFF) << 16;
572       CompactUnwindEncoding |= RegEnc & CU::UNWIND_BP_FRAME_REGISTERS;
573     } else {
574       // If the amount of the stack allocation is the size of a register, then
575       // we "push" the RAX/EAX register onto the stack instead of adjusting the
576       // stack pointer with a SUB instruction. We don't support the push of the
577       // RAX/EAX register with compact unwind. So we check for that situation
578       // here.
579       if ((NumDefCFAOffsets == SavedRegIdx + 1 &&
580            StackSize - PrevStackSize == 1) ||
581           (Instrs.size() == 1 && NumDefCFAOffsets == 1 && StackSize == 2))
582         return CU::UNWIND_MODE_DWARF;
583
584       SubtractInstrIdx += InstrOffset;
585       ++StackAdjust;
586
587       if ((StackSize & 0xFF) == StackSize) {
588         // Frameless stack with a small stack size.
589         CompactUnwindEncoding |= CU::UNWIND_MODE_STACK_IMMD;
590
591         // Encode the stack size.
592         CompactUnwindEncoding |= (StackSize & 0xFF) << 16;
593       } else {
594         if ((StackAdjust & 0x7) != StackAdjust)
595           // The extra stack adjustments are too big for us to handle.
596           return CU::UNWIND_MODE_DWARF;
597
598         // Frameless stack with an offset too large for us to encode compactly.
599         CompactUnwindEncoding |= CU::UNWIND_MODE_STACK_IND;
600
601         // Encode the offset to the nnnnnn value in the 'subl $nnnnnn, ESP'
602         // instruction.
603         CompactUnwindEncoding |= (SubtractInstrIdx & 0xFF) << 16;
604
605         // Encode any extra stack stack adjustments (done via push
606         // instructions).
607         CompactUnwindEncoding |= (StackAdjust & 0x7) << 13;
608       }
609
610       // Encode the number of registers saved. (Reverse the list first.)
611       std::reverse(&SavedRegs[0], &SavedRegs[SavedRegIdx]);
612       CompactUnwindEncoding |= (SavedRegIdx & 0x7) << 10;
613
614       // Get the encoding of the saved registers when we don't have a frame
615       // pointer.
616       uint32_t RegEnc = encodeCompactUnwindRegistersWithoutFrame(SavedRegIdx);
617       if (RegEnc == ~0U) return CU::UNWIND_MODE_DWARF;
618
619       // Encode the register encoding.
620       CompactUnwindEncoding |=
621         RegEnc & CU::UNWIND_FRAMELESS_STACK_REG_PERMUTATION;
622     }
623
624     return CompactUnwindEncoding;
625   }
626
627 private:
628   /// \brief Get the compact unwind number for a given register. The number
629   /// corresponds to the enum lists in compact_unwind_encoding.h.
630   int getCompactUnwindRegNum(unsigned Reg) const {
631     static const uint16_t CU32BitRegs[7] = {
632       X86::EBX, X86::ECX, X86::EDX, X86::EDI, X86::ESI, X86::EBP, 0
633     };
634     static const uint16_t CU64BitRegs[] = {
635       X86::RBX, X86::R12, X86::R13, X86::R14, X86::R15, X86::RBP, 0
636     };
637     const uint16_t *CURegs = Is64Bit ? CU64BitRegs : CU32BitRegs;
638     for (int Idx = 1; *CURegs; ++CURegs, ++Idx)
639       if (*CURegs == Reg)
640         return Idx;
641
642     return -1;
643   }
644
645   /// \brief Return the registers encoded for a compact encoding with a frame
646   /// pointer.
647   uint32_t encodeCompactUnwindRegistersWithFrame() const {
648     // Encode the registers in the order they were saved --- 3-bits per
649     // register. The list of saved registers is assumed to be in reverse
650     // order. The registers are numbered from 1 to CU_NUM_SAVED_REGS.
651     uint32_t RegEnc = 0;
652     for (int i = 0, Idx = 0; i != CU_NUM_SAVED_REGS; ++i) {
653       unsigned Reg = SavedRegs[i];
654       if (Reg == 0) break;
655
656       int CURegNum = getCompactUnwindRegNum(Reg);
657       if (CURegNum == -1) return ~0U;
658
659       // Encode the 3-bit register number in order, skipping over 3-bits for
660       // each register.
661       RegEnc |= (CURegNum & 0x7) << (Idx++ * 3);
662     }
663
664     assert((RegEnc & 0x3FFFF) == RegEnc &&
665            "Invalid compact register encoding!");
666     return RegEnc;
667   }
668
669   /// \brief Create the permutation encoding used with frameless stacks. It is
670   /// passed the number of registers to be saved and an array of the registers
671   /// saved.
672   uint32_t encodeCompactUnwindRegistersWithoutFrame(unsigned RegCount) const {
673     // The saved registers are numbered from 1 to 6. In order to encode the
674     // order in which they were saved, we re-number them according to their
675     // place in the register order. The re-numbering is relative to the last
676     // re-numbered register. E.g., if we have registers {6, 2, 4, 5} saved in
677     // that order:
678     //
679     //    Orig  Re-Num
680     //    ----  ------
681     //     6       6
682     //     2       2
683     //     4       3
684     //     5       3
685     //
686     for (unsigned i = 0; i != CU_NUM_SAVED_REGS; ++i) {
687       int CUReg = getCompactUnwindRegNum(SavedRegs[i]);
688       if (CUReg == -1) return ~0U;
689       SavedRegs[i] = CUReg;
690     }
691
692     // Reverse the list.
693     std::reverse(&SavedRegs[0], &SavedRegs[CU_NUM_SAVED_REGS]);
694
695     uint32_t RenumRegs[CU_NUM_SAVED_REGS];
696     for (unsigned i = CU_NUM_SAVED_REGS - RegCount; i < CU_NUM_SAVED_REGS; ++i){
697       unsigned Countless = 0;
698       for (unsigned j = CU_NUM_SAVED_REGS - RegCount; j < i; ++j)
699         if (SavedRegs[j] < SavedRegs[i])
700           ++Countless;
701
702       RenumRegs[i] = SavedRegs[i] - Countless - 1;
703     }
704
705     // Take the renumbered values and encode them into a 10-bit number.
706     uint32_t permutationEncoding = 0;
707     switch (RegCount) {
708     case 6:
709       permutationEncoding |= 120 * RenumRegs[0] + 24 * RenumRegs[1]
710                              + 6 * RenumRegs[2] +  2 * RenumRegs[3]
711                              +     RenumRegs[4];
712       break;
713     case 5:
714       permutationEncoding |= 120 * RenumRegs[1] + 24 * RenumRegs[2]
715                              + 6 * RenumRegs[3] +  2 * RenumRegs[4]
716                              +     RenumRegs[5];
717       break;
718     case 4:
719       permutationEncoding |=  60 * RenumRegs[2] + 12 * RenumRegs[3]
720                              + 3 * RenumRegs[4] +      RenumRegs[5];
721       break;
722     case 3:
723       permutationEncoding |=  20 * RenumRegs[3] +  4 * RenumRegs[4]
724                              +     RenumRegs[5];
725       break;
726     case 2:
727       permutationEncoding |=   5 * RenumRegs[4] +      RenumRegs[5];
728       break;
729     case 1:
730       permutationEncoding |=       RenumRegs[5];
731       break;
732     }
733
734     assert((permutationEncoding & 0x3FF) == permutationEncoding &&
735            "Invalid compact register encoding!");
736     return permutationEncoding;
737   }
738
739 public:
740   DarwinX86AsmBackend(const Target &T, const MCRegisterInfo &MRI, StringRef CPU,
741                       bool Is64Bit)
742     : X86AsmBackend(T, CPU), MRI(MRI), Is64Bit(Is64Bit) {
743     memset(SavedRegs, 0, sizeof(SavedRegs));
744     OffsetSize = Is64Bit ? 8 : 4;
745     MoveInstrSize = Is64Bit ? 3 : 2;
746     StackDivide = Is64Bit ? 8 : 4;
747   }
748 };
749
750 class DarwinX86_32AsmBackend : public DarwinX86AsmBackend {
751 public:
752   DarwinX86_32AsmBackend(const Target &T, const MCRegisterInfo &MRI,
753                          StringRef CPU)
754       : DarwinX86AsmBackend(T, MRI, CPU, false) {}
755
756   MCObjectWriter *createObjectWriter(raw_ostream &OS) const override {
757     return createX86MachObjectWriter(OS, /*Is64Bit=*/false,
758                                      MachO::CPU_TYPE_I386,
759                                      MachO::CPU_SUBTYPE_I386_ALL);
760   }
761
762   /// \brief Generate the compact unwind encoding for the CFI instructions.
763   uint32_t generateCompactUnwindEncoding(
764                              ArrayRef<MCCFIInstruction> Instrs) const override {
765     return generateCompactUnwindEncodingImpl(Instrs);
766   }
767 };
768
769 class DarwinX86_64AsmBackend : public DarwinX86AsmBackend {
770   const MachO::CPUSubTypeX86 Subtype;
771 public:
772   DarwinX86_64AsmBackend(const Target &T, const MCRegisterInfo &MRI,
773                          StringRef CPU, MachO::CPUSubTypeX86 st)
774       : DarwinX86AsmBackend(T, MRI, CPU, true), Subtype(st) {}
775
776   MCObjectWriter *createObjectWriter(raw_ostream &OS) const override {
777     return createX86MachObjectWriter(OS, /*Is64Bit=*/true,
778                                      MachO::CPU_TYPE_X86_64, Subtype);
779   }
780
781   bool doesSectionRequireSymbols(const MCSection &Section) const override {
782     // Temporary labels in the string literals sections require symbols. The
783     // issue is that the x86_64 relocation format does not allow symbol +
784     // offset, and so the linker does not have enough information to resolve the
785     // access to the appropriate atom unless an external relocation is used. For
786     // non-cstring sections, we expect the compiler to use a non-temporary label
787     // for anything that could have an addend pointing outside the symbol.
788     //
789     // See <rdar://problem/4765733>.
790     const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
791     return SMO.getType() == MachO::S_CSTRING_LITERALS;
792   }
793
794   bool isSectionAtomizable(const MCSection &Section) const override {
795     const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section);
796     // Fixed sized data sections are uniqued, they cannot be diced into atoms.
797     switch (SMO.getType()) {
798     default:
799       return true;
800
801     case MachO::S_4BYTE_LITERALS:
802     case MachO::S_8BYTE_LITERALS:
803     case MachO::S_16BYTE_LITERALS:
804     case MachO::S_LITERAL_POINTERS:
805     case MachO::S_NON_LAZY_SYMBOL_POINTERS:
806     case MachO::S_LAZY_SYMBOL_POINTERS:
807     case MachO::S_MOD_INIT_FUNC_POINTERS:
808     case MachO::S_MOD_TERM_FUNC_POINTERS:
809     case MachO::S_INTERPOSING:
810       return false;
811     }
812   }
813
814   /// \brief Generate the compact unwind encoding for the CFI instructions.
815   uint32_t generateCompactUnwindEncoding(
816                              ArrayRef<MCCFIInstruction> Instrs) const override {
817     return generateCompactUnwindEncodingImpl(Instrs);
818   }
819 };
820
821 } // end anonymous namespace
822
823 MCAsmBackend *llvm::createX86_32AsmBackend(const Target &T,
824                                            const MCRegisterInfo &MRI,
825                                            StringRef TT,
826                                            StringRef CPU) {
827   Triple TheTriple(TT);
828
829   if (TheTriple.isOSBinFormatMachO())
830     return new DarwinX86_32AsmBackend(T, MRI, CPU);
831
832   if (TheTriple.isOSWindows() && !TheTriple.isOSBinFormatELF())
833     return new WindowsX86AsmBackend(T, false, CPU);
834
835   uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(TheTriple.getOS());
836   return new ELFX86_32AsmBackend(T, OSABI, CPU);
837 }
838
839 MCAsmBackend *llvm::createX86_64AsmBackend(const Target &T,
840                                            const MCRegisterInfo &MRI,
841                                            StringRef TT,
842                                            StringRef CPU) {
843   Triple TheTriple(TT);
844
845   if (TheTriple.isOSBinFormatMachO()) {
846     MachO::CPUSubTypeX86 CS =
847         StringSwitch<MachO::CPUSubTypeX86>(TheTriple.getArchName())
848             .Case("x86_64h", MachO::CPU_SUBTYPE_X86_64_H)
849             .Default(MachO::CPU_SUBTYPE_X86_64_ALL);
850     return new DarwinX86_64AsmBackend(T, MRI, CPU, CS);
851   }
852
853   if (TheTriple.isOSWindows() && !TheTriple.isOSBinFormatELF())
854     return new WindowsX86AsmBackend(T, true, CPU);
855
856   uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(TheTriple.getOS());
857
858   if (TheTriple.getEnvironment() == Triple::GNUX32)
859     return new ELFX86_X32AsmBackend(T, OSABI, CPU);
860   return new ELFX86_64AsmBackend(T, OSABI, CPU);
861 }