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
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
//===-- AMDGPUELFObjectWriter.cpp - AMDGPU ELF Writer ----------------------==//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
/// \file
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "AMDGPUMCTargetDesc.h"
|
|
#include "llvm/MC/MCELFObjectWriter.h"
|
|
#include "llvm/MC/MCFixup.h"
|
|
|
|
using namespace llvm;
|
|
|
|
namespace {
|
|
|
|
class AMDGPUELFObjectWriter : public MCELFObjectTargetWriter {
|
|
public:
|
|
AMDGPUELFObjectWriter();
|
|
protected:
|
|
unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup,
|
|
bool IsPCRel) const override {
|
|
return Fixup.getKind();
|
|
}
|
|
|
|
};
|
|
|
|
|
|
} // End anonymous namespace
|
|
|
|
AMDGPUELFObjectWriter::AMDGPUELFObjectWriter()
|
|
: MCELFObjectTargetWriter(false, 0, 0, false) { }
|
|
|
|
MCObjectWriter *llvm::createAMDGPUELFObjectWriter(raw_pwrite_stream &OS) {
|
|
MCELFObjectTargetWriter *MOTW = new AMDGPUELFObjectWriter();
|
|
return createELFObjectWriter(MOTW, OS, true);
|
|
}
|