aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/PPCTargetAsmInfo.cpp
blob: 6615add963a7e9b4cd81f53db7da6f378ec5bed9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//===-- PPCTargetAsmInfo.cpp - PPC asm properties ---------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file was developed by James M. Laskey and is distributed under the
// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file contains the declarations of the DarwinTargetAsmInfo properties.
//
//===----------------------------------------------------------------------===//

#include "PPCTargetAsmInfo.h"
#include "PPCTargetMachine.h"
#include "llvm/Function.h"
using namespace llvm;

DarwinTargetAsmInfo::DarwinTargetAsmInfo(const PPCTargetMachine &TM) {
  bool isPPC64 = TM.getSubtargetImpl()->isPPC64();

  CommentString = ";";
  GlobalPrefix = "_";
  PrivateGlobalPrefix = "L";
  ZeroDirective = "\t.space\t";
  SetDirective = "\t.set";
  Data64bitsDirective = isPPC64 ? "\t.quad\t" : 0;  
  AlignmentIsInBytes = false;
  ConstantPoolSection = "\t.const\t";
  JumpTableDataSection = ".const";
  LCOMMDirective = "\t.lcomm\t";
  StaticCtorsSection = ".mod_init_func";
  StaticDtorsSection = ".mod_term_func";
  UsedDirective = "\t.no_dead_strip\t";
  InlineAsmStart = "# InlineAsm Start";
  InlineAsmEnd = "# InlineAsm End";
  
  NeedsSet = true;
  AddressSize = isPPC64 ? 8 : 4;
  DwarfAbbrevSection = ".section __DWARF,__debug_abbrev";
  DwarfInfoSection = ".section __DWARF,__debug_info";
  DwarfLineSection = ".section __DWARF,__debug_line";
  DwarfFrameSection = ".section __DWARF,__debug_frame";
  DwarfPubNamesSection = ".section __DWARF,__debug_pubnames";
  DwarfPubTypesSection = ".section __DWARF,__debug_pubtypes";
  DwarfStrSection = ".section __DWARF,__debug_str";
  DwarfLocSection = ".section __DWARF,__debug_loc";
  DwarfARangesSection = ".section __DWARF,__debug_aranges";
  DwarfRangesSection = ".section __DWARF,__debug_ranges";
  DwarfMacInfoSection = ".section __DWARF,__debug_macinfo";
}