| Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 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 "llvm/Target/TargetAsmBackend.h" | 
 | 11 | #include "X86.h" | 
| Daniel Dunbar | 87190c4 | 2010-03-19 09:28:12 +0000 | [diff] [blame] | 12 | #include "X86FixupKinds.h" | 
| Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 13 | #include "llvm/ADT/Twine.h" | 
| Matt Fleming | 453db50 | 2010-08-16 18:36:14 +0000 | [diff] [blame] | 14 | #include "llvm/MC/ELFObjectWriter.h" | 
| Daniel Dunbar | 87190c4 | 2010-03-19 09:28:12 +0000 | [diff] [blame] | 15 | #include "llvm/MC/MCAssembler.h" | 
| Daniel Dunbar | a5d0b54 | 2010-05-06 20:34:01 +0000 | [diff] [blame] | 16 | #include "llvm/MC/MCExpr.h" | 
| Rafael Espindola | f230df9 | 2010-10-16 18:23:53 +0000 | [diff] [blame] | 17 | #include "llvm/MC/MCObjectFormat.h" | 
| Daniel Dunbar | 337055e | 2010-03-23 03:13:05 +0000 | [diff] [blame] | 18 | #include "llvm/MC/MCObjectWriter.h" | 
| Michael J. Spencer | dfd3018 | 2010-07-27 06:46:15 +0000 | [diff] [blame] | 19 | #include "llvm/MC/MCSectionCOFF.h" | 
| Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 20 | #include "llvm/MC/MCSectionELF.h" | 
| Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 21 | #include "llvm/MC/MCSectionMachO.h" | 
| Daniel Dunbar | 1a9158c | 2010-03-19 10:43:26 +0000 | [diff] [blame] | 22 | #include "llvm/MC/MachObjectWriter.h" | 
| Wesley Peck | eecb858 | 2010-10-22 15:52:49 +0000 | [diff] [blame] | 23 | #include "llvm/Support/ELF.h" | 
| Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 24 | #include "llvm/Support/ErrorHandling.h" | 
 | 25 | #include "llvm/Support/raw_ostream.h" | 
| Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetRegistry.h" | 
 | 27 | #include "llvm/Target/TargetAsmBackend.h" | 
 | 28 | using namespace llvm; | 
 | 29 |  | 
| Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 30 |  | 
| Daniel Dunbar | 87190c4 | 2010-03-19 09:28:12 +0000 | [diff] [blame] | 31 | static unsigned getFixupKindLog2Size(unsigned Kind) { | 
 | 32 |   switch (Kind) { | 
 | 33 |   default: assert(0 && "invalid fixup kind!"); | 
 | 34 |   case X86::reloc_pcrel_1byte: | 
 | 35 |   case FK_Data_1: return 0; | 
| Chris Lattner | 9fc0522 | 2010-07-07 22:27:31 +0000 | [diff] [blame] | 36 |   case X86::reloc_pcrel_2byte: | 
| Daniel Dunbar | 87190c4 | 2010-03-19 09:28:12 +0000 | [diff] [blame] | 37 |   case FK_Data_2: return 1; | 
 | 38 |   case X86::reloc_pcrel_4byte: | 
 | 39 |   case X86::reloc_riprel_4byte: | 
 | 40 |   case X86::reloc_riprel_4byte_movq_load: | 
| Rafael Espindola | a8c02c3 | 2010-09-30 03:11:42 +0000 | [diff] [blame] | 41 |   case X86::reloc_signed_4byte: | 
| Rafael Espindola | 24ba4f7 | 2010-10-24 17:35:42 +0000 | [diff] [blame] | 42 |   case X86::reloc_global_offset_table: | 
| Daniel Dunbar | 87190c4 | 2010-03-19 09:28:12 +0000 | [diff] [blame] | 43 |   case FK_Data_4: return 2; | 
 | 44 |   case FK_Data_8: return 3; | 
 | 45 |   } | 
 | 46 | } | 
 | 47 |  | 
| Chris Lattner | 9fc0522 | 2010-07-07 22:27:31 +0000 | [diff] [blame] | 48 | namespace { | 
| Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 49 | class X86AsmBackend : public TargetAsmBackend { | 
 | 50 | public: | 
| Daniel Dunbar | 6c27f5e | 2010-03-11 01:34:16 +0000 | [diff] [blame] | 51 |   X86AsmBackend(const Target &T) | 
| Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 52 |     : TargetAsmBackend(T) {} | 
| Daniel Dunbar | 87190c4 | 2010-03-19 09:28:12 +0000 | [diff] [blame] | 53 |  | 
| Daniel Dunbar | c90e30a | 2010-05-26 15:18:56 +0000 | [diff] [blame] | 54 |   void ApplyFixup(const MCFixup &Fixup, MCDataFragment &DF, | 
| Daniel Dunbar | 87190c4 | 2010-03-19 09:28:12 +0000 | [diff] [blame] | 55 |                   uint64_t Value) const { | 
| Daniel Dunbar | 482ad80 | 2010-05-26 15:18:31 +0000 | [diff] [blame] | 56 |     unsigned Size = 1 << getFixupKindLog2Size(Fixup.getKind()); | 
| Daniel Dunbar | 87190c4 | 2010-03-19 09:28:12 +0000 | [diff] [blame] | 57 |  | 
| Daniel Dunbar | 482ad80 | 2010-05-26 15:18:31 +0000 | [diff] [blame] | 58 |     assert(Fixup.getOffset() + Size <= DF.getContents().size() && | 
| Daniel Dunbar | 87190c4 | 2010-03-19 09:28:12 +0000 | [diff] [blame] | 59 |            "Invalid fixup offset!"); | 
 | 60 |     for (unsigned i = 0; i != Size; ++i) | 
| Daniel Dunbar | 482ad80 | 2010-05-26 15:18:31 +0000 | [diff] [blame] | 61 |       DF.getContents()[Fixup.getOffset() + i] = uint8_t(Value >> (i * 8)); | 
| Daniel Dunbar | 87190c4 | 2010-03-19 09:28:12 +0000 | [diff] [blame] | 62 |   } | 
| Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 63 |  | 
| Daniel Dunbar | 8488252 | 2010-05-26 17:45:29 +0000 | [diff] [blame] | 64 |   bool MayNeedRelaxation(const MCInst &Inst) const; | 
| Daniel Dunbar | 337055e | 2010-03-23 03:13:05 +0000 | [diff] [blame] | 65 |  | 
| Daniel Dunbar | 95506d4 | 2010-05-26 18:15:06 +0000 | [diff] [blame] | 66 |   void RelaxInstruction(const MCInst &Inst, MCInst &Res) const; | 
| Daniel Dunbar | 8f9b80e | 2010-03-23 02:36:58 +0000 | [diff] [blame] | 67 |  | 
 | 68 |   bool WriteNopData(uint64_t Count, MCObjectWriter *OW) const; | 
| Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 69 | }; | 
| Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 70 | } // end anonymous namespace | 
| Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 71 |  | 
| Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 72 | static unsigned getRelaxedOpcode(unsigned Op) { | 
 | 73 |   switch (Op) { | 
 | 74 |   default: | 
 | 75 |     return Op; | 
 | 76 |  | 
| Rafael Espindola | aa85c21 | 2010-10-18 18:36:12 +0000 | [diff] [blame] | 77 |   // This is used on i386 with things like addl $foo, %ebx | 
 | 78 |   // FIXME: Should the other *i8 instructions be here too? If not, it might | 
 | 79 |   // be better to just select X86::ADD32ri instead of X86::ADD32ri8. | 
 | 80 |   case X86::ADD32ri8: return X86::ADD32ri; | 
 | 81 |  | 
| Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 82 |   case X86::JAE_1: return X86::JAE_4; | 
 | 83 |   case X86::JA_1:  return X86::JA_4; | 
 | 84 |   case X86::JBE_1: return X86::JBE_4; | 
 | 85 |   case X86::JB_1:  return X86::JB_4; | 
 | 86 |   case X86::JE_1:  return X86::JE_4; | 
 | 87 |   case X86::JGE_1: return X86::JGE_4; | 
 | 88 |   case X86::JG_1:  return X86::JG_4; | 
 | 89 |   case X86::JLE_1: return X86::JLE_4; | 
 | 90 |   case X86::JL_1:  return X86::JL_4; | 
 | 91 |   case X86::JMP_1: return X86::JMP_4; | 
 | 92 |   case X86::JNE_1: return X86::JNE_4; | 
 | 93 |   case X86::JNO_1: return X86::JNO_4; | 
 | 94 |   case X86::JNP_1: return X86::JNP_4; | 
 | 95 |   case X86::JNS_1: return X86::JNS_4; | 
 | 96 |   case X86::JO_1:  return X86::JO_4; | 
 | 97 |   case X86::JP_1:  return X86::JP_4; | 
 | 98 |   case X86::JS_1:  return X86::JS_4; | 
 | 99 |   } | 
 | 100 | } | 
 | 101 |  | 
| Daniel Dunbar | 8488252 | 2010-05-26 17:45:29 +0000 | [diff] [blame] | 102 | bool X86AsmBackend::MayNeedRelaxation(const MCInst &Inst) const { | 
 | 103 |   // Check if this instruction is ever relaxable. | 
 | 104 |   if (getRelaxedOpcode(Inst.getOpcode()) == Inst.getOpcode()) | 
 | 105 |     return false; | 
| Daniel Dunbar | 482ad80 | 2010-05-26 15:18:31 +0000 | [diff] [blame] | 106 |  | 
| Daniel Dunbar | 8488252 | 2010-05-26 17:45:29 +0000 | [diff] [blame] | 107 |   // If so, just assume it can be relaxed. Once we support relaxing more complex | 
 | 108 |   // instructions we should check that the instruction actually has symbolic | 
 | 109 |   // operands before doing this, but we need to be careful about things like | 
 | 110 |   // PCrel. | 
 | 111 |   return true; | 
| Daniel Dunbar | 337055e | 2010-03-23 03:13:05 +0000 | [diff] [blame] | 112 | } | 
 | 113 |  | 
| Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 114 | // FIXME: Can tblgen help at all here to verify there aren't other instructions | 
 | 115 | // we can relax? | 
| Daniel Dunbar | 95506d4 | 2010-05-26 18:15:06 +0000 | [diff] [blame] | 116 | void X86AsmBackend::RelaxInstruction(const MCInst &Inst, MCInst &Res) const { | 
| Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 117 |   // The only relaxations X86 does is from a 1byte pcrel to a 4byte pcrel. | 
| Daniel Dunbar | 95506d4 | 2010-05-26 18:15:06 +0000 | [diff] [blame] | 118 |   unsigned RelaxedOp = getRelaxedOpcode(Inst.getOpcode()); | 
| Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 119 |  | 
| Daniel Dunbar | 95506d4 | 2010-05-26 18:15:06 +0000 | [diff] [blame] | 120 |   if (RelaxedOp == Inst.getOpcode()) { | 
| Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 121 |     SmallString<256> Tmp; | 
 | 122 |     raw_svector_ostream OS(Tmp); | 
| Daniel Dunbar | 95506d4 | 2010-05-26 18:15:06 +0000 | [diff] [blame] | 123 |     Inst.dump_pretty(OS); | 
| Daniel Dunbar | c9adb8c | 2010-05-26 15:18:13 +0000 | [diff] [blame] | 124 |     OS << "\n"; | 
| Chris Lattner | 75361b6 | 2010-04-07 22:58:41 +0000 | [diff] [blame] | 125 |     report_fatal_error("unexpected instruction to relax: " + OS.str()); | 
| Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 126 |   } | 
 | 127 |  | 
| Daniel Dunbar | 95506d4 | 2010-05-26 18:15:06 +0000 | [diff] [blame] | 128 |   Res = Inst; | 
| Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 129 |   Res.setOpcode(RelaxedOp); | 
 | 130 | } | 
 | 131 |  | 
| Daniel Dunbar | 8f9b80e | 2010-03-23 02:36:58 +0000 | [diff] [blame] | 132 | /// WriteNopData - Write optimal nops to the output file for the \arg Count | 
 | 133 | /// bytes.  This returns the number of bytes written.  It may return 0 if | 
 | 134 | /// the \arg Count is more than the maximum optimal nops. | 
 | 135 | /// | 
 | 136 | /// FIXME this is X86 32-bit specific and should move to a better place. | 
 | 137 | bool X86AsmBackend::WriteNopData(uint64_t Count, MCObjectWriter *OW) const { | 
 | 138 |   static const uint8_t Nops[16][16] = { | 
 | 139 |     // nop | 
 | 140 |     {0x90}, | 
 | 141 |     // xchg %ax,%ax | 
 | 142 |     {0x66, 0x90}, | 
 | 143 |     // nopl (%[re]ax) | 
 | 144 |     {0x0f, 0x1f, 0x00}, | 
 | 145 |     // nopl 0(%[re]ax) | 
 | 146 |     {0x0f, 0x1f, 0x40, 0x00}, | 
 | 147 |     // nopl 0(%[re]ax,%[re]ax,1) | 
 | 148 |     {0x0f, 0x1f, 0x44, 0x00, 0x00}, | 
 | 149 |     // nopw 0(%[re]ax,%[re]ax,1) | 
 | 150 |     {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00}, | 
 | 151 |     // nopl 0L(%[re]ax) | 
 | 152 |     {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00}, | 
 | 153 |     // nopl 0L(%[re]ax,%[re]ax,1) | 
 | 154 |     {0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00}, | 
 | 155 |     // nopw 0L(%[re]ax,%[re]ax,1) | 
 | 156 |     {0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00}, | 
 | 157 |     // nopw %cs:0L(%[re]ax,%[re]ax,1) | 
 | 158 |     {0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00}, | 
 | 159 |     // nopl 0(%[re]ax,%[re]ax,1) | 
 | 160 |     // nopw 0(%[re]ax,%[re]ax,1) | 
 | 161 |     {0x0f, 0x1f, 0x44, 0x00, 0x00, | 
 | 162 |      0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00}, | 
 | 163 |     // nopw 0(%[re]ax,%[re]ax,1) | 
 | 164 |     // nopw 0(%[re]ax,%[re]ax,1) | 
 | 165 |     {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00, | 
 | 166 |      0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00}, | 
 | 167 |     // nopw 0(%[re]ax,%[re]ax,1) | 
 | 168 |     // nopl 0L(%[re]ax) */ | 
 | 169 |     {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00, | 
 | 170 |      0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00}, | 
 | 171 |     // nopl 0L(%[re]ax) | 
 | 172 |     // nopl 0L(%[re]ax) | 
 | 173 |     {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, | 
 | 174 |      0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00}, | 
 | 175 |     // nopl 0L(%[re]ax) | 
 | 176 |     // nopl 0L(%[re]ax,%[re]ax,1) | 
 | 177 |     {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, | 
 | 178 |      0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00} | 
 | 179 |   }; | 
 | 180 |  | 
 | 181 |   // Write an optimal sequence for the first 15 bytes. | 
 | 182 |   uint64_t OptimalCount = (Count < 16) ? Count : 15; | 
 | 183 |   for (uint64_t i = 0, e = OptimalCount; i != e; i++) | 
 | 184 |     OW->Write8(Nops[OptimalCount - 1][i]); | 
 | 185 |  | 
 | 186 |   // Finish with single byte nops. | 
 | 187 |   for (uint64_t i = OptimalCount, e = Count; i != e; ++i) | 
 | 188 |    OW->Write8(0x90); | 
 | 189 |  | 
 | 190 |   return true; | 
 | 191 | } | 
 | 192 |  | 
| Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 193 | /* *** */ | 
 | 194 |  | 
| Chris Lattner | 9fc0522 | 2010-07-07 22:27:31 +0000 | [diff] [blame] | 195 | namespace { | 
| Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 196 | class ELFX86AsmBackend : public X86AsmBackend { | 
| Rafael Espindola | f230df9 | 2010-10-16 18:23:53 +0000 | [diff] [blame] | 197 |   MCELFObjectFormat Format; | 
 | 198 |  | 
| Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 199 | public: | 
| Roman Divacky | 5baf79e | 2010-09-09 17:57:50 +0000 | [diff] [blame] | 200 |   Triple::OSType OSType; | 
 | 201 |   ELFX86AsmBackend(const Target &T, Triple::OSType _OSType) | 
 | 202 |     : X86AsmBackend(T), OSType(_OSType) { | 
| Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 203 |     HasScatteredSymbols = true; | 
| Rafael Espindola | 73ffea4 | 2010-09-25 05:42:19 +0000 | [diff] [blame] | 204 |     HasReliableSymbolDifference = true; | 
 | 205 |   } | 
 | 206 |  | 
| Rafael Espindola | f230df9 | 2010-10-16 18:23:53 +0000 | [diff] [blame] | 207 |   virtual const MCObjectFormat &getObjectFormat() const { | 
 | 208 |     return Format; | 
 | 209 |   } | 
 | 210 |  | 
| Rafael Espindola | 73ffea4 | 2010-09-25 05:42:19 +0000 | [diff] [blame] | 211 |   virtual bool doesSectionRequireSymbols(const MCSection &Section) const { | 
 | 212 |     const MCSectionELF &ES = static_cast<const MCSectionELF&>(Section); | 
 | 213 |     return ES.getFlags() & MCSectionELF::SHF_MERGE; | 
| Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 214 |   } | 
 | 215 |  | 
 | 216 |   bool isVirtualSection(const MCSection &Section) const { | 
 | 217 |     const MCSectionELF &SE = static_cast<const MCSectionELF&>(Section); | 
| Roman Divacky | 5baf79e | 2010-09-09 17:57:50 +0000 | [diff] [blame] | 218 |     return SE.getType() == MCSectionELF::SHT_NOBITS; | 
| Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 219 |   } | 
 | 220 | }; | 
 | 221 |  | 
| Matt Fleming | 7efaef6 | 2010-05-21 11:39:07 +0000 | [diff] [blame] | 222 | class ELFX86_32AsmBackend : public ELFX86AsmBackend { | 
 | 223 | public: | 
| Roman Divacky | 5baf79e | 2010-09-09 17:57:50 +0000 | [diff] [blame] | 224 |   ELFX86_32AsmBackend(const Target &T, Triple::OSType OSType) | 
 | 225 |     : ELFX86AsmBackend(T, OSType) {} | 
| Matt Fleming | 453db50 | 2010-08-16 18:36:14 +0000 | [diff] [blame] | 226 |  | 
| Kevin Enderby | 8ebf662 | 2010-09-30 16:38:07 +0000 | [diff] [blame] | 227 |   unsigned getPointerSize() const { | 
 | 228 |     return 4; | 
 | 229 |   } | 
 | 230 |  | 
| Matt Fleming | 453db50 | 2010-08-16 18:36:14 +0000 | [diff] [blame] | 231 |   MCObjectWriter *createObjectWriter(raw_ostream &OS) const { | 
 | 232 |     return new ELFObjectWriter(OS, /*Is64Bit=*/false, | 
| Wesley Peck | eecb858 | 2010-10-22 15:52:49 +0000 | [diff] [blame] | 233 |                                OSType, ELF::EM_386, | 
| Matt Fleming | 453db50 | 2010-08-16 18:36:14 +0000 | [diff] [blame] | 234 |                                /*IsLittleEndian=*/true, | 
 | 235 |                                /*HasRelocationAddend=*/false); | 
 | 236 |   } | 
| Matt Fleming | 7efaef6 | 2010-05-21 11:39:07 +0000 | [diff] [blame] | 237 | }; | 
 | 238 |  | 
 | 239 | class ELFX86_64AsmBackend : public ELFX86AsmBackend { | 
 | 240 | public: | 
| Roman Divacky | 5baf79e | 2010-09-09 17:57:50 +0000 | [diff] [blame] | 241 |   ELFX86_64AsmBackend(const Target &T, Triple::OSType OSType) | 
 | 242 |     : ELFX86AsmBackend(T, OSType) {} | 
| Matt Fleming | 453db50 | 2010-08-16 18:36:14 +0000 | [diff] [blame] | 243 |  | 
| Kevin Enderby | 8ebf662 | 2010-09-30 16:38:07 +0000 | [diff] [blame] | 244 |   unsigned getPointerSize() const { | 
 | 245 |     return 8; | 
 | 246 |   } | 
 | 247 |  | 
| Matt Fleming | 453db50 | 2010-08-16 18:36:14 +0000 | [diff] [blame] | 248 |   MCObjectWriter *createObjectWriter(raw_ostream &OS) const { | 
 | 249 |     return new ELFObjectWriter(OS, /*Is64Bit=*/true, | 
| Wesley Peck | eecb858 | 2010-10-22 15:52:49 +0000 | [diff] [blame] | 250 |                                OSType, ELF::EM_X86_64, | 
| Matt Fleming | 453db50 | 2010-08-16 18:36:14 +0000 | [diff] [blame] | 251 |                                /*IsLittleEndian=*/true, | 
 | 252 |                                /*HasRelocationAddend=*/true); | 
 | 253 |   } | 
| Matt Fleming | 7efaef6 | 2010-05-21 11:39:07 +0000 | [diff] [blame] | 254 | }; | 
 | 255 |  | 
| Michael J. Spencer | dfd3018 | 2010-07-27 06:46:15 +0000 | [diff] [blame] | 256 | class WindowsX86AsmBackend : public X86AsmBackend { | 
| Michael J. Spencer | da0bfcd | 2010-08-21 05:58:13 +0000 | [diff] [blame] | 257 |   bool Is64Bit; | 
| Rafael Espindola | f230df9 | 2010-10-16 18:23:53 +0000 | [diff] [blame] | 258 |   MCCOFFObjectFormat Format; | 
 | 259 |  | 
| Michael J. Spencer | dfd3018 | 2010-07-27 06:46:15 +0000 | [diff] [blame] | 260 | public: | 
| Michael J. Spencer | da0bfcd | 2010-08-21 05:58:13 +0000 | [diff] [blame] | 261 |   WindowsX86AsmBackend(const Target &T, bool is64Bit) | 
 | 262 |     : X86AsmBackend(T) | 
 | 263 |     , Is64Bit(is64Bit) { | 
| Michael J. Spencer | dfd3018 | 2010-07-27 06:46:15 +0000 | [diff] [blame] | 264 |     HasScatteredSymbols = true; | 
 | 265 |   } | 
 | 266 |  | 
| Rafael Espindola | f230df9 | 2010-10-16 18:23:53 +0000 | [diff] [blame] | 267 |   virtual const MCObjectFormat &getObjectFormat() const { | 
 | 268 |     return Format; | 
 | 269 |   } | 
 | 270 |  | 
| Kevin Enderby | 8ebf662 | 2010-09-30 16:38:07 +0000 | [diff] [blame] | 271 |   unsigned getPointerSize() const { | 
 | 272 |     if (Is64Bit) | 
 | 273 |       return 8; | 
 | 274 |     else | 
 | 275 |       return 4; | 
 | 276 |   } | 
 | 277 |  | 
| Michael J. Spencer | dfd3018 | 2010-07-27 06:46:15 +0000 | [diff] [blame] | 278 |   MCObjectWriter *createObjectWriter(raw_ostream &OS) const { | 
| Michael J. Spencer | da0bfcd | 2010-08-21 05:58:13 +0000 | [diff] [blame] | 279 |     return createWinCOFFObjectWriter(OS, Is64Bit); | 
| Michael J. Spencer | dfd3018 | 2010-07-27 06:46:15 +0000 | [diff] [blame] | 280 |   } | 
 | 281 |  | 
 | 282 |   bool isVirtualSection(const MCSection &Section) const { | 
 | 283 |     const MCSectionCOFF &SE = static_cast<const MCSectionCOFF&>(Section); | 
 | 284 |     return SE.getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA; | 
 | 285 |   } | 
 | 286 | }; | 
 | 287 |  | 
| Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 288 | class DarwinX86AsmBackend : public X86AsmBackend { | 
| Rafael Espindola | f230df9 | 2010-10-16 18:23:53 +0000 | [diff] [blame] | 289 |   MCMachOObjectFormat Format; | 
 | 290 |  | 
| Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 291 | public: | 
 | 292 |   DarwinX86AsmBackend(const Target &T) | 
| Daniel Dunbar | 0682951 | 2010-03-18 00:58:53 +0000 | [diff] [blame] | 293 |     : X86AsmBackend(T) { | 
| Daniel Dunbar | 0682951 | 2010-03-18 00:58:53 +0000 | [diff] [blame] | 294 |     HasScatteredSymbols = true; | 
 | 295 |   } | 
| Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 296 |  | 
| Rafael Espindola | f230df9 | 2010-10-16 18:23:53 +0000 | [diff] [blame] | 297 |   virtual const MCObjectFormat &getObjectFormat() const { | 
 | 298 |     return Format; | 
 | 299 |   } | 
 | 300 |  | 
| Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 301 |   bool isVirtualSection(const MCSection &Section) const { | 
 | 302 |     const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section); | 
 | 303 |     return (SMO.getType() == MCSectionMachO::S_ZEROFILL || | 
| Eric Christopher | 423c9e3 | 2010-05-17 21:02:07 +0000 | [diff] [blame] | 304 |             SMO.getType() == MCSectionMachO::S_GB_ZEROFILL || | 
 | 305 |             SMO.getType() == MCSectionMachO::S_THREAD_LOCAL_ZEROFILL); | 
| Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 306 |   } | 
| Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 307 | }; | 
 | 308 |  | 
| Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 309 | class DarwinX86_32AsmBackend : public DarwinX86AsmBackend { | 
 | 310 | public: | 
 | 311 |   DarwinX86_32AsmBackend(const Target &T) | 
 | 312 |     : DarwinX86AsmBackend(T) {} | 
| Daniel Dunbar | 1a9158c | 2010-03-19 10:43:26 +0000 | [diff] [blame] | 313 |  | 
| Kevin Enderby | 8ebf662 | 2010-09-30 16:38:07 +0000 | [diff] [blame] | 314 |   unsigned getPointerSize() const { | 
 | 315 |     return 4; | 
 | 316 |   } | 
 | 317 |  | 
| Daniel Dunbar | 1a9158c | 2010-03-19 10:43:26 +0000 | [diff] [blame] | 318 |   MCObjectWriter *createObjectWriter(raw_ostream &OS) const { | 
 | 319 |     return new MachObjectWriter(OS, /*Is64Bit=*/false); | 
 | 320 |   } | 
| Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 321 | }; | 
 | 322 |  | 
 | 323 | class DarwinX86_64AsmBackend : public DarwinX86AsmBackend { | 
 | 324 | public: | 
 | 325 |   DarwinX86_64AsmBackend(const Target &T) | 
| Daniel Dunbar | 0682951 | 2010-03-18 00:58:53 +0000 | [diff] [blame] | 326 |     : DarwinX86AsmBackend(T) { | 
 | 327 |     HasReliableSymbolDifference = true; | 
 | 328 |   } | 
| Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 329 |  | 
| Kevin Enderby | 8ebf662 | 2010-09-30 16:38:07 +0000 | [diff] [blame] | 330 |   unsigned getPointerSize() const { | 
 | 331 |     return 8; | 
 | 332 |   } | 
 | 333 |  | 
| Daniel Dunbar | 1a9158c | 2010-03-19 10:43:26 +0000 | [diff] [blame] | 334 |   MCObjectWriter *createObjectWriter(raw_ostream &OS) const { | 
 | 335 |     return new MachObjectWriter(OS, /*Is64Bit=*/true); | 
 | 336 |   } | 
 | 337 |  | 
| Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 338 |   virtual bool doesSectionRequireSymbols(const MCSection &Section) const { | 
 | 339 |     // Temporary labels in the string literals sections require symbols. The | 
 | 340 |     // issue is that the x86_64 relocation format does not allow symbol + | 
 | 341 |     // offset, and so the linker does not have enough information to resolve the | 
 | 342 |     // access to the appropriate atom unless an external relocation is used. For | 
 | 343 |     // non-cstring sections, we expect the compiler to use a non-temporary label | 
 | 344 |     // for anything that could have an addend pointing outside the symbol. | 
 | 345 |     // | 
 | 346 |     // See <rdar://problem/4765733>. | 
 | 347 |     const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section); | 
 | 348 |     return SMO.getType() == MCSectionMachO::S_CSTRING_LITERALS; | 
 | 349 |   } | 
| Daniel Dunbar | a5f1d57 | 2010-05-12 00:38:17 +0000 | [diff] [blame] | 350 |  | 
 | 351 |   virtual bool isSectionAtomizable(const MCSection &Section) const { | 
 | 352 |     const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section); | 
 | 353 |     // Fixed sized data sections are uniqued, they cannot be diced into atoms. | 
 | 354 |     switch (SMO.getType()) { | 
 | 355 |     default: | 
 | 356 |       return true; | 
 | 357 |  | 
 | 358 |     case MCSectionMachO::S_4BYTE_LITERALS: | 
 | 359 |     case MCSectionMachO::S_8BYTE_LITERALS: | 
 | 360 |     case MCSectionMachO::S_16BYTE_LITERALS: | 
 | 361 |     case MCSectionMachO::S_LITERAL_POINTERS: | 
 | 362 |     case MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS: | 
 | 363 |     case MCSectionMachO::S_LAZY_SYMBOL_POINTERS: | 
 | 364 |     case MCSectionMachO::S_MOD_INIT_FUNC_POINTERS: | 
 | 365 |     case MCSectionMachO::S_MOD_TERM_FUNC_POINTERS: | 
 | 366 |     case MCSectionMachO::S_INTERPOSING: | 
 | 367 |       return false; | 
 | 368 |     } | 
 | 369 |   } | 
| Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 370 | }; | 
 | 371 |  | 
| Michael J. Spencer | ec38de2 | 2010-10-10 22:04:20 +0000 | [diff] [blame] | 372 | } // end anonymous namespace | 
| Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 373 |  | 
 | 374 | TargetAsmBackend *llvm::createX86_32AsmBackend(const Target &T, | 
| Daniel Dunbar | 6c27f5e | 2010-03-11 01:34:16 +0000 | [diff] [blame] | 375 |                                                const std::string &TT) { | 
| Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 376 |   switch (Triple(TT).getOS()) { | 
 | 377 |   case Triple::Darwin: | 
| Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 378 |     return new DarwinX86_32AsmBackend(T); | 
| Benjamin Kramer | 56d2394 | 2010-08-04 15:32:40 +0000 | [diff] [blame] | 379 |   case Triple::MinGW32: | 
 | 380 |   case Triple::Cygwin: | 
| Michael J. Spencer | dfd3018 | 2010-07-27 06:46:15 +0000 | [diff] [blame] | 381 |   case Triple::Win32: | 
| Michael J. Spencer | da0bfcd | 2010-08-21 05:58:13 +0000 | [diff] [blame] | 382 |     return new WindowsX86AsmBackend(T, false); | 
| Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 383 |   default: | 
| Roman Divacky | 5baf79e | 2010-09-09 17:57:50 +0000 | [diff] [blame] | 384 |     return new ELFX86_32AsmBackend(T, Triple(TT).getOS()); | 
| Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 385 |   } | 
| Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 386 | } | 
 | 387 |  | 
 | 388 | TargetAsmBackend *llvm::createX86_64AsmBackend(const Target &T, | 
| Daniel Dunbar | 6c27f5e | 2010-03-11 01:34:16 +0000 | [diff] [blame] | 389 |                                                const std::string &TT) { | 
| Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 390 |   switch (Triple(TT).getOS()) { | 
 | 391 |   case Triple::Darwin: | 
| Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 392 |     return new DarwinX86_64AsmBackend(T); | 
| Michael J. Spencer | da0bfcd | 2010-08-21 05:58:13 +0000 | [diff] [blame] | 393 |   case Triple::MinGW64: | 
 | 394 |   case Triple::Cygwin: | 
 | 395 |   case Triple::Win32: | 
 | 396 |     return new WindowsX86AsmBackend(T, true); | 
| Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 397 |   default: | 
| Roman Divacky | 5baf79e | 2010-09-09 17:57:50 +0000 | [diff] [blame] | 398 |     return new ELFX86_64AsmBackend(T, Triple(TT).getOS()); | 
| Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 399 |   } | 
| Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 400 | } |