Canonicalize header guards into a common format.
[oota-llvm.git] / 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 "SparcMCExpr.h"
16 #include "llvm/ADT/Triple.h"
17 #include "llvm/MC/MCStreamer.h"
18
19 using namespace llvm;
20
21 void SparcELFMCAsmInfo::anchor() { }
22
23 SparcELFMCAsmInfo::SparcELFMCAsmInfo(StringRef TT) {
24   IsLittleEndian = false;
25   Triple TheTriple(TT);
26   bool isV9 = (TheTriple.getArch() == Triple::sparcv9);
27
28   if (isV9) {
29     PointerSize = CalleeSaveStackSlotSize = 8;
30   }
31
32   Data16bitsDirective = "\t.half\t";
33   Data32bitsDirective = "\t.word\t";
34   // .xword is only supported by V9.
35   Data64bitsDirective = (isV9) ? "\t.xword\t" : nullptr;
36   ZeroDirective = "\t.skip\t";
37   CommentString = "!";
38   HasLEB128 = true;
39   SupportsDebugInformation = true;
40
41   ExceptionsType = ExceptionHandling::DwarfCFI;
42
43   SunStyleELFSectionSwitchSyntax = true;
44   UsesELFSectionDirectiveForBSS = true;
45
46   if (TheTriple.getOS() == llvm::Triple::Solaris ||
47       TheTriple.getOS() == llvm::Triple::OpenBSD)
48     UseIntegratedAssembler = true;
49 }
50
51 const MCExpr*
52 SparcELFMCAsmInfo::getExprForPersonalitySymbol(const MCSymbol *Sym,
53                                                unsigned Encoding,
54                                                MCStreamer &Streamer) const {
55   if (Encoding & dwarf::DW_EH_PE_pcrel) {
56     MCContext &Ctx = Streamer.getContext();
57     return SparcMCExpr::Create(SparcMCExpr::VK_Sparc_R_DISP32,
58                                MCSymbolRefExpr::Create(Sym, Ctx), Ctx);
59   }
60
61   return MCAsmInfo::getExprForPersonalitySymbol(Sym, Encoding, Streamer);
62 }
63
64 const MCExpr*
65 SparcELFMCAsmInfo::getExprForFDESymbol(const MCSymbol *Sym,
66                                        unsigned Encoding,
67                                        MCStreamer &Streamer) const {
68   if (Encoding & dwarf::DW_EH_PE_pcrel) {
69     MCContext &Ctx = Streamer.getContext();
70     return SparcMCExpr::Create(SparcMCExpr::VK_Sparc_R_DISP32,
71                                MCSymbolRefExpr::Create(Sym, Ctx), Ctx);
72   }
73   return MCAsmInfo::getExprForFDESymbol(Sym, Encoding, Streamer);
74 }