LLVM 17.0.0git
ARMAsmBackendDarwin.h
Go to the documentation of this file.
1//===-- ARMAsmBackendDarwin.h ARM Asm Backend Darwin ----------*- C++ -*-===//
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#ifndef LLVM_LIB_TARGET_ARM_ARMASMBACKENDDARWIN_H
10#define LLVM_LIB_TARGET_ARM_ARMASMBACKENDDARWIN_H
11
12#include "ARMAsmBackend.h"
15
16namespace llvm {
18 const MCRegisterInfo &MRI;
19 Triple TT;
20public:
23 const MCRegisterInfo &MRI)
24 : ARMAsmBackend(T, STI.getTargetTriple().isThumb(), support::little),
25 MRI(MRI), TT(STI.getTargetTriple()),
26 Subtype((MachO::CPUSubTypeARM)cantFail(
27 MachO::getCPUSubType(STI.getTargetTriple()))) {}
28
29 std::unique_ptr<MCObjectTargetWriter>
30 createObjectTargetWriter() const override {
32 /*Is64Bit=*/false, cantFail(MachO::getCPUType(TT)), Subtype);
33 }
34
36 ArrayRef<MCCFIInstruction> Instrs) const override;
37};
38} // end namespace llvm
39
40#endif
unsigned const MachineRegisterInfo * MRI
static unsigned getCPUSubType(const MachOObjectFile &O)
std::unique_ptr< MCObjectTargetWriter > createObjectTargetWriter() const override
uint32_t generateCompactUnwindEncoding(ArrayRef< MCCFIInstruction > Instrs) const override
Generate compact unwind encoding for the function based on the CFI instructions.
const MachO::CPUSubTypeARM Subtype
ARMAsmBackendDarwin(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI)
bool isThumb() const
Definition: ARMAsmBackend.h:72
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
Generic base class for all target subtargets.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
Expected< uint32_t > getCPUType(const Triple &T)
Definition: MachO.cpp:77
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
std::unique_ptr< MCObjectTargetWriter > createARMMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype)
Construct an ARM Mach-O object writer.
void cantFail(Error Err, const char *Msg=nullptr)
Report a fatal error if Err is a failure value.
Definition: Error.h:745