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"
|
2011-05-01 11:50:49 +08:00
|
|
|
#include "llvm/MC/MCContext.h"
|
2011-04-29 00:09:09 +08:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2010-11-30 02:16:10 +08:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
2011-05-01 11:50:49 +08:00
|
|
|
#include "llvm/Support/Dwarf.h"
|
2007-04-24 04:00:17 +08:00
|
|
|
#include <cctype>
|
|
|
|
#include <cstring>
|
2006-09-07 02:35:33 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-01-20 14:34:14 +08:00
|
|
|
MCAsmInfo::MCAsmInfo() {
|
2011-07-15 10:09:41 +08:00
|
|
|
PointerSize = 4;
|
|
|
|
IsLittleEndian = true;
|
|
|
|
StackGrowsUp = false;
|
2010-01-23 15:21:06 +08:00
|
|
|
HasSubsectionsViaSymbols = false;
|
2010-01-19 10:09:44 +08:00
|
|
|
HasMachoZeroFillDirective = false;
|
2010-05-20 08:49:07 +08:00
|
|
|
HasMachoTBSSDirective = false;
|
2011-09-03 02:07:19 +08:00
|
|
|
StructorOutputOrder = Structors::ReversePriorityOrder;
|
2010-01-19 12:34:02 +08:00
|
|
|
HasStaticCtorDtorReferenceInStaticMode = false;
|
2010-12-04 08:31:13 +08:00
|
|
|
LinkerRequiresNonEmptyDwarfLines = false;
|
2008-09-26 05:00:33 +08:00
|
|
|
MaxInstLength = 4;
|
|
|
|
PCSymbol = "$";
|
2011-03-25 02:46:34 +08:00
|
|
|
SeparatorString = ";";
|
2010-02-05 15:32:18 +08:00
|
|
|
CommentColumn = 40;
|
2008-09-26 05:00:33 +08:00
|
|
|
CommentString = "#";
|
2010-09-23 06:19:53 +08:00
|
|
|
LabelSuffix = ":";
|
2008-09-26 05:00:33 +08:00
|
|
|
GlobalPrefix = "";
|
|
|
|
PrivateGlobalPrefix = ".";
|
2009-07-22 01:30:51 +08:00
|
|
|
LinkerPrivateGlobalPrefix = "";
|
2009-08-12 06:39:40 +08:00
|
|
|
InlineAsmStart = "APP";
|
|
|
|
InlineAsmEnd = "NO_APP";
|
2011-07-27 08:38:12 +08:00
|
|
|
Code16Directive = ".code16";
|
|
|
|
Code32Directive = ".code32";
|
|
|
|
Code64Directive = ".code64";
|
2008-09-26 05:00:33 +08:00
|
|
|
AssemblerDialect = 0;
|
2009-06-19 07:41:35 +08:00
|
|
|
AllowQuotesInName = false;
|
2009-09-19 00:57:42 +08:00
|
|
|
AllowNameToStartWithDigit = false;
|
2010-04-29 12:00:56 +08:00
|
|
|
AllowPeriodsInName = true;
|
2008-09-26 05:00:33 +08: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-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;
|
2010-01-26 05:10:10 +08:00
|
|
|
GPRel32Directive = 0;
|
2008-09-26 05:00:33 +08:00
|
|
|
GlobalDirective = "\t.globl\t";
|
2010-01-27 04:40:54 +08:00
|
|
|
HasSetDirective = true;
|
2010-12-23 05:51:29 +08:00
|
|
|
HasAggressiveSymbolFolding = true;
|
2011-09-02 07:04:27 +08:00
|
|
|
LCOMMDirectiveType = LCOMM::None;
|
2010-01-27 04:21:43 +08:00
|
|
|
COMMDirectiveAlignmentIsInBytes = true;
|
2008-09-26 05:00:33 +08:00
|
|
|
HasDotTypeDotSizeDirective = true;
|
2008-12-03 19:01:37 +08:00
|
|
|
HasSingleParameterDotFile = true;
|
2010-01-23 13:51:36 +08:00
|
|
|
HasNoDeadStrip = false;
|
2010-11-20 02:39:33 +08:00
|
|
|
HasSymbolResolver = false;
|
2008-09-26 05:00:33 +08:00
|
|
|
WeakRefDirective = 0;
|
|
|
|
WeakDefDirective = 0;
|
2010-01-19 13:08:13 +08:00
|
|
|
LinkOnceDirective = 0;
|
2010-01-23 14:53:23 +08:00
|
|
|
HiddenVisibilityAttr = MCSA_Hidden;
|
2011-02-23 10:27:05 +08:00
|
|
|
HiddenDeclarationVisibilityAttr = MCSA_Hidden;
|
2010-01-23 14:53:23 +08:00
|
|
|
ProtectedVisibilityAttr = MCSA_Protected;
|
2008-09-26 05:00:33 +08:00
|
|
|
HasLEB128 = false;
|
|
|
|
SupportsDebugInformation = false;
|
2009-08-11 08:09:57 +08:00
|
|
|
ExceptionsType = ExceptionHandling::None;
|
2009-04-14 01:02:03 +08:00
|
|
|
DwarfUsesInlineInfoSection = false;
|
2011-05-11 04:35:05 +08:00
|
|
|
DwarfRequiresRelocationForSectionOffset = true;
|
2008-09-26 05:00:33 +08:00
|
|
|
DwarfSectionOffsetDirective = 0;
|
2010-09-03 00:43:44 +08:00
|
|
|
DwarfUsesLabelOffsetForRanges = true;
|
2011-07-08 04:30:33 +08:00
|
|
|
DwarfRegNumForCFI = false;
|
2010-03-13 05:03:47 +08:00
|
|
|
HasMicrosoftFastStdCallMangling = false;
|
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;
|
|
|
|
}
|
2011-04-29 00:09:09 +08:00
|
|
|
|
|
|
|
const MCExpr *
|
|
|
|
MCAsmInfo::getExprForPersonalitySymbol(const MCSymbol *Sym,
|
2011-05-01 11:50:49 +08:00
|
|
|
unsigned Encoding,
|
2011-04-29 00:09:09 +08:00
|
|
|
MCStreamer &Streamer) const {
|
2011-05-01 11:50:49 +08:00
|
|
|
return getExprForFDESymbol(Sym, Encoding, Streamer);
|
2011-04-29 05:04:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const MCExpr *
|
|
|
|
MCAsmInfo::getExprForFDESymbol(const MCSymbol *Sym,
|
2011-05-01 11:50:49 +08:00
|
|
|
unsigned Encoding,
|
2011-04-29 05:04:39 +08:00
|
|
|
MCStreamer &Streamer) const {
|
2011-05-01 11:50:49 +08:00
|
|
|
if (!(Encoding & dwarf::DW_EH_PE_pcrel))
|
|
|
|
return MCSymbolRefExpr::Create(Sym, Streamer.getContext());
|
|
|
|
|
|
|
|
MCContext &Context = Streamer.getContext();
|
|
|
|
const MCExpr *Res = MCSymbolRefExpr::Create(Sym, Context);
|
|
|
|
MCSymbol *PCSym = Context.CreateTempSymbol();
|
|
|
|
Streamer.EmitLabel(PCSym);
|
|
|
|
const MCExpr *PC = MCSymbolRefExpr::Create(PCSym, Context);
|
|
|
|
return MCBinaryExpr::CreateSub(Res, PC, Context);
|
2011-04-29 00:09:09 +08:00
|
|
|
}
|