2009-08-23 04:48:53 +08:00
|
|
|
//===-- MCAsmInfo.cpp - Asm Info -------------------------------------------==//
|
2006-09-07 02:35:33 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-07 02:35:33 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines target asm properties related what form asm statements
|
|
|
|
// should take.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-23 04:48:53 +08:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2009-08-26 05:09:50 +08:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
2007-04-24 04:00:17 +08:00
|
|
|
#include <cctype>
|
|
|
|
#include <cstring>
|
2006-09-07 02:35:33 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-08-23 04:48:53 +08:00
|
|
|
MCAsmInfo::MCAsmInfo() {
|
2008-09-26 05:00:33 +08:00
|
|
|
ZeroFillDirective = 0;
|
|
|
|
NonexecutableStackDirective = 0;
|
|
|
|
NeedsSet = false;
|
|
|
|
MaxInstLength = 4;
|
|
|
|
PCSymbol = "$";
|
|
|
|
SeparatorChar = ';';
|
2009-07-14 04:25:48 +08:00
|
|
|
CommentColumn = 60;
|
2008-09-26 05:00:33 +08:00
|
|
|
CommentString = "#";
|
|
|
|
GlobalPrefix = "";
|
|
|
|
PrivateGlobalPrefix = ".";
|
2009-07-22 01:30:51 +08:00
|
|
|
LinkerPrivateGlobalPrefix = "";
|
2009-08-12 06:39:40 +08:00
|
|
|
InlineAsmStart = "APP";
|
|
|
|
InlineAsmEnd = "NO_APP";
|
2008-09-26 05:00:33 +08:00
|
|
|
AssemblerDialect = 0;
|
2009-06-19 07:41:35 +08:00
|
|
|
AllowQuotesInName = false;
|
2008-09-26 05:00:33 +08:00
|
|
|
ZeroDirective = "\t.zero\t";
|
|
|
|
ZeroDirectiveSuffix = 0;
|
|
|
|
AsciiDirective = "\t.ascii\t";
|
|
|
|
AscizDirective = "\t.asciz\t";
|
|
|
|
Data8bitsDirective = "\t.byte\t";
|
|
|
|
Data16bitsDirective = "\t.short\t";
|
|
|
|
Data32bitsDirective = "\t.long\t";
|
|
|
|
Data64bitsDirective = "\t.quad\t";
|
2009-08-09 04:43:12 +08:00
|
|
|
SunStyleELFSectionSwitchSyntax = false;
|
2009-08-14 07:30:21 +08:00
|
|
|
UsesELFSectionDirectiveForBSS = false;
|
2008-09-26 05:00:33 +08:00
|
|
|
AlignDirective = "\t.align\t";
|
|
|
|
AlignmentIsInBytes = true;
|
|
|
|
TextAlignFillValue = 0;
|
|
|
|
JumpTableDirective = 0;
|
2009-08-12 04:30:58 +08:00
|
|
|
PICJumpTableDirective = 0;
|
2008-09-26 05:00:33 +08:00
|
|
|
GlobalDirective = "\t.globl\t";
|
|
|
|
SetDirective = 0;
|
|
|
|
LCOMMDirective = 0;
|
|
|
|
COMMDirective = "\t.comm\t";
|
|
|
|
COMMDirectiveTakesAlignment = true;
|
|
|
|
HasDotTypeDotSizeDirective = true;
|
2008-12-03 19:01:37 +08:00
|
|
|
HasSingleParameterDotFile = true;
|
2008-09-26 05:00:33 +08:00
|
|
|
UsedDirective = 0;
|
|
|
|
WeakRefDirective = 0;
|
|
|
|
WeakDefDirective = 0;
|
2009-08-23 05:43:10 +08:00
|
|
|
// FIXME: These are ELFish - move to ELFMAI.
|
2008-09-26 05:00:33 +08:00
|
|
|
HiddenDirective = "\t.hidden\t";
|
|
|
|
ProtectedDirective = "\t.protected\t";
|
|
|
|
AbsoluteDebugSectionOffsets = false;
|
|
|
|
AbsoluteEHSectionOffsets = false;
|
|
|
|
HasLEB128 = false;
|
|
|
|
HasDotLocAndDotFile = false;
|
|
|
|
SupportsDebugInformation = false;
|
2009-08-11 08:09:57 +08:00
|
|
|
ExceptionsType = ExceptionHandling::None;
|
2008-09-26 05:00:33 +08:00
|
|
|
DwarfRequiresFrameSection = true;
|
2009-04-14 01:02:03 +08:00
|
|
|
DwarfUsesInlineInfoSection = false;
|
2009-07-18 04:46:40 +08:00
|
|
|
Is_EHSymbolPrivate = true;
|
2008-09-26 05:00:33 +08:00
|
|
|
GlobalEHDirective = 0;
|
|
|
|
SupportsWeakOmittedEHFrame = true;
|
|
|
|
DwarfSectionOffsetDirective = 0;
|
2009-08-02 15:24:22 +08:00
|
|
|
|
2008-09-26 05:00:33 +08:00
|
|
|
AsmTransCBE = 0;
|
2006-10-14 01:50:07 +08:00
|
|
|
}
|
2006-10-05 08:35:16 +08:00
|
|
|
|
2009-08-23 04:48:53 +08:00
|
|
|
MCAsmInfo::~MCAsmInfo() {
|
2006-10-05 08:35:16 +08:00
|
|
|
}
|
2006-10-14 01:50:07 +08:00
|
|
|
|
2007-03-07 10:47:57 +08:00
|
|
|
|
2009-08-23 04:48:53 +08:00
|
|
|
unsigned MCAsmInfo::getULEB128Size(unsigned Value) {
|
2008-08-16 20:57:46 +08:00
|
|
|
unsigned Size = 0;
|
|
|
|
do {
|
|
|
|
Value >>= 7;
|
|
|
|
Size += sizeof(int8_t);
|
|
|
|
} while (Value);
|
|
|
|
return Size;
|
|
|
|
}
|
|
|
|
|
2009-08-23 04:48:53 +08:00
|
|
|
unsigned MCAsmInfo::getSLEB128Size(int Value) {
|
2008-08-16 20:57:46 +08:00
|
|
|
unsigned Size = 0;
|
|
|
|
int Sign = Value >> (8 * sizeof(Value) - 1);
|
|
|
|
bool IsMore;
|
|
|
|
|
|
|
|
do {
|
|
|
|
unsigned Byte = Value & 0x7f;
|
|
|
|
Value >>= 7;
|
|
|
|
IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
|
|
|
|
Size += sizeof(int8_t);
|
|
|
|
} while (IsMore);
|
|
|
|
return Size;
|
|
|
|
}
|