blob: ee42eaacf546fb4e087994f59fdcc6d02ad6a804 [file] [log] [blame]
Tom Stellarde135ffd2015-09-25 21:41:28 +00001//===-- AMDGPUHSATargetObjectFile.cpp - AMDGPU Object Files ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "AMDGPUHSATargetObjectFile.h"
Tom Stellard00f2f912015-12-02 19:47:57 +000011#include "AMDGPU.h"
Tom Stellarde135ffd2015-09-25 21:41:28 +000012#include "Utils/AMDGPUBaseInfo.h"
13#include "llvm/MC/MCContext.h"
14#include "llvm/MC/MCSectionELF.h"
15#include "llvm/Support/ELF.h"
16
17using namespace llvm;
18
19void AMDGPUHSATargetObjectFile::Initialize(MCContext &Ctx,
20 const TargetMachine &TM){
21 TargetLoweringObjectFileELF::Initialize(Ctx, TM);
22 InitializeELF(TM.Options.UseInitArray);
23
24 TextSection = AMDGPU::getHSATextSection(Ctx);
25
Tom Stellard00f2f912015-12-02 19:47:57 +000026 DataGlobalAgentSection = AMDGPU::getHSADataGlobalAgentSection(Ctx);
27 DataGlobalProgramSection = AMDGPU::getHSADataGlobalProgramSection(Ctx);
28
29}
30
31bool AMDGPUHSATargetObjectFile::isAgentAllocationSection(
32 const char *SectionName) const {
33 return cast<MCSectionELF>(DataGlobalAgentSection)
34 ->getSectionName()
35 .equals(SectionName);
36}
37
38bool AMDGPUHSATargetObjectFile::isAgentAllocation(const GlobalValue *GV) const {
39 // Read-only segments can only have agent allocation.
40 return AMDGPU::isReadOnlySegment(GV) ||
41 (AMDGPU::isGlobalSegment(GV) && GV->hasSection() &&
42 isAgentAllocationSection(GV->getSection()));
43}
44
45bool AMDGPUHSATargetObjectFile::isProgramAllocation(
46 const GlobalValue *GV) const {
47 // The default for global segments is program allocation.
48 return AMDGPU::isGlobalSegment(GV) && !isAgentAllocation(GV);
Tom Stellarde135ffd2015-09-25 21:41:28 +000049}
50
51MCSection *AMDGPUHSATargetObjectFile::SelectSectionForGlobal(
52 const GlobalValue *GV, SectionKind Kind,
53 Mangler &Mang,
54 const TargetMachine &TM) const {
55 if (Kind.isText() && !GV->hasComdat())
56 return getTextSection();
57
Tom Stellard00f2f912015-12-02 19:47:57 +000058 if (AMDGPU::isGlobalSegment(GV)) {
59 if (isAgentAllocation(GV))
60 return DataGlobalAgentSection;
61
62 if (isProgramAllocation(GV))
63 return DataGlobalProgramSection;
64 }
65
Tom Stellarde135ffd2015-09-25 21:41:28 +000066 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GV, Kind, Mang, TM);
67}