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