blob: 20a0128a4aaa37da554917ebe3587de5a6569a8f [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- 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"
17using namespace llvm;
18
19PPCTargetAsmInfo::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;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033 DwarfEHFrameSection =
34 ".section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support";
35 DwarfExceptionSection = ".section __DATA,__gcc_except_tab";
36}
37
38DarwinTargetAsmInfo::DarwinTargetAsmInfo(const PPCTargetMachine &TM)
39: PPCTargetAsmInfo(TM)
40{
41 PCSymbol = ".";
42 CommentString = ";";
43 GlobalPrefix = "_";
44 PrivateGlobalPrefix = "L";
45 ConstantPoolSection = "\t.const\t";
46 JumpTableDataSection = ".const";
47 GlobalDirective = "\t.globl\t";
48 CStringSection = "\t.cstring";
49 FourByteConstantSection = "\t.literal4\n";
50 EightByteConstantSection = "\t.literal8\n";
51 ReadOnlySection = "\t.const\n";
52 if (TM.getRelocationModel() == Reloc::Static) {
53 StaticCtorsSection = ".constructor";
54 StaticDtorsSection = ".destructor";
55 } else {
56 StaticCtorsSection = ".mod_init_func";
57 StaticDtorsSection = ".mod_term_func";
58 }
59 UsedDirective = "\t.no_dead_strip\t";
60 WeakRefDirective = "\t.weak_reference\t";
61 HiddenDirective = "\t.private_extern\t";
Chris Lattner9d8f7532007-08-24 16:00:15 +000062 SupportsExceptionHandling = false;
Nick Lewycky3246a9c2007-07-25 03:48:45 +000063
64 DwarfAbbrevSection = ".section __DWARF,__debug_abbrev,regular,debug";
65 DwarfInfoSection = ".section __DWARF,__debug_info,regular,debug";
66 DwarfLineSection = ".section __DWARF,__debug_line,regular,debug";
67 DwarfFrameSection = ".section __DWARF,__debug_frame,regular,debug";
68 DwarfPubNamesSection = ".section __DWARF,__debug_pubnames,regular,debug";
69 DwarfPubTypesSection = ".section __DWARF,__debug_pubtypes,regular,debug";
70 DwarfStrSection = ".section __DWARF,__debug_str,regular,debug";
71 DwarfLocSection = ".section __DWARF,__debug_loc,regular,debug";
72 DwarfARangesSection = ".section __DWARF,__debug_aranges,regular,debug";
73 DwarfRangesSection = ".section __DWARF,__debug_ranges,regular,debug";
74 DwarfMacInfoSection = ".section __DWARF,__debug_macinfo,regular,debug";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000075
76 // In non-PIC modes, emit a special label before jump tables so that the
77 // linker can perform more accurate dead code stripping.
78 if (TM.getRelocationModel() != Reloc::PIC_) {
79 // Emit a local label that is preserved until the linker runs.
80 JumpTableSpecialLabelPrefix = "l";
81 }
82}
83
84LinuxTargetAsmInfo::LinuxTargetAsmInfo(const PPCTargetMachine &TM)
85: PPCTargetAsmInfo(TM)
86{
87 CommentString = "#";
88 GlobalPrefix = "";
89 PrivateGlobalPrefix = "";
90 ConstantPoolSection = "\t.section .rodata.cst4\t";
91 JumpTableDataSection = ".section .rodata.cst4";
92 CStringSection = "\t.section\t.rodata";
93 StaticCtorsSection = ".section\t.ctors,\"aw\",@progbits";
94 StaticDtorsSection = ".section\t.dtors,\"aw\",@progbits";
95 UsedDirective = "\t# .no_dead_strip\t";
96 WeakRefDirective = "\t.weak\t";
Nick Lewycky3246a9c2007-07-25 03:48:45 +000097
98 DwarfAbbrevSection = "\t.section\t.debug_abbrev,\"\",@progbits";
99 DwarfInfoSection = "\t.section\t.debug_info,\"\",@progbits";
100 DwarfLineSection = "\t.section\t.debug_line,\"\",@progbits";
101 DwarfFrameSection = "\t.section\t.debug_frame,\"\",@progbits";
102 DwarfPubNamesSection ="\t.section\t.debug_pubnames,\"\",@progbits";
103 DwarfPubTypesSection ="\t.section\t.debug_pubtypes,\"\",@progbits";
104 DwarfStrSection = "\t.section\t.debug_str,\"\",@progbits";
105 DwarfLocSection = "\t.section\t.debug_loc,\"\",@progbits";
106 DwarfARangesSection = "\t.section\t.debug_aranges,\"\",@progbits";
107 DwarfRangesSection = "\t.section\t.debug_ranges,\"\",@progbits";
108 DwarfMacInfoSection = "\t.section\t.debug_macinfo,\"\",@progbits";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109}