MipsELFObjectWriter.cpp revision 0140e55393c4403ab240c386501cdc5e438dcc0e
1//===-- MipsELFObjectWriter.cpp - Mips ELF Writer -------------------------===//
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/MipsBaseInfo.h"
11#include "MCTargetDesc/MipsFixupKinds.h"
12#include "MCTargetDesc/MipsMCTargetDesc.h"
13#include "llvm/MC/MCAssembler.h"
14#include "llvm/MC/MCELFObjectWriter.h"
15#include "llvm/MC/MCExpr.h"
16#include "llvm/MC/MCSection.h"
17#include "llvm/MC/MCValue.h"
18#include "llvm/Support/ErrorHandling.h"
19#include <list>
20
21using namespace llvm;
22
23namespace {
24  struct RelEntry {
25    RelEntry(const ELFRelocationEntry &R, const MCSymbol *S, int64_t O) :
26      Reloc(R), Sym(S), Offset(O) {}
27    ELFRelocationEntry Reloc;
28    const MCSymbol *Sym;
29    int64_t Offset;
30  };
31
32  typedef std::list<RelEntry> RelLs;
33  typedef RelLs::iterator RelLsIter;
34
35  class MipsELFObjectWriter : public MCELFObjectTargetWriter {
36  public:
37    MipsELFObjectWriter(bool _is64Bit, uint8_t OSABI, bool _isN64);
38
39    virtual ~MipsELFObjectWriter();
40
41    virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
42                                  bool IsPCRel, bool IsRelocWithSymbol,
43                                  int64_t Addend) const;
44    virtual unsigned getEFlags() const;
45    virtual const MCSymbol *ExplicitRelSym(const MCAssembler &Asm,
46                                           const MCValue &Target,
47                                           const MCFragment &F,
48                                           const MCFixup &Fixup,
49                                           bool IsPCRel) const;
50    virtual void sortRelocs(const MCAssembler &Asm,
51                            std::vector<ELFRelocationEntry> &Relocs);
52  };
53}
54
55MipsELFObjectWriter::MipsELFObjectWriter(bool _is64Bit, uint8_t OSABI,
56                                         bool _isN64)
57  : MCELFObjectTargetWriter(_is64Bit, OSABI, ELF::EM_MIPS,
58                            /*HasRelocationAddend*/ false,
59                            /*IsN64*/ _isN64) {}
60
61MipsELFObjectWriter::~MipsELFObjectWriter() {}
62
63// FIXME: get the real EABI Version from the Subtarget class.
64unsigned MipsELFObjectWriter::getEFlags() const {
65
66  // FIXME: We can't tell if we are PIC (dynamic) or CPIC (static)
67  unsigned Flag = ELF::EF_MIPS_NOREORDER;
68
69  if (is64Bit())
70    Flag |= ELF::EF_MIPS_ARCH_64R2;
71  else
72    Flag |= ELF::EF_MIPS_ARCH_32R2;
73  return Flag;
74}
75
76const MCSymbol *MipsELFObjectWriter::ExplicitRelSym(const MCAssembler &Asm,
77                                                    const MCValue &Target,
78                                                    const MCFragment &F,
79                                                    const MCFixup &Fixup,
80                                                    bool IsPCRel) const {
81  assert(Target.getSymA() && "SymA cannot be 0.");
82  const MCSymbol &Sym = Target.getSymA()->getSymbol().AliasedSymbol();
83
84  if (Sym.getSection().getKind().isMergeableCString() ||
85      Sym.getSection().getKind().isMergeableConst())
86    return &Sym;
87
88  return NULL;
89}
90
91unsigned MipsELFObjectWriter::GetRelocType(const MCValue &Target,
92                                           const MCFixup &Fixup,
93                                           bool IsPCRel,
94                                           bool IsRelocWithSymbol,
95                                           int64_t Addend) const {
96  // determine the type of the relocation
97  unsigned Type = (unsigned)ELF::R_MIPS_NONE;
98  unsigned Kind = (unsigned)Fixup.getKind();
99
100  switch (Kind) {
101  default:
102    llvm_unreachable("invalid fixup kind!");
103  case FK_Data_4:
104    Type = ELF::R_MIPS_32;
105    break;
106  case FK_GPRel_4:
107    Type = ELF::R_MIPS_GPREL32;
108    break;
109  case Mips::fixup_Mips_GPREL16:
110    Type = ELF::R_MIPS_GPREL16;
111    break;
112  case Mips::fixup_Mips_26:
113    Type = ELF::R_MIPS_26;
114    break;
115  case Mips::fixup_Mips_CALL16:
116    Type = ELF::R_MIPS_CALL16;
117    break;
118  case Mips::fixup_Mips_GOT_Global:
119  case Mips::fixup_Mips_GOT_Local:
120    Type = ELF::R_MIPS_GOT16;
121    break;
122  case Mips::fixup_Mips_HI16:
123    Type = ELF::R_MIPS_HI16;
124    break;
125  case Mips::fixup_Mips_LO16:
126    Type = ELF::R_MIPS_LO16;
127    break;
128  case Mips::fixup_Mips_TLSGD:
129    Type = ELF::R_MIPS_TLS_GD;
130    break;
131  case Mips::fixup_Mips_GOTTPREL:
132    Type = ELF::R_MIPS_TLS_GOTTPREL;
133    break;
134  case Mips::fixup_Mips_TPREL_HI:
135    Type = ELF::R_MIPS_TLS_TPREL_HI16;
136    break;
137  case Mips::fixup_Mips_TPREL_LO:
138    Type = ELF::R_MIPS_TLS_TPREL_LO16;
139    break;
140  case Mips::fixup_Mips_TLSLDM:
141    Type = ELF::R_MIPS_TLS_LDM;
142    break;
143  case Mips::fixup_Mips_DTPREL_HI:
144    Type = ELF::R_MIPS_TLS_DTPREL_HI16;
145    break;
146  case Mips::fixup_Mips_DTPREL_LO:
147    Type = ELF::R_MIPS_TLS_DTPREL_LO16;
148    break;
149  case Mips::fixup_Mips_Branch_PCRel:
150  case Mips::fixup_Mips_PC16:
151    Type = ELF::R_MIPS_PC16;
152    break;
153  case Mips::fixup_Mips_GOT_PAGE:
154    Type = ELF::R_MIPS_GOT_PAGE;
155    break;
156  case Mips::fixup_Mips_GOT_OFST:
157    Type = ELF::R_MIPS_GOT_OFST;
158    break;
159  case Mips::fixup_Mips_GPOFF_HI:
160    Type = setRType((unsigned)ELF::R_MIPS_GPREL16, Type);
161    Type = setRType2((unsigned)ELF::R_MIPS_SUB, Type);
162    Type = setRType3((unsigned)ELF::R_MIPS_HI16, Type);
163    break;
164  case Mips::fixup_Mips_GPOFF_LO:
165    Type = setRType((unsigned)ELF::R_MIPS_GPREL16, Type);
166    Type = setRType2((unsigned)ELF::R_MIPS_SUB, Type);
167    Type = setRType3((unsigned)ELF::R_MIPS_LO16, Type);
168    break;
169  }
170  return Type;
171}
172
173// Return true if R is either a GOT16 against a local symbol or HI16.
174static bool NeedsMatchingLo(const MCAssembler &Asm, const RelEntry &R) {
175  if (!R.Sym)
176    return false;
177
178  MCSymbolData &SD = Asm.getSymbolData(R.Sym->AliasedSymbol());
179
180  return ((R.Reloc.Type == ELF::R_MIPS_GOT16) && !SD.isExternal()) ||
181    (R.Reloc.Type == ELF::R_MIPS_HI16);
182}
183
184static bool HasMatchingLo(const MCAssembler &Asm, RelLsIter I, RelLsIter Last) {
185  if (I == Last)
186    return false;
187
188  RelLsIter Hi = I++;
189
190  return (I->Reloc.Type == ELF::R_MIPS_LO16) && (Hi->Sym == I->Sym) &&
191    (Hi->Offset == I->Offset);
192}
193
194static bool HasSameSymbol(const RelEntry &R0, const RelEntry &R1) {
195  return R0.Sym == R1.Sym;
196}
197
198static int CompareOffset(const RelEntry &R0, const RelEntry &R1) {
199  return (R0.Offset > R1.Offset) ? 1 : ((R0.Offset == R1.Offset) ? 0 : -1);
200}
201
202void MipsELFObjectWriter::sortRelocs(const MCAssembler &Asm,
203                                     std::vector<ELFRelocationEntry> &Relocs) {
204  // Call the default function first. Relocations are sorted in descending
205  // order of r_offset.
206  MCELFObjectTargetWriter::sortRelocs(Asm, Relocs);
207
208  RelLs RelocLs;
209  std::vector<RelLsIter> Unmatched;
210
211  // Fill RelocLs. Traverse Relocs backwards so that relocations in RelocLs
212  // are in ascending order of r_offset.
213  for (std::vector<ELFRelocationEntry>::reverse_iterator R = Relocs.rbegin();
214       R != Relocs.rend(); ++R) {
215     std::pair<const MCSymbolRefExpr*, int64_t> P =
216       MipsGetSymAndOffset(*R->Fixup);
217     RelocLs.push_back(RelEntry(*R, P.first ? &P.first->getSymbol() : 0,
218                                P.second));
219  }
220
221  // Get list of unmatched HI16 and GOT16.
222  for (RelLsIter R = RelocLs.begin(); R != RelocLs.end(); ++R)
223    if (NeedsMatchingLo(Asm, *R) && !HasMatchingLo(Asm, R, --RelocLs.end()))
224      Unmatched.push_back(R);
225
226  // Insert unmatched HI16 and GOT16 immediately before their matching LO16.
227  for (std::vector<RelLsIter>::iterator U = Unmatched.begin();
228       U != Unmatched.end(); ++U) {
229    RelLsIter LoPos = RelocLs.end(), HiPos = *U;
230    bool MatchedLo = false;
231
232    for (RelLsIter R = RelocLs.begin(); R != RelocLs.end(); ++R) {
233      if ((R->Reloc.Type == ELF::R_MIPS_LO16) && HasSameSymbol(*HiPos, *R) &&
234          (CompareOffset(*R, *HiPos) >= 0) &&
235          ((LoPos == RelocLs.end()) || ((CompareOffset(*R, *LoPos) < 0)) ||
236           (!MatchedLo && !CompareOffset(*R, *LoPos))))
237        LoPos = R;
238
239      MatchedLo = NeedsMatchingLo(Asm, *R) &&
240        HasMatchingLo(Asm, R, --RelocLs.end());
241    }
242
243    // If a matching LoPos was found, move HiPos and insert it before LoPos.
244    // Make the offsets of HiPos and LoPos match.
245    if (LoPos != RelocLs.end()) {
246      HiPos->Offset = LoPos->Offset;
247      RelocLs.insert(LoPos, *HiPos);
248      RelocLs.erase(HiPos);
249    }
250  }
251
252  // Put the sorted list back in reverse order.
253  assert(Relocs.size() == RelocLs.size());
254  unsigned I = RelocLs.size();
255
256  for (RelLsIter R = RelocLs.begin(); R != RelocLs.end(); ++R)
257    Relocs[--I] = R->Reloc;
258}
259
260MCObjectWriter *llvm::createMipsELFObjectWriter(raw_ostream &OS,
261                                                uint8_t OSABI,
262                                                bool IsLittleEndian,
263                                                bool Is64Bit) {
264  MCELFObjectTargetWriter *MOTW = new MipsELFObjectWriter(Is64Bit, OSABI,
265                                                (Is64Bit) ? true : false);
266  return createELFObjectWriter(MOTW, OS, IsLittleEndian);
267}
268