2009-07-28 03:13:23 +00:00
|
|
|
//===-- XCoreTargetAsmInfo.cpp - XCore asm properties ---------------------===//
|
2008-11-07 10:59:00 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "XCoreTargetAsmInfo.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2009-07-28 03:13:23 +00:00
|
|
|
XCoreTargetAsmInfo::XCoreTargetAsmInfo(const TargetMachine &TM)
|
2009-07-21 22:42:37 +00:00
|
|
|
: ELFTargetAsmInfo(TM) {
|
2009-06-19 21:54:26 +00:00
|
|
|
SupportsDebugInformation = true;
|
2008-11-07 10:59:00 +00:00
|
|
|
Data16bitsDirective = "\t.short\t";
|
|
|
|
Data32bitsDirective = "\t.long\t";
|
|
|
|
Data64bitsDirective = 0;
|
|
|
|
ZeroDirective = "\t.space\t";
|
|
|
|
CommentString = "#";
|
2009-08-01 23:46:12 +00:00
|
|
|
|
2008-11-07 10:59:00 +00:00
|
|
|
PrivateGlobalPrefix = ".L";
|
|
|
|
AscizDirective = ".asciiz";
|
|
|
|
WeakDefDirective = "\t.weak\t";
|
|
|
|
WeakRefDirective = "\t.weak\t";
|
|
|
|
SetDirective = "\t.set\t";
|
|
|
|
|
|
|
|
// Debug
|
|
|
|
HasLEB128 = true;
|
|
|
|
AbsoluteDebugSectionOffsets = true;
|
|
|
|
|
|
|
|
DwarfAbbrevSection = "\t.section\t.debug_abbrev,\"\",@progbits";
|
|
|
|
DwarfInfoSection = "\t.section\t.debug_info,\"\",@progbits";
|
|
|
|
DwarfLineSection = "\t.section\t.debug_line,\"\",@progbits";
|
|
|
|
DwarfFrameSection = "\t.section\t.debug_frame,\"\",@progbits";
|
|
|
|
DwarfPubNamesSection = "\t.section\t.debug_pubnames,\"\",@progbits";
|
|
|
|
DwarfPubTypesSection = "\t.section\t.debug_pubtypes,\"\",@progbits";
|
|
|
|
DwarfStrSection = "\t.section\t.debug_str,\"\",@progbits";
|
|
|
|
DwarfLocSection = "\t.section\t.debug_loc,\"\",@progbits";
|
|
|
|
DwarfARangesSection = "\t.section\t.debug_aranges,\"\",@progbits";
|
|
|
|
DwarfRangesSection = "\t.section\t.debug_ranges,\"\",@progbits";
|
2009-06-18 23:31:37 +00:00
|
|
|
DwarfMacroInfoSection = "\t.section\t.debug_macinfo,\"\",@progbits";
|
2008-11-07 10:59:00 +00:00
|
|
|
}
|
|
|
|
|