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
52 if ((TheTriple.getArch() == Triple::armeb) ||
53 (TheTriple.getArch() == Triple::thumbeb))
54 IsLittleEndian = false;
55
56 Data64bitsDirective = nullptr;
57 CommentString = "@";
59
61
62 // Conditional Thumb 4-byte instructions can have an implicit IT.
63 MaxInstLength = 6;
64
65 // Exceptions handling
66 ExceptionsType = (TheTriple.isOSDarwin() && !TheTriple.isWatchABI())
69
71}
72
73void ARMELFMCAsmInfo::anchor() { }
74
78 if ((TheTriple.getArch() == Triple::armeb) ||
79 (TheTriple.getArch() == Triple::thumbeb))
80 IsLittleEndian = false;
81
82 // ".comm align is in bytes but .align is pow-2."
83 AlignmentIsInBytes = false;
84
85 Data64bitsDirective = nullptr;
86 CommentString = "@";
87
89
90 // Conditional Thumb 4-byte instructions can have an implicit IT.
91 MaxInstLength = 6;
92
93 // Exceptions handling
94 switch (TheTriple.getOS()) {
95 case Triple::NetBSD:
96 ExceptionsType = ExceptionHandling::DwarfCFI;
97 break;
98 default:
99 ExceptionsType = ExceptionHandling::ARM;
100 break;
101 }
102
104 // foo(plt) instead of foo@plt
105 UseAtForSpecifier = false;
107}
108
112 // gas doesn't handle VFP register names in cfi directives,
113 // so don't use register names with external assembler.
114 // See https://sourceware.org/bugzilla/show_bug.cgi?id=16694
115 DwarfRegNumForCFI = true;
116 }
117}
118
119void ARMCOFFMCAsmInfoMicrosoft::anchor() { }
120
137
138void ARMCOFFMCAsmInfoGNU::anchor() { }
139
142 AlignmentIsInBytes = false;
144
145 CommentString = "@";
147 PrivateLabelPrefix = ".L";
148
152 DwarfRegNumForCFI = false;
153
154 // Conditional Thumb 4-byte instructions can have an implicit IT.
155 MaxInstLength = 6;
156
158 UseAtForSpecifier = false;
160}
161
163 const MCSpecifierExpr &Expr) {
164 switch (Expr.getSpecifier()) {
165 default:
166 llvm_unreachable("Invalid kind!");
167 case ARM::S_HI16:
168 OS << ":upper16:";
169 break;
170 case ARM::S_LO16:
171 OS << ":lower16:";
172 break;
173 case ARM::S_HI_8_15:
174 OS << ":upper8_15:";
175 break;
176 case ARM::S_HI_0_7:
177 OS << ":upper0_7:";
178 break;
179 case ARM::S_LO_8_15:
180 OS << ":lower8_15:";
181 break;
182 case ARM::S_LO_0_7:
183 OS << ":lower0_7:";
184 break;
185 }
186
187 const MCExpr *Sub = Expr.getSubExpr();
188 if (Sub->getKind() != MCExpr::SymbolRef)
189 OS << '(';
190 MAI.printExpr(OS, *Sub);
191 if (Sub->getKind() != MCExpr::SymbolRef)
192 OS << ')';
193}
194
196 return MCSpecifierExpr::create(Expr, ARM::S_HI16, Ctx);
197}
198
200 return MCSpecifierExpr::create(Expr, ARM::S_LO16, Ctx);
201}
202
204 MCContext &Ctx) {
205 return MCSpecifierExpr::create(Expr, ARM::S_HI_8_15, Ctx);
206}
207
209 return MCSpecifierExpr::create(Expr, ARM::S_HI_0_7, Ctx);
210}
211
213 MCContext &Ctx) {
214 return MCSpecifierExpr::create(Expr, ARM::S_LO_8_15, Ctx);
215}
216
218 return MCSpecifierExpr::create(Expr, ARM::S_LO_0_7, Ctx);
219}
const MCAsmInfo::AtSpecifier atSpecifiers[]
static LVOptions Options
Definition LVOptions.cpp:25
ARMCOFFMCAsmInfoGNU(const MCTargetOptions &Options)
ARMCOFFMCAsmInfoMicrosoft(const MCTargetOptions &Options)
void setUseIntegratedAssembler(bool Value) override
Set whether assembly (inline or otherwise) should be parsed.
ARMELFMCAsmInfo(const Triple &TT, const MCTargetOptions &Options)
ARMMCAsmInfoDarwin(const Triple &TheTriple, const MCTargetOptions &Options)
MCAsmInfoDarwin(const MCTargetOptions &Options)
MCAsmInfoELF(const MCTargetOptions &Options)
MCAsmInfoGNUCOFF(const MCTargetOptions &Options)
MCAsmInfoMicrosoft(const MCTargetOptions &Options)
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition MCAsmInfo.h:64
StringRef InternalSymbolPrefix
For internal use by compiler and assembler, not meant to be visible externally.
Definition MCAsmInfo.h:160
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
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:619
OSType getOS() const
Get the parsed operating system type of this triple.
Definition Triple.h:444
ArchType getArch() const
Get the parsed architecture type of this triple.
Definition Triple.h:435
bool isOSDarwin() const
Is this a "Darwin" OS (macOS, iOS, tvOS, watchOS, DriverKit, XROS, or bridgeOS).
Definition Triple.h:644
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.
@ 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.