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"
|
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",
|
|
|
|
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);
|
2008-07-19 13:14:46 +00:00
|
|
|
}
|
|
|
|
|
2008-09-09 22:29:13 +00:00
|
|
|
/// emitUsedDirectiveFor - On Darwin, internally linked data beginning with
|
|
|
|
/// the PrivateGlobalPrefix or the LessPrivateGlobalPrefix does not have the
|
|
|
|
/// directive emitted (this occurs in ObjC metadata).
|
|
|
|
|
|
|
|
bool
|
|
|
|
DarwinTargetAsmInfo::emitUsedDirectiveFor(const GlobalValue* GV,
|
|
|
|
Mangler *Mang) const {
|
|
|
|
if (GV==0)
|
|
|
|
return false;
|
2009-01-15 20:18:42 +00:00
|
|
|
if (GV->hasLocalLinkage() && !isa<Function>(GV) &&
|
2008-09-09 22:29:13 +00:00
|
|
|
((strlen(getPrivateGlobalPrefix()) != 0 &&
|
|
|
|
Mang->getValueName(GV).substr(0,strlen(getPrivateGlobalPrefix())) ==
|
|
|
|
getPrivateGlobalPrefix()) ||
|
|
|
|
(strlen(getLessPrivateGlobalPrefix()) != 0 &&
|
|
|
|
Mang->getValueName(GV).substr(0,strlen(getLessPrivateGlobalPrefix())) ==
|
|
|
|
getLessPrivateGlobalPrefix())))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-07-19 13:14:46 +00:00
|
|
|
const Section*
|
2008-08-08 17:56:50 +00:00
|
|
|
DarwinTargetAsmInfo::SelectSectionForGlobal(const GlobalValue *GV) const {
|
2008-07-19 13:14:46 +00:00
|
|
|
SectionKind::Kind Kind = SectionKindForGlobal(GV);
|
2008-09-29 11:25:42 +00:00
|
|
|
bool isWeak = GV->mayBeOverridden();
|
2008-11-03 18:22:42 +00:00
|
|
|
bool isNonStatic = TM.getRelocationModel() != Reloc::Static;
|
2008-07-19 13:14:46 +00:00
|
|
|
|
|
|
|
switch (Kind) {
|
|
|
|
case SectionKind::Text:
|
2008-08-08 17:56:50 +00:00
|
|
|
if (isWeak)
|
2008-07-19 13:14:46 +00:00
|
|
|
return TextCoalSection;
|
|
|
|
else
|
2008-09-24 22:16:33 +00:00
|
|
|
return TextSection;
|
2008-07-19 13:14:46 +00:00
|
|
|
case SectionKind::Data:
|
|
|
|
case SectionKind::ThreadData:
|
|
|
|
case SectionKind::BSS:
|
|
|
|
case SectionKind::ThreadBSS:
|
|
|
|
if (cast<GlobalVariable>(GV)->isConstant())
|
2008-08-08 17:56:50 +00:00
|
|
|
return (isWeak ? ConstDataCoalSection : ConstDataSection);
|
2008-07-19 13:14:46 +00:00
|
|
|
else
|
2008-09-24 22:16:33 +00:00
|
|
|
return (isWeak ? DataCoalSection : DataSection);
|
2008-07-19 13:14:46 +00:00
|
|
|
case SectionKind::ROData:
|
2008-08-08 17:56:50 +00:00
|
|
|
return (isWeak ? ConstDataCoalSection :
|
2008-09-24 22:20:27 +00:00
|
|
|
(isNonStatic ? ConstDataSection : getReadOnlySection()));
|
2008-07-19 13:14:46 +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)));
|
|
|
|
case SectionKind::RODataMergeConst:
|
2008-08-08 17:56:50 +00:00
|
|
|
return (isWeak ?
|
2008-07-19 13:14:46 +00:00
|
|
|
ConstDataCoalSection:
|
|
|
|
MergeableConstSection(cast<GlobalVariable>(GV)));
|
|
|
|
default:
|
|
|
|
assert(0 && "Unsuported section kind for global");
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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();
|
|
|
|
const Type *Type = cast<ConstantArray>(C)->getType()->getElementType();
|
|
|
|
|
2009-01-12 20:38:59 +00:00
|
|
|
unsigned Size = TD->getTypePaddedSize(Type);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
const Section*
|
|
|
|
DarwinTargetAsmInfo::MergeableConstSection(const GlobalVariable *GV) const {
|
2008-09-24 22:17:27 +00:00
|
|
|
Constant *C = GV->getInitializer();
|
2008-07-19 13:14:46 +00:00
|
|
|
|
2008-08-07 09:51:02 +00:00
|
|
|
return MergeableConstSection(C->getType());
|
|
|
|
}
|
|
|
|
|
|
|
|
inline const Section*
|
|
|
|
DarwinTargetAsmInfo::MergeableConstSection(const Type *Ty) const {
|
2008-11-03 18:22:42 +00:00
|
|
|
const TargetData *TD = TM.getTargetData();
|
2008-08-07 09:51:02 +00:00
|
|
|
|
2009-01-12 20:38:59 +00:00
|
|
|
unsigned Size = TD->getTypePaddedSize(Ty);
|
2008-07-19 13:14:46 +00:00
|
|
|
if (Size == 4)
|
2008-09-24 22:18:54 +00:00
|
|
|
return FourByteConstantSection;
|
2008-07-19 13:14:46 +00:00
|
|
|
else if (Size == 8)
|
2008-09-24 22:18:54 +00:00
|
|
|
return EightByteConstantSection;
|
|
|
|
else if (Size == 16 && SixteenByteConstantSection)
|
|
|
|
return SixteenByteConstantSection;
|
2008-07-19 13:14:46 +00:00
|
|
|
|
2008-09-24 22:20:27 +00:00
|
|
|
return getReadOnlySection();
|
2008-07-19 13:14:46 +00:00
|
|
|
}
|
|
|
|
|
2008-08-07 09:51:02 +00:00
|
|
|
const Section*
|
|
|
|
DarwinTargetAsmInfo::SelectSectionForMachineConst(const Type *Ty) const {
|
|
|
|
const Section* S = MergeableConstSection(Ty);
|
|
|
|
|
|
|
|
// Handle weird special case, when compiling PIC stuff.
|
2008-09-24 22:20:27 +00:00
|
|
|
if (S == getReadOnlySection() &&
|
2008-11-03 18:22:42 +00:00
|
|
|
TM.getRelocationModel() != Reloc::Static)
|
2008-08-07 09:51:02 +00:00
|
|
|
return ConstDataSection;
|
|
|
|
|
|
|
|
return S;
|
|
|
|
}
|
|
|
|
|
2008-07-19 13:14:46 +00:00
|
|
|
std::string
|
|
|
|
DarwinTargetAsmInfo::UniqueSectionForGlobal(const GlobalValue* GV,
|
|
|
|
SectionKind::Kind kind) const {
|
|
|
|
assert(0 && "Darwin does not use unique sections");
|
|
|
|
return "";
|
|
|
|
}
|