mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 00:31:54 +00:00
Move the uglier parts of deciding not to emit a
UsedDirective for some symbols in llvm.used into Darwin-specific code. I've decided LessPrivateGlobal is potentially a useful abstraction and left it in the target-independent area, with improved comment. llvm-svn: 56024
This commit is contained in:
parent
103d08d4ce
commit
ba2bbe0c55
@ -22,6 +22,7 @@ namespace llvm {
|
|||||||
class GlobalValue;
|
class GlobalValue;
|
||||||
class GlobalVariable;
|
class GlobalVariable;
|
||||||
class Type;
|
class Type;
|
||||||
|
class Mangler;
|
||||||
|
|
||||||
struct DarwinTargetAsmInfo: public virtual TargetAsmInfo {
|
struct DarwinTargetAsmInfo: public virtual TargetAsmInfo {
|
||||||
const Section* TextCoalSection;
|
const Section* TextCoalSection;
|
||||||
@ -33,6 +34,8 @@ namespace llvm {
|
|||||||
virtual const Section* SelectSectionForGlobal(const GlobalValue *GV) const;
|
virtual const Section* SelectSectionForGlobal(const GlobalValue *GV) const;
|
||||||
virtual std::string UniqueSectionForGlobal(const GlobalValue* GV,
|
virtual std::string UniqueSectionForGlobal(const GlobalValue* GV,
|
||||||
SectionKind::Kind kind) const;
|
SectionKind::Kind kind) const;
|
||||||
|
virtual bool emitUsedDirectiveFor(const GlobalValue *GV,
|
||||||
|
Mangler *Mang) const;
|
||||||
const Section* MergeableConstSection(const GlobalVariable *GV) const;
|
const Section* MergeableConstSection(const GlobalVariable *GV) const;
|
||||||
const Section* MergeableConstSection(const Type *Ty) const;
|
const Section* MergeableConstSection(const Type *Ty) const;
|
||||||
const Section* MergeableStringSection(const GlobalVariable *GV) const;
|
const Section* MergeableStringSection(const GlobalVariable *GV) const;
|
||||||
|
@ -100,6 +100,7 @@ namespace llvm {
|
|||||||
class CallInst;
|
class CallInst;
|
||||||
class GlobalValue;
|
class GlobalValue;
|
||||||
class Type;
|
class Type;
|
||||||
|
class Mangler;
|
||||||
|
|
||||||
class Section {
|
class Section {
|
||||||
friend class TargetAsmInfo;
|
friend class TargetAsmInfo;
|
||||||
@ -220,9 +221,9 @@ namespace llvm {
|
|||||||
/// have names in the .o file. This is often "." or "L".
|
/// have names in the .o file. This is often "." or "L".
|
||||||
const char *PrivateGlobalPrefix; // Defaults to "."
|
const char *PrivateGlobalPrefix; // Defaults to "."
|
||||||
|
|
||||||
/// LessPrivateGlobalPrefix - This prefix is used for some Objective C
|
/// LessPrivateGlobalPrefix - This prefix is used for symbols that should
|
||||||
/// metadata symbols that should be passed through the assembler but be
|
/// be passed through the assembler but be removed by the linker. This
|
||||||
/// removed by the linker. This is "l" on Darwin.
|
/// is "l" on Darwin, currently used for some ObjC metadata.
|
||||||
const char *LessPrivateGlobalPrefix; // Defaults to ""
|
const char *LessPrivateGlobalPrefix; // Defaults to ""
|
||||||
|
|
||||||
/// JumpTableSpecialLabelPrefix - If not null, a extra (dead) label is
|
/// JumpTableSpecialLabelPrefix - If not null, a extra (dead) label is
|
||||||
@ -543,6 +544,13 @@ namespace llvm {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// emitUsedDirectiveFor - This hook allows targets to selectively decide
|
||||||
|
/// not to emit the UsedDirective for some symbols in llvm.used.
|
||||||
|
virtual bool emitUsedDirectiveFor(const GlobalValue *GV,
|
||||||
|
Mangler *Mang) const {
|
||||||
|
return (GV!=0);
|
||||||
|
}
|
||||||
|
|
||||||
/// PreferredEHDataFormat - This hook allows the target to select data
|
/// PreferredEHDataFormat - This hook allows the target to select data
|
||||||
/// format used for encoding pointers in exception handling data. Reason is
|
/// format used for encoding pointers in exception handling data. Reason is
|
||||||
/// 0 for data, 1 for code labels, 2 for function pointers. Global is true
|
/// 0 for data, 1 for code labels, 2 for function pointers. Global is true
|
||||||
|
@ -451,10 +451,9 @@ const GlobalValue * AsmPrinter::findGlobalValue(const Constant *CV) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// EmitLLVMUsedList - For targets that define a TAI::UsedDirective, mark each
|
/// EmitLLVMUsedList - For targets that define a TAI::UsedDirective, mark each
|
||||||
/// global in the specified llvm.used list as being used with this directive.
|
/// global in the specified llvm.used list for which emitUsedDirectiveFor
|
||||||
/// Internally linked data beginning with the PrivateGlobalPrefix or the
|
/// is true, as being used with this directive.
|
||||||
/// LessPrivateGlobalPrefix does not have the directive emitted (this
|
|
||||||
/// occurs in ObjC metadata).
|
|
||||||
void AsmPrinter::EmitLLVMUsedList(Constant *List) {
|
void AsmPrinter::EmitLLVMUsedList(Constant *List) {
|
||||||
const char *Directive = TAI->getUsedDirective();
|
const char *Directive = TAI->getUsedDirective();
|
||||||
|
|
||||||
@ -464,17 +463,7 @@ void AsmPrinter::EmitLLVMUsedList(Constant *List) {
|
|||||||
|
|
||||||
for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
|
for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {
|
||||||
const GlobalValue *GV = findGlobalValue(InitList->getOperand(i));
|
const GlobalValue *GV = findGlobalValue(InitList->getOperand(i));
|
||||||
if (GV) {
|
if (TAI->emitUsedDirectiveFor(GV, Mang)) {
|
||||||
if (GV->hasInternalLinkage() && !isa<Function>(GV) &&
|
|
||||||
((strlen(TAI->getPrivateGlobalPrefix()) != 0 &&
|
|
||||||
Mang->getValueName(GV)
|
|
||||||
.substr(0,strlen(TAI->getPrivateGlobalPrefix())) ==
|
|
||||||
TAI->getPrivateGlobalPrefix()) ||
|
|
||||||
(strlen(TAI->getLessPrivateGlobalPrefix()) != 0 &&
|
|
||||||
Mang->getValueName(GV)
|
|
||||||
.substr(0,strlen(TAI->getLessPrivateGlobalPrefix())) ==
|
|
||||||
TAI->getLessPrivateGlobalPrefix())))
|
|
||||||
continue;
|
|
||||||
O << Directive;
|
O << Directive;
|
||||||
EmitConstantValueOnly(InitList->getOperand(i));
|
EmitConstantValueOnly(InitList->getOperand(i));
|
||||||
O << '\n';
|
O << '\n';
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
#include "llvm/Function.h"
|
#include "llvm/Function.h"
|
||||||
#include "llvm/GlobalVariable.h"
|
#include "llvm/GlobalVariable.h"
|
||||||
#include "llvm/ADT/StringExtras.h"
|
#include "llvm/ADT/StringExtras.h"
|
||||||
|
#include "llvm/Support/Mangler.h"
|
||||||
#include "llvm/Target/DarwinTargetAsmInfo.h"
|
#include "llvm/Target/DarwinTargetAsmInfo.h"
|
||||||
#include "llvm/Target/TargetMachine.h"
|
#include "llvm/Target/TargetMachine.h"
|
||||||
#include "llvm/Target/TargetData.h"
|
#include "llvm/Target/TargetData.h"
|
||||||
@ -50,6 +51,26 @@ DarwinTargetAsmInfo::DarwinTargetAsmInfo(const TargetMachine &TM) {
|
|||||||
SectionFlags::Writeable);
|
SectionFlags::Writeable);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// 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;
|
||||||
|
if (GV->hasInternalLinkage() && !isa<Function>(GV) &&
|
||||||
|
((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;
|
||||||
|
}
|
||||||
|
|
||||||
const Section*
|
const Section*
|
||||||
DarwinTargetAsmInfo::SelectSectionForGlobal(const GlobalValue *GV) const {
|
DarwinTargetAsmInfo::SelectSectionForGlobal(const GlobalValue *GV) const {
|
||||||
SectionKind::Kind Kind = SectionKindForGlobal(GV);
|
SectionKind::Kind Kind = SectionKindForGlobal(GV);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user