2006-09-07 22:05:02 +00:00
|
|
|
//===-- PPCTargetAsmInfo.cpp - PPC asm properties ---------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-07 22:05:02 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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"
|
2008-02-27 23:49:15 +00:00
|
|
|
#include "llvm/Support/Dwarf.h"
|
|
|
|
|
2006-09-07 22:05:02 +00:00
|
|
|
using namespace llvm;
|
2008-02-27 23:49:15 +00:00
|
|
|
using namespace llvm::dwarf;
|
2006-09-07 22:05:02 +00:00
|
|
|
|
2009-06-19 00:08:39 +00:00
|
|
|
PPCDarwinTargetAsmInfo::PPCDarwinTargetAsmInfo(const PPCTargetMachine &TM) :
|
2008-09-25 21:00:33 +00:00
|
|
|
PPCTargetAsmInfo<DarwinTargetAsmInfo>(TM) {
|
2007-02-01 16:31:34 +00:00
|
|
|
PCSymbol = ".";
|
2006-12-21 20:26:09 +00:00
|
|
|
CommentString = ";";
|
|
|
|
UsedDirective = "\t.no_dead_strip\t";
|
2007-12-19 21:54:36 +00:00
|
|
|
SupportsExceptionHandling = true;
|
2007-12-21 12:19:44 +00:00
|
|
|
|
2008-01-10 02:03:30 +00:00
|
|
|
GlobalEHDirective = "\t.globl\t";
|
|
|
|
SupportsWeakOmittedEHFrame = false;
|
2006-12-21 20:26:09 +00:00
|
|
|
}
|
|
|
|
|
2008-08-08 18:23:49 +00:00
|
|
|
PPCLinuxTargetAsmInfo::PPCLinuxTargetAsmInfo(const PPCTargetMachine &TM) :
|
2009-08-02 04:27:24 +00:00
|
|
|
PPCTargetAsmInfo<TargetAsmInfo>(TM) {
|
2006-12-21 20:26:09 +00:00
|
|
|
CommentString = "#";
|
|
|
|
GlobalPrefix = "";
|
2008-12-19 10:55:56 +00:00
|
|
|
PrivateGlobalPrefix = ".L";
|
2006-12-21 20:26:09 +00:00
|
|
|
UsedDirective = "\t# .no_dead_strip\t";
|
|
|
|
WeakRefDirective = "\t.weak\t";
|
2007-07-25 03:48:45 +00:00
|
|
|
|
2007-12-21 12:19:44 +00:00
|
|
|
// Debug Information
|
|
|
|
AbsoluteDebugSectionOffsets = true;
|
|
|
|
SupportsDebugInformation = true;
|
|
|
|
|
|
|
|
PCSymbol = ".";
|
|
|
|
|
|
|
|
// Set up DWARF directives
|
|
|
|
HasLEB128 = true; // Target asm supports leb128 directives (little-endian)
|
|
|
|
|
|
|
|
// Exceptions handling
|
|
|
|
if (!TM.getSubtargetImpl()->isPPC64())
|
|
|
|
SupportsExceptionHandling = true;
|
|
|
|
AbsoluteEHSectionOffsets = false;
|
2006-12-21 20:26:09 +00:00
|
|
|
}
|
2008-02-27 23:49:15 +00:00
|
|
|
|
2008-10-05 08:53:29 +00:00
|
|
|
|
|
|
|
// Instantiate default implementation.
|
|
|
|
TEMPLATE_INSTANTIATION(class PPCTargetAsmInfo<TargetAsmInfo>);
|