2009-08-02 08:34:36 +08:00
|
|
|
//===-- llvm/Target/ARMTargetObjectFile.h - ARM 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_ARM_ARMTARGETOBJECTFILE_H
|
|
|
|
#define LLVM_LIB_TARGET_ARM_ARMTARGETOBJECTFILE_H
|
2009-08-02 08:34:36 +08:00
|
|
|
|
2010-02-16 06:37:53 +08:00
|
|
|
#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
|
2009-08-02 08:34:36 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-08-11 23:33:49 +08:00
|
|
|
|
2010-03-10 02:31:07 +08:00
|
|
|
class MCContext;
|
|
|
|
class TargetMachine;
|
|
|
|
|
|
|
|
class ARMElfTargetObjectFile : public TargetLoweringObjectFileELF {
|
2010-10-12 07:01:44 +08:00
|
|
|
protected:
|
|
|
|
const MCSection *AttributesSection;
|
2010-03-10 02:31:07 +08:00
|
|
|
public:
|
2016-04-23 04:40:10 +08:00
|
|
|
ARMElfTargetObjectFile()
|
|
|
|
: TargetLoweringObjectFileELF(), AttributesSection(nullptr) {
|
|
|
|
PLTRelativeVariantKind = MCSymbolRefExpr::VK_ARM_PREL31;
|
|
|
|
}
|
2010-03-10 02:31:07 +08:00
|
|
|
|
2014-03-02 17:09:27 +08:00
|
|
|
void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
|
2010-10-12 07:01:44 +08:00
|
|
|
|
2014-02-20 01:23:20 +08:00
|
|
|
const MCExpr *
|
|
|
|
getTTypeGlobalReference(const GlobalValue *GV, unsigned Encoding,
|
|
|
|
Mangler &Mang, const TargetMachine &TM,
|
2014-03-02 17:09:27 +08:00
|
|
|
MachineModuleInfo *MMI,
|
|
|
|
MCStreamer &Streamer) const override;
|
2014-02-05 15:23:09 +08:00
|
|
|
|
|
|
|
/// \brief Describe a TLS variable address within debug info.
|
2014-03-02 17:09:27 +08:00
|
|
|
const MCExpr *getDebugThreadLocalSymbol(const MCSymbol *Sym) const override;
|
2010-03-10 02:31:07 +08:00
|
|
|
};
|
|
|
|
|
2009-08-02 08:34:36 +08:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|