2012-02-18 20:03:15 +08:00
|
|
|
//===-- XCoreTargetObjectFile.h - XCore Object Info -------------*- C++ -*-===//
|
2009-07-28 11:13:23 +08:00
|
|
|
//
|
|
|
|
// 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_XCORE_XCORETARGETOBJECTFILE_H
|
|
|
|
#define LLVM_LIB_TARGET_XCORE_XCORETARGETOBJECTFILE_H
|
2009-07-28 11:13:23 +08:00
|
|
|
|
2010-02-16 06:37:53 +08:00
|
|
|
#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
|
2009-07-28 11:13:23 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2013-12-02 18:18:31 +08:00
|
|
|
static const unsigned CodeModelLargeSize = 256;
|
|
|
|
|
2009-07-28 11:13:23 +08:00
|
|
|
class XCoreTargetObjectFile : public TargetLoweringObjectFileELF {
|
2013-12-02 18:18:31 +08:00
|
|
|
const MCSection *BSSSectionLarge;
|
|
|
|
const MCSection *DataSectionLarge;
|
|
|
|
const MCSection *ReadOnlySectionLarge;
|
2014-02-11 18:36:26 +08:00
|
|
|
const MCSection *DataRelROSectionLarge;
|
2009-07-28 11:13:23 +08:00
|
|
|
public:
|
2014-04-29 15:57:00 +08:00
|
|
|
void Initialize(MCContext &Ctx, const TargetMachine &TM) override;
|
2009-08-01 02:48:30 +08:00
|
|
|
|
2014-03-02 17:09:27 +08:00
|
|
|
const MCSection *
|
|
|
|
getExplicitSectionGlobal(const GlobalValue *GV,
|
|
|
|
SectionKind Kind, Mangler &Mang,
|
|
|
|
const TargetMachine &TM) const override;
|
|
|
|
|
|
|
|
const MCSection *
|
|
|
|
SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
|
|
|
|
Mangler &Mang,
|
|
|
|
const TargetMachine &TM) const override;
|
|
|
|
|
2014-07-15 06:57:27 +08:00
|
|
|
const MCSection *getSectionForConstant(SectionKind Kind,
|
|
|
|
const Constant *C) const override;
|
2009-07-28 11:13:23 +08:00
|
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|