2009-08-22 20:48:53 +00:00
|
|
|
//===-- MCAsmInfoDarwin.cpp - Darwin asm properties -------------*- C++ -*-===//
|
2008-07-19 13:14:46 +00:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "llvm/MC/MCAsmInfoDarwin.h"
|
2011-04-28 16:09:09 +00:00
|
|
|
#include "llvm/MC/MCContext.h"
|
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2008-07-19 13:14:46 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-01-20 06:34:14 +00:00
|
|
|
MCAsmInfoDarwin::MCAsmInfoDarwin() {
|
2009-06-19 00:08:39 +00:00
|
|
|
// Common settings for all Darwin targets.
|
|
|
|
// Syntax:
|
|
|
|
GlobalPrefix = "_";
|
|
|
|
PrivateGlobalPrefix = "L";
|
2009-09-16 01:46:41 +00:00
|
|
|
LinkerPrivateGlobalPrefix = "l";
|
2009-06-19 00:08:39 +00:00
|
|
|
AllowQuotesInName = true;
|
|
|
|
HasSingleParameterDotFile = false;
|
2010-01-23 07:21:06 +00:00
|
|
|
HasSubsectionsViaSymbols = true;
|
2009-06-19 00:08:39 +00:00
|
|
|
|
2009-08-11 22:31:42 +00:00
|
|
|
AlignmentIsInBytes = false;
|
2010-01-26 20:21:43 +00:00
|
|
|
COMMDirectiveAlignmentIsInBytes = 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
|
|
|
// Directives:
|
|
|
|
WeakDefDirective = "\t.weak_definition ";
|
|
|
|
WeakRefDirective = "\t.weak_reference ";
|
2009-08-11 22:17:31 +00:00
|
|
|
ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
|
2010-01-19 02:09:44 +00:00
|
|
|
HasMachoZeroFillDirective = true; // Uses .zerofill
|
2010-05-20 00:49:07 +00:00
|
|
|
HasMachoTBSSDirective = true; // Uses .tbss
|
2010-01-19 04:34:02 +00:00
|
|
|
HasStaticCtorDtorReferenceInStaticMode = true;
|
2010-12-04 00:31:13 +00:00
|
|
|
|
|
|
|
// FIXME: Darwin 10 and newer don't need this.
|
|
|
|
LinkerRequiresNonEmptyDwarfLines = true;
|
2010-12-06 17:27:56 +00:00
|
|
|
|
2010-12-22 21:51:29 +00:00
|
|
|
// FIXME: Change this once MC is the system assembler.
|
|
|
|
HasAggressiveSymbolFolding = false;
|
|
|
|
|
2010-01-23 06:53:23 +00:00
|
|
|
HiddenVisibilityAttr = MCSA_PrivateExtern;
|
2011-02-23 02:27:05 +00:00
|
|
|
HiddenDeclarationVisibilityAttr = MCSA_Invalid;
|
2010-01-23 06:53:23 +00:00
|
|
|
// Doesn't support protected visibility.
|
|
|
|
ProtectedVisibilityAttr = MCSA_Global;
|
|
|
|
|
2009-08-11 22:31:42 +00:00
|
|
|
HasDotTypeDotSizeDirective = false;
|
2010-01-23 05:51:36 +00:00
|
|
|
HasNoDeadStrip = true;
|
2010-11-19 18:39:33 +00:00
|
|
|
HasSymbolResolver = true;
|
2010-08-31 23:50:19 +00:00
|
|
|
|
2011-05-04 17:44:06 +00:00
|
|
|
DwarfRequiresRelocationForStmtList = false;
|
2010-09-02 16:43:44 +00:00
|
|
|
DwarfUsesLabelOffsetForRanges = false;
|
2008-07-19 13:14:46 +00:00
|
|
|
}
|