2009-08-23 05:03:30 +08:00
|
|
|
//===-- MCAsmInfoCOFF.cpp - COFF asm properties -----------------*- C++ -*-===//
|
2009-07-28 00:45:59 +08: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 COFF-based targets
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-23 04:48:53 +08:00
|
|
|
#include "llvm/MC/MCAsmInfoCOFF.h"
|
2009-07-28 00:45:59 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2011-12-20 10:50:00 +08:00
|
|
|
void MCAsmInfoCOFF::anchor() { }
|
|
|
|
|
2010-01-20 14:34:14 +08:00
|
|
|
MCAsmInfoCOFF::MCAsmInfoCOFF() {
|
2009-07-28 00:45:59 +08:00
|
|
|
GlobalPrefix = "_";
|
2012-09-08 05:08:01 +08:00
|
|
|
// MingW 4.5 and later support .comm with log2 alignment, but .lcomm uses byte
|
|
|
|
// alignment.
|
|
|
|
COMMDirectiveAlignmentIsInBytes = false;
|
|
|
|
LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
|
2009-07-28 00:45:59 +08:00
|
|
|
HasDotTypeDotSizeDirective = false;
|
|
|
|
HasSingleParameterDotFile = false;
|
|
|
|
PrivateGlobalPrefix = "L"; // Prefix for private global symbols
|
|
|
|
WeakRefDirective = "\t.weak\t";
|
2010-01-27 07:51:52 +08:00
|
|
|
LinkOnceDirective = "\t.linkonce discard\n";
|
2012-05-11 09:41:30 +08:00
|
|
|
|
2010-01-23 14:53:23 +08:00
|
|
|
// Doesn't support visibility:
|
2011-09-23 08:13:02 +08:00
|
|
|
HiddenVisibilityAttr = HiddenDeclarationVisibilityAttr = MCSA_Invalid;
|
|
|
|
ProtectedVisibilityAttr = MCSA_Invalid;
|
2009-07-28 00:45:59 +08:00
|
|
|
|
|
|
|
// Set up DWARF directives
|
|
|
|
HasLEB128 = true; // Target asm supports leb128 directives (little-endian)
|
|
|
|
SupportsDebugInformation = true;
|
|
|
|
DwarfSectionOffsetDirective = "\t.secrel32\t";
|
2010-03-13 05:03:47 +08:00
|
|
|
HasMicrosoftFastStdCallMangling = true;
|
2009-07-28 00:45:59 +08:00
|
|
|
}
|
2011-11-30 02:00:06 +08:00
|
|
|
|
2011-12-20 10:50:00 +08:00
|
|
|
void MCAsmInfoMicrosoft::anchor() { }
|
|
|
|
|
2011-11-30 02:00:06 +08:00
|
|
|
MCAsmInfoMicrosoft::MCAsmInfoMicrosoft() {
|
|
|
|
AllowQuotesInName = true;
|
|
|
|
}
|
|
|
|
|
2011-12-20 10:50:00 +08:00
|
|
|
void MCAsmInfoGNUCOFF::anchor() { }
|
|
|
|
|
2011-11-30 02:00:06 +08:00
|
|
|
MCAsmInfoGNUCOFF::MCAsmInfoGNUCOFF() {
|
|
|
|
|
|
|
|
}
|