2009-08-22 23:03:30 +02:00
|
|
|
//===-- MCAsmInfoCOFF.cpp - COFF asm properties -----------------*- C++ -*-===//
|
2009-07-27 18:45:59 +02: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-22 22:48:53 +02:00
|
|
|
#include "llvm/MC/MCAsmInfoCOFF.h"
|
2009-07-27 18:45:59 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2011-12-20 03:50:00 +01:00
|
|
|
void MCAsmInfoCOFF::anchor() { }
|
|
|
|
|
2010-01-20 07:34:14 +01:00
|
|
|
MCAsmInfoCOFF::MCAsmInfoCOFF() {
|
2012-09-07 23:08:01 +02:00
|
|
|
// MingW 4.5 and later support .comm with log2 alignment, but .lcomm uses byte
|
|
|
|
// alignment.
|
|
|
|
COMMDirectiveAlignmentIsInBytes = false;
|
|
|
|
LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
|
2009-07-27 18:45:59 +02:00
|
|
|
HasDotTypeDotSizeDirective = false;
|
|
|
|
HasSingleParameterDotFile = false;
|
|
|
|
WeakRefDirective = "\t.weak\t";
|
2013-12-03 00:04:51 +01:00
|
|
|
HasLinkOnceDirective = true;
|
2012-05-11 03:41:30 +02:00
|
|
|
|
2010-01-23 07:53:23 +01:00
|
|
|
// Doesn't support visibility:
|
2011-09-23 02:13:02 +02:00
|
|
|
HiddenVisibilityAttr = HiddenDeclarationVisibilityAttr = MCSA_Invalid;
|
|
|
|
ProtectedVisibilityAttr = MCSA_Invalid;
|
2009-07-27 18:45:59 +02:00
|
|
|
|
|
|
|
// Set up DWARF directives
|
|
|
|
SupportsDebugInformation = true;
|
2013-04-23 00:49:11 +02:00
|
|
|
NeedsDwarfSectionOffsetDirective = true;
|
2014-02-13 15:44:26 +01:00
|
|
|
|
|
|
|
UseIntegratedAssembler = true;
|
2015-04-28 03:37:11 +02:00
|
|
|
|
2015-11-11 01:51:36 +01:00
|
|
|
// At least MSVC inline-asm does AShr.
|
2015-04-28 03:37:11 +02:00
|
|
|
UseLogicalShr = false;
|
2009-07-27 18:45:59 +02:00
|
|
|
}
|
2011-11-29 19:00:06 +01:00
|
|
|
|
2011-12-20 03:50:00 +01:00
|
|
|
void MCAsmInfoMicrosoft::anchor() { }
|
|
|
|
|
2011-11-29 19:00:06 +01:00
|
|
|
MCAsmInfoMicrosoft::MCAsmInfoMicrosoft() {
|
|
|
|
}
|
|
|
|
|
2011-12-20 03:50:00 +01:00
|
|
|
void MCAsmInfoGNUCOFF::anchor() { }
|
|
|
|
|
2011-11-29 19:00:06 +01:00
|
|
|
MCAsmInfoGNUCOFF::MCAsmInfoGNUCOFF() {
|
|
|
|
|
|
|
|
}
|