]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
MFC 254790 (by emaste):
[FreeBSD/stable/9.git] / contrib / llvm / lib / Target / Sparc / MCTargetDesc / SparcMCAsmInfo.cpp
1 //===-- SparcMCAsmInfo.cpp - Sparc asm properties -------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the declarations of the SparcMCAsmInfo properties.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "SparcMCAsmInfo.h"
15 #include "llvm/ADT/Triple.h"
16
17 using namespace llvm;
18
19 void SparcELFMCAsmInfo::anchor() { }
20
21 SparcELFMCAsmInfo::SparcELFMCAsmInfo(StringRef TT) {
22   IsLittleEndian = false;
23   Triple TheTriple(TT);
24   bool isV9 = (TheTriple.getArch() == Triple::sparcv9);
25
26   if (isV9) {
27     PointerSize = CalleeSaveStackSlotSize = 8;
28   }
29
30   Data16bitsDirective = "\t.half\t";
31   Data32bitsDirective = "\t.word\t";
32   // .xword is only supported by V9.
33   Data64bitsDirective = (isV9) ? "\t.xword\t" : 0;
34   ZeroDirective = "\t.skip\t";
35   CommentString = "!";
36   HasLEB128 = true;
37   SupportsDebugInformation = true;
38
39   ExceptionsType = ExceptionHandling::DwarfCFI;
40
41   SunStyleELFSectionSwitchSyntax = true;
42   UsesELFSectionDirectiveForBSS = true;
43
44   PrivateGlobalPrefix = ".L";
45 }
46
47