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