blob: b62577e0801a634834688fa0b9b8f188f96af180 [file] [log] [blame]
Chris Lattner5e693ed2009-07-28 03:13:23 +00001//===-- llvm/Target/TargetLoweringObjectFile.cpp - Object File Info -------===//
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// This file implements classes used to handle lowerings specific to common
11// object file formats.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Target/TargetLoweringObjectFile.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000016#include "llvm/IR/Constants.h"
17#include "llvm/IR/DataLayout.h"
18#include "llvm/IR/DerivedTypes.h"
19#include "llvm/IR/Function.h"
20#include "llvm/IR/GlobalVariable.h"
Rafael Espindola894843c2014-01-07 21:19:40 +000021#include "llvm/IR/Mangler.h"
Rafael Espindola117b20c2013-12-05 05:53:12 +000022#include "llvm/MC/MCAsmInfo.h"
Chris Lattner4d2c0f92009-07-31 18:48:30 +000023#include "llvm/MC/MCContext.h"
Chris Lattnerb8666022009-09-16 01:46:41 +000024#include "llvm/MC/MCExpr.h"
Chris Lattner03627cb2010-03-11 21:55:20 +000025#include "llvm/MC/MCStreamer.h"
Chris Lattnerccbeed22010-01-13 21:29:21 +000026#include "llvm/MC/MCSymbol.h"
Anton Korobeynikovae4ccc12010-02-15 22:35:59 +000027#include "llvm/Support/Dwarf.h"
Chris Lattnerd82510e2009-11-07 09:20:54 +000028#include "llvm/Support/ErrorHandling.h"
Chris Lattnerccbeed22010-01-13 21:29:21 +000029#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000030#include "llvm/Target/TargetMachine.h"
31#include "llvm/Target/TargetOptions.h"
Chris Lattner5e693ed2009-07-28 03:13:23 +000032using namespace llvm;
33
34//===----------------------------------------------------------------------===//
35// Generic Code
36//===----------------------------------------------------------------------===//
37
Evan Cheng76792992011-07-20 05:58:47 +000038/// Initialize - this method must be called before any actual lowering is
39/// done. This specifies the current context for codegen, and gives the
40/// lowering implementations a chance to set up their default sections.
41void TargetLoweringObjectFile::Initialize(MCContext &ctx,
42 const TargetMachine &TM) {
43 Ctx = &ctx;
Rafael Espindola58873562014-01-03 19:21:54 +000044 DL = TM.getDataLayout();
Evan Chengbbf3b0d2011-07-20 19:50:42 +000045 InitMCObjectFileInfo(TM.getTargetTriple(),
46 TM.getRelocationModel(), TM.getCodeModel(), *Ctx);
Chris Lattner5e693ed2009-07-28 03:13:23 +000047}
Evan Cheng76792992011-07-20 05:58:47 +000048
Chris Lattner5e693ed2009-07-28 03:13:23 +000049TargetLoweringObjectFile::~TargetLoweringObjectFile() {
50}
51
Nick Lewycky50f02cb2011-12-02 22:16:29 +000052static bool isSuitableForBSS(const GlobalVariable *GV, bool NoZerosInBSS) {
Jay Foad60020682011-06-19 18:37:11 +000053 const Constant *C = GV->getInitializer();
Anton Korobeynikov1df58862009-09-09 08:41:20 +000054
Chris Lattner5e693ed2009-07-28 03:13:23 +000055 // Must have zero initializer.
56 if (!C->isNullValue())
57 return false;
Anton Korobeynikov1df58862009-09-09 08:41:20 +000058
Chris Lattner5e693ed2009-07-28 03:13:23 +000059 // Leave constant zeros in readonly constant sections, so they can be shared.
60 if (GV->isConstant())
61 return false;
Anton Korobeynikov1df58862009-09-09 08:41:20 +000062
Chris Lattner5e693ed2009-07-28 03:13:23 +000063 // If the global has an explicit section specified, don't put it in BSS.
64 if (!GV->getSection().empty())
65 return false;
Anton Korobeynikov1df58862009-09-09 08:41:20 +000066
Chris Lattner5e693ed2009-07-28 03:13:23 +000067 // If -nozero-initialized-in-bss is specified, don't ever use BSS.
68 if (NoZerosInBSS)
69 return false;
Anton Korobeynikov1df58862009-09-09 08:41:20 +000070
Chris Lattner5e693ed2009-07-28 03:13:23 +000071 // Otherwise, put it in BSS!
72 return true;
73}
74
Chris Lattner81bbf442009-08-04 16:13:09 +000075/// IsNullTerminatedString - Return true if the specified constant (which is
76/// known to have a type that is an array of 1/2/4 byte elements) ends with a
Chris Lattner139822f2012-01-24 14:17:05 +000077/// nul value and contains no other nuls in it. Note that this is more general
78/// than ConstantDataSequential::isString because we allow 2 & 4 byte strings.
Chris Lattner81bbf442009-08-04 16:13:09 +000079static bool IsNullTerminatedString(const Constant *C) {
Chris Lattner139822f2012-01-24 14:17:05 +000080 // First check: is we have constant array terminated with zero
Chris Lattner139822f2012-01-24 14:17:05 +000081 if (const ConstantDataSequential *CDS = dyn_cast<ConstantDataSequential>(C)) {
82 unsigned NumElts = CDS->getNumElements();
83 assert(NumElts != 0 && "Can't have an empty CDS");
84
85 if (CDS->getElementAsInteger(NumElts-1) != 0)
86 return false; // Not null terminated.
87
88 // Verify that the null doesn't occur anywhere else in the string.
89 for (unsigned i = 0; i != NumElts-1; ++i)
90 if (CDS->getElementAsInteger(i) == 0)
91 return false;
92 return true;
93 }
Chris Lattner5e693ed2009-07-28 03:13:23 +000094
95 // Another possibility: [1 x i8] zeroinitializer
96 if (isa<ConstantAggregateZero>(C))
Chris Lattner139822f2012-01-24 14:17:05 +000097 return cast<ArrayType>(C->getType())->getNumElements() == 1;
Chris Lattner5e693ed2009-07-28 03:13:23 +000098
99 return false;
100}
101
Rafael Espindolae133ed82013-10-29 17:28:26 +0000102/// Return the MCSymbol for the specified global value. This
103/// symbol is the main label that is the address of the global.
104MCSymbol *TargetLoweringObjectFile::getSymbol(Mangler &M,
105 const GlobalValue *GV) const {
106 SmallString<60> NameStr;
Rafael Espindola117b20c2013-12-05 05:53:12 +0000107 M.getNameWithPrefix(NameStr, GV);
Rafael Espindolae133ed82013-10-29 17:28:26 +0000108 return Ctx->GetOrCreateSymbol(NameStr.str());
109}
110
Rafael Espindolaf4e6b292013-12-02 16:25:47 +0000111MCSymbol *TargetLoweringObjectFile::getSymbolWithGlobalValueBase(
112 Mangler &M, const GlobalValue *GV, StringRef Suffix) const {
Rafael Espindola117b20c2013-12-05 05:53:12 +0000113 assert(!Suffix.empty());
Rafael Espindola117b20c2013-12-05 05:53:12 +0000114
Rafael Espindolaf4e6b292013-12-02 16:25:47 +0000115 SmallString<60> NameStr;
Rafael Espindola58873562014-01-03 19:21:54 +0000116 NameStr += DL->getPrivateGlobalPrefix();
Rafael Espindola117b20c2013-12-05 05:53:12 +0000117 M.getNameWithPrefix(NameStr, GV);
Rafael Espindolaf4e6b292013-12-02 16:25:47 +0000118 NameStr.append(Suffix.begin(), Suffix.end());
119 return Ctx->GetOrCreateSymbol(NameStr.str());
120}
Rafael Espindolae133ed82013-10-29 17:28:26 +0000121
Rafael Espindola08704342011-04-27 23:08:15 +0000122MCSymbol *TargetLoweringObjectFile::
Rafael Espindolace83fc32011-04-27 23:17:57 +0000123getCFIPersonalitySymbol(const GlobalValue *GV, Mangler *Mang,
Rafael Espindola08704342011-04-27 23:08:15 +0000124 MachineModuleInfo *MMI) const {
Rafael Espindolae133ed82013-10-29 17:28:26 +0000125 return getSymbol(*Mang, GV);
Rafael Espindolaa83b1772011-04-16 03:51:21 +0000126}
127
128void TargetLoweringObjectFile::emitPersonalityValue(MCStreamer &Streamer,
129 const TargetMachine &TM,
130 const MCSymbol *Sym) const {
Rafael Espindolaa83b1772011-04-16 03:51:21 +0000131}
132
133
Chris Lattnercbc7b262009-08-05 04:25:40 +0000134/// getKindForGlobal - This is a top-level target-independent classifier for
Chris Lattnerc9c277b2009-08-01 21:11:14 +0000135/// a global variable. Given an global variable and information from TM, it
136/// classifies the global in a variety of ways that make various target
137/// implementations simpler. The target implementation is free to ignore this
138/// extra info of course.
Chris Lattnercbc7b262009-08-05 04:25:40 +0000139SectionKind TargetLoweringObjectFile::getKindForGlobal(const GlobalValue *GV,
140 const TargetMachine &TM){
141 assert(!GV->isDeclaration() && !GV->hasAvailableExternallyLinkage() &&
142 "Can only be used for global definitions");
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000143
Chris Lattner5e693ed2009-07-28 03:13:23 +0000144 Reloc::Model ReloModel = TM.getRelocationModel();
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000145
Chris Lattner5e693ed2009-07-28 03:13:23 +0000146 // Early exit - functions should be always in text sections.
147 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
148 if (GVar == 0)
Chris Lattnerf8d97102009-08-01 23:57:16 +0000149 return SectionKind::getText();
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000150
Chris Lattner5e693ed2009-07-28 03:13:23 +0000151 // Handle thread-local data first.
152 if (GVar->isThreadLocal()) {
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000153 if (isSuitableForBSS(GVar, TM.Options.NoZerosInBSS))
Chris Lattnerf8d97102009-08-01 23:57:16 +0000154 return SectionKind::getThreadBSS();
155 return SectionKind::getThreadData();
Chris Lattner5e693ed2009-07-28 03:13:23 +0000156 }
157
Chris Lattner5b585f82010-01-19 02:48:26 +0000158 // Variables with common linkage always get classified as common.
159 if (GVar->hasCommonLinkage())
160 return SectionKind::getCommon();
161
Chris Lattner5e693ed2009-07-28 03:13:23 +0000162 // Variable can be easily put to BSS section.
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000163 if (isSuitableForBSS(GVar, TM.Options.NoZerosInBSS)) {
Chris Lattnerb2534212010-01-19 04:15:51 +0000164 if (GVar->hasLocalLinkage())
165 return SectionKind::getBSSLocal();
166 else if (GVar->hasExternalLinkage())
167 return SectionKind::getBSSExtern();
Chris Lattnerf8d97102009-08-01 23:57:16 +0000168 return SectionKind::getBSS();
Chris Lattnerb2534212010-01-19 04:15:51 +0000169 }
Chris Lattner5e693ed2009-07-28 03:13:23 +0000170
Jay Foad60020682011-06-19 18:37:11 +0000171 const Constant *C = GVar->getInitializer();
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000172
Chris Lattner5e693ed2009-07-28 03:13:23 +0000173 // If the global is marked constant, we can put it into a mergable section,
174 // a mergable string section, or general .data if it contains relocations.
Chris Lattnerea4e9832011-01-18 01:23:44 +0000175 if (GVar->isConstant()) {
Chris Lattner5e693ed2009-07-28 03:13:23 +0000176 // If the initializer for the global contains something that requires a
Eric Christopherde9e92e2012-05-05 01:16:06 +0000177 // relocation, then we may have to drop this into a writable data section
Chris Lattner5e693ed2009-07-28 03:13:23 +0000178 // even though it is marked const.
179 switch (C->getRelocationInfo()) {
Chris Lattner5e693ed2009-07-28 03:13:23 +0000180 case Constant::NoRelocation:
Chris Lattnerea4e9832011-01-18 01:23:44 +0000181 // If the global is required to have a unique address, it can't be put
182 // into a mergable section: just drop it into the general read-only
183 // section instead.
184 if (!GVar->hasUnnamedAddr())
185 return SectionKind::getReadOnly();
186
Chris Lattner5e693ed2009-07-28 03:13:23 +0000187 // If initializer is a null-terminated string, put it in a "cstring"
Chris Lattner81bbf442009-08-04 16:13:09 +0000188 // section of the right width.
Chris Lattner229907c2011-07-18 04:54:35 +0000189 if (ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
190 if (IntegerType *ITy =
Chris Lattner81bbf442009-08-04 16:13:09 +0000191 dyn_cast<IntegerType>(ATy->getElementType())) {
192 if ((ITy->getBitWidth() == 8 || ITy->getBitWidth() == 16 ||
193 ITy->getBitWidth() == 32) &&
194 IsNullTerminatedString(C)) {
195 if (ITy->getBitWidth() == 8)
196 return SectionKind::getMergeable1ByteCString();
197 if (ITy->getBitWidth() == 16)
198 return SectionKind::getMergeable2ByteCString();
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000199
Chris Lattner81bbf442009-08-04 16:13:09 +0000200 assert(ITy->getBitWidth() == 32 && "Unknown width");
201 return SectionKind::getMergeable4ByteCString();
202 }
203 }
204 }
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000205
Chris Lattner5e693ed2009-07-28 03:13:23 +0000206 // Otherwise, just drop it into a mergable constant section. If we have
207 // a section for this size, use it, otherwise use the arbitrary sized
208 // mergable section.
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000209 switch (TM.getDataLayout()->getTypeAllocSize(C->getType())) {
Chris Lattnerf8d97102009-08-01 23:57:16 +0000210 case 4: return SectionKind::getMergeableConst4();
211 case 8: return SectionKind::getMergeableConst8();
212 case 16: return SectionKind::getMergeableConst16();
213 default: return SectionKind::getMergeableConst();
Chris Lattner5e693ed2009-07-28 03:13:23 +0000214 }
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000215
Chris Lattner5e693ed2009-07-28 03:13:23 +0000216 case Constant::LocalRelocation:
217 // In static relocation model, the linker will resolve all addresses, so
218 // the relocation entries will actually be constants by the time the app
219 // starts up. However, we can't put this into a mergable section, because
220 // the linker doesn't take relocations into consideration when it tries to
221 // merge entries in the section.
222 if (ReloModel == Reloc::Static)
Chris Lattnerf8d97102009-08-01 23:57:16 +0000223 return SectionKind::getReadOnly();
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000224
Chris Lattner5e693ed2009-07-28 03:13:23 +0000225 // Otherwise, the dynamic linker needs to fix it up, put it in the
226 // writable data.rel.local section.
Chris Lattnerf8d97102009-08-01 23:57:16 +0000227 return SectionKind::getReadOnlyWithRelLocal();
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000228
Chris Lattner5e693ed2009-07-28 03:13:23 +0000229 case Constant::GlobalRelocations:
230 // In static relocation model, the linker will resolve all addresses, so
231 // the relocation entries will actually be constants by the time the app
232 // starts up. However, we can't put this into a mergable section, because
233 // the linker doesn't take relocations into consideration when it tries to
234 // merge entries in the section.
235 if (ReloModel == Reloc::Static)
Chris Lattnerf8d97102009-08-01 23:57:16 +0000236 return SectionKind::getReadOnly();
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000237
Chris Lattner5e693ed2009-07-28 03:13:23 +0000238 // Otherwise, the dynamic linker needs to fix it up, put it in the
239 // writable data.rel section.
Chris Lattnerf8d97102009-08-01 23:57:16 +0000240 return SectionKind::getReadOnlyWithRel();
Chris Lattner5e693ed2009-07-28 03:13:23 +0000241 }
242 }
243
244 // Okay, this isn't a constant. If the initializer for the global is going
245 // to require a runtime relocation by the dynamic linker, put it into a more
246 // specific section to improve startup time of the app. This coalesces these
247 // globals together onto fewer pages, improving the locality of the dynamic
248 // linker.
249 if (ReloModel == Reloc::Static)
Chris Lattnerf8d97102009-08-01 23:57:16 +0000250 return SectionKind::getDataNoRel();
Chris Lattner5e693ed2009-07-28 03:13:23 +0000251
252 switch (C->getRelocationInfo()) {
Chris Lattner5e693ed2009-07-28 03:13:23 +0000253 case Constant::NoRelocation:
Chris Lattnerf8d97102009-08-01 23:57:16 +0000254 return SectionKind::getDataNoRel();
Chris Lattner5e693ed2009-07-28 03:13:23 +0000255 case Constant::LocalRelocation:
Chris Lattnerf8d97102009-08-01 23:57:16 +0000256 return SectionKind::getDataRelLocal();
Chris Lattner5e693ed2009-07-28 03:13:23 +0000257 case Constant::GlobalRelocations:
Chris Lattnerf8d97102009-08-01 23:57:16 +0000258 return SectionKind::getDataRel();
Chris Lattner5e693ed2009-07-28 03:13:23 +0000259 }
Chandler Carruthf3e85022012-01-10 18:08:01 +0000260 llvm_unreachable("Invalid relocation");
Chris Lattner5e693ed2009-07-28 03:13:23 +0000261}
262
263/// SectionForGlobal - This method computes the appropriate section to emit
264/// the specified global variable or function definition. This should not
265/// be passed external (or available externally) globals.
Chris Lattner4d2c0f92009-07-31 18:48:30 +0000266const MCSection *TargetLoweringObjectFile::
Chris Lattnercbc7b262009-08-05 04:25:40 +0000267SectionForGlobal(const GlobalValue *GV, SectionKind Kind, Mangler *Mang,
Eric Christopher2037caf2014-01-28 00:49:26 +0000268 const TargetMachine &TM) const {
Chris Lattner5e693ed2009-07-28 03:13:23 +0000269 // Select section name.
Chris Lattner1ff90132009-08-06 16:39:58 +0000270 if (GV->hasSection())
271 return getExplicitSectionGlobal(GV, Kind, Mang, TM);
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000272
273
Chris Lattner5e693ed2009-07-28 03:13:23 +0000274 // Use default section depending on the 'type' of global
Chris Lattner26fb2772009-08-01 21:46:23 +0000275 return SelectSectionForGlobal(GV, Kind, Mang, TM);
Chris Lattner5e693ed2009-07-28 03:13:23 +0000276}
277
Chris Lattnercbc7b262009-08-05 04:25:40 +0000278
Chris Lattner5e693ed2009-07-28 03:13:23 +0000279// Lame default implementation. Calculate the section name for global.
Eric Christopher2037caf2014-01-28 00:49:26 +0000280const MCSection *
281TargetLoweringObjectFile::SelectSectionForGlobal(const GlobalValue *GV,
282 SectionKind Kind,
283 Mangler *Mang,
284 const TargetMachine &TM) const{
Chris Lattner26fb2772009-08-01 21:46:23 +0000285 assert(!Kind.isThreadLocal() && "Doesn't support TLS");
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000286
Chris Lattner26fb2772009-08-01 21:46:23 +0000287 if (Kind.isText())
Chris Lattner5e693ed2009-07-28 03:13:23 +0000288 return getTextSection();
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000289
Chris Lattnerd5c01132009-08-01 21:56:13 +0000290 if (Kind.isBSS() && BSSSection != 0)
291 return BSSSection;
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000292
Chris Lattner26fb2772009-08-01 21:46:23 +0000293 if (Kind.isReadOnly() && ReadOnlySection != 0)
Chris Lattner5e693ed2009-07-28 03:13:23 +0000294 return ReadOnlySection;
295
296 return getDataSection();
297}
298
Chris Lattner0c402662009-08-01 23:46:12 +0000299/// getSectionForConstant - Given a mergable constant with the
Chris Lattner5e693ed2009-07-28 03:13:23 +0000300/// specified size and relocation information, return a section that it
301/// should be placed in.
Chris Lattner4d2c0f92009-07-31 18:48:30 +0000302const MCSection *
Chris Lattner0c402662009-08-01 23:46:12 +0000303TargetLoweringObjectFile::getSectionForConstant(SectionKind Kind) const {
Chris Lattner5e693ed2009-07-28 03:13:23 +0000304 if (Kind.isReadOnly() && ReadOnlySection != 0)
305 return ReadOnlySection;
Anton Korobeynikov1df58862009-09-09 08:41:20 +0000306
Chris Lattner5e693ed2009-07-28 03:13:23 +0000307 return DataSection;
308}
309
Anton Korobeynikove42af362012-11-14 01:47:00 +0000310/// getTTypeGlobalReference - Return an MCExpr to use for a
Anton Korobeynikovae4ccc12010-02-15 22:35:59 +0000311/// reference to the specified global variable from exception
312/// handling information.
Chris Lattnerb8666022009-09-16 01:46:41 +0000313const MCExpr *TargetLoweringObjectFile::
Anton Korobeynikove42af362012-11-14 01:47:00 +0000314getTTypeGlobalReference(const GlobalValue *GV, Mangler *Mang,
315 MachineModuleInfo *MMI, unsigned Encoding,
316 MCStreamer &Streamer) const {
317 const MCSymbolRefExpr *Ref =
Rafael Espindolae133ed82013-10-29 17:28:26 +0000318 MCSymbolRefExpr::Create(getSymbol(*Mang, GV), getContext());
Anton Korobeynikove42af362012-11-14 01:47:00 +0000319
320 return getTTypeReference(Ref, Encoding, Streamer);
Chris Lattnerb8666022009-09-16 01:46:41 +0000321}
Chris Lattner5e693ed2009-07-28 03:13:23 +0000322
Anton Korobeynikovae4ccc12010-02-15 22:35:59 +0000323const MCExpr *TargetLoweringObjectFile::
Anton Korobeynikove42af362012-11-14 01:47:00 +0000324getTTypeReference(const MCSymbolRefExpr *Sym, unsigned Encoding,
325 MCStreamer &Streamer) const {
Rafael Espindolaa01cdb02011-04-15 15:11:06 +0000326 switch (Encoding & 0x70) {
Anton Korobeynikovae4ccc12010-02-15 22:35:59 +0000327 default:
Chris Lattner2104b8d2010-04-07 22:58:41 +0000328 report_fatal_error("We do not support this DWARF encoding yet!");
Anton Korobeynikovae4ccc12010-02-15 22:35:59 +0000329 case dwarf::DW_EH_PE_absptr:
330 // Do nothing special
Anton Korobeynikove42af362012-11-14 01:47:00 +0000331 return Sym;
Chris Lattner03627cb2010-03-11 21:55:20 +0000332 case dwarf::DW_EH_PE_pcrel: {
333 // Emit a label to the streamer for the current position. This gives us
334 // .-foo addressing.
Chris Lattneraed00fa2010-03-17 05:41:18 +0000335 MCSymbol *PCSym = getContext().CreateTempSymbol();
Chris Lattner03627cb2010-03-11 21:55:20 +0000336 Streamer.EmitLabel(PCSym);
337 const MCExpr *PC = MCSymbolRefExpr::Create(PCSym, getContext());
Anton Korobeynikove42af362012-11-14 01:47:00 +0000338 return MCBinaryExpr::CreateSub(Sym, PC, getContext());
Chris Lattner03627cb2010-03-11 21:55:20 +0000339 }
340 }
Anton Korobeynikovae4ccc12010-02-15 22:35:59 +0000341}
David Blaikief2694972013-06-28 20:05:11 +0000342
Ulrich Weigand2b6fc8d2013-07-02 18:47:09 +0000343const MCExpr *TargetLoweringObjectFile::getDebugThreadLocalSymbol(const MCSymbol *Sym) const {
David Blaikief2694972013-06-28 20:05:11 +0000344 // FIXME: It's not clear what, if any, default this should have - perhaps a
345 // null return could mean 'no location' & we should just do that here.
346 return MCSymbolRefExpr::Create(Sym, *Ctx);
347}