blob: 7475dbd68ae49eb6709d5207289680ecb28b8758 [file] [log] [blame]
Jacques Pienaarfcef3e42016-03-28 13:09:54 +00001//
2// The LLVM Compiler Infrastructure
3//
4// This file is distributed under the University of Illinois Open Source
5// License. See LICENSE.TXT for details.
6//
7//===----------------------------------------------------------------------===//
8
9#include "LanaiTargetObjectFile.h"
10
11#include "LanaiSubtarget.h"
12#include "LanaiTargetMachine.h"
13#include "llvm/IR/DataLayout.h"
14#include "llvm/IR/DerivedTypes.h"
15#include "llvm/IR/GlobalVariable.h"
16#include "llvm/MC/MCContext.h"
17#include "llvm/MC/MCSectionELF.h"
18#include "llvm/Support/CommandLine.h"
19#include "llvm/Support/ELF.h"
20#include "llvm/Target/TargetMachine.h"
21
22using namespace llvm;
23
24static cl::opt<unsigned> SSThreshold(
25 "lanai-ssection-threshold", cl::Hidden,
26 cl::desc("Small data and bss section threshold size (default=0)"),
27 cl::init(0));
28
29void LanaiTargetObjectFile::Initialize(MCContext &Ctx,
30 const TargetMachine &TM) {
31 TargetLoweringObjectFileELF::Initialize(Ctx, TM);
32 InitializeELF(TM.Options.UseInitArray);
33
34 SmallDataSection = getContext().getELFSection(
35 ".sdata", ELF::SHT_PROGBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC);
36 SmallBSSSection = getContext().getELFSection(".sbss", ELF::SHT_NOBITS,
37 ELF::SHF_WRITE | ELF::SHF_ALLOC);
38}
39
40// A address must be loaded from a small section if its size is less than the
41// small section size threshold. Data in this section must be addressed using
42// gp_rel operator.
43static bool isInSmallSection(uint64_t Size) {
44 // gcc has traditionally not treated zero-sized objects as small data, so this
45 // is effectively part of the ABI.
46 return Size > 0 && Size <= SSThreshold;
47}
48
49// Return true if this global address should be placed into small data/bss
50// section.
51bool LanaiTargetObjectFile::isGlobalInSmallSection(
Peter Collingbourne67335642016-10-24 19:23:39 +000052 const GlobalObject *GO, const TargetMachine &TM) const {
Jacques Pienaarccffe382016-12-15 16:56:16 +000053 if (GO == nullptr)
54 return false;
55
Jacques Pienaarfcef3e42016-03-28 13:09:54 +000056 // We first check the case where global is a declaration, because finding
57 // section kind using getKindForGlobal() is only allowed for global
58 // definitions.
Peter Collingbourne67335642016-10-24 19:23:39 +000059 if (GO->isDeclaration() || GO->hasAvailableExternallyLinkage())
60 return isGlobalInSmallSectionImpl(GO, TM);
Jacques Pienaarfcef3e42016-03-28 13:09:54 +000061
Peter Collingbourne67335642016-10-24 19:23:39 +000062 return isGlobalInSmallSection(GO, TM, getKindForGlobal(GO, TM));
Jacques Pienaarfcef3e42016-03-28 13:09:54 +000063}
64
65// Return true if this global address should be placed into small data/bss
66// section.
Peter Collingbourne67335642016-10-24 19:23:39 +000067bool LanaiTargetObjectFile::isGlobalInSmallSection(const GlobalObject *GO,
Jacques Pienaarfcef3e42016-03-28 13:09:54 +000068 const TargetMachine &TM,
69 SectionKind Kind) const {
Peter Collingbourne67335642016-10-24 19:23:39 +000070 return (isGlobalInSmallSectionImpl(GO, TM) &&
Jacques Pienaarfcef3e42016-03-28 13:09:54 +000071 (Kind.isData() || Kind.isBSS() || Kind.isCommon()));
72}
73
74// Return true if this global address should be placed into small data/bss
75// section. This method does all the work, except for checking the section
76// kind.
77bool LanaiTargetObjectFile::isGlobalInSmallSectionImpl(
Jacques Pienaarccffe382016-12-15 16:56:16 +000078 const GlobalObject *GO, const TargetMachine &TM) const {
Jacques Pienaarfcef3e42016-03-28 13:09:54 +000079 // Only global variables, not functions.
Peter Collingbourne67335642016-10-24 19:23:39 +000080 const auto *GVA = dyn_cast<GlobalVariable>(GO);
Jacques Pienaarfcef3e42016-03-28 13:09:54 +000081 if (!GVA)
82 return false;
83
Jacques Pienaarccffe382016-12-15 16:56:16 +000084 // Global values placed in sections starting with .ldata do not fit in
85 // 21-bits, so always use large memory access for them. FIXME: This is a
86 // workaround for a tool limitation.
87 if (GVA->getSection().startswith(".ldata"))
88 return false;
89
90 if (TM.getCodeModel() == CodeModel::Small)
91 return true;
92
Peter Collingbourne67335642016-10-24 19:23:39 +000093 if (GVA->hasLocalLinkage())
Jacques Pienaarfcef3e42016-03-28 13:09:54 +000094 return false;
95
Peter Collingbourne67335642016-10-24 19:23:39 +000096 if (((GVA->hasExternalLinkage() && GVA->isDeclaration()) ||
97 GVA->hasCommonLinkage()))
Jacques Pienaarfcef3e42016-03-28 13:09:54 +000098 return false;
99
Peter Collingbourne67335642016-10-24 19:23:39 +0000100 Type *Ty = GVA->getValueType();
Jacques Pienaarfcef3e42016-03-28 13:09:54 +0000101 return isInSmallSection(
Peter Collingbourne67335642016-10-24 19:23:39 +0000102 GVA->getParent()->getDataLayout().getTypeAllocSize(Ty));
Jacques Pienaarfcef3e42016-03-28 13:09:54 +0000103}
104
Eric Christopher4367c7f2016-09-16 07:33:15 +0000105MCSection *LanaiTargetObjectFile::SelectSectionForGlobal(
Peter Collingbourne67335642016-10-24 19:23:39 +0000106 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const {
Jacques Pienaarfcef3e42016-03-28 13:09:54 +0000107 // Handle Small Section classification here.
Peter Collingbourne67335642016-10-24 19:23:39 +0000108 if (Kind.isBSS() && isGlobalInSmallSection(GO, TM, Kind))
Jacques Pienaarfcef3e42016-03-28 13:09:54 +0000109 return SmallBSSSection;
Peter Collingbourne67335642016-10-24 19:23:39 +0000110 if (Kind.isData() && isGlobalInSmallSection(GO, TM, Kind))
Jacques Pienaarfcef3e42016-03-28 13:09:54 +0000111 return SmallDataSection;
112
113 // Otherwise, we work the same as ELF.
Peter Collingbourne67335642016-10-24 19:23:39 +0000114 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GO, Kind, TM);
Jacques Pienaarfcef3e42016-03-28 13:09:54 +0000115}
116
117/// Return true if this constant should be placed into small data section.
Jacques Pienaar5ffdef52016-05-20 21:41:53 +0000118bool LanaiTargetObjectFile::isConstantInSmallSection(const DataLayout &DL,
119 const Constant *CN) const {
Jacques Pienaarfcef3e42016-03-28 13:09:54 +0000120 return isInSmallSection(DL.getTypeAllocSize(CN->getType()));
121}
122
123MCSection *LanaiTargetObjectFile::getSectionForConstant(const DataLayout &DL,
124 SectionKind Kind,
125 const Constant *C,
126 unsigned &Align) const {
127 if (isConstantInSmallSection(DL, C))
128 return SmallDataSection;
129
130 // Otherwise, we work the same as ELF.
131 return TargetLoweringObjectFileELF::getSectionForConstant(DL, Kind, C, Align);
132}