mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 18:31:04 +00:00
d8de58e24c
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188141 91177308-0d34-0410-b5e6-96231b3b80d8
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
//===-- SparcMCAsmInfo.cpp - Sparc asm properties -------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file contains the declarations of the SparcMCAsmInfo properties.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "SparcMCAsmInfo.h"
|
|
#include "llvm/ADT/Triple.h"
|
|
|
|
using namespace llvm;
|
|
|
|
void SparcELFMCAsmInfo::anchor() { }
|
|
|
|
SparcELFMCAsmInfo::SparcELFMCAsmInfo(StringRef TT) {
|
|
IsLittleEndian = false;
|
|
Triple TheTriple(TT);
|
|
bool isV9 = (TheTriple.getArch() == Triple::sparcv9);
|
|
|
|
if (isV9) {
|
|
PointerSize = CalleeSaveStackSlotSize = 8;
|
|
}
|
|
|
|
Data16bitsDirective = "\t.half\t";
|
|
Data32bitsDirective = "\t.word\t";
|
|
// .xword is only supported by V9.
|
|
Data64bitsDirective = (isV9) ? "\t.xword\t" : 0;
|
|
ZeroDirective = "\t.skip\t";
|
|
CommentString = "!";
|
|
HasLEB128 = true;
|
|
SupportsDebugInformation = true;
|
|
|
|
SunStyleELFSectionSwitchSyntax = true;
|
|
UsesELFSectionDirectiveForBSS = true;
|
|
|
|
WeakRefDirective = "\t.weak\t";
|
|
|
|
PrivateGlobalPrefix = ".L";
|
|
}
|
|
|
|
|