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;
|
|
|
|
|
2006-12-21 20:26:09 +00:00
|
|
|
PPCTargetAsmInfo::PPCTargetAsmInfo(const PPCTargetMachine &TM) {
|
2006-09-07 22:05:02 +00:00
|
|
|
bool isPPC64 = TM.getSubtargetImpl()->isPPC64();
|
2006-12-21 20:26:09 +00:00
|
|
|
|
2006-09-07 22:05:02 +00:00
|
|
|
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;
|
|
|
|
LCOMMDirective = "\t.lcomm\t";
|
|
|
|
InlineAsmStart = "# InlineAsm Start";
|
|
|
|
InlineAsmEnd = "# InlineAsm End";
|
2007-01-16 09:29:17 +00:00
|
|
|
AssemblerDialect = TM.getSubtargetImpl()->getAsmFlavor();
|
2006-09-07 22:05:02 +00:00
|
|
|
|
|
|
|
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";
|
2007-02-01 16:31:34 +00:00
|
|
|
DwarfEHFrameSection =
|
|
|
|
".section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support";
|
2007-02-21 22:43:40 +00:00
|
|
|
DwarfExceptionSection = ".section __DATA,__gcc_except_tab";
|
2006-09-07 22:05:02 +00:00
|
|
|
}
|
2006-10-05 00:35:50 +00:00
|
|
|
|
2006-12-21 20:26:09 +00:00
|
|
|
DarwinTargetAsmInfo::DarwinTargetAsmInfo(const PPCTargetMachine &TM)
|
|
|
|
: PPCTargetAsmInfo(TM)
|
|
|
|
{
|
2007-02-01 16:31:34 +00:00
|
|
|
PCSymbol = ".";
|
2006-12-21 20:26:09 +00:00
|
|
|
CommentString = ";";
|
|
|
|
GlobalPrefix = "_";
|
|
|
|
PrivateGlobalPrefix = "L";
|
|
|
|
ConstantPoolSection = "\t.const\t";
|
|
|
|
JumpTableDataSection = ".const";
|
2007-01-29 18:51:14 +00:00
|
|
|
GlobalDirective = "\t.globl\t";
|
2006-12-21 20:26:09 +00:00
|
|
|
CStringSection = "\t.cstring";
|
2007-03-08 01:25:25 +00:00
|
|
|
FourByteConstantSection = "\t.literal4\n";
|
|
|
|
EightByteConstantSection = "\t.literal8\n";
|
|
|
|
ReadOnlySection = "\t.const\n";
|
2007-01-30 08:04:53 +00:00
|
|
|
if (TM.getRelocationModel() == Reloc::Static) {
|
|
|
|
StaticCtorsSection = ".constructor";
|
|
|
|
StaticDtorsSection = ".destructor";
|
|
|
|
} else {
|
|
|
|
StaticCtorsSection = ".mod_init_func";
|
|
|
|
StaticDtorsSection = ".mod_term_func";
|
|
|
|
}
|
2006-12-21 20:26:09 +00:00
|
|
|
UsedDirective = "\t.no_dead_strip\t";
|
|
|
|
WeakRefDirective = "\t.weak_reference\t";
|
2007-01-14 06:37:54 +00:00
|
|
|
HiddenDirective = "\t.private_extern\t";
|
2007-01-29 18:51:14 +00:00
|
|
|
SupportsExceptionHandling = true;
|
2007-01-18 01:15:58 +00:00
|
|
|
|
|
|
|
// In non-PIC modes, emit a special label before jump tables so that the
|
|
|
|
// linker can perform more accurate dead code stripping.
|
|
|
|
if (TM.getRelocationModel() != Reloc::PIC_) {
|
|
|
|
// Emit a local label that is preserved until the linker runs.
|
|
|
|
JumpTableSpecialLabelPrefix = "l";
|
|
|
|
}
|
2006-12-21 20:26:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LinuxTargetAsmInfo::LinuxTargetAsmInfo(const PPCTargetMachine &TM)
|
|
|
|
: PPCTargetAsmInfo(TM)
|
|
|
|
{
|
|
|
|
CommentString = "#";
|
|
|
|
GlobalPrefix = "";
|
|
|
|
PrivateGlobalPrefix = "";
|
|
|
|
ConstantPoolSection = "\t.section .rodata.cst4\t";
|
|
|
|
JumpTableDataSection = ".section .rodata.cst4";
|
|
|
|
CStringSection = "\t.section\t.rodata";
|
|
|
|
StaticCtorsSection = ".section\t.ctors,\"aw\",@progbits";
|
|
|
|
StaticDtorsSection = ".section\t.dtors,\"aw\",@progbits";
|
|
|
|
UsedDirective = "\t# .no_dead_strip\t";
|
|
|
|
WeakRefDirective = "\t.weak\t";
|
|
|
|
}
|