2012-05-05 04:18:50 +08:00
|
|
|
//===-- NVPTXTargetObjectFile.h - NVPTX 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_NVPTX_TARGETOBJECTFILE_H
|
|
|
|
#define LLVM_TARGET_NVPTX_TARGETOBJECTFILE_H
|
|
|
|
|
|
|
|
#include "NVPTXSection.h"
|
|
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class GlobalVariable;
|
|
|
|
class Module;
|
|
|
|
|
|
|
|
class NVPTXTargetObjectFile : public TargetLoweringObjectFile {
|
|
|
|
|
|
|
|
public:
|
2013-06-24 21:19:41 +08:00
|
|
|
NVPTXTargetObjectFile() {
|
|
|
|
TextSection = 0;
|
|
|
|
DataSection = 0;
|
|
|
|
BSSSection = 0;
|
|
|
|
ReadOnlySection = 0;
|
|
|
|
|
|
|
|
StaticCtorSection = 0;
|
|
|
|
StaticDtorSection = 0;
|
|
|
|
LSDASection = 0;
|
|
|
|
EHFrameSection = 0;
|
|
|
|
DwarfAbbrevSection = 0;
|
|
|
|
DwarfInfoSection = 0;
|
|
|
|
DwarfLineSection = 0;
|
|
|
|
DwarfFrameSection = 0;
|
|
|
|
DwarfPubTypesSection = 0;
|
|
|
|
DwarfDebugInlineSection = 0;
|
|
|
|
DwarfStrSection = 0;
|
|
|
|
DwarfLocSection = 0;
|
|
|
|
DwarfARangesSection = 0;
|
|
|
|
DwarfRangesSection = 0;
|
|
|
|
DwarfMacroInfoSection = 0;
|
|
|
|
}
|
|
|
|
|
2013-11-19 08:57:56 +08:00
|
|
|
virtual ~NVPTXTargetObjectFile();
|
2012-05-05 04:18:50 +08:00
|
|
|
|
|
|
|
virtual void Initialize(MCContext &ctx, const TargetMachine &TM) {
|
2013-10-30 01:28:26 +08:00
|
|
|
TargetLoweringObjectFile::Initialize(ctx, TM);
|
2013-03-30 22:29:21 +08:00
|
|
|
TextSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getText());
|
|
|
|
DataSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getDataRel());
|
|
|
|
BSSSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getBSS());
|
|
|
|
ReadOnlySection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getReadOnly());
|
2012-05-05 04:18:50 +08:00
|
|
|
|
2013-03-30 22:29:21 +08:00
|
|
|
StaticCtorSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
|
|
|
StaticDtorSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
|
|
|
LSDASection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
|
|
|
EHFrameSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
|
|
|
DwarfAbbrevSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
|
|
|
DwarfInfoSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
|
|
|
DwarfLineSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
|
|
|
DwarfFrameSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
|
|
|
DwarfPubTypesSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
|
|
|
DwarfDebugInlineSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
|
|
|
DwarfStrSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
|
|
|
DwarfLocSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
|
|
|
DwarfARangesSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
|
|
|
DwarfRangesSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
|
|
|
DwarfMacroInfoSection =
|
|
|
|
new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
|
2012-05-09 04:45:04 +08:00
|
|
|
}
|
2012-05-05 04:18:50 +08:00
|
|
|
|
|
|
|
virtual const MCSection *getSectionForConstant(SectionKind Kind) const {
|
|
|
|
return ReadOnlySection;
|
2012-05-09 04:45:04 +08:00
|
|
|
}
|
2012-05-05 04:18:50 +08:00
|
|
|
|
|
|
|
virtual const MCSection *
|
|
|
|
getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind,
|
2013-03-30 22:29:21 +08:00
|
|
|
Mangler *Mang, const TargetMachine &TM) const {
|
2012-05-05 04:18:50 +08:00
|
|
|
return DataSection;
|
2012-05-09 04:45:04 +08:00
|
|
|
}
|
2012-05-05 04:18:50 +08:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|