Emit the ctors in the proper order on ARM/EABI.
[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   ZeroDirective = "\t.zero\t";
53   AsciiDirective = "\t.ascii\t";
54   AscizDirective = "\t.asciz\t";
55   Data8bitsDirective = "\t.byte\t";
56   Data16bitsDirective = "\t.short\t";
57   Data32bitsDirective = "\t.long\t";
58   Data64bitsDirective = "\t.quad\t";
59   DataBegin = "$d.";
60   CodeBegin = "$a.";
61   JT8Begin = "$d.";
62   JT16Begin = "$d.";
63   JT32Begin = "$d.";
64   SupportsDataRegions = false;
65   SunStyleELFSectionSwitchSyntax = false;
66   UsesELFSectionDirectiveForBSS = false;
67   AlignDirective = "\t.align\t";
68   AlignmentIsInBytes = true;
69   TextAlignFillValue = 0;
70   GPRel32Directive = 0;
71   GlobalDirective = "\t.globl\t";
72   HasSetDirective = true;
73   HasAggressiveSymbolFolding = true;
74   LCOMMDirectiveType = LCOMM::None;
75   COMMDirectiveAlignmentIsInBytes = true;
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   DwarfUsesInlineInfoSection = false;
90   DwarfRequiresRelocationForSectionOffset = true;
91   DwarfSectionOffsetDirective = 0;
92   DwarfUsesLabelOffsetForRanges = true;
93   DwarfUsesRelocationsForStringPool = true;
94   DwarfRegNumForCFI = false;
95   HasMicrosoftFastStdCallMangling = false;
96
97   AsmTransCBE = 0;
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 }