diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-31 20:52:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-31 20:52:39 +0000 |
commit | d25701c114e108af5e2f9f40a05c6ad0276ecb40 (patch) | |
tree | c8e4cad3867b1623a78a35a34f5ae6f9a5a62eca /llvm/lib/Target/TargetLoweringObjectFile.cpp | |
parent | f3ee7eaac3a75c91703f04bab1040792a414e5a9 (diff) | |
download | llvm-d25701c114e108af5e2f9f40a05c6ad0276ecb40.zip llvm-d25701c114e108af5e2f9f40a05c6ad0276ecb40.tar.gz llvm-d25701c114e108af5e2f9f40a05c6ad0276ecb40.tar.bz2 |
move emitUsedDirectiveFor to TargetLoweringObjectFile and rename it to
indicate that it is a predicate, not an emitter. This eliminates TAI
dependencies on Mangler and GlobalValue.
llvm-svn: 77726
Diffstat (limited to 'llvm/lib/Target/TargetLoweringObjectFile.cpp')
-rw-r--r-- | llvm/lib/Target/TargetLoweringObjectFile.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/llvm/lib/Target/TargetLoweringObjectFile.cpp b/llvm/lib/Target/TargetLoweringObjectFile.cpp index 36fda0b..9ba12bb2 100644 --- a/llvm/lib/Target/TargetLoweringObjectFile.cpp +++ b/llvm/lib/Target/TargetLoweringObjectFile.cpp @@ -585,6 +585,29 @@ getSectionForMergeableConstant(SectionKind Kind) const { return ReadOnlySection; // .const } +/// shouldEmitUsedDirectiveFor - This hook allows targets to selectively decide +/// not to emit the UsedDirective for some symbols in llvm.used. +// FIXME: REMOVE this (rdar://7071300) +bool TargetLoweringObjectFileMachO:: +shouldEmitUsedDirectiveFor(const GlobalValue *GV, Mangler *Mang) const { + /// On Darwin, internally linked data beginning with "L" or "l" does not have + /// the directive emitted (this occurs in ObjC metadata). + if (!GV) return false; + + // Check whether the mangled name has the "Private" or "LinkerPrivate" prefix. + if (GV->hasLocalLinkage() && !isa<Function>(GV)) { + // 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. + const std::string &Name = Mang->getMangledName(GV); + if (Name[0] == 'L' || Name[0] == 'l') + return false; + } + + return true; +} + + //===----------------------------------------------------------------------===// // COFF //===----------------------------------------------------------------------===// |