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"
|
2009-08-13 05:30:22 +00:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2008-07-19 13:14:46 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-08-13 05:30:22 +00:00
|
|
|
DarwinTargetAsmInfo::DarwinTargetAsmInfo(const Triple &Triple) {
|
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-08-13 05:30:22 +00:00
|
|
|
// On Leoaprd (10.5 aka darwin9) and earlier, _foo.eh symbols must be exported
|
|
|
|
// so that the linker knows about them. This is not necessary on 10.6 and
|
|
|
|
// later, but it doesn't hurt anything.
|
|
|
|
if (Triple.getDarwinMajorNumber() >= 10)
|
|
|
|
Is_EHSymbolPrivate = false;
|
|
|
|
|
|
|
|
// Leopard (10.5 aka darwin9) and later support aligned common symbols.
|
|
|
|
COMMDirectiveTakesAlignment = Triple.getDarwinMajorNumber() >= 9;
|
|
|
|
|
2009-08-11 22:31:42 +00:00
|
|
|
GlobalEHDirective = "\t.globl\t";
|
|
|
|
SupportsWeakOmittedEHFrame = false;
|
2008-07-19 13:14:46 +00:00
|
|
|
}
|
|
|
|
|