Add TAI field for exception table section.
[oota-llvm.git] / lib / Target / PowerPC / PPCTargetAsmInfo.cpp
1 //===-- PPCTargetAsmInfo.cpp - PPC asm properties ---------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by James M. Laskey and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the declarations of the DarwinTargetAsmInfo properties.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "PPCTargetAsmInfo.h"
15 #include "PPCTargetMachine.h"
16 #include "llvm/Function.h"
17 using namespace llvm;
18
19 PPCTargetAsmInfo::PPCTargetAsmInfo(const PPCTargetMachine &TM) {
20   bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
21   
22   ZeroDirective = "\t.space\t";
23   SetDirective = "\t.set";
24   Data64bitsDirective = isPPC64 ? "\t.quad\t" : 0;  
25   AlignmentIsInBytes = false;
26   LCOMMDirective = "\t.lcomm\t";
27   InlineAsmStart = "# InlineAsm Start";
28   InlineAsmEnd = "# InlineAsm End";
29   AssemblerDialect = TM.getSubtargetImpl()->getAsmFlavor();
30   
31   NeedsSet = true;
32   AddressSize = isPPC64 ? 8 : 4;
33   DwarfAbbrevSection = ".section __DWARF,__debug_abbrev,regular,debug";
34   DwarfInfoSection = ".section __DWARF,__debug_info,regular,debug";
35   DwarfLineSection = ".section __DWARF,__debug_line,regular,debug";
36   DwarfFrameSection = ".section __DWARF,__debug_frame,regular,debug";
37   DwarfPubNamesSection = ".section __DWARF,__debug_pubnames,regular,debug";
38   DwarfPubTypesSection = ".section __DWARF,__debug_pubtypes,regular,debug";
39   DwarfStrSection = ".section __DWARF,__debug_str,regular,debug";
40   DwarfLocSection = ".section __DWARF,__debug_loc,regular,debug";
41   DwarfARangesSection = ".section __DWARF,__debug_aranges,regular,debug";
42   DwarfRangesSection = ".section __DWARF,__debug_ranges,regular,debug";
43   DwarfMacInfoSection = ".section __DWARF,__debug_macinfo,regular,debug";
44   DwarfEHFrameSection =
45   ".section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support";
46   DwarfExceptionSection = ".section __DATA,__gcc_except_tab";
47 }
48
49 DarwinTargetAsmInfo::DarwinTargetAsmInfo(const PPCTargetMachine &TM)
50 : PPCTargetAsmInfo(TM)
51 {
52   PCSymbol = ".";
53   CommentString = ";";
54   GlobalPrefix = "_";
55   PrivateGlobalPrefix = "L";
56   ConstantPoolSection = "\t.const\t";
57   JumpTableDataSection = ".const";
58   GlobalDirective = "\t.globl\t";
59   CStringSection = "\t.cstring";
60   if (TM.getRelocationModel() == Reloc::Static) {
61     StaticCtorsSection = ".constructor";
62     StaticDtorsSection = ".destructor";
63   } else {
64     StaticCtorsSection = ".mod_init_func";
65     StaticDtorsSection = ".mod_term_func";
66   }
67   UsedDirective = "\t.no_dead_strip\t";
68   WeakRefDirective = "\t.weak_reference\t";
69   HiddenDirective = "\t.private_extern\t";
70   SupportsExceptionHandling = true;
71   
72   // In non-PIC modes, emit a special label before jump tables so that the
73   // linker can perform more accurate dead code stripping.
74   if (TM.getRelocationModel() != Reloc::PIC_) {
75     // Emit a local label that is preserved until the linker runs.
76     JumpTableSpecialLabelPrefix = "l";
77   }
78 }
79
80 LinuxTargetAsmInfo::LinuxTargetAsmInfo(const PPCTargetMachine &TM)
81 : PPCTargetAsmInfo(TM)
82 {
83   CommentString = "#";
84   GlobalPrefix = "";
85   PrivateGlobalPrefix = "";
86   ConstantPoolSection = "\t.section .rodata.cst4\t";
87   JumpTableDataSection = ".section .rodata.cst4";
88   CStringSection = "\t.section\t.rodata";
89   StaticCtorsSection = ".section\t.ctors,\"aw\",@progbits";
90   StaticDtorsSection = ".section\t.dtors,\"aw\",@progbits";
91   UsedDirective = "\t# .no_dead_strip\t";
92   WeakRefDirective = "\t.weak\t";
93 }