to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
90 lines
3.0 KiB
C++
90 lines
3.0 KiB
C++
//===- AMDGPUELFObjectWriter.cpp - AMDGPU ELF Writer ----------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "AMDGPUMCTargetDesc.h"
|
|
#include "llvm/BinaryFormat/ELF.h"
|
|
#include "llvm/MC/MCELFObjectWriter.h"
|
|
#include "llvm/MC/MCExpr.h"
|
|
#include "llvm/MC/MCFixup.h"
|
|
#include "llvm/MC/MCObjectWriter.h"
|
|
#include "llvm/MC/MCSymbol.h"
|
|
#include "llvm/MC/MCValue.h"
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
using namespace llvm;
|
|
|
|
namespace {
|
|
|
|
class AMDGPUELFObjectWriter : public MCELFObjectTargetWriter {
|
|
public:
|
|
AMDGPUELFObjectWriter(bool Is64Bit, uint8_t OSABI, bool HasRelocationAddend);
|
|
|
|
protected:
|
|
unsigned getRelocType(MCContext &Ctx, const MCValue &Target,
|
|
const MCFixup &Fixup, bool IsPCRel) const override;
|
|
};
|
|
|
|
|
|
} // end anonymous namespace
|
|
|
|
AMDGPUELFObjectWriter::AMDGPUELFObjectWriter(bool Is64Bit,
|
|
uint8_t OSABI,
|
|
bool HasRelocationAddend)
|
|
: MCELFObjectTargetWriter(Is64Bit, OSABI, ELF::EM_AMDGPU,
|
|
HasRelocationAddend) {}
|
|
|
|
unsigned AMDGPUELFObjectWriter::getRelocType(MCContext &Ctx,
|
|
const MCValue &Target,
|
|
const MCFixup &Fixup,
|
|
bool IsPCRel) const {
|
|
if (const auto *SymA = Target.getSymA()) {
|
|
// SCRATCH_RSRC_DWORD[01] is a special global variable that represents
|
|
// the scratch buffer.
|
|
if (SymA->getSymbol().getName() == "SCRATCH_RSRC_DWORD0" ||
|
|
SymA->getSymbol().getName() == "SCRATCH_RSRC_DWORD1")
|
|
return ELF::R_AMDGPU_ABS32_LO;
|
|
}
|
|
|
|
switch (Target.getAccessVariant()) {
|
|
default:
|
|
break;
|
|
case MCSymbolRefExpr::VK_GOTPCREL:
|
|
return ELF::R_AMDGPU_GOTPCREL;
|
|
case MCSymbolRefExpr::VK_AMDGPU_GOTPCREL32_LO:
|
|
return ELF::R_AMDGPU_GOTPCREL32_LO;
|
|
case MCSymbolRefExpr::VK_AMDGPU_GOTPCREL32_HI:
|
|
return ELF::R_AMDGPU_GOTPCREL32_HI;
|
|
case MCSymbolRefExpr::VK_AMDGPU_REL32_LO:
|
|
return ELF::R_AMDGPU_REL32_LO;
|
|
case MCSymbolRefExpr::VK_AMDGPU_REL32_HI:
|
|
return ELF::R_AMDGPU_REL32_HI;
|
|
case MCSymbolRefExpr::VK_AMDGPU_REL64:
|
|
return ELF::R_AMDGPU_REL64;
|
|
}
|
|
|
|
switch (Fixup.getKind()) {
|
|
default: break;
|
|
case FK_PCRel_4:
|
|
return ELF::R_AMDGPU_REL32;
|
|
case FK_Data_4:
|
|
case FK_SecRel_4:
|
|
return ELF::R_AMDGPU_ABS32;
|
|
case FK_Data_8:
|
|
return ELF::R_AMDGPU_ABS64;
|
|
}
|
|
|
|
llvm_unreachable("unhandled relocation type");
|
|
}
|
|
|
|
std::unique_ptr<MCObjectTargetWriter>
|
|
llvm::createAMDGPUELFObjectWriter(bool Is64Bit, uint8_t OSABI,
|
|
bool HasRelocationAddend) {
|
|
return llvm::make_unique<AMDGPUELFObjectWriter>(Is64Bit, OSABI,
|
|
HasRelocationAddend);
|
|
}
|