OSDN Git Service

[llvm-mc] - Teach llvm-mc to generate zlib styled compression sections.
[android-x86/external-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   SupportsQuotedNames = true;
54   UseDataRegionDirectives = false;
55   ZeroDirective = "\t.zero\t";
56   AsciiDirective = "\t.ascii\t";
57   AscizDirective = "\t.asciz\t";
58   Data8bitsDirective = "\t.byte\t";
59   Data16bitsDirective = "\t.short\t";
60   Data32bitsDirective = "\t.long\t";
61   Data64bitsDirective = "\t.quad\t";
62   SunStyleELFSectionSwitchSyntax = false;
63   UsesELFSectionDirectiveForBSS = false;
64   AlignmentIsInBytes = true;
65   TextAlignFillValue = 0;
66   GPRel64Directive = nullptr;
67   GPRel32Directive = nullptr;
68   GlobalDirective = "\t.globl\t";
69   SetDirectiveSuppressesReloc = false;
70   HasAggressiveSymbolFolding = true;
71   COMMDirectiveAlignmentIsInBytes = true;
72   LCOMMDirectiveAlignmentType = LCOMM::NoAlignment;
73   HasFunctionAlignment = true;
74   HasDotTypeDotSizeDirective = true;
75   HasSingleParameterDotFile = true;
76   HasIdentDirective = false;
77   HasNoDeadStrip = false;
78   HasAltEntry = false;
79   WeakDirective = "\t.weak\t";
80   WeakRefDirective = nullptr;
81   HasWeakDefDirective = false;
82   HasWeakDefCanBeHiddenDirective = false;
83   HasLinkOnceDirective = false;
84   HiddenVisibilityAttr = MCSA_Hidden;
85   HiddenDeclarationVisibilityAttr = MCSA_Hidden;
86   ProtectedVisibilityAttr = MCSA_Protected;
87   SupportsDebugInformation = false;
88   ExceptionsType = ExceptionHandling::None;
89   WinEHEncodingType = WinEH::EncodingType::Invalid;
90   DwarfUsesRelocationsAcrossSections = true;
91   DwarfFDESymbolsUseAbsDiff = false;
92   DwarfRegNumForCFI = false;
93   NeedsDwarfSectionOffsetDirective = false;
94   UseParensForSymbolVariant = false;
95   UseLogicalShr = true;
96
97   // FIXME: Clang's logic should be synced with the logic used to initialize
98   //        this member and the two implementations should be merged.
99   // For reference:
100   // - Solaris always enables the integrated assembler by default
101   //   - SparcELFMCAsmInfo and X86ELFMCAsmInfo are handling this case
102   // - Windows always enables the integrated assembler by default
103   //   - MCAsmInfoCOFF is handling this case, should it be MCAsmInfoMicrosoft?
104   // - MachO targets always enables the integrated assembler by default
105   //   - MCAsmInfoDarwin is handling this case
106   // - Generic_GCC toolchains enable the integrated assembler on a per
107   //   architecture basis.
108   //   - The target subclasses for AArch64, ARM, and X86 handle these cases
109   UseIntegratedAssembler = false;
110
111   CompressDebugSections = DebugCompressionType::DCT_None;
112 }
113
114 MCAsmInfo::~MCAsmInfo() {
115 }
116
117 bool MCAsmInfo::isSectionAtomizableBySymbols(const MCSection &Section) const {
118   return false;
119 }
120
121 const MCExpr *
122 MCAsmInfo::getExprForPersonalitySymbol(const MCSymbol *Sym,
123                                        unsigned Encoding,
124                                        MCStreamer &Streamer) const {
125   return getExprForFDESymbol(Sym, Encoding, Streamer);
126 }
127
128 const MCExpr *
129 MCAsmInfo::getExprForFDESymbol(const MCSymbol *Sym,
130                                unsigned Encoding,
131                                MCStreamer &Streamer) const {
132   if (!(Encoding & dwarf::DW_EH_PE_pcrel))
133     return MCSymbolRefExpr::create(Sym, Streamer.getContext());
134
135   MCContext &Context = Streamer.getContext();
136   const MCExpr *Res = MCSymbolRefExpr::create(Sym, Context);
137   MCSymbol *PCSym = Context.createTempSymbol();
138   Streamer.EmitLabel(PCSym);
139   const MCExpr *PC = MCSymbolRefExpr::create(PCSym, Context);
140   return MCBinaryExpr::createSub(Res, PC, Context);
141 }
142
143 static bool isAcceptableChar(char C) {
144   return (C >= 'a' && C <= 'z') || (C >= 'A' && C <= 'Z') ||
145          (C >= '0' && C <= '9') || C == '_' || C == '$' || C == '.' || C == '@';
146 }
147
148 bool MCAsmInfo::isValidUnquotedName(StringRef Name) const {
149   if (Name.empty())
150     return false;
151
152   // If any of the characters in the string is an unacceptable character, force
153   // quotes.
154   for (char C : Name) {
155     if (!isAcceptableChar(C))
156       return false;
157   }
158
159   return true;
160 }
161
162 bool MCAsmInfo::shouldOmitSectionDirective(StringRef SectionName) const {
163   // FIXME: Does .section .bss/.data/.text work everywhere??
164   return SectionName == ".text" || SectionName == ".data" ||
165         (SectionName == ".bss" && !usesELFSectionDirectiveForBSS());
166 }