2006-09-07 22:05:02 +00:00
|
|
|
//===-- 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"
|
2006-10-05 00:35:50 +00:00
|
|
|
#include "llvm/Function.h"
|
2006-09-07 22:05:02 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
DarwinTargetAsmInfo::DarwinTargetAsmInfo(const PPCTargetMachine &TM) {
|
|
|
|
bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
|
|
|
|
|
|
|
|
CommentString = ";";
|
|
|
|
GlobalPrefix = "_";
|
|
|
|
PrivateGlobalPrefix = "L";
|
|
|
|
ZeroDirective = "\t.space\t";
|
|
|
|
SetDirective = "\t.set";
|
2006-09-08 13:06:56 +00:00
|
|
|
Data64bitsDirective = isPPC64 ? "\t.quad\t" : 0;
|
2006-09-07 22:05:02 +00:00
|
|
|
AlignmentIsInBytes = false;
|
|
|
|
ConstantPoolSection = "\t.const\t";
|
|
|
|
JumpTableDataSection = ".const";
|
2006-10-26 21:48:57 +00:00
|
|
|
CStringSection = "\t.cstring";
|
2006-09-07 22:05:02 +00:00
|
|
|
LCOMMDirective = "\t.lcomm\t";
|
|
|
|
StaticCtorsSection = ".mod_init_func";
|
|
|
|
StaticDtorsSection = ".mod_term_func";
|
2006-09-26 03:39:53 +00:00
|
|
|
UsedDirective = "\t.no_dead_strip\t";
|
2006-09-07 22:05:02 +00:00
|
|
|
InlineAsmStart = "# InlineAsm Start";
|
|
|
|
InlineAsmEnd = "# InlineAsm End";
|
|
|
|
|
|
|
|
NeedsSet = true;
|
|
|
|
AddressSize = isPPC64 ? 8 : 4;
|
2006-10-17 11:30:57 +00:00
|
|
|
DwarfAbbrevSection = ".section __DWARF,__debug_abbrev,regular,debug";
|
|
|
|
DwarfInfoSection = ".section __DWARF,__debug_info,regular,debug";
|
|
|
|
DwarfLineSection = ".section __DWARF,__debug_line,regular,debug";
|
|
|
|
DwarfFrameSection = ".section __DWARF,__debug_frame,regular,debug";
|
|
|
|
DwarfPubNamesSection = ".section __DWARF,__debug_pubnames,regular,debug";
|
|
|
|
DwarfPubTypesSection = ".section __DWARF,__debug_pubtypes,regular,debug";
|
|
|
|
DwarfStrSection = ".section __DWARF,__debug_str,regular,debug";
|
|
|
|
DwarfLocSection = ".section __DWARF,__debug_loc,regular,debug";
|
|
|
|
DwarfARangesSection = ".section __DWARF,__debug_aranges,regular,debug";
|
|
|
|
DwarfRangesSection = ".section __DWARF,__debug_ranges,regular,debug";
|
|
|
|
DwarfMacInfoSection = ".section __DWARF,__debug_macinfo,regular,debug";
|
2006-09-07 22:05:02 +00:00
|
|
|
}
|
2006-10-05 00:35:50 +00:00
|
|
|
|