LLVM  8.0.1
MipsMCAsmInfo.cpp
Go to the documentation of this file.
1 //===-- MipsMCAsmInfo.cpp - Mips 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 MipsMCAsmInfo properties.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "MipsMCAsmInfo.h"
15 #include "llvm/ADT/Triple.h"
16 
17 using namespace llvm;
18 
19 void MipsMCAsmInfo::anchor() { }
20 
22  IsLittleEndian = TheTriple.isLittleEndian();
23 
24  if (TheTriple.isMIPS64() && TheTriple.getEnvironment() != Triple::GNUABIN32)
26 
27  // FIXME: This condition isn't quite right but it's the best we can do until
28  // this object can identify the ABI. It will misbehave when using O32
29  // on a mips64*-* triple.
30  if (TheTriple.isMIPS32()) {
31  PrivateGlobalPrefix = "$";
32  PrivateLabelPrefix = "$";
33  }
34 
35  AlignmentIsInBytes = false;
36  Data16bitsDirective = "\t.2byte\t";
37  Data32bitsDirective = "\t.4byte\t";
38  Data64bitsDirective = "\t.8byte\t";
39  CommentString = "#";
40  ZeroDirective = "\t.space\t";
41  GPRel32Directive = "\t.gpword\t";
42  GPRel64Directive = "\t.gpdword\t";
43  DTPRel32Directive = "\t.dtprelword\t";
44  DTPRel64Directive = "\t.dtpreldword\t";
45  TPRel32Directive = "\t.tprelword\t";
46  TPRel64Directive = "\t.tpreldword\t";
50  DwarfRegNumForCFI = true;
51  HasMipsExpressions = true;
53 }
bool isMIPS64() const
Tests whether the target is MIPS 64-bit (little and big endian).
Definition: Triple.h:685
bool UseIntegratedAssembler
Should we use the integrated assembler? The integrated assembler should be enabled by default (by the...
Definition: MCAsmInfo.h:371
StringRef PrivateLabelPrefix
This prefix is used for labels for basic blocks.
Definition: MCAsmInfo.h:132
bool DwarfRegNumForCFI
True if dwarf register numbers are printed instead of symbolic register names in .cfi_* directives.
Definition: MCAsmInfo.h:350
This class represents lattice values for constants.
Definition: AllocatorList.h:24
const char * Data64bitsDirective
Definition: MCAsmInfo.h:193
const char * ZeroDirective
This should be set to the directive used to get some number of zero bytes emitted to the current sect...
Definition: MCAsmInfo.h:174
bool IsLittleEndian
True if target is little endian. Default is true.
Definition: MCAsmInfo.h:70
unsigned CalleeSaveStackSlotSize
Size of the stack slot reserved for callee-saved registers, in bytes.
Definition: MCAsmInfo.h:67
bool AlignmentIsInBytes
If this is true (the default) then the asmprinter emits ".align N" directives, where N is the number ...
Definition: MCAsmInfo.h:231
StringRef CommentString
This indicates the comment character used by the assembler.
Definition: MCAsmInfo.h:114
bool HasMipsExpressions
Definition: MCAsmInfo.h:389
const char * GPRel64Directive
If non-null, a directive that is used to emit a word which should be relocated as a 64-bit GP-relativ...
Definition: MCAsmInfo.h:198
bool isLittleEndian() const
Tests whether the target triple is little endian.
Definition: Triple.cpp:1493
const char * TPRel32Directive
Definition: MCAsmInfo.h:210
bool SupportsDebugInformation
True if target supports emission of debugging information.
Definition: MCAsmInfo.h:332
const char * Data16bitsDirective
Definition: MCAsmInfo.h:191
bool UseAssignmentForEHBegin
Definition: MCAsmInfo.h:120
const char * DTPRel64Directive
Definition: MCAsmInfo.h:209
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
const char * TPRel64Directive
Definition: MCAsmInfo.h:211
EnvironmentType getEnvironment() const
getEnvironment - Get the parsed environment type of this triple.
Definition: Triple.h:308
const char * Data32bitsDirective
Definition: MCAsmInfo.h:192
const char * GPRel32Directive
If non-null, a directive that is used to emit a word which should be relocated as a 32-bit GP-relativ...
Definition: MCAsmInfo.h:203
unsigned CodePointerSize
Code pointer size in bytes. Default is 4.
Definition: MCAsmInfo.h:63
bool isMIPS32() const
Tests whether the target is MIPS 32-bit (little and big endian).
Definition: Triple.h:680
ExceptionHandling ExceptionsType
Exception handling format for the target. Defaults to None.
Definition: MCAsmInfo.h:335
const char * DTPRel32Directive
If non-null, directives that are used to emit a word/dword which should be relocated as a 32/64-bit D...
Definition: MCAsmInfo.h:208
MipsMCAsmInfo(const Triple &TheTriple)
No exception support.
StringRef PrivateGlobalPrefix
This prefix is used for globals like constant pool entries that are completely private to the ...
Definition: MCAsmInfo.h:128