summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-10-17 13:41:07 +0000
committerJim Laskey <jlaskey@mac.com>2006-10-17 13:41:07 +0000
commita1a19f803c8fef05db627a8b73c909a50306e9d6 (patch)
tree32334d36cfb6c51bde4e54f0eb7c27c263060b25 /include/llvm/CodeGen
parentf621abca9e423bd32a85519bc0b0b249807b2571 (diff)
downloadllvm-a1a19f803c8fef05db627a8b73c909a50306e9d6.tar.gz
llvm-a1a19f803c8fef05db627a8b73c909a50306e9d6.tar.bz2
llvm-a1a19f803c8fef05db627a8b73c909a50306e9d6.tar.xz
Basic support for getGlobalLinkName.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30997 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index 3632cc4071..8f73ce7f6c 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -99,6 +99,13 @@ namespace llvm {
/// specified global, returned in log form. This includes an explicitly
/// requested alignment (if the global has one).
unsigned getPreferredAlignmentLog(const GlobalVariable *GV) const;
+
+ /// getGlobalLinkName - Returns the asm/link name of of the specified
+ /// global variable. Should be overridden by each target asm printer to
+ /// generate the appropriate value.
+ virtual void getGlobalLinkName(const GlobalVariable *GV,
+ std::string &LinkName);
+
protected:
/// doInitialization - Set up the AsmPrinter when we are working on a new
/// module. If your pass overrides this, it must make sure to explicitly
@@ -167,7 +174,7 @@ namespace llvm {
/// special global used by LLVM. If so, emit it and return true, otherwise
/// do nothing and return false.
bool EmitSpecialLLVMGlobal(const GlobalVariable *GV);
-
+
/// EmitAlignment - Emit an alignment directive to the specified power of
/// two boundary. For example, if you pass in 3 here, you will get an 8
/// byte alignment. If a global value is specified, and if that global has