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