Recommit r310809 with a fix for the spill problem
[llvm-core.git] / lib / MC / MCAsmInfoCOFF.cpp
blob85104484fd40186e7f293fe3ae995d84ade45654
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
13 //===----------------------------------------------------------------------===//
15 #include "llvm/MC/MCAsmInfoCOFF.h"
16 #include "llvm/MC/MCDirectives.h"
18 using namespace llvm;
20 void MCAsmInfoCOFF::anchor() {}
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;
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;