aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/ELFTargetAsmInfo.h
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2008-07-19 13:14:11 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2008-07-19 13:14:11 +0000
commitdebe34bd8df7c6bb3d85f836374a1c7763576a63 (patch)
tree9c08f319f44ec1d24dffecb62d149bf7d2c39306 /include/llvm/Target/ELFTargetAsmInfo.h
parent33500e5882c7c216f960336c0755571b968e6626 (diff)
downloadexternal_llvm-debe34bd8df7c6bb3d85f836374a1c7763576a63.zip
external_llvm-debe34bd8df7c6bb3d85f836374a1c7763576a63.tar.gz
external_llvm-debe34bd8df7c6bb3d85f836374a1c7763576a63.tar.bz2
Add TargetAsmInfo for all ELF-based targets
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53786 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/ELFTargetAsmInfo.h')
-rw-r--r--include/llvm/Target/ELFTargetAsmInfo.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/include/llvm/Target/ELFTargetAsmInfo.h b/include/llvm/Target/ELFTargetAsmInfo.h
new file mode 100644
index 0000000..7afadf0
--- /dev/null
+++ b/include/llvm/Target/ELFTargetAsmInfo.h
@@ -0,0 +1,38 @@
+//===---- ELFTargetAsmInfo.h - ELF 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 ELF-based targets
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_ELF_TARGET_ASM_INFO_H
+#define LLVM_ELF_TARGET_ASM_INFO_H
+
+#include "llvm/Target/TargetAsmInfo.h"
+#include "llvm/Target/TargetMachine.h"
+
+namespace llvm {
+ class GlobalValue;
+ class GlobalVariable;
+
+ class ELFTargetAsmInfo: public TargetAsmInfo {
+ explicit ELFTargetAsmInfo(const TargetMachine &TM);
+
+ virtual const Section* SelectSectionForGlobal(const GlobalValue *GV) const;
+ virtual std::string PrintSectionFlags(unsigned flags) const;
+ const Section* MergeableConstSection(const GlobalVariable *GV) const;
+ const Section* MergeableStringSection(const GlobalVariable *GV) const;
+ protected:
+ const TargetMachine* ETM;
+ };
+}
+
+
+#endif // LLVM_ELF_TARGET_ASM_INFO_H