LLVM 23.0.0git
ARMMCAsmInfo.cpp
Go to the documentation of this file.
1//===-- ARMMCAsmInfo.cpp - ARM asm properties -----------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file contains the declarations of the ARMMCAsmInfo properties.
10//
11//===----------------------------------------------------------------------===//
12
13#include "ARMMCAsmInfo.h"
14#include "llvm/MC/MCExpr.h"
17
18using namespace llvm;
19
21 {ARM::S_GOT_PREL, "GOT_PREL"},
22 {ARM::S_ARM_NONE, "none"},
23 {ARM::S_PREL31, "prel31"},
24 {ARM::S_SBREL, "sbrel"},
25 {ARM::S_TARGET1, "target1"},
26 {ARM::S_TARGET2, "target2"},
27 {ARM::S_TLSLDO, "TLSLDO"},
29 {ARM::S_FUNCDESC, "FUNCDESC"},
30 {ARM::S_GOT, "GOT"},
31 {ARM::S_GOTFUNCDESC, "GOTFUNCDESC"},
32 {ARM::S_GOTOFF, "GOTOFF"},
33 {ARM::S_GOTOFFFUNCDESC, "GOTOFFFUNCDESC"},
34 {ARM::S_GOTTPOFF, "GOTTPOFF"},
35 {ARM::S_GOTTPOFF_FDPIC, "gottpoff_fdpic"},
36 {ARM::S_PLT, "PLT"},
37 {ARM::S_COFF_SECREL, "SECREL32"},
38 {ARM::S_TLSCALL, "tlscall"},
39 {ARM::S_TLSDESC, "tlsdesc"},
40 {ARM::S_TLSGD, "TLSGD"},
41 {ARM::S_TLSGD_FDPIC, "tlsgd_fdpic"},
42 {ARM::S_TLSLDM, "TLSLDM"},
43 {ARM::S_TLSLDM_FDPIC, "tlsldm_fdpic"},
44 {ARM::S_TPOFF, "TPOFF"},
45};
46
47void ARMMCAsmInfoDarwin::anchor() { }
48
50 if ((TheTriple.getArch() == Triple::armeb) ||
51 (TheTriple.getArch() == Triple::thumbeb))
52 IsLittleEndian = false;
53
54 Data64bitsDirective = nullptr;
55 CommentString = "@";
57
59
60 // Conditional Thumb 4-byte instructions can have an implicit IT.
61 MaxInstLength = 6;
62
63 // Exceptions handling
64 ExceptionsType = (TheTriple.isOSDarwin() && !TheTriple.isWatchABI())
67
69}
70
71void ARMELFMCAsmInfo::anchor() { }
72
74 if ((TheTriple.getArch() == Triple::armeb) ||
75 (TheTriple.getArch() == Triple::thumbeb))
76 IsLittleEndian = false;
77
78 // ".comm align is in bytes but .align is pow-2."
79 AlignmentIsInBytes = false;
80
81 Data64bitsDirective = nullptr;
82 CommentString = "@";
83
85
86 // Conditional Thumb 4-byte instructions can have an implicit IT.
87 MaxInstLength = 6;
88
89 // Exceptions handling
90 switch (TheTriple.getOS()) {
91 case Triple::NetBSD:
93 break;
94 default:
96 break;
97 }
98
100 // foo(plt) instead of foo@plt
101 UseAtForSpecifier = false;
103}
104
108 // gas doesn't handle VFP register names in cfi directives,
109 // so don't use register names with external assembler.
110 // See https://sourceware.org/bugzilla/show_bug.cgi?id=16694
111 DwarfRegNumForCFI = true;
112 }
113}
114
115void ARMCOFFMCAsmInfoMicrosoft::anchor() { }
116
118 AlignmentIsInBytes = false;
122 PrivateGlobalPrefix = "$M";
123 PrivateLabelPrefix = "$M";
124 CommentString = "@";
125
126 // Conditional Thumb 4-byte instructions can have an implicit IT.
127 MaxInstLength = 6;
128
130}
131
132void ARMCOFFMCAsmInfoGNU::anchor() { }
133
135 AlignmentIsInBytes = false;
137
138 CommentString = "@";
139 PrivateGlobalPrefix = ".L";
140 PrivateLabelPrefix = ".L";
141
145 DwarfRegNumForCFI = false;
146
147 // Conditional Thumb 4-byte instructions can have an implicit IT.
148 MaxInstLength = 6;
149
151 UseAtForSpecifier = false;
153}
154
156 const MCSpecifierExpr &Expr) {
157 switch (Expr.getSpecifier()) {
158 default:
159 llvm_unreachable("Invalid kind!");
160 case ARM::S_HI16:
161 OS << ":upper16:";
162 break;
163 case ARM::S_LO16:
164 OS << ":lower16:";
165 break;
166 case ARM::S_HI_8_15:
167 OS << ":upper8_15:";
168 break;
169 case ARM::S_HI_0_7:
170 OS << ":upper0_7:";
171 break;
172 case ARM::S_LO_8_15:
173 OS << ":lower8_15:";
174 break;
175 case ARM::S_LO_0_7:
176 OS << ":lower0_7:";
177 break;
178 }
179
180 const MCExpr *Sub = Expr.getSubExpr();
181 if (Sub->getKind() != MCExpr::SymbolRef)
182 OS << '(';
183 MAI.printExpr(OS, *Sub);
184 if (Sub->getKind() != MCExpr::SymbolRef)
185 OS << ')';
186}
187
189 return MCSpecifierExpr::create(Expr, ARM::S_HI16, Ctx);
190}
191
193 return MCSpecifierExpr::create(Expr, ARM::S_LO16, Ctx);
194}
195
197 MCContext &Ctx) {
198 return MCSpecifierExpr::create(Expr, ARM::S_HI_8_15, Ctx);
199}
200
202 return MCSpecifierExpr::create(Expr, ARM::S_HI_0_7, Ctx);
203}
204
206 MCContext &Ctx) {
207 return MCSpecifierExpr::create(Expr, ARM::S_LO_8_15, Ctx);
208}
209
211 return MCSpecifierExpr::create(Expr, ARM::S_LO_0_7, Ctx);
212}
const MCAsmInfo::AtSpecifier atSpecifiers[]
ARMELFMCAsmInfo(const Triple &TT)
void setUseIntegratedAssembler(bool Value) override
Set whether assembly (inline or otherwise) should be parsed.
ARMMCAsmInfoDarwin(const Triple &TheTriple)
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition MCAsmInfo.h:64
bool UseAtForSpecifier
True if target uses @ (expr@specifier) for relocation specifiers.
Definition MCAsmInfo.h:387
void initializeAtSpecifiers(ArrayRef< AtSpecifier >)
const char * Data64bitsDirective
Definition MCAsmInfo.h:249
ExceptionHandling ExceptionsType
Exception handling format for the target. Defaults to None.
Definition MCAsmInfo.h:361
StringRef PrivateGlobalPrefix
This prefix is used for globals like constant pool entries that are completely private to the ....
Definition MCAsmInfo.h:160
bool UseIntegratedAssembler
Should we use the integrated assembler?
Definition MCAsmInfo.h:414
WinEH::EncodingType WinEHEncodingType
Windows exception handling data (.pdata) encoding. Defaults to Invalid.
Definition MCAsmInfo.h:368
StringRef PrivateLabelPrefix
This prefix is used for labels for basic blocks. Defaults to "L".
Definition MCAsmInfo.h:163
void printExpr(raw_ostream &, const MCExpr &) const
unsigned MaxInstLength
This is the maximum possible length of an instruction, which is needed to compute the size of an inli...
Definition MCAsmInfo.h:119
bool UseParensForSpecifier
(ARM-specific) Uses parens for relocation specifier in data directives, e.g.
Definition MCAsmInfo.h:391
bool SupportsDebugInformation
True if target supports emission of debugging information.
Definition MCAsmInfo.h:358
bool HasSingleParameterDotFile
True if the target has a single parameter .file directive, this is true for ELF targets.
Definition MCAsmInfo.h:312
bool AlignmentIsInBytes
If this is true (the default) then the asmprinter emits ".align N" directives, where N is the number ...
Definition MCAsmInfo.h:272
bool UseDataRegionDirectives
This is true if data region markers should be printed as ".data_region/.end_data_region" directives.
Definition MCAsmInfo.h:211
bool DwarfRegNumForCFI
True if dwarf register numbers are printed instead of symbolic register names in ....
Definition MCAsmInfo.h:384
bool IsLittleEndian
True if target is little endian. Default is true.
Definition MCAsmInfo.h:94
StringRef CommentString
This indicates the comment string used by the assembler.
Definition MCAsmInfo.h:135
Context object for machine code objects.
Definition MCContext.h:83
Base class for the full range of assembler expressions which are needed for parsing.
Definition MCExpr.h:34
@ SymbolRef
References to labels and assigned expressions.
Definition MCExpr.h:43
Extension point for target-specific MCExpr subclasses with a relocation specifier,...
Definition MCExpr.h:495
const MCExpr * getSubExpr() const
Definition MCExpr.h:509
static const MCSpecifierExpr * create(const MCExpr *Expr, Spec S, MCContext &Ctx, SMLoc Loc=SMLoc())
Definition MCExpr.cpp:743
Spec getSpecifier() const
Definition MCExpr.h:508
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:47
bool isWatchABI() const
Definition Triple.h:612
OSType getOS() const
Get the parsed operating system type of this triple.
Definition Triple.h:429
ArchType getArch() const
Get the parsed architecture type of this triple.
Definition Triple.h:420
bool isOSDarwin() const
Is this a "Darwin" OS (macOS, iOS, tvOS, watchOS, DriverKit, XROS, or bridgeOS).
Definition Triple.h:639
LLVM Value Representation.
Definition Value.h:75
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
const MCSpecifierExpr * createUpper0_7(const MCExpr *Expr, MCContext &Ctx)
void printSpecifierExpr(const MCAsmInfo &MAI, raw_ostream &OS, const MCSpecifierExpr &Expr)
const MCSpecifierExpr * createUpper8_15(const MCExpr *Expr, MCContext &Ctx)
const MCSpecifierExpr * createLower16(const MCExpr *Expr, MCContext &Ctx)
const MCSpecifierExpr * createLower0_7(const MCExpr *Expr, MCContext &Ctx)
const MCSpecifierExpr * createLower8_15(const MCExpr *Expr, MCContext &Ctx)
const MCSpecifierExpr * createUpper16(const MCExpr *Expr, MCContext &Ctx)
@ Itanium
Windows CE ARM, PowerPC, SH3, SH4.
Definition MCAsmInfo.h:49
This is an optimization pass for GlobalISel generic memory operations.
Definition Types.h:26
@ SjLj
setjmp/longjmp based exceptions
Definition CodeGen.h:56
@ DwarfCFI
DWARF-like instruction based exceptions.
Definition CodeGen.h:55
@ WinEH
Windows Exception Handling.
Definition CodeGen.h:58
@ Sub
Subtraction of integers.