]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp
Merge compiler-rt trunk r321017 to contrib/compiler-rt.
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / MC / MCAsmInfoCOFF.cpp
1 //===- MCAsmInfoCOFF.cpp - COFF asm properties ----------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines target asm properties related what form asm statements
11 // should take in general on COFF-based targets
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/MC/MCAsmInfoCOFF.h"
16 #include "llvm/MC/MCDirectives.h"
17
18 using namespace llvm;
19
20 void MCAsmInfoCOFF::anchor() {}
21
22 MCAsmInfoCOFF::MCAsmInfoCOFF() {
23   // MingW 4.5 and later support .comm with log2 alignment, but .lcomm uses byte
24   // alignment.
25   COMMDirectiveAlignmentIsInBytes = false;
26   LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
27   HasDotTypeDotSizeDirective = false;
28   HasSingleParameterDotFile = false;
29   WeakRefDirective = "\t.weak\t";
30   HasLinkOnceDirective = true;
31
32   // Doesn't support visibility:
33   HiddenVisibilityAttr = HiddenDeclarationVisibilityAttr = MCSA_Invalid;
34   ProtectedVisibilityAttr = MCSA_Invalid;
35
36   // Set up DWARF directives
37   SupportsDebugInformation = true;
38   NeedsDwarfSectionOffsetDirective = true;
39
40   UseIntegratedAssembler = true;
41
42   // At least MSVC inline-asm does AShr.
43   UseLogicalShr = false;
44 }
45
46 void MCAsmInfoMicrosoft::anchor() {}
47
48 MCAsmInfoMicrosoft::MCAsmInfoMicrosoft() = default;
49
50 void MCAsmInfoGNUCOFF::anchor() {}
51
52 MCAsmInfoGNUCOFF::MCAsmInfoGNUCOFF() = default;