2010-12-17 17:59:53 +01:00
|
|
|
//===-- llvm/MC/MCELFObjectWriter.h - ELF Object Writer ---------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_MC_MCELFOBJECTWRITER_H
|
|
|
|
#define LLVM_MC_MCELFOBJECTWRITER_H
|
|
|
|
|
2012-03-26 08:58:25 +02:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2010-12-17 17:59:53 +01:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
2011-12-21 18:00:36 +01:00
|
|
|
#include "llvm/Support/ELF.h"
|
2012-03-24 00:06:45 +01:00
|
|
|
#include <vector>
|
2010-12-17 17:59:53 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
2012-03-26 08:58:25 +02:00
|
|
|
class MCAssembler;
|
|
|
|
class MCFixup;
|
|
|
|
class MCFragment;
|
|
|
|
class MCObjectWriter;
|
|
|
|
class MCSymbol;
|
2014-07-21 01:15:06 +02:00
|
|
|
class MCSymbolData;
|
2012-03-26 08:58:25 +02:00
|
|
|
class MCValue;
|
2015-04-15 00:14:34 +02:00
|
|
|
class raw_pwrite_stream;
|
2012-03-26 08:58:25 +02:00
|
|
|
|
2015-04-14 15:23:34 +02:00
|
|
|
struct ELFRelocationEntry {
|
|
|
|
uint64_t Offset; // Where is the relocation.
|
|
|
|
const MCSymbol *Symbol; // The symbol to relocate with.
|
|
|
|
unsigned Type; // The type of the relocation.
|
|
|
|
uint64_t Addend; // The addend to use.
|
|
|
|
|
|
|
|
ELFRelocationEntry(uint64_t Offset, const MCSymbol *Symbol, unsigned Type,
|
|
|
|
uint64_t Addend)
|
|
|
|
: Offset(Offset), Symbol(Symbol), Type(Type), Addend(Addend) {}
|
|
|
|
};
|
|
|
|
|
2010-12-17 18:45:22 +01:00
|
|
|
class MCELFObjectTargetWriter {
|
2011-12-21 18:00:36 +01:00
|
|
|
const uint8_t OSABI;
|
2010-12-18 04:27:34 +01:00
|
|
|
const uint16_t EMachine;
|
|
|
|
const unsigned HasRelocationAddend : 1;
|
|
|
|
const unsigned Is64Bit : 1;
|
2012-06-28 00:28:30 +02:00
|
|
|
const unsigned IsN64 : 1;
|
2011-12-21 18:00:36 +01:00
|
|
|
|
2010-12-17 18:45:22 +01:00
|
|
|
protected:
|
2011-12-21 18:00:36 +01:00
|
|
|
|
|
|
|
MCELFObjectTargetWriter(bool Is64Bit_, uint8_t OSABI_,
|
2012-06-28 00:28:30 +02:00
|
|
|
uint16_t EMachine_, bool HasRelocationAddend,
|
|
|
|
bool IsN64=false);
|
2010-12-17 18:45:22 +01:00
|
|
|
|
|
|
|
public:
|
2011-12-21 18:00:36 +01:00
|
|
|
static uint8_t getOSABI(Triple::OSType OSType) {
|
|
|
|
switch (OSType) {
|
2015-03-09 19:40:45 +01:00
|
|
|
case Triple::CloudABI:
|
|
|
|
return ELF::ELFOSABI_CLOUDABI;
|
2015-01-26 16:42:07 +01:00
|
|
|
case Triple::PS4:
|
2011-12-21 18:00:36 +01:00
|
|
|
case Triple::FreeBSD:
|
|
|
|
return ELF::ELFOSABI_FREEBSD;
|
|
|
|
case Triple::Linux:
|
|
|
|
return ELF::ELFOSABI_LINUX;
|
|
|
|
default:
|
|
|
|
return ELF::ELFOSABI_NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-24 02:53:13 +01:00
|
|
|
virtual ~MCELFObjectTargetWriter() {}
|
2010-12-18 04:27:34 +01:00
|
|
|
|
2011-12-21 18:30:17 +01:00
|
|
|
virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
|
2014-03-27 21:49:35 +01:00
|
|
|
bool IsPCRel) const = 0;
|
2011-12-22 02:57:09 +01:00
|
|
|
|
2014-07-21 01:15:06 +02:00
|
|
|
virtual bool needsRelocateWithSymbol(const MCSymbolData &SD,
|
|
|
|
unsigned Type) const;
|
2011-12-21 18:30:17 +01:00
|
|
|
|
2015-04-14 15:23:34 +02:00
|
|
|
virtual void sortRelocs(const MCAssembler &Asm,
|
|
|
|
std::vector<ELFRelocationEntry> &Relocs);
|
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \name Accessors
|
2010-12-18 04:27:34 +01:00
|
|
|
/// @{
|
2012-10-25 20:35:04 +02:00
|
|
|
uint8_t getOSABI() const { return OSABI; }
|
|
|
|
uint16_t getEMachine() const { return EMachine; }
|
|
|
|
bool hasRelocationAddend() const { return HasRelocationAddend; }
|
2011-12-21 15:48:04 +01:00
|
|
|
bool is64Bit() const { return Is64Bit; }
|
2012-06-28 00:28:30 +02:00
|
|
|
bool isN64() const { return IsN64; }
|
2010-12-18 04:27:34 +01:00
|
|
|
/// @}
|
2012-06-28 00:28:30 +02:00
|
|
|
|
|
|
|
// Instead of changing everyone's API we pack the N64 Type fields
|
|
|
|
// into the existing 32 bit data unsigned.
|
|
|
|
#define R_TYPE_SHIFT 0
|
|
|
|
#define R_TYPE_MASK 0xffffff00
|
|
|
|
#define R_TYPE2_SHIFT 8
|
|
|
|
#define R_TYPE2_MASK 0xffff00ff
|
|
|
|
#define R_TYPE3_SHIFT 16
|
|
|
|
#define R_TYPE3_MASK 0xff00ffff
|
|
|
|
#define R_SSYM_SHIFT 24
|
|
|
|
#define R_SSYM_MASK 0x00ffffff
|
|
|
|
|
|
|
|
// N64 relocation type accessors
|
2014-03-25 23:43:53 +01:00
|
|
|
uint8_t getRType(uint32_t Type) const {
|
2012-06-28 00:28:30 +02:00
|
|
|
return (unsigned)((Type >> R_TYPE_SHIFT) & 0xff);
|
|
|
|
}
|
2014-03-25 23:43:53 +01:00
|
|
|
uint8_t getRType2(uint32_t Type) const {
|
2012-06-28 00:28:30 +02:00
|
|
|
return (unsigned)((Type >> R_TYPE2_SHIFT) & 0xff);
|
|
|
|
}
|
2014-03-25 23:43:53 +01:00
|
|
|
uint8_t getRType3(uint32_t Type) const {
|
2012-06-28 00:28:30 +02:00
|
|
|
return (unsigned)((Type >> R_TYPE3_SHIFT) & 0xff);
|
|
|
|
}
|
2014-03-25 23:43:53 +01:00
|
|
|
uint8_t getRSsym(uint32_t Type) const {
|
2012-06-28 00:28:30 +02:00
|
|
|
return (unsigned)((Type >> R_SSYM_SHIFT) & 0xff);
|
|
|
|
}
|
|
|
|
|
|
|
|
// N64 relocation type setting
|
|
|
|
unsigned setRType(unsigned Value, unsigned Type) const {
|
|
|
|
return ((Type & R_TYPE_MASK) | ((Value & 0xff) << R_TYPE_SHIFT));
|
|
|
|
}
|
|
|
|
unsigned setRType2(unsigned Value, unsigned Type) const {
|
|
|
|
return (Type & R_TYPE2_MASK) | ((Value & 0xff) << R_TYPE2_SHIFT);
|
|
|
|
}
|
|
|
|
unsigned setRType3(unsigned Value, unsigned Type) const {
|
|
|
|
return (Type & R_TYPE3_MASK) | ((Value & 0xff) << R_TYPE3_SHIFT);
|
|
|
|
}
|
|
|
|
unsigned setRSsym(unsigned Value, unsigned Type) const {
|
|
|
|
return (Type & R_SSYM_MASK) | ((Value & 0xff) << R_SSYM_SHIFT);
|
|
|
|
}
|
2010-12-17 18:45:22 +01:00
|
|
|
};
|
|
|
|
|
2010-12-17 17:59:53 +01:00
|
|
|
/// \brief Construct a new ELF writer instance.
|
|
|
|
///
|
2010-12-17 18:45:22 +01:00
|
|
|
/// \param MOTW - The target specific ELF writer subclass.
|
2010-12-17 17:59:53 +01:00
|
|
|
/// \param OS - The stream to write to.
|
|
|
|
/// \returns The constructed object writer.
|
2010-12-17 18:45:22 +01:00
|
|
|
MCObjectWriter *createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
|
2015-04-15 00:14:34 +02:00
|
|
|
raw_pwrite_stream &OS,
|
|
|
|
bool IsLittleEndian);
|
2010-12-17 17:59:53 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|