MCAsmInfo.cpp revision 152a29bfa6fa505182658d046bc75626e10d67c3
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/System/DataTypes.h"
17#include <cctype>
18#include <cstring>
19using namespace llvm;
20
21MCAsmInfo::MCAsmInfo() {
22  HasMachoZeroFillDirective = false;
23  HasStaticCtorDtorReferenceInStaticMode = false;
24  NonexecutableStackDirective = 0;
25  NeedsSet = false;
26  MaxInstLength = 4;
27  PCSymbol = "$";
28  SeparatorChar = ';';
29  CommentColumn = 60;
30  CommentString = "#";
31  GlobalPrefix = "";
32  PrivateGlobalPrefix = ".";
33  LinkerPrivateGlobalPrefix = "";
34  InlineAsmStart = "APP";
35  InlineAsmEnd = "NO_APP";
36  AssemblerDialect = 0;
37  AllowQuotesInName = false;
38  AllowNameToStartWithDigit = false;
39  ZeroDirective = "\t.zero\t";
40  AsciiDirective = "\t.ascii\t";
41  AscizDirective = "\t.asciz\t";
42  Data8bitsDirective = "\t.byte\t";
43  Data16bitsDirective = "\t.short\t";
44  Data32bitsDirective = "\t.long\t";
45  Data64bitsDirective = "\t.quad\t";
46  SunStyleELFSectionSwitchSyntax = false;
47  UsesELFSectionDirectiveForBSS = false;
48  AlignDirective = "\t.align\t";
49  AlignmentIsInBytes = true;
50  TextAlignFillValue = 0;
51  JumpTableDirective = 0;
52  PICJumpTableDirective = 0;
53  GlobalDirective = "\t.globl\t";
54  SetDirective = 0;
55  LCOMMDirective = 0;
56  COMMDirective = "\t.comm\t";
57  COMMDirectiveTakesAlignment = true;
58  HasDotTypeDotSizeDirective = true;
59  HasSingleParameterDotFile = true;
60  HasNoDeadStrip = false;
61  WeakRefDirective = 0;
62  WeakDefDirective = 0;
63  LinkOnceDirective = 0;
64  HiddenVisibilityAttr = MCSA_Hidden;
65  ProtectedVisibilityAttr = MCSA_Protected;
66  AbsoluteDebugSectionOffsets = false;
67  AbsoluteEHSectionOffsets = false;
68  HasLEB128 = false;
69  HasDotLocAndDotFile = false;
70  SupportsDebugInformation = false;
71  ExceptionsType = ExceptionHandling::None;
72  DwarfRequiresFrameSection = true;
73  DwarfUsesInlineInfoSection = false;
74  Is_EHSymbolPrivate = true;
75  GlobalEHDirective = 0;
76  SupportsWeakOmittedEHFrame = true;
77  DwarfSectionOffsetDirective = 0;
78
79  AsmTransCBE = 0;
80}
81
82MCAsmInfo::~MCAsmInfo() {
83}
84
85
86unsigned MCAsmInfo::getULEB128Size(unsigned Value) {
87  unsigned Size = 0;
88  do {
89    Value >>= 7;
90    Size += sizeof(int8_t);
91  } while (Value);
92  return Size;
93}
94
95unsigned MCAsmInfo::getSLEB128Size(int Value) {
96  unsigned Size = 0;
97  int Sign = Value >> (8 * sizeof(Value) - 1);
98  bool IsMore;
99
100  do {
101    unsigned Byte = Value & 0x7f;
102    Value >>= 7;
103    IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
104    Size += sizeof(int8_t);
105  } while (IsMore);
106  return Size;
107}
108