Jia Liu | c570711 | 2012-02-17 08:55:11 +0000 | [diff] [blame] | 1 | //===-- MipsASMBackend.cpp - Mips Asm Backend ----------------------------===// |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 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 | // This file implements the MipsAsmBackend and MipsELFObjectWriter classes. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | // |
| 14 | |
Akira Hatanaka | 59182f9 | 2012-03-27 02:33:05 +0000 | [diff] [blame] | 15 | #include "MipsBaseInfo.h" |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 16 | #include "MipsFixupKinds.h" |
Akira Hatanaka | 82ea731 | 2011-09-30 21:04:02 +0000 | [diff] [blame] | 17 | #include "MCTargetDesc/MipsMCTargetDesc.h" |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 18 | #include "llvm/MC/MCAsmBackend.h" |
Akira Hatanaka | 82ea731 | 2011-09-30 21:04:02 +0000 | [diff] [blame] | 19 | #include "llvm/MC/MCAssembler.h" |
| 20 | #include "llvm/MC/MCDirectives.h" |
| 21 | #include "llvm/MC/MCELFObjectWriter.h" |
Craig Topper | f1d0f77 | 2012-03-26 06:58:25 +0000 | [diff] [blame] | 22 | #include "llvm/MC/MCFixupKindInfo.h" |
Akira Hatanaka | 82ea731 | 2011-09-30 21:04:02 +0000 | [diff] [blame] | 23 | #include "llvm/MC/MCObjectWriter.h" |
Akira Hatanaka | 82ea731 | 2011-09-30 21:04:02 +0000 | [diff] [blame] | 24 | #include "llvm/MC/MCSubtargetInfo.h" |
Akira Hatanaka | 82ea731 | 2011-09-30 21:04:02 +0000 | [diff] [blame] | 25 | #include "llvm/Support/ErrorHandling.h" |
| 26 | #include "llvm/Support/raw_ostream.h" |
Bruno Cardoso Lopes | e3d3572 | 2011-12-07 00:28:57 +0000 | [diff] [blame] | 27 | |
Akira Hatanaka | 82ea731 | 2011-09-30 21:04:02 +0000 | [diff] [blame] | 28 | using namespace llvm; |
| 29 | |
Bruno Cardoso Lopes | e3d3572 | 2011-12-07 00:28:57 +0000 | [diff] [blame] | 30 | // Prepare value for the target space for it |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 31 | static unsigned adjustFixupValue(unsigned Kind, uint64_t Value) { |
| 32 | |
| 33 | // Add/subtract and shift |
| 34 | switch (Kind) { |
| 35 | default: |
Bruno Cardoso Lopes | e3d3572 | 2011-12-07 00:28:57 +0000 | [diff] [blame] | 36 | return 0; |
| 37 | case FK_GPRel_4: |
| 38 | case FK_Data_4: |
| 39 | case Mips::fixup_Mips_LO16: |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 40 | break; |
| 41 | case Mips::fixup_Mips_PC16: |
| 42 | // So far we are only using this type for branches. |
| 43 | // For branches we start 1 instruction after the branch |
| 44 | // so the displacement will be one instruction size less. |
| 45 | Value -= 4; |
| 46 | // The displacement is then divided by 4 to give us an 18 bit |
| 47 | // address range. |
| 48 | Value >>= 2; |
| 49 | break; |
| 50 | case Mips::fixup_Mips_26: |
| 51 | // So far we are only using this type for jumps. |
| 52 | // The displacement is then divided by 4 to give us an 28 bit |
| 53 | // address range. |
| 54 | Value >>= 2; |
| 55 | break; |
Akira Hatanaka | 84bfc2f | 2011-11-23 22:18:04 +0000 | [diff] [blame] | 56 | case Mips::fixup_Mips_HI16: |
Bruno Cardoso Lopes | e3d3572 | 2011-12-07 00:28:57 +0000 | [diff] [blame] | 57 | case Mips::fixup_Mips_GOT_Local: |
| 58 | // Get the higher 16-bits. Also add 1 if bit 15 is 1. |
Akira Hatanaka | bca9c25 | 2012-03-27 01:50:08 +0000 | [diff] [blame] | 59 | Value = ((Value + 0x8000) >> 16) & 0xffff; |
Akira Hatanaka | 84bfc2f | 2011-11-23 22:18:04 +0000 | [diff] [blame] | 60 | break; |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | return Value; |
| 64 | } |
| 65 | |
Akira Hatanaka | 82ea731 | 2011-09-30 21:04:02 +0000 | [diff] [blame] | 66 | namespace { |
Akira Hatanaka | 82ea731 | 2011-09-30 21:04:02 +0000 | [diff] [blame] | 67 | class MipsAsmBackend : public MCAsmBackend { |
Akira Hatanaka | e9e520f | 2012-03-01 01:53:15 +0000 | [diff] [blame] | 68 | Triple::OSType OSType; |
| 69 | bool IsLittle; // Big or little endian |
Akira Hatanaka | a551a48 | 2012-04-02 19:25:22 +0000 | [diff] [blame^] | 70 | bool Is64Bit; // 32 or 64 bit words |
Akira Hatanaka | e9e520f | 2012-03-01 01:53:15 +0000 | [diff] [blame] | 71 | |
Akira Hatanaka | 82ea731 | 2011-09-30 21:04:02 +0000 | [diff] [blame] | 72 | public: |
Akira Hatanaka | a551a48 | 2012-04-02 19:25:22 +0000 | [diff] [blame^] | 73 | MipsAsmBackend(const Target &T, Triple::OSType _OSType, |
| 74 | bool _isLittle, bool _is64Bit) |
| 75 | :MCAsmBackend(), OSType(_OSType), IsLittle(_isLittle), Is64Bit(_is64Bit) {} |
Akira Hatanaka | e9e520f | 2012-03-01 01:53:15 +0000 | [diff] [blame] | 76 | |
| 77 | MCObjectWriter *createObjectWriter(raw_ostream &OS) const { |
Akira Hatanaka | a551a48 | 2012-04-02 19:25:22 +0000 | [diff] [blame^] | 78 | return createMipsELFObjectWriter(OS, OSType, IsLittle, Is64Bit); |
Akira Hatanaka | e9e520f | 2012-03-01 01:53:15 +0000 | [diff] [blame] | 79 | } |
Akira Hatanaka | 4b6ee7a | 2011-09-30 21:23:45 +0000 | [diff] [blame] | 80 | |
| 81 | /// ApplyFixup - Apply the \arg Value for given \arg Fixup into the provided |
| 82 | /// data fragment, at the offset specified by the fixup and following the |
| 83 | /// fixup kind as appropriate. |
Jim Grosbach | ec34338 | 2012-01-18 18:52:16 +0000 | [diff] [blame] | 84 | void applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize, |
Akira Hatanaka | 4b6ee7a | 2011-09-30 21:23:45 +0000 | [diff] [blame] | 85 | uint64_t Value) const { |
Bruno Cardoso Lopes | e3d3572 | 2011-12-07 00:28:57 +0000 | [diff] [blame] | 86 | MCFixupKind Kind = Fixup.getKind(); |
| 87 | Value = adjustFixupValue((unsigned)Kind, Value); |
Akira Hatanaka | 59182f9 | 2012-03-27 02:33:05 +0000 | [diff] [blame] | 88 | int64_t SymOffset = MipsGetSymAndOffset(Fixup).second; |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 89 | |
Akira Hatanaka | 59182f9 | 2012-03-27 02:33:05 +0000 | [diff] [blame] | 90 | if (!Value && !SymOffset) |
Bruno Cardoso Lopes | e3d3572 | 2011-12-07 00:28:57 +0000 | [diff] [blame] | 91 | return; // Doesn't change encoding. |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 92 | |
Akira Hatanaka | fb54afb | 2012-03-21 00:52:01 +0000 | [diff] [blame] | 93 | // Where do we start in the object |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 94 | unsigned Offset = Fixup.getOffset(); |
Akira Hatanaka | fb54afb | 2012-03-21 00:52:01 +0000 | [diff] [blame] | 95 | // Number of bytes we need to fixup |
| 96 | unsigned NumBytes = (getFixupKindInfo(Kind).TargetSize + 7) / 8; |
| 97 | // Used to point to big endian bytes |
| 98 | unsigned FullSize; |
| 99 | |
Craig Topper | 9be7c94 | 2012-03-21 02:28:53 +0000 | [diff] [blame] | 100 | switch ((unsigned)Kind) { |
Akira Hatanaka | fb54afb | 2012-03-21 00:52:01 +0000 | [diff] [blame] | 101 | case Mips::fixup_Mips_16: |
| 102 | FullSize = 2; |
| 103 | break; |
| 104 | case Mips::fixup_Mips_64: |
| 105 | FullSize = 8; |
| 106 | break; |
| 107 | default: |
| 108 | FullSize = 4; |
| 109 | break; |
| 110 | } |
Bruno Cardoso Lopes | e3d3572 | 2011-12-07 00:28:57 +0000 | [diff] [blame] | 111 | |
| 112 | // Grab current value, if any, from bits. |
| 113 | uint64_t CurVal = 0; |
Bruno Cardoso Lopes | e3d3572 | 2011-12-07 00:28:57 +0000 | [diff] [blame] | 114 | |
Akira Hatanaka | fb54afb | 2012-03-21 00:52:01 +0000 | [diff] [blame] | 115 | for (unsigned i = 0; i != NumBytes; ++i) { |
| 116 | unsigned Idx = IsLittle ? i : (FullSize - 1 - i); |
| 117 | CurVal |= (uint64_t)((uint8_t)Data[Offset + Idx]) << (i*8); |
| 118 | } |
| 119 | |
| 120 | uint64_t Mask = ((uint64_t)(-1) >> (64 - getFixupKindInfo(Kind).TargetSize)); |
Akira Hatanaka | 59182f9 | 2012-03-27 02:33:05 +0000 | [diff] [blame] | 121 | CurVal |= (Value + SymOffset) & Mask; |
Bruno Cardoso Lopes | e3d3572 | 2011-12-07 00:28:57 +0000 | [diff] [blame] | 122 | |
Akira Hatanaka | fb54afb | 2012-03-21 00:52:01 +0000 | [diff] [blame] | 123 | // Write out the fixed up bytes back to the code/data bits. |
Bruno Cardoso Lopes | e3d3572 | 2011-12-07 00:28:57 +0000 | [diff] [blame] | 124 | for (unsigned i = 0; i != NumBytes; ++i) { |
Akira Hatanaka | fb54afb | 2012-03-21 00:52:01 +0000 | [diff] [blame] | 125 | unsigned Idx = IsLittle ? i : (FullSize - 1 - i); |
| 126 | Data[Offset + Idx] = (uint8_t)((CurVal >> (i*8)) & 0xff); |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 127 | } |
Akira Hatanaka | fb54afb | 2012-03-21 00:52:01 +0000 | [diff] [blame] | 128 | } |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 129 | |
| 130 | unsigned getNumFixupKinds() const { return Mips::NumTargetFixupKinds; } |
| 131 | |
| 132 | const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const { |
| 133 | const static MCFixupKindInfo Infos[Mips::NumTargetFixupKinds] = { |
Bruno Cardoso Lopes | e3d3572 | 2011-12-07 00:28:57 +0000 | [diff] [blame] | 134 | // This table *must* be in same the order of fixup_* kinds in |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 135 | // MipsFixupKinds.h. |
| 136 | // |
| 137 | // name offset bits flags |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 138 | { "fixup_Mips_16", 0, 16, 0 }, |
| 139 | { "fixup_Mips_32", 0, 32, 0 }, |
| 140 | { "fixup_Mips_REL32", 0, 32, 0 }, |
| 141 | { "fixup_Mips_26", 0, 26, 0 }, |
| 142 | { "fixup_Mips_HI16", 0, 16, 0 }, |
| 143 | { "fixup_Mips_LO16", 0, 16, 0 }, |
| 144 | { "fixup_Mips_GPREL16", 0, 16, 0 }, |
| 145 | { "fixup_Mips_LITERAL", 0, 16, 0 }, |
Bruno Cardoso Lopes | e3d3572 | 2011-12-07 00:28:57 +0000 | [diff] [blame] | 146 | { "fixup_Mips_GOT_Global", 0, 16, 0 }, |
| 147 | { "fixup_Mips_GOT_Local", 0, 16, 0 }, |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 148 | { "fixup_Mips_PC16", 0, 16, MCFixupKindInfo::FKF_IsPCRel }, |
| 149 | { "fixup_Mips_CALL16", 0, 16, 0 }, |
| 150 | { "fixup_Mips_GPREL32", 0, 32, 0 }, |
| 151 | { "fixup_Mips_SHIFT5", 6, 5, 0 }, |
| 152 | { "fixup_Mips_SHIFT6", 6, 5, 0 }, |
| 153 | { "fixup_Mips_64", 0, 64, 0 }, |
| 154 | { "fixup_Mips_TLSGD", 0, 16, 0 }, |
| 155 | { "fixup_Mips_GOTTPREL", 0, 16, 0 }, |
| 156 | { "fixup_Mips_TPREL_HI", 0, 16, 0 }, |
| 157 | { "fixup_Mips_TPREL_LO", 0, 16, 0 }, |
Akira Hatanaka | bc24985 | 2011-12-22 01:05:17 +0000 | [diff] [blame] | 158 | { "fixup_Mips_TLSLDM", 0, 16, 0 }, |
| 159 | { "fixup_Mips_DTPREL_HI", 0, 16, 0 }, |
| 160 | { "fixup_Mips_DTPREL_LO", 0, 16, 0 }, |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 161 | { "fixup_Mips_Branch_PCRel", 0, 16, MCFixupKindInfo::FKF_IsPCRel } |
| 162 | }; |
| 163 | |
| 164 | if (Kind < FirstTargetFixupKind) |
| 165 | return MCAsmBackend::getFixupKindInfo(Kind); |
| 166 | |
| 167 | assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() && |
| 168 | "Invalid kind!"); |
| 169 | return Infos[Kind - FirstTargetFixupKind]; |
Akira Hatanaka | 4b6ee7a | 2011-09-30 21:23:45 +0000 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | /// @name Target Relaxation Interfaces |
| 173 | /// @{ |
| 174 | |
| 175 | /// MayNeedRelaxation - Check whether the given instruction may need |
| 176 | /// relaxation. |
| 177 | /// |
| 178 | /// \param Inst - The instruction to test. |
Jim Grosbach | ec34338 | 2012-01-18 18:52:16 +0000 | [diff] [blame] | 179 | bool mayNeedRelaxation(const MCInst &Inst) const { |
Akira Hatanaka | 4b6ee7a | 2011-09-30 21:23:45 +0000 | [diff] [blame] | 180 | return false; |
| 181 | } |
| 182 | |
Jim Grosbach | 370b78d | 2011-12-06 00:47:03 +0000 | [diff] [blame] | 183 | /// fixupNeedsRelaxation - Target specific predicate for whether a given |
| 184 | /// fixup requires the associated instruction to be relaxed. |
| 185 | bool fixupNeedsRelaxation(const MCFixup &Fixup, |
| 186 | uint64_t Value, |
| 187 | const MCInstFragment *DF, |
| 188 | const MCAsmLayout &Layout) const { |
| 189 | // FIXME. |
| 190 | assert(0 && "RelaxInstruction() unimplemented"); |
NAKAMURA Takumi | 6482e91 | 2011-12-06 01:48:32 +0000 | [diff] [blame] | 191 | return false; |
Jim Grosbach | 370b78d | 2011-12-06 00:47:03 +0000 | [diff] [blame] | 192 | } |
| 193 | |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 194 | /// RelaxInstruction - Relax the instruction in the given fragment |
| 195 | /// to the next wider instruction. |
Akira Hatanaka | 4b6ee7a | 2011-09-30 21:23:45 +0000 | [diff] [blame] | 196 | /// |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 197 | /// \param Inst - The instruction to relax, which may be the same |
| 198 | /// as the output. |
Akira Hatanaka | 4b6ee7a | 2011-09-30 21:23:45 +0000 | [diff] [blame] | 199 | /// \parm Res [output] - On return, the relaxed instruction. |
Jim Grosbach | ec34338 | 2012-01-18 18:52:16 +0000 | [diff] [blame] | 200 | void relaxInstruction(const MCInst &Inst, MCInst &Res) const { |
Akira Hatanaka | 4b6ee7a | 2011-09-30 21:23:45 +0000 | [diff] [blame] | 201 | } |
Jia Liu | bb481f8 | 2012-02-28 07:46:26 +0000 | [diff] [blame] | 202 | |
Akira Hatanaka | 4b6ee7a | 2011-09-30 21:23:45 +0000 | [diff] [blame] | 203 | /// @} |
| 204 | |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 205 | /// WriteNopData - Write an (optimal) nop sequence of Count bytes |
| 206 | /// to the given output. If the target cannot generate such a sequence, |
| 207 | /// it should return an error. |
Akira Hatanaka | 4b6ee7a | 2011-09-30 21:23:45 +0000 | [diff] [blame] | 208 | /// |
| 209 | /// \return - True on success. |
Jim Grosbach | ec34338 | 2012-01-18 18:52:16 +0000 | [diff] [blame] | 210 | bool writeNopData(uint64_t Count, MCObjectWriter *OW) const { |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 211 | return true; |
Akira Hatanaka | 4b6ee7a | 2011-09-30 21:23:45 +0000 | [diff] [blame] | 212 | } |
Akira Hatanaka | a551a48 | 2012-04-02 19:25:22 +0000 | [diff] [blame^] | 213 | }; // class MipsAsmBackend |
Akira Hatanaka | 82ea731 | 2011-09-30 21:04:02 +0000 | [diff] [blame] | 214 | |
Bruno Cardoso Lopes | 47b92f3 | 2011-11-11 22:58:42 +0000 | [diff] [blame] | 215 | } // namespace |
Akira Hatanaka | 4b6ee7a | 2011-09-30 21:23:45 +0000 | [diff] [blame] | 216 | |
Akira Hatanaka | e9e520f | 2012-03-01 01:53:15 +0000 | [diff] [blame] | 217 | // MCAsmBackend |
Akira Hatanaka | a551a48 | 2012-04-02 19:25:22 +0000 | [diff] [blame^] | 218 | MCAsmBackend *llvm::createMipsAsmBackendEL32(const Target &T, StringRef TT) { |
Akira Hatanaka | e9e520f | 2012-03-01 01:53:15 +0000 | [diff] [blame] | 219 | return new MipsAsmBackend(T, Triple(TT).getOS(), |
Akira Hatanaka | a551a48 | 2012-04-02 19:25:22 +0000 | [diff] [blame^] | 220 | /*IsLittle*/true, /*Is64Bit*/false); |
Rafael Espindola | 29a1714 | 2012-01-11 04:04:14 +0000 | [diff] [blame] | 221 | } |
Akira Hatanaka | 4b6ee7a | 2011-09-30 21:23:45 +0000 | [diff] [blame] | 222 | |
Akira Hatanaka | a551a48 | 2012-04-02 19:25:22 +0000 | [diff] [blame^] | 223 | MCAsmBackend *llvm::createMipsAsmBackendEB32(const Target &T, StringRef TT) { |
Akira Hatanaka | e9e520f | 2012-03-01 01:53:15 +0000 | [diff] [blame] | 224 | return new MipsAsmBackend(T, Triple(TT).getOS(), |
Akira Hatanaka | a551a48 | 2012-04-02 19:25:22 +0000 | [diff] [blame^] | 225 | /*IsLittle*/false, /*Is64Bit*/false); |
Akira Hatanaka | 4b6ee7a | 2011-09-30 21:23:45 +0000 | [diff] [blame] | 226 | } |
Akira Hatanaka | a551a48 | 2012-04-02 19:25:22 +0000 | [diff] [blame^] | 227 | |
| 228 | MCAsmBackend *llvm::createMipsAsmBackendEL64(const Target &T, StringRef TT) { |
| 229 | return new MipsAsmBackend(T, Triple(TT).getOS(), |
| 230 | /*IsLittle*/true, /*Is64Bit*/true); |
| 231 | } |
| 232 | |
| 233 | MCAsmBackend *llvm::createMipsAsmBackendEB64(const Target &T, StringRef TT) { |
| 234 | return new MipsAsmBackend(T, Triple(TT).getOS(), |
| 235 | /*IsLittle*/false, /*Is64Bit*/true); |
| 236 | } |
| 237 | |