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