2008-07-19 13:14:46 +00:00
|
|
|
//===-- DarwinTargetAsmInfo.cpp - Darwin asm properties ---------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines target asm properties related what form asm statements
|
|
|
|
// should take in general on Darwin-based targets
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Target/DarwinTargetAsmInfo.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2009-08-02 04:27:24 +00:00
|
|
|
DarwinTargetAsmInfo::DarwinTargetAsmInfo() {
|
2009-06-19 00:08:39 +00:00
|
|
|
// Common settings for all Darwin targets.
|
|
|
|
// Syntax:
|
|
|
|
GlobalPrefix = "_";
|
|
|
|
PrivateGlobalPrefix = "L";
|
2009-07-21 17:30:51 +00:00
|
|
|
LinkerPrivateGlobalPrefix = "l"; // Marker for some ObjC metadata
|
2009-06-19 00:08:39 +00:00
|
|
|
NeedsSet = true;
|
|
|
|
NeedsIndirectEncoding = true;
|
|
|
|
AllowQuotesInName = true;
|
|
|
|
HasSingleParameterDotFile = false;
|
|
|
|
|
2009-08-11 22:31:42 +00:00
|
|
|
AlignmentIsInBytes = false;
|
2009-08-11 22:39:40 +00:00
|
|
|
InlineAsmStart = " InlineAsm Start";
|
|
|
|
InlineAsmEnd = " InlineAsm End";
|
2009-08-11 22:31:42 +00:00
|
|
|
|
2009-06-19 00:08:39 +00:00
|
|
|
// In non-PIC modes, emit a special label before jump tables so that the
|
|
|
|
// linker can perform more accurate dead code stripping. We do not check the
|
|
|
|
// relocation model here since it can be overridden later.
|
|
|
|
JumpTableSpecialLabelPrefix = "l";
|
|
|
|
|
|
|
|
// Directives:
|
|
|
|
WeakDefDirective = "\t.weak_definition ";
|
|
|
|
WeakRefDirective = "\t.weak_reference ";
|
|
|
|
HiddenDirective = "\t.private_extern ";
|
2009-08-11 22:06:07 +00:00
|
|
|
LCOMMDirective = "\t.lcomm\t";
|
2009-08-11 22:17:31 +00:00
|
|
|
ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
|
|
|
|
ZeroFillDirective = "\t.zerofill\t"; // Uses .zerofill
|
2009-08-11 22:22:44 +00:00
|
|
|
SetDirective = "\t.set";
|
|
|
|
ProtectedDirective = "\t.globl\t";
|
2009-08-11 22:31:42 +00:00
|
|
|
HasDotTypeDotSizeDirective = false;
|
|
|
|
UsedDirective = "\t.no_dead_strip\t";
|
2009-08-11 22:06:07 +00:00
|
|
|
|
2009-07-17 20:46:40 +00:00
|
|
|
// _foo.eh symbols are currently always exported so that the linker knows
|
2009-08-02 06:51:58 +00:00
|
|
|
// about them. This is not necessary on 10.6 and later, but it
|
2009-07-17 20:46:40 +00:00
|
|
|
// doesn't hurt anything.
|
2009-08-02 06:51:58 +00:00
|
|
|
// FIXME: I need to get this from Triple.
|
2009-07-17 20:46:40 +00:00
|
|
|
Is_EHSymbolPrivate = false;
|
2009-08-11 22:31:42 +00:00
|
|
|
GlobalEHDirective = "\t.globl\t";
|
|
|
|
SupportsWeakOmittedEHFrame = false;
|
|
|
|
|
2008-07-19 13:14:46 +00:00
|
|
|
}
|
|
|
|
|