MC: Remove vestigial PCSymbol field from AsmInfo
[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   LinkerRequiresNonEmptyDwarfLines = false;
36   MaxInstLength = 4;
37   MinInstAlignment = 1;
38   SeparatorString = ";";
39   CommentColumn = 40;
40   CommentString = "#";
41   LabelSuffix = ":";
42   DebugLabelSuffix = ":";
43   GlobalPrefix = "";
44   PrivateGlobalPrefix = ".";
45   LinkerPrivateGlobalPrefix = "";
46   InlineAsmStart = "APP";
47   InlineAsmEnd = "NO_APP";
48   Code16Directive = ".code16";
49   Code32Directive = ".code32";
50   Code64Directive = ".code64";
51   AssemblerDialect = 0;
52   AllowQuotesInName = false;
53   AllowNameToStartWithDigit = false;
54   AllowPeriodsInName = true;
55   AllowUTF8 = true;
56   UseDataRegionDirectives = false;
57   ZeroDirective = "\t.zero\t";
58   AsciiDirective = "\t.ascii\t";
59   AscizDirective = "\t.asciz\t";
60   Data8bitsDirective = "\t.byte\t";
61   Data16bitsDirective = "\t.short\t";
62   Data32bitsDirective = "\t.long\t";
63   Data64bitsDirective = "\t.quad\t";
64   SunStyleELFSectionSwitchSyntax = false;
65   UsesELFSectionDirectiveForBSS = false;
66   AlignDirective = "\t.align\t";
67   AlignmentIsInBytes = true;
68   TextAlignFillValue = 0;
69   GPRel64Directive = 0;
70   GPRel32Directive = 0;
71   GlobalDirective = "\t.globl\t";
72   HasSetDirective = true;
73   HasAggressiveSymbolFolding = true;
74   COMMDirectiveAlignmentIsInBytes = true;
75   LCOMMDirectiveAlignmentType = LCOMM::NoAlignment;
76   HasDotTypeDotSizeDirective = true;
77   HasSingleParameterDotFile = true;
78   HasNoDeadStrip = false;
79   HasSymbolResolver = false;
80   WeakRefDirective = 0;
81   WeakDefDirective = 0;
82   LinkOnceDirective = 0;
83   HiddenVisibilityAttr = MCSA_Hidden;
84   HiddenDeclarationVisibilityAttr = MCSA_Hidden;
85   ProtectedVisibilityAttr = MCSA_Protected;
86   HasLEB128 = false;
87   SupportsDebugInformation = false;
88   ExceptionsType = ExceptionHandling::None;
89   DwarfUsesRelocationsAcrossSections = true;
90   DwarfRegNumForCFI = false;
91   HasMicrosoftFastStdCallMangling = false;
92   NeedsDwarfSectionOffsetDirective = false;
93 }
94
95 MCAsmInfo::~MCAsmInfo() {
96 }
97
98
99 unsigned MCAsmInfo::getULEB128Size(uint64_t Value) {
100   unsigned Size = 0;
101   do {
102     Value >>= 7;
103     Size += sizeof(int8_t);
104   } while (Value);
105   return Size;
106 }
107
108 unsigned MCAsmInfo::getSLEB128Size(int64_t Value) {
109   unsigned Size = 0;
110   int Sign = Value >> (8 * sizeof(Value) - 1);
111   bool IsMore;
112
113   do {
114     unsigned Byte = Value & 0x7f;
115     Value >>= 7;
116     IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
117     Size += sizeof(int8_t);
118   } while (IsMore);
119   return Size;
120 }
121
122 const MCExpr *
123 MCAsmInfo::getExprForPersonalitySymbol(const MCSymbol *Sym,
124                                        unsigned Encoding,
125                                        MCStreamer &Streamer) const {
126   return getExprForFDESymbol(Sym, Encoding, Streamer);
127 }
128
129 const MCExpr *
130 MCAsmInfo::getExprForFDESymbol(const MCSymbol *Sym,
131                                unsigned Encoding,
132                                MCStreamer &Streamer) const {
133   if (!(Encoding & dwarf::DW_EH_PE_pcrel))
134     return MCSymbolRefExpr::Create(Sym, Streamer.getContext());
135
136   MCContext &Context = Streamer.getContext();
137   const MCExpr *Res = MCSymbolRefExpr::Create(Sym, Context);
138   MCSymbol *PCSym = Context.CreateTempSymbol();
139   Streamer.EmitLabel(PCSym);
140   const MCExpr *PC = MCSymbolRefExpr::Create(PCSym, Context);
141   return MCBinaryExpr::CreateSub(Res, PC, Context);
142 }