blob: 4d73c3991035ebecb80d192227a9e01961fd6df7 [file] [log] [blame]
Jia Liu9f610112012-02-17 08:55:11 +00001//===-- MipsTargetObjectFile.cpp - Mips Object Files ----------------------===//
Chris Lattner68535f72009-08-13 06:28:06 +00002//
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//
Akira Hatanakae2489122011-04-15 21:51:11 +00008//===----------------------------------------------------------------------===//
Chris Lattner68535f72009-08-13 06:28:06 +00009
10#include "MipsTargetObjectFile.h"
Bruno Cardoso Lopes8bd87232009-11-19 05:28:18 +000011#include "MipsSubtarget.h"
Eric Christopher948bdf92015-03-21 03:13:05 +000012#include "MipsTargetMachine.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000013#include "llvm/BinaryFormat/ELF.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000014#include "llvm/IR/DataLayout.h"
15#include "llvm/IR/DerivedTypes.h"
16#include "llvm/IR/GlobalVariable.h"
Chris Lattner80c34592010-04-08 21:34:17 +000017#include "llvm/MC/MCContext.h"
Chris Lattner68535f72009-08-13 06:28:06 +000018#include "llvm/MC/MCSectionELF.h"
Chris Lattner68535f72009-08-13 06:28:06 +000019#include "llvm/Support/CommandLine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "llvm/Target/TargetMachine.h"
Chris Lattner68535f72009-08-13 06:28:06 +000021using namespace llvm;
22
23static cl::opt<unsigned>
24SSThreshold("mips-ssection-threshold", cl::Hidden,
25 cl::desc("Small data and bss section threshold size (default=8)"),
26 cl::init(8));
27
Sasa Stankovicb38db1e2014-11-06 13:20:12 +000028static cl::opt<bool>
29LocalSData("mlocal-sdata", cl::Hidden,
30 cl::desc("MIPS: Use gp_rel for object-local data."),
31 cl::init(true));
32
33static cl::opt<bool>
34ExternSData("mextern-sdata", cl::Hidden,
35 cl::desc("MIPS: Use gp_rel for data that is not defined by the "
36 "current object."),
37 cl::init(true));
38
Chris Lattner68535f72009-08-13 06:28:06 +000039void MipsTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){
40 TargetLoweringObjectFileELF::Initialize(Ctx, TM);
Logan Chieneeaaf652012-09-05 06:17:17 +000041 InitializeELF(TM.Options.UseInitArray);
Che-Liang Chioubb033892010-09-28 09:55:24 +000042
Rafael Espindolaba31e272015-01-29 17:33:21 +000043 SmallDataSection = getContext().getELFSection(
Simon Atanasyane7741262016-02-03 11:50:22 +000044 ".sdata", ELF::SHT_PROGBITS,
45 ELF::SHF_WRITE | ELF::SHF_ALLOC | ELF::SHF_MIPS_GPREL);
Che-Liang Chioubb033892010-09-28 09:55:24 +000046
Rafael Espindolaba31e272015-01-29 17:33:21 +000047 SmallBSSSection = getContext().getELFSection(".sbss", ELF::SHT_NOBITS,
Simon Atanasyane7741262016-02-03 11:50:22 +000048 ELF::SHF_WRITE | ELF::SHF_ALLOC |
49 ELF::SHF_MIPS_GPREL);
Daniel Sanders8ef465f2015-05-27 08:44:01 +000050 this->TM = &static_cast<const MipsTargetMachine &>(TM);
Chris Lattner68535f72009-08-13 06:28:06 +000051}
52
Che-Liang Chioubb033892010-09-28 09:55:24 +000053// A address must be loaded from a small section if its size is less than the
54// small section size threshold. Data in this section must be addressed using
Chris Lattner68535f72009-08-13 06:28:06 +000055// gp_rel operator.
56static bool IsInSmallSection(uint64_t Size) {
Sasa Stankovicb38db1e2014-11-06 13:20:12 +000057 // gcc has traditionally not treated zero-sized objects as small data, so this
58 // is effectively part of the ABI.
Chris Lattner68535f72009-08-13 06:28:06 +000059 return Size > 0 && Size <= SSThreshold;
60}
61
Sasa Stankovicb38db1e2014-11-06 13:20:12 +000062/// Return true if this global address should be placed into small data/bss
63/// section.
Peter Collingbourne67335642016-10-24 19:23:39 +000064bool MipsTargetObjectFile::IsGlobalInSmallSection(
65 const GlobalObject *GO, const TargetMachine &TM) const {
Sasa Stankovicb38db1e2014-11-06 13:20:12 +000066 // We first check the case where global is a declaration, because finding
67 // section kind using getKindForGlobal() is only allowed for global
68 // definitions.
Peter Collingbourne67335642016-10-24 19:23:39 +000069 if (GO->isDeclaration() || GO->hasAvailableExternallyLinkage())
70 return IsGlobalInSmallSectionImpl(GO, TM);
Che-Liang Chioubb033892010-09-28 09:55:24 +000071
Peter Collingbourne67335642016-10-24 19:23:39 +000072 return IsGlobalInSmallSection(GO, TM, getKindForGlobal(GO, TM));
Chris Lattner68535f72009-08-13 06:28:06 +000073}
74
Sasa Stankovicb38db1e2014-11-06 13:20:12 +000075/// Return true if this global address should be placed into small data/bss
76/// section.
Chris Lattner68535f72009-08-13 06:28:06 +000077bool MipsTargetObjectFile::
Peter Collingbourne67335642016-10-24 19:23:39 +000078IsGlobalInSmallSection(const GlobalObject *GO, const TargetMachine &TM,
Chris Lattner68535f72009-08-13 06:28:06 +000079 SectionKind Kind) const {
Peter Collingbourne67335642016-10-24 19:23:39 +000080 return (IsGlobalInSmallSectionImpl(GO, TM) &&
Rafael Espindola449711c2015-11-18 06:02:15 +000081 (Kind.isData() || Kind.isBSS() || Kind.isCommon()));
Sasa Stankovicb38db1e2014-11-06 13:20:12 +000082}
Bruno Cardoso Lopes8bd87232009-11-19 05:28:18 +000083
Sasa Stankovicb38db1e2014-11-06 13:20:12 +000084/// Return true if this global address should be placed into small data/bss
85/// section. This method does all the work, except for checking the section
86/// kind.
87bool MipsTargetObjectFile::
Peter Collingbourne67335642016-10-24 19:23:39 +000088IsGlobalInSmallSectionImpl(const GlobalObject *GO,
Sasa Stankovicb38db1e2014-11-06 13:20:12 +000089 const TargetMachine &TM) const {
Eric Christopher948bdf92015-03-21 03:13:05 +000090 const MipsSubtarget &Subtarget =
91 *static_cast<const MipsTargetMachine &>(TM).getSubtargetImpl();
Akira Hatanakaad495022012-08-22 03:18:13 +000092
93 // Return if small section is not available.
94 if (!Subtarget.useSmallSection())
Bruno Cardoso Lopes8bd87232009-11-19 05:28:18 +000095 return false;
96
Chris Lattner68535f72009-08-13 06:28:06 +000097 // Only global variables, not functions.
Peter Collingbourne67335642016-10-24 19:23:39 +000098 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GO);
Chris Lattner68535f72009-08-13 06:28:06 +000099 if (!GVA)
100 return false;
Che-Liang Chioubb033892010-09-28 09:55:24 +0000101
Sasa Stankovicb38db1e2014-11-06 13:20:12 +0000102 // Enforce -mlocal-sdata.
Peter Collingbourne67335642016-10-24 19:23:39 +0000103 if (!LocalSData && GVA->hasLocalLinkage())
Chris Lattner68535f72009-08-13 06:28:06 +0000104 return false;
Che-Liang Chioubb033892010-09-28 09:55:24 +0000105
Sasa Stankovicb38db1e2014-11-06 13:20:12 +0000106 // Enforce -mextern-sdata.
Peter Collingbourne67335642016-10-24 19:23:39 +0000107 if (!ExternSData && ((GVA->hasExternalLinkage() && GVA->isDeclaration()) ||
108 GVA->hasCommonLinkage()))
Chris Lattner68535f72009-08-13 06:28:06 +0000109 return false;
110
Peter Collingbourne67335642016-10-24 19:23:39 +0000111 Type *Ty = GVA->getValueType();
Mehdi Amini5c0fa582015-07-16 06:04:17 +0000112 return IsInSmallSection(
Peter Collingbourne67335642016-10-24 19:23:39 +0000113 GVA->getParent()->getDataLayout().getTypeAllocSize(Ty));
Chris Lattner68535f72009-08-13 06:28:06 +0000114}
115
Eric Christopher4367c7f2016-09-16 07:33:15 +0000116MCSection *MipsTargetObjectFile::SelectSectionForGlobal(
Peter Collingbourne67335642016-10-24 19:23:39 +0000117 const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const {
Chris Lattner68535f72009-08-13 06:28:06 +0000118 // TODO: Could also support "weak" symbols as well with ".gnu.linkonce.s.*"
119 // sections?
Che-Liang Chioubb033892010-09-28 09:55:24 +0000120
Chris Lattner68535f72009-08-13 06:28:06 +0000121 // Handle Small Section classification here.
Peter Collingbourne67335642016-10-24 19:23:39 +0000122 if (Kind.isBSS() && IsGlobalInSmallSection(GO, TM, Kind))
Chris Lattner68535f72009-08-13 06:28:06 +0000123 return SmallBSSSection;
Peter Collingbourne67335642016-10-24 19:23:39 +0000124 if (Kind.isData() && IsGlobalInSmallSection(GO, TM, Kind))
Chris Lattner68535f72009-08-13 06:28:06 +0000125 return SmallDataSection;
Che-Liang Chioubb033892010-09-28 09:55:24 +0000126
Chris Lattner68535f72009-08-13 06:28:06 +0000127 // Otherwise, we work the same as ELF.
Peter Collingbourne67335642016-10-24 19:23:39 +0000128 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GO, Kind, TM);
Chris Lattner68535f72009-08-13 06:28:06 +0000129}
Sasa Stankovicb38db1e2014-11-06 13:20:12 +0000130
131/// Return true if this constant should be placed into small data section.
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000132bool MipsTargetObjectFile::IsConstantInSmallSection(
133 const DataLayout &DL, const Constant *CN, const TargetMachine &TM) const {
Eric Christopher948bdf92015-03-21 03:13:05 +0000134 return (static_cast<const MipsTargetMachine &>(TM)
135 .getSubtargetImpl()
136 ->useSmallSection() &&
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000137 LocalSData && IsInSmallSection(DL.getTypeAllocSize(CN->getType())));
Sasa Stankovicb38db1e2014-11-06 13:20:12 +0000138}
139
Mehdi Amini5c0fa582015-07-16 06:04:17 +0000140/// Return true if this constant should be placed into small data section.
David Majnemer78f46be2016-02-21 01:40:04 +0000141MCSection *MipsTargetObjectFile::getSectionForConstant(const DataLayout &DL,
142 SectionKind Kind,
143 const Constant *C,
144 unsigned &Align) const {
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000145 if (IsConstantInSmallSection(DL, C, *TM))
Sasa Stankovicb38db1e2014-11-06 13:20:12 +0000146 return SmallDataSection;
147
148 // Otherwise, we work the same as ELF.
David Majnemer78f46be2016-02-21 01:40:04 +0000149 return TargetLoweringObjectFileELF::getSectionForConstant(DL, Kind, C, Align);
Sasa Stankovicb38db1e2014-11-06 13:20:12 +0000150}
Petar Jovanovicdbb39352017-01-20 17:53:30 +0000151
152const MCExpr *
153MipsTargetObjectFile::getDebugThreadLocalSymbol(const MCSymbol *Sym) const {
154 const MCExpr *Expr =
155 MCSymbolRefExpr::create(Sym, MCSymbolRefExpr::VK_None, getContext());
156 return MCBinaryExpr::createAdd(
157 Expr, MCConstantExpr::create(0x8000, getContext()), getContext());
158}