mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-16 11:30:51 +00:00
c98092e28d
The ELF object writer will take advantage of that in the next commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234950 91177308-0d34-0410-b5e6-96231b3b80d8
64 lines
2.0 KiB
C++
64 lines
2.0 KiB
C++
//===-- HexagonELFObjectWriter.cpp - Hexagon Target Descriptions ----------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "Hexagon.h"
|
|
#include "llvm/MC/MCAssembler.h"
|
|
#include "llvm/MC/MCELFObjectWriter.h"
|
|
#include "llvm/Support/Debug.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#define DEBUG_TYPE "hexagon-elf-writer"
|
|
|
|
using namespace llvm;
|
|
using namespace Hexagon;
|
|
|
|
namespace {
|
|
|
|
class HexagonELFObjectWriter : public MCELFObjectTargetWriter {
|
|
private:
|
|
StringRef CPU;
|
|
|
|
public:
|
|
HexagonELFObjectWriter(uint8_t OSABI, StringRef C);
|
|
|
|
unsigned GetRelocType(MCValue const &Target, MCFixup const &Fixup,
|
|
bool IsPCRel) const override;
|
|
};
|
|
}
|
|
|
|
HexagonELFObjectWriter::HexagonELFObjectWriter(uint8_t OSABI, StringRef C)
|
|
: MCELFObjectTargetWriter(/*Is64bit*/ false, OSABI, ELF::EM_HEXAGON,
|
|
/*HasRelocationAddend*/ true),
|
|
CPU(C) {}
|
|
|
|
unsigned HexagonELFObjectWriter::GetRelocType(MCValue const &/*Target*/,
|
|
MCFixup const &Fixup,
|
|
bool IsPCRel) const {
|
|
unsigned Type = (unsigned)ELF::R_HEX_NONE;
|
|
llvm::MCFixupKind Kind = Fixup.getKind();
|
|
|
|
switch (Kind) {
|
|
default:
|
|
DEBUG(dbgs() << "unrecognized relocation " << Fixup.getKind() << "\n");
|
|
llvm_unreachable("Unimplemented Fixup kind!");
|
|
break;
|
|
case FK_Data_4:
|
|
Type = (IsPCRel) ? ELF::R_HEX_32_PCREL : ELF::R_HEX_32;
|
|
break;
|
|
}
|
|
return Type;
|
|
}
|
|
|
|
MCObjectWriter *llvm::createHexagonELFObjectWriter(raw_pwrite_stream &OS,
|
|
uint8_t OSABI,
|
|
StringRef CPU) {
|
|
MCELFObjectTargetWriter *MOTW = new HexagonELFObjectWriter(OSABI, CPU);
|
|
return createELFObjectWriter(MOTW, OS, /*IsLittleEndian*/ true);
|
|
}
|