[MC] Use LShr for constant evaluation of ">>" on ELF/arm64--darwin.
[oota-llvm.git] / lib / MC / MCAsmInfo.cpp
1 //===-- MCAsmInfo.cpp - Asm Info -------------------------------------------==//
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.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/MC/MCAsmInfo.h"
16 #include "llvm/MC/MCContext.h"
17 #include "llvm/MC/MCExpr.h"
18 #include "llvm/MC/MCStreamer.h"
19 #include "llvm/Support/DataTypes.h"
20 #include "llvm/Support/Dwarf.h"
21 #include <cctype>
22 #include <cstring>
23 using namespace llvm;
24
25 MCAsmInfo::MCAsmInfo() {
26   PointerSize = 4;
27   CalleeSaveStackSlotSize = 4;
28
29   IsLittleEndian = true;
30   StackGrowsUp = false;
31   HasSubsectionsViaSymbols = false;
32   HasMachoZeroFillDirective = false;
33   HasMachoTBSSDirective = false;
34   HasStaticCtorDtorReferenceInStaticMode = false;
35   MaxInstLength = 4;
36   MinInstAlignment = 1;
37   DollarIsPC = false;
38   SeparatorString = ";";
39   CommentString = "#";
40   LabelSuffix = ":";
41   UseAssignmentForEHBegin = false;
42   NeedsLocalForSize = false;
43   PrivateGlobalPrefix = "L";
44   PrivateLabelPrefix = PrivateGlobalPrefix;
45   LinkerPrivateGlobalPrefix = "";
46   InlineAsmStart = "APP";
47   InlineAsmEnd = "NO_APP";
48   Code16Directive = ".code16";
49   Code32Directive = ".code32";
50   Code64Directive = ".code64";
51   AssemblerDialect = 0;
52   AllowAtInName = false;
53   UseDataRegionDirectives = false;
54   ZeroDirective = "\t.zero\t";
55   AsciiDirective = "\t.ascii\t";
56   AscizDirective = "\t.asciz\t";
57   Data8bitsDirective = "\t.byte\t";
58   Data16bitsDirective = "\t.short\t";
59   Data32bitsDirective = "\t.long\t";
60   Data64bitsDirective = "\t.quad\t";
61   SunStyleELFSectionSwitchSyntax = false;
62   UsesELFSectionDirectiveForBSS = false;
63   AlignmentIsInBytes = true;
64   TextAlignFillValue = 0;
65   GPRel64Directive = nullptr;
66   GPRel32Directive = nullptr;
67   GlobalDirective = "\t.globl\t";
68   SetDirectiveSuppressesReloc = false;
69   HasAggressiveSymbolFolding = true;
70   COMMDirectiveAlignmentIsInBytes = true;
71   LCOMMDirectiveAlignmentType = LCOMM::NoAlignment;
72   HasFunctionAlignment = true;
73   HasDotTypeDotSizeDirective = true;
74   HasSingleParameterDotFile = true;
75   HasIdentDirective = false;
76   HasNoDeadStrip = false;
77   WeakDirective = "\t.weak\t";
78   WeakRefDirective = nullptr;
79   HasWeakDefDirective = false;
80   HasWeakDefCanBeHiddenDirective = false;
81   HasLinkOnceDirective = false;
82   HiddenVisibilityAttr = MCSA_Hidden;
83   HiddenDeclarationVisibilityAttr = MCSA_Hidden;
84   ProtectedVisibilityAttr = MCSA_Protected;
85   SupportsDebugInformation = false;
86   ExceptionsType = ExceptionHandling::None;
87   WinEHEncodingType = WinEH::EncodingType::Invalid;
88   DwarfUsesRelocationsAcrossSections = true;
89   DwarfFDESymbolsUseAbsDiff = false;
90   DwarfRegNumForCFI = false;
91   NeedsDwarfSectionOffsetDirective = false;
92   UseParensForSymbolVariant = false;
93   UseLogicalShr = true;
94
95   // FIXME: Clang's logic should be synced with the logic used to initialize
96   //        this member and the two implementations should be merged.
97   // For reference:
98   // - Solaris always enables the integrated assembler by default
99   //   - SparcELFMCAsmInfo and X86ELFMCAsmInfo are handling this case
100   // - Windows always enables the integrated assembler by default
101   //   - MCAsmInfoCOFF is handling this case, should it be MCAsmInfoMicrosoft?
102   // - MachO targets always enables the integrated assembler by default
103   //   - MCAsmInfoDarwin is handling this case
104   // - Generic_GCC toolchains enable the integrated assembler on a per
105   //   architecture basis.
106   //   - The target subclasses for AArch64, ARM, and X86 handle these cases
107   UseIntegratedAssembler = false;
108
109   CompressDebugSections = false;
110 }
111
112 MCAsmInfo::~MCAsmInfo() {
113 }
114
115 bool MCAsmInfo::isSectionAtomizableBySymbols(const MCSection &Section) const {
116   return false;
117 }
118
119 const MCExpr *
120 MCAsmInfo::getExprForPersonalitySymbol(const MCSymbol *Sym,
121                                        unsigned Encoding,
122                                        MCStreamer &Streamer) const {
123   return getExprForFDESymbol(Sym, Encoding, Streamer);
124 }
125
126 const MCExpr *
127 MCAsmInfo::getExprForFDESymbol(const MCSymbol *Sym,
128                                unsigned Encoding,
129                                MCStreamer &Streamer) const {
130   if (!(Encoding & dwarf::DW_EH_PE_pcrel))
131     return MCSymbolRefExpr::Create(Sym, Streamer.getContext());
132
133   MCContext &Context = Streamer.getContext();
134   const MCExpr *Res = MCSymbolRefExpr::Create(Sym, Context);
135   MCSymbol *PCSym = Context.CreateTempSymbol();
136   Streamer.EmitLabel(PCSym);
137   const MCExpr *PC = MCSymbolRefExpr::Create(PCSym, Context);
138   return MCBinaryExpr::CreateSub(Res, PC, Context);
139 }