1//==-- AArch64TargetMachine.h - Define TargetMachine for AArch64 -*- 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// This file declares the AArch64 specific subclass of TargetMachine.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_LIB_TARGET_AARCH64_AARCH64TARGETMACHINE_H
14#define LLVM_LIB_TARGET_AARCH64_AARCH64TARGETMACHINE_H
15
16#include "AArch64InstrInfo.h"
17#include "AArch64Subtarget.h"
18#include "llvm/CodeGen/CodeGenTargetMachineImpl.h"
19#include "llvm/IR/DataLayout.h"
20#include <optional>
21
22namespace llvm {
23
24class AArch64TargetMachine : public CodeGenTargetMachineImpl {
25protected:
26 std::unique_ptr<TargetLoweringObjectFile> TLOF;
27 mutable StringMap<std::unique_ptr<AArch64Subtarget>> SubtargetMap;
28
29 /// Reset internal state.
30 void reset() override;
31
32public:
33 AArch64TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
34 StringRef FS, const TargetOptions &Options,
35 std::optional<Reloc::Model> RM,
36 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
37 bool JIT, bool IsLittleEndian);
38
39 ~AArch64TargetMachine() override;
40 const AArch64Subtarget *getSubtargetImpl(const Function &F) const override;
41 // DO NOT IMPLEMENT: There is no such thing as a valid default subtarget,
42 // subtargets are per-function entities based on the target-specific
43 // attributes of each function.
44 const AArch64Subtarget *getSubtargetImpl() const = delete;
45
46 // Pass Pipeline Configuration
47 TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
48
49 void registerPassBuilderCallbacks(PassBuilder &PB) override;
50
51 TargetTransformInfo getTargetTransformInfo(const Function &F) const override;
52
53 TargetLoweringObjectFile* getObjFileLowering() const override {
54 return TLOF.get();
55 }
56
57 MachineFunctionInfo *
58 createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F,
59 const TargetSubtargetInfo *STI) const override;
60
61 yaml::MachineFunctionInfo *createDefaultFuncInfoYAML() const override;
62 yaml::MachineFunctionInfo *
63 convertFuncInfoToYAML(const MachineFunction &MF) const override;
64 bool parseMachineFunctionInfo(const yaml::MachineFunctionInfo &,
65 PerFunctionMIParsingState &PFS,
66 SMDiagnostic &Error,
67 SMRange &SourceRange) const override;
68
69 /// Returns true if a cast between SrcAS and DestAS is a noop.
70 bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const override {
71 return getPointerSize(AS: SrcAS) == getPointerSize(AS: DestAS);
72 }
73 ScheduleDAGInstrs *
74 createMachineScheduler(MachineSchedContext *C) const override;
75
76 ScheduleDAGInstrs *
77 createPostMachineScheduler(MachineSchedContext *C) const override;
78
79 size_t clearLinkerOptimizationHints(
80 const SmallPtrSetImpl<MachineInstr *> &MIs) const override;
81
82 /// Returns the optimisation level that enables GlobalISel.
83 unsigned getEnableGlobalISelAtO() const;
84
85 /// This function checks whether the opt level is explicitly set to none,
86 /// or whether GlobalISel was enabled due to SDAG encountering an optnone
87 /// function. If the opt level is greater than the level we automatically
88 /// enable globalisel at, and it wasn't enabled via CLI, we know that it must
89 /// be because of an optnone function.
90 bool isGlobalISelOptNone() const;
91
92private:
93 bool isLittle;
94};
95
96// AArch64 little endian target machine.
97//
98class AArch64leTargetMachine : public AArch64TargetMachine {
99 virtual void anchor();
100
101public:
102 AArch64leTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
103 StringRef FS, const TargetOptions &Options,
104 std::optional<Reloc::Model> RM,
105 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
106 bool JIT);
107};
108
109// AArch64 big endian target machine.
110//
111class AArch64beTargetMachine : public AArch64TargetMachine {
112 virtual void anchor();
113
114public:
115 AArch64beTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
116 StringRef FS, const TargetOptions &Options,
117 std::optional<Reloc::Model> RM,
118 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
119 bool JIT);
120};
121
122} // end namespace llvm
123
124#endif
125