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