2013-05-14 03:34:37 +08:00
|
|
|
//===-- 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_POWERPC_PPCTARGETOBJECTFILE_H
|
|
|
|
#define LLVM_LIB_TARGET_POWERPC_PPCTARGETOBJECTFILE_H
|
2013-05-14 03:34:37 +08:00
|
|
|
|
|
|
|
#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
|
2018-03-24 07:58:19 +08:00
|
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
2013-05-14 03:34:37 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
/// PPC64LinuxTargetObjectFile - This implementation is used for
|
|
|
|
/// 64-bit PowerPC Linux.
|
|
|
|
class PPC64LinuxTargetObjectFile : public TargetLoweringObjectFileELF {
|
|
|
|
|
2014-03-02 17:09:27 +08:00
|
|
|
void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
|
2013-05-14 03:34:37 +08:00
|
|
|
|
2016-10-25 03:23:39 +08:00
|
|
|
MCSection *SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind,
|
2015-05-22 03:20:38 +08:00
|
|
|
const TargetMachine &TM) const override;
|
2013-07-03 02:47:35 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// Describe a TLS variable address within debug info.
|
2014-03-02 17:09:27 +08:00
|
|
|
const MCExpr *getDebugThreadLocalSymbol(const MCSymbol *Sym) const override;
|
2013-05-14 03:34:37 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|