1 //===-- MCELFObjectTargetWriter.cpp - ELF Target Writer Subclass ----------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #include "llvm/ADT/STLExtras.h"
11 #include "llvm/MC/MCELFObjectWriter.h"
12 #include "llvm/MC/MCExpr.h"
13 #include "llvm/MC/MCValue.h"
17 MCELFObjectTargetWriter::MCELFObjectTargetWriter(bool Is64Bit_,
20 bool HasRelocationAddend_,
22 : OSABI(OSABI_), EMachine(EMachine_),
23 HasRelocationAddend(HasRelocationAddend_), Is64Bit(Is64Bit_),
27 const MCSymbol *MCELFObjectTargetWriter::ExplicitRelSym(const MCAssembler &Asm,
28 const MCValue &Target,
35 const MCSymbol *MCELFObjectTargetWriter::undefinedExplicitRelSym(const MCValue &Target,
38 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
39 return &Symbol.AliasedSymbol();
42 // ELF doesn't require relocations to be in any order. We sort by the r_offset,
43 // just to match gnu as for easier comparison. The use type and index is an
44 // arbitrary way of making the sort deterministic.
45 static int cmpRel(const ELFRelocationEntry *AP, const ELFRelocationEntry *BP) {
46 const ELFRelocationEntry &A = *AP;
47 const ELFRelocationEntry &B = *BP;
48 if (A.r_offset != B.r_offset)
49 return B.r_offset - A.r_offset;
51 return A.Type - B.Type;
52 if (B.Index != A.Index)
53 return B.Index - A.Index;
54 llvm_unreachable("ELFRelocs might be unstable!");
58 MCELFObjectTargetWriter::sortRelocs(const MCAssembler &Asm,
59 std::vector<ELFRelocationEntry> &Relocs) {
60 array_pod_sort(Relocs.begin(), Relocs.end(), cmpRel);