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;
|
|
|
|
|
|
|
|
// 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-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;
|
2008-07-19 13:14:46 +00:00
|
|
|
}
|
|
|
|
|