2008-07-19 13:14:46 +00:00
|
|
|
//===-- DarwinTargetAsmInfo.cpp - Darwin asm properties ---------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines target asm properties related what form asm statements
|
|
|
|
// should take in general on Darwin-based targets
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Constants.h"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
|
|
|
#include "llvm/Function.h"
|
|
|
|
#include "llvm/GlobalVariable.h"
|
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2009-07-11 20:10:48 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2008-09-09 22:29:13 +00:00
|
|
|
#include "llvm/Support/Mangler.h"
|
2008-07-19 13:14:46 +00:00
|
|
|
#include "llvm/Target/DarwinTargetAsmInfo.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/Target/TargetData.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2008-11-03 18:22:42 +00:00
|
|
|
DarwinTargetAsmInfo::DarwinTargetAsmInfo(const TargetMachine &TM)
|
|
|
|
: TargetAsmInfo(TM) {
|
2008-07-19 13:14:46 +00:00
|
|
|
|
|
|
|
CStringSection_ = getUnnamedSection("\t.cstring",
|
2009-07-22 00:28:43 +00:00
|
|
|
SectionFlags::Mergeable |SectionFlags::Strings);
|
2008-09-24 22:18:54 +00:00
|
|
|
FourByteConstantSection = getUnnamedSection("\t.literal4\n",
|
|
|
|
SectionFlags::Mergeable);
|
|
|
|
EightByteConstantSection = getUnnamedSection("\t.literal8\n",
|
2008-07-19 13:14:46 +00:00
|
|
|
SectionFlags::Mergeable);
|
2008-07-19 13:16:11 +00:00
|
|
|
|
2008-07-19 13:15:46 +00:00
|
|
|
// Note: 16-byte constant section is subtarget specific and should be provided
|
2008-09-24 22:18:54 +00:00
|
|
|
// there, if needed.
|
|
|
|
SixteenByteConstantSection = 0;
|
2008-07-19 13:15:46 +00:00
|
|
|
|
2008-09-24 22:20:27 +00:00
|
|
|
ReadOnlySection = getUnnamedSection("\t.const\n", SectionFlags::None);
|
2008-07-19 13:14:46 +00:00
|
|
|
|
|
|
|
TextCoalSection =
|
2008-09-24 22:19:13 +00:00
|
|
|
getNamedSection("\t__TEXT,__textcoal_nt,coalesced,pure_instructions",
|
2008-07-19 13:14:46 +00:00
|
|
|
SectionFlags::Code);
|
2008-10-08 21:49:47 +00:00
|
|
|
ConstTextCoalSection = getNamedSection("\t__TEXT,__const_coal,coalesced",
|
|
|
|
SectionFlags::None);
|
2008-09-24 22:20:27 +00:00
|
|
|
ConstDataCoalSection = getNamedSection("\t__DATA,__const_coal,coalesced",
|
2008-09-24 22:19:13 +00:00
|
|
|
SectionFlags::None);
|
2008-07-19 13:14:46 +00:00
|
|
|
ConstDataSection = getUnnamedSection(".const_data", SectionFlags::None);
|
2008-09-24 22:19:13 +00:00
|
|
|
DataCoalSection = getNamedSection("\t__DATA,__datacoal_nt,coalesced",
|
|
|
|
SectionFlags::Writeable);
|
2009-06-19 00:08:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Common settings for all Darwin targets.
|
|
|
|
// Syntax:
|
|
|
|
GlobalPrefix = "_";
|
|
|
|
PrivateGlobalPrefix = "L";
|
2009-07-21 17:30:51 +00:00
|
|
|
LinkerPrivateGlobalPrefix = "l"; // Marker for some ObjC metadata
|
2009-06-19 00:08:39 +00:00
|
|
|
NeedsSet = true;
|
|
|
|
NeedsIndirectEncoding = true;
|
|
|
|
AllowQuotesInName = true;
|
|
|
|
HasSingleParameterDotFile = false;
|
|
|
|
|
|
|
|
// In non-PIC modes, emit a special label before jump tables so that the
|
|
|
|
// linker can perform more accurate dead code stripping. We do not check the
|
|
|
|
// relocation model here since it can be overridden later.
|
|
|
|
JumpTableSpecialLabelPrefix = "l";
|
|
|
|
|
|
|
|
// Directives:
|
|
|
|
WeakDefDirective = "\t.weak_definition ";
|
|
|
|
WeakRefDirective = "\t.weak_reference ";
|
|
|
|
HiddenDirective = "\t.private_extern ";
|
|
|
|
|
|
|
|
// Sections:
|
|
|
|
CStringSection = "\t.cstring";
|
|
|
|
JumpTableDataSection = "\t.const\n";
|
|
|
|
BSSSection = 0;
|
|
|
|
|
|
|
|
if (TM.getRelocationModel() == Reloc::Static) {
|
|
|
|
StaticCtorsSection = ".constructor";
|
|
|
|
StaticDtorsSection = ".destructor";
|
|
|
|
} else {
|
|
|
|
StaticCtorsSection = ".mod_init_func";
|
|
|
|
StaticDtorsSection = ".mod_term_func";
|
|
|
|
}
|
|
|
|
|
2009-07-17 20:46:40 +00:00
|
|
|
// _foo.eh symbols are currently always exported so that the linker knows
|
|
|
|
// about them. This may not strictly be necessary on 10.6 and later, but it
|
|
|
|
// doesn't hurt anything.
|
|
|
|
Is_EHSymbolPrivate = false;
|
|
|
|
|
2009-06-19 00:08:39 +00:00
|
|
|
DwarfAbbrevSection = ".section __DWARF,__debug_abbrev,regular,debug";
|
|
|
|
DwarfInfoSection = ".section __DWARF,__debug_info,regular,debug";
|
|
|
|
DwarfLineSection = ".section __DWARF,__debug_line,regular,debug";
|
|
|
|
DwarfFrameSection = ".section __DWARF,__debug_frame,regular,debug";
|
|
|
|
DwarfPubNamesSection = ".section __DWARF,__debug_pubnames,regular,debug";
|
|
|
|
DwarfPubTypesSection = ".section __DWARF,__debug_pubtypes,regular,debug";
|
|
|
|
DwarfStrSection = ".section __DWARF,__debug_str,regular,debug";
|
|
|
|
DwarfLocSection = ".section __DWARF,__debug_loc,regular,debug";
|
|
|
|
DwarfARangesSection = ".section __DWARF,__debug_aranges,regular,debug";
|
|
|
|
DwarfRangesSection = ".section __DWARF,__debug_ranges,regular,debug";
|
|
|
|
DwarfMacroInfoSection = ".section __DWARF,__debug_macinfo,regular,debug";
|
2008-07-19 13:14:46 +00:00
|
|
|
}
|
|
|
|
|
2008-09-09 22:29:13 +00:00
|
|
|
/// emitUsedDirectiveFor - On Darwin, internally linked data beginning with
|
2009-07-21 17:30:51 +00:00
|
|
|
/// the PrivateGlobalPrefix or the LinkerPrivateGlobalPrefix does not have the
|
2008-09-09 22:29:13 +00:00
|
|
|
/// directive emitted (this occurs in ObjC metadata).
|
2009-07-20 21:38:26 +00:00
|
|
|
bool DarwinTargetAsmInfo::emitUsedDirectiveFor(const GlobalValue* GV,
|
|
|
|
Mangler *Mang) const {
|
|
|
|
if (!GV) return false;
|
2009-07-14 18:17:16 +00:00
|
|
|
|
2009-07-21 17:30:51 +00:00
|
|
|
// Check whether the mangled name has the "Private" or "LinkerPrivate" prefix.
|
2009-07-20 21:38:26 +00:00
|
|
|
if (GV->hasLocalLinkage() && !isa<Function>(GV)) {
|
2009-07-21 22:32:55 +00:00
|
|
|
// FIXME: ObjC metadata is currently emitted as internal symbols that have
|
|
|
|
// \1L and \0l prefixes on them. Fix them to be Private/LinkerPrivate and
|
|
|
|
// this horrible hack can go away.
|
2009-07-20 21:38:26 +00:00
|
|
|
const std::string &Name = Mang->getMangledName(GV);
|
2009-07-21 22:32:55 +00:00
|
|
|
if (Name[0] == 'L' || Name[0] == 'l')
|
2009-07-20 21:38:26 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-09-09 22:29:13 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-07-19 13:14:46 +00:00
|
|
|
const Section*
|
2009-07-24 18:42:53 +00:00
|
|
|
DarwinTargetAsmInfo::SelectSectionForGlobal(const GlobalValue *GV,
|
|
|
|
SectionKind::Kind Kind) const {
|
Introduce new linkage types linkonce_odr, weak_odr, common_odr
and extern_weak_odr. These are the same as the non-odr versions,
except that they indicate that the global will only be overridden
by an *equivalent* global. In C, a function with weak linkage can
be overridden by a function which behaves completely differently.
This means that IP passes have to skip weak functions, since any
deductions made from the function definition might be wrong, since
the definition could be replaced by something completely different
at link time. This is not allowed in C++, thanks to the ODR
(One-Definition-Rule): if a function is replaced by another at
link-time, then the new function must be the same as the original
function. If a language knows that a function or other global can
only be overridden by an equivalent global, it can give it the
weak_odr linkage type, and the optimizers will understand that it
is alright to make deductions based on the function body. The
code generators on the other hand map weak and weak_odr linkage
to the same thing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66339 91177308-0d34-0410-b5e6-96231b3b80d8
2009-03-07 15:45:40 +00:00
|
|
|
bool isWeak = GV->isWeakForLinker();
|
2008-11-03 18:22:42 +00:00
|
|
|
bool isNonStatic = TM.getRelocationModel() != Reloc::Static;
|
2008-07-19 13:14:46 +00:00
|
|
|
|
|
|
|
switch (Kind) {
|
2009-07-24 19:15:47 +00:00
|
|
|
case SectionKind::ThreadData:
|
|
|
|
case SectionKind::ThreadBSS:
|
|
|
|
llvm_unreachable("Darwin doesn't support TLS");
|
2009-07-22 00:47:11 +00:00
|
|
|
case SectionKind::Text:
|
2008-08-08 17:56:50 +00:00
|
|
|
if (isWeak)
|
2008-07-19 13:14:46 +00:00
|
|
|
return TextCoalSection;
|
2009-07-24 05:10:25 +00:00
|
|
|
return TextSection;
|
2009-07-22 00:47:11 +00:00
|
|
|
case SectionKind::Data:
|
2009-07-24 19:15:47 +00:00
|
|
|
case SectionKind::DataRelLocal:
|
|
|
|
case SectionKind::DataRel:
|
2009-07-22 00:47:11 +00:00
|
|
|
case SectionKind::BSS:
|
2008-07-19 13:14:46 +00:00
|
|
|
if (cast<GlobalVariable>(GV)->isConstant())
|
2009-07-24 05:10:25 +00:00
|
|
|
return isWeak ? ConstDataCoalSection : ConstDataSection;
|
|
|
|
return isWeak ? DataCoalSection : DataSection;
|
|
|
|
|
2009-07-22 00:47:11 +00:00
|
|
|
case SectionKind::ROData:
|
2009-07-24 19:15:47 +00:00
|
|
|
case SectionKind::DataRelRO:
|
|
|
|
case SectionKind::DataRelROLocal:
|
2008-08-08 17:56:50 +00:00
|
|
|
return (isWeak ? ConstDataCoalSection :
|
2008-09-24 22:20:27 +00:00
|
|
|
(isNonStatic ? ConstDataSection : getReadOnlySection()));
|
2009-07-22 00:47:11 +00:00
|
|
|
case SectionKind::RODataMergeStr:
|
2008-08-08 17:56:50 +00:00
|
|
|
return (isWeak ?
|
2008-10-08 21:49:47 +00:00
|
|
|
ConstTextCoalSection :
|
2008-07-19 13:14:46 +00:00
|
|
|
MergeableStringSection(cast<GlobalVariable>(GV)));
|
2009-07-22 00:47:11 +00:00
|
|
|
case SectionKind::RODataMergeConst: {
|
2009-07-21 22:30:39 +00:00
|
|
|
if (isWeak) return ConstDataCoalSection;
|
2009-07-22 00:47:11 +00:00
|
|
|
const Type *Ty = cast<GlobalVariable>(GV)->getInitializer()->getType();
|
|
|
|
const TargetData *TD = TM.getTargetData();
|
|
|
|
return getSectionForMergableConstant(TD->getTypeAllocSize(Ty), 0);
|
|
|
|
}
|
|
|
|
default:
|
2009-07-14 16:55:14 +00:00
|
|
|
llvm_unreachable("Unsuported section kind for global");
|
2008-07-19 13:14:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Do we have any extra special weird cases?
|
2009-01-05 17:31:22 +00:00
|
|
|
return NULL;
|
2008-07-19 13:14:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const Section*
|
|
|
|
DarwinTargetAsmInfo::MergeableStringSection(const GlobalVariable *GV) const {
|
2008-11-03 18:22:42 +00:00
|
|
|
const TargetData *TD = TM.getTargetData();
|
2008-07-19 13:14:46 +00:00
|
|
|
Constant *C = cast<GlobalVariable>(GV)->getInitializer();
|
2009-01-27 22:29:24 +00:00
|
|
|
const Type *Ty = cast<ArrayType>(C->getType())->getElementType();
|
2008-07-19 13:14:46 +00:00
|
|
|
|
2009-05-09 07:06:46 +00:00
|
|
|
unsigned Size = TD->getTypeAllocSize(Ty);
|
2008-07-19 13:14:46 +00:00
|
|
|
if (Size) {
|
|
|
|
unsigned Align = TD->getPreferredAlignment(GV);
|
|
|
|
if (Align <= 32)
|
|
|
|
return getCStringSection_();
|
|
|
|
}
|
|
|
|
|
2008-09-24 22:20:27 +00:00
|
|
|
return getReadOnlySection();
|
2008-07-19 13:14:46 +00:00
|
|
|
}
|
|
|
|
|
2009-07-22 00:28:43 +00:00
|
|
|
const Section *
|
|
|
|
DarwinTargetAsmInfo::getSectionForMergableConstant(uint64_t Size,
|
|
|
|
unsigned ReloInfo) const {
|
|
|
|
// If this constant requires a relocation, we have to put it in the data
|
|
|
|
// segment, not in the text segment.
|
|
|
|
if (ReloInfo != 0)
|
2008-08-07 09:51:02 +00:00
|
|
|
return ConstDataSection;
|
2009-07-22 00:28:43 +00:00
|
|
|
|
|
|
|
switch (Size) {
|
|
|
|
default: break;
|
|
|
|
case 4:
|
|
|
|
return FourByteConstantSection;
|
|
|
|
case 8:
|
|
|
|
return EightByteConstantSection;
|
|
|
|
case 16:
|
|
|
|
if (SixteenByteConstantSection)
|
|
|
|
return SixteenByteConstantSection;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ReadOnlySection; // .const
|
2008-08-07 09:51:02 +00:00
|
|
|
}
|
|
|
|
|