1 //===- MCAsmInfoCOFF.cpp - COFF asm properties ----------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines target asm properties related what form asm statements
11 // should take in general on COFF-based targets
13 //===----------------------------------------------------------------------===//
15 #include "llvm/MC/MCAsmInfoCOFF.h"
16 #include "llvm/MC/MCDirectives.h"
20 void MCAsmInfoCOFF::anchor() {}
22 MCAsmInfoCOFF::MCAsmInfoCOFF() {
23 // MingW 4.5 and later support .comm with log2 alignment, but .lcomm uses byte
25 COMMDirectiveAlignmentIsInBytes
= false;
26 LCOMMDirectiveAlignmentType
= LCOMM::ByteAlignment
;
27 HasDotTypeDotSizeDirective
= false;
28 HasSingleParameterDotFile
= false;
29 WeakRefDirective
= "\t.weak\t";
30 HasLinkOnceDirective
= true;
32 // Doesn't support visibility:
33 HiddenVisibilityAttr
= HiddenDeclarationVisibilityAttr
= MCSA_Invalid
;
34 ProtectedVisibilityAttr
= MCSA_Invalid
;
36 // Set up DWARF directives
37 SupportsDebugInformation
= true;
38 NeedsDwarfSectionOffsetDirective
= true;
40 UseIntegratedAssembler
= true;
42 // At least MSVC inline-asm does AShr.
43 UseLogicalShr
= false;
46 void MCAsmInfoMicrosoft::anchor() {}
48 MCAsmInfoMicrosoft::MCAsmInfoMicrosoft() = default;
50 void MCAsmInfoGNUCOFF::anchor() {}
52 MCAsmInfoGNUCOFF::MCAsmInfoGNUCOFF() = default;