mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
5ce70db696
This adds an implementation of getDebugThreadLocalSymbol for (64-bit) PowerPC. This needs to return a generic MCExpr since on ppc64, we need to add a bias of 0x8000 to the value returned by the R_PPC64_DTPREL64 relocation. llvm-svn: 185461
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
//===-- PPCTargetObjectFile.h - PPC Object Info -----------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_TARGET_PPC_TARGETOBJECTFILE_H
|
|
#define LLVM_TARGET_PPC_TARGETOBJECTFILE_H
|
|
|
|
#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
namespace llvm {
|
|
|
|
/// PPC64LinuxTargetObjectFile - This implementation is used for
|
|
/// 64-bit PowerPC Linux.
|
|
class PPC64LinuxTargetObjectFile : public TargetLoweringObjectFileELF {
|
|
|
|
virtual void Initialize(MCContext &Ctx, const TargetMachine &TM);
|
|
|
|
virtual const MCSection *
|
|
SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
|
|
Mangler *Mang, const TargetMachine &TM) const;
|
|
|
|
/// \brief Describe a TLS variable address within debug info.
|
|
virtual const MCExpr *getDebugThreadLocalSymbol(const MCSymbol *Sym) const;
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif
|