]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / llvm / lib / Target / NVPTX / MCTargetDesc / NVPTXMCAsmInfo.cpp
1 //===-- NVPTXMCAsmInfo.cpp - NVPTX 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 NVPTXMCAsmInfo properties.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "NVPTXMCAsmInfo.h"
15 #include "llvm/ADT/Triple.h"
16 #include "llvm/Support/CommandLine.h"
17
18 using namespace llvm;
19
20 bool CompileForDebugging;
21
22 // -debug-compile - Command line option to inform opt and llc passes to
23 // compile for debugging
24 static cl::opt<bool, true>
25 Debug("debug-compile", cl::desc("Compile for debugging"), cl::Hidden,
26       cl::location(CompileForDebugging), cl::init(false));
27
28 void NVPTXMCAsmInfo::anchor() {}
29
30 NVPTXMCAsmInfo::NVPTXMCAsmInfo(const Target &T, const StringRef &TT) {
31   Triple TheTriple(TT);
32   if (TheTriple.getArch() == Triple::nvptx64) {
33     PointerSize = CalleeSaveStackSlotSize = 8;
34   }
35
36   CommentString = "//";
37
38   PrivateGlobalPrefix = "$L__";
39
40   AllowPeriodsInName = false;
41
42   HasSetDirective = false;
43
44   HasSingleParameterDotFile = false;
45
46   InlineAsmStart = " inline asm";
47   InlineAsmEnd = " inline asm";
48
49   SupportsDebugInformation = CompileForDebugging;
50   HasDotTypeDotSizeDirective = false;
51
52   Data8bitsDirective = " .b8 ";
53   Data16bitsDirective = " .b16 ";
54   Data32bitsDirective = " .b32 ";
55   Data64bitsDirective = " .b64 ";
56   PrivateGlobalPrefix = "";
57   ZeroDirective = " .b8";
58   AsciiDirective = " .b8";
59   AscizDirective = " .b8";
60
61   // @TODO: Can we just disable this?
62   GlobalDirective = "\t// .globl\t";
63 }