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" |
Daniel Dunbar | 87190c4 | 2010-03-19 09:28:12 +0000 | [diff] [blame] | 14 | #include "llvm/MC/MCAssembler.h" |
Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 15 | #include "llvm/MC/MCSectionELF.h" |
Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 16 | #include "llvm/MC/MCSectionMachO.h" |
Daniel Dunbar | 1a9158c | 2010-03-19 10:43:26 +0000 | [diff] [blame] | 17 | #include "llvm/MC/MachObjectWriter.h" |
Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 18 | #include "llvm/Support/ErrorHandling.h" |
| 19 | #include "llvm/Support/raw_ostream.h" |
Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 20 | #include "llvm/Target/TargetRegistry.h" |
| 21 | #include "llvm/Target/TargetAsmBackend.h" |
| 22 | using namespace llvm; |
| 23 | |
| 24 | namespace { |
| 25 | |
Daniel Dunbar | 87190c4 | 2010-03-19 09:28:12 +0000 | [diff] [blame] | 26 | static unsigned getFixupKindLog2Size(unsigned Kind) { |
| 27 | switch (Kind) { |
| 28 | default: assert(0 && "invalid fixup kind!"); |
| 29 | case X86::reloc_pcrel_1byte: |
| 30 | case FK_Data_1: return 0; |
| 31 | case FK_Data_2: return 1; |
| 32 | case X86::reloc_pcrel_4byte: |
| 33 | case X86::reloc_riprel_4byte: |
| 34 | case X86::reloc_riprel_4byte_movq_load: |
| 35 | case FK_Data_4: return 2; |
| 36 | case FK_Data_8: return 3; |
| 37 | } |
| 38 | } |
| 39 | |
Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 40 | class X86AsmBackend : public TargetAsmBackend { |
| 41 | public: |
Daniel Dunbar | 6c27f5e | 2010-03-11 01:34:16 +0000 | [diff] [blame] | 42 | X86AsmBackend(const Target &T) |
Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 43 | : TargetAsmBackend(T) {} |
Daniel Dunbar | 87190c4 | 2010-03-19 09:28:12 +0000 | [diff] [blame] | 44 | |
| 45 | void ApplyFixup(const MCAsmFixup &Fixup, MCDataFragment &DF, |
| 46 | uint64_t Value) const { |
| 47 | unsigned Size = 1 << getFixupKindLog2Size(Fixup.Kind); |
| 48 | |
| 49 | assert(Fixup.Offset + Size <= DF.getContents().size() && |
| 50 | "Invalid fixup offset!"); |
| 51 | for (unsigned i = 0; i != Size; ++i) |
| 52 | DF.getContents()[Fixup.Offset + i] = uint8_t(Value >> (i * 8)); |
| 53 | } |
Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 54 | |
| 55 | void RelaxInstruction(const MCInstFragment *IF, MCInst &Res) const; |
Daniel Dunbar | 8f9b80e | 2010-03-23 02:36:58 +0000 | [diff] [blame^] | 56 | |
| 57 | bool WriteNopData(uint64_t Count, MCObjectWriter *OW) const; |
Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 58 | }; |
| 59 | |
Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 60 | static unsigned getRelaxedOpcode(unsigned Op) { |
| 61 | switch (Op) { |
| 62 | default: |
| 63 | return Op; |
| 64 | |
| 65 | case X86::JAE_1: return X86::JAE_4; |
| 66 | case X86::JA_1: return X86::JA_4; |
| 67 | case X86::JBE_1: return X86::JBE_4; |
| 68 | case X86::JB_1: return X86::JB_4; |
| 69 | case X86::JE_1: return X86::JE_4; |
| 70 | case X86::JGE_1: return X86::JGE_4; |
| 71 | case X86::JG_1: return X86::JG_4; |
| 72 | case X86::JLE_1: return X86::JLE_4; |
| 73 | case X86::JL_1: return X86::JL_4; |
| 74 | case X86::JMP_1: return X86::JMP_4; |
| 75 | case X86::JNE_1: return X86::JNE_4; |
| 76 | case X86::JNO_1: return X86::JNO_4; |
| 77 | case X86::JNP_1: return X86::JNP_4; |
| 78 | case X86::JNS_1: return X86::JNS_4; |
| 79 | case X86::JO_1: return X86::JO_4; |
| 80 | case X86::JP_1: return X86::JP_4; |
| 81 | case X86::JS_1: return X86::JS_4; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | // FIXME: Can tblgen help at all here to verify there aren't other instructions |
| 86 | // we can relax? |
| 87 | void X86AsmBackend::RelaxInstruction(const MCInstFragment *IF, |
| 88 | MCInst &Res) const { |
| 89 | // The only relaxations X86 does is from a 1byte pcrel to a 4byte pcrel. |
| 90 | unsigned RelaxedOp = getRelaxedOpcode(IF->getInst().getOpcode()); |
| 91 | |
| 92 | if (RelaxedOp == IF->getInst().getOpcode()) { |
| 93 | SmallString<256> Tmp; |
| 94 | raw_svector_ostream OS(Tmp); |
| 95 | IF->getInst().dump_pretty(OS); |
| 96 | llvm_report_error("unexpected instruction to relax: " + OS.str()); |
| 97 | } |
| 98 | |
| 99 | Res = IF->getInst(); |
| 100 | Res.setOpcode(RelaxedOp); |
| 101 | } |
| 102 | |
Daniel Dunbar | 8f9b80e | 2010-03-23 02:36:58 +0000 | [diff] [blame^] | 103 | /// WriteNopData - Write optimal nops to the output file for the \arg Count |
| 104 | /// bytes. This returns the number of bytes written. It may return 0 if |
| 105 | /// the \arg Count is more than the maximum optimal nops. |
| 106 | /// |
| 107 | /// FIXME this is X86 32-bit specific and should move to a better place. |
| 108 | bool X86AsmBackend::WriteNopData(uint64_t Count, MCObjectWriter *OW) const { |
| 109 | static const uint8_t Nops[16][16] = { |
| 110 | // nop |
| 111 | {0x90}, |
| 112 | // xchg %ax,%ax |
| 113 | {0x66, 0x90}, |
| 114 | // nopl (%[re]ax) |
| 115 | {0x0f, 0x1f, 0x00}, |
| 116 | // nopl 0(%[re]ax) |
| 117 | {0x0f, 0x1f, 0x40, 0x00}, |
| 118 | // nopl 0(%[re]ax,%[re]ax,1) |
| 119 | {0x0f, 0x1f, 0x44, 0x00, 0x00}, |
| 120 | // nopw 0(%[re]ax,%[re]ax,1) |
| 121 | {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00}, |
| 122 | // nopl 0L(%[re]ax) |
| 123 | {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00}, |
| 124 | // nopl 0L(%[re]ax,%[re]ax,1) |
| 125 | {0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00}, |
| 126 | // nopw 0L(%[re]ax,%[re]ax,1) |
| 127 | {0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00}, |
| 128 | // nopw %cs:0L(%[re]ax,%[re]ax,1) |
| 129 | {0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00}, |
| 130 | // nopl 0(%[re]ax,%[re]ax,1) |
| 131 | // nopw 0(%[re]ax,%[re]ax,1) |
| 132 | {0x0f, 0x1f, 0x44, 0x00, 0x00, |
| 133 | 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00}, |
| 134 | // nopw 0(%[re]ax,%[re]ax,1) |
| 135 | // nopw 0(%[re]ax,%[re]ax,1) |
| 136 | {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00, |
| 137 | 0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00}, |
| 138 | // nopw 0(%[re]ax,%[re]ax,1) |
| 139 | // nopl 0L(%[re]ax) */ |
| 140 | {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00, |
| 141 | 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00}, |
| 142 | // nopl 0L(%[re]ax) |
| 143 | // nopl 0L(%[re]ax) |
| 144 | {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, |
| 145 | 0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00}, |
| 146 | // nopl 0L(%[re]ax) |
| 147 | // nopl 0L(%[re]ax,%[re]ax,1) |
| 148 | {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, |
| 149 | 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00} |
| 150 | }; |
| 151 | |
| 152 | // Write an optimal sequence for the first 15 bytes. |
| 153 | uint64_t OptimalCount = (Count < 16) ? Count : 15; |
| 154 | for (uint64_t i = 0, e = OptimalCount; i != e; i++) |
| 155 | OW->Write8(Nops[OptimalCount - 1][i]); |
| 156 | |
| 157 | // Finish with single byte nops. |
| 158 | for (uint64_t i = OptimalCount, e = Count; i != e; ++i) |
| 159 | OW->Write8(0x90); |
| 160 | |
| 161 | return true; |
| 162 | } |
| 163 | |
Daniel Dunbar | 8296800 | 2010-03-23 01:39:09 +0000 | [diff] [blame] | 164 | /* *** */ |
| 165 | |
Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 166 | class ELFX86AsmBackend : public X86AsmBackend { |
| 167 | public: |
| 168 | ELFX86AsmBackend(const Target &T) |
| 169 | : X86AsmBackend(T) { |
| 170 | HasAbsolutizedSet = true; |
| 171 | HasScatteredSymbols = true; |
| 172 | } |
| 173 | |
Daniel Dunbar | 1a9158c | 2010-03-19 10:43:26 +0000 | [diff] [blame] | 174 | MCObjectWriter *createObjectWriter(raw_ostream &OS) const { |
| 175 | return 0; |
| 176 | } |
| 177 | |
Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 178 | bool isVirtualSection(const MCSection &Section) const { |
| 179 | const MCSectionELF &SE = static_cast<const MCSectionELF&>(Section); |
| 180 | return SE.getType() == MCSectionELF::SHT_NOBITS;; |
| 181 | } |
| 182 | }; |
| 183 | |
Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 184 | class DarwinX86AsmBackend : public X86AsmBackend { |
| 185 | public: |
| 186 | DarwinX86AsmBackend(const Target &T) |
Daniel Dunbar | 0682951 | 2010-03-18 00:58:53 +0000 | [diff] [blame] | 187 | : X86AsmBackend(T) { |
| 188 | HasAbsolutizedSet = true; |
| 189 | HasScatteredSymbols = true; |
| 190 | } |
Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 191 | |
| 192 | bool isVirtualSection(const MCSection &Section) const { |
| 193 | const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section); |
| 194 | return (SMO.getType() == MCSectionMachO::S_ZEROFILL || |
| 195 | SMO.getType() == MCSectionMachO::S_GB_ZEROFILL); |
| 196 | } |
Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 197 | }; |
| 198 | |
Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 199 | class DarwinX86_32AsmBackend : public DarwinX86AsmBackend { |
| 200 | public: |
| 201 | DarwinX86_32AsmBackend(const Target &T) |
| 202 | : DarwinX86AsmBackend(T) {} |
Daniel Dunbar | 1a9158c | 2010-03-19 10:43:26 +0000 | [diff] [blame] | 203 | |
| 204 | MCObjectWriter *createObjectWriter(raw_ostream &OS) const { |
| 205 | return new MachObjectWriter(OS, /*Is64Bit=*/false); |
| 206 | } |
Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 207 | }; |
| 208 | |
| 209 | class DarwinX86_64AsmBackend : public DarwinX86AsmBackend { |
| 210 | public: |
| 211 | DarwinX86_64AsmBackend(const Target &T) |
Daniel Dunbar | 0682951 | 2010-03-18 00:58:53 +0000 | [diff] [blame] | 212 | : DarwinX86AsmBackend(T) { |
| 213 | HasReliableSymbolDifference = true; |
| 214 | } |
Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 215 | |
Daniel Dunbar | 1a9158c | 2010-03-19 10:43:26 +0000 | [diff] [blame] | 216 | MCObjectWriter *createObjectWriter(raw_ostream &OS) const { |
| 217 | return new MachObjectWriter(OS, /*Is64Bit=*/true); |
| 218 | } |
| 219 | |
Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 220 | virtual bool doesSectionRequireSymbols(const MCSection &Section) const { |
| 221 | // Temporary labels in the string literals sections require symbols. The |
| 222 | // issue is that the x86_64 relocation format does not allow symbol + |
| 223 | // offset, and so the linker does not have enough information to resolve the |
| 224 | // access to the appropriate atom unless an external relocation is used. For |
| 225 | // non-cstring sections, we expect the compiler to use a non-temporary label |
| 226 | // for anything that could have an addend pointing outside the symbol. |
| 227 | // |
| 228 | // See <rdar://problem/4765733>. |
| 229 | const MCSectionMachO &SMO = static_cast<const MCSectionMachO&>(Section); |
| 230 | return SMO.getType() == MCSectionMachO::S_CSTRING_LITERALS; |
| 231 | } |
| 232 | }; |
| 233 | |
Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | TargetAsmBackend *llvm::createX86_32AsmBackend(const Target &T, |
Daniel Dunbar | 6c27f5e | 2010-03-11 01:34:16 +0000 | [diff] [blame] | 237 | const std::string &TT) { |
Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 238 | switch (Triple(TT).getOS()) { |
| 239 | case Triple::Darwin: |
Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 240 | return new DarwinX86_32AsmBackend(T); |
Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 241 | default: |
Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 242 | return new ELFX86AsmBackend(T); |
Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 243 | } |
Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | TargetAsmBackend *llvm::createX86_64AsmBackend(const Target &T, |
Daniel Dunbar | 6c27f5e | 2010-03-11 01:34:16 +0000 | [diff] [blame] | 247 | const std::string &TT) { |
Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 248 | switch (Triple(TT).getOS()) { |
| 249 | case Triple::Darwin: |
Daniel Dunbar | d6e5908 | 2010-03-15 21:56:50 +0000 | [diff] [blame] | 250 | return new DarwinX86_64AsmBackend(T); |
Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 251 | default: |
Daniel Dunbar | cc5b84c | 2010-03-19 09:29:03 +0000 | [diff] [blame] | 252 | return new ELFX86AsmBackend(T); |
Daniel Dunbar | 23ac7c7 | 2010-03-11 01:34:21 +0000 | [diff] [blame] | 253 | } |
Daniel Dunbar | 12783d1 | 2010-02-21 21:54:14 +0000 | [diff] [blame] | 254 | } |