LLVM 23.0.0git
SystemZTargetMachine.h
Go to the documentation of this file.
1//=- SystemZTargetMachine.h - Define TargetMachine for SystemZ ----*- 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 SystemZ specific subclass of TargetMachine.
10//
11//===----------------------------------------------------------------------===//
12
13
14#ifndef LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZTARGETMACHINE_H
15#define LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZTARGETMACHINE_H
16
17#include "SystemZSubtarget.h"
18#include "llvm/ADT/StringRef.h"
23#include <memory>
24#include <optional>
25
26namespace llvm {
27
29 std::unique_ptr<TargetLoweringObjectFile> TLOF;
30
32
33public:
34 SystemZTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
36 std::optional<Reloc::Model> RM,
37 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
38 bool JIT);
40
41 const SystemZSubtarget *getSubtargetImpl(const Function &) const override;
42 // DO NOT IMPLEMENT: There is no such thing as a valid default subtarget,
43 // subtargets are per-function entities based on the target-specific
44 // attributes of each function.
45 const SystemZSubtarget *getSubtargetImpl() const = delete;
46
47 // Override CodeGenTargetMachineImpl
50
52 return TLOF.get();
53 }
54
57 const TargetSubtargetInfo *STI) const override;
58
61
64
65 bool targetSchedulesPostRAScheduling() const override { return true; };
66};
67
68} // end namespace llvm
69
70#endif // LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZTARGETMACHINE_H
#define F(x, y, z)
Definition MD5.cpp:54
#define T
Basic Register Allocator
This pass exposes codegen information to IR-level passes.
CodeGenTargetMachineImpl(const Target &T, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOptLevel OL)
A ScheduleDAG for scheduling lists of MachineInstr.
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
Definition StringMap.h:133
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
ScheduleDAGInstrs * createMachineScheduler(MachineSchedContext *C) const override
Create an instance of ScheduleDAGInstrs to be run within the standard MachineScheduler pass for this ...
bool targetSchedulesPostRAScheduling() const override
True if subtarget inserts the final scheduling pass on its own.
const SystemZSubtarget * getSubtargetImpl() const =delete
SystemZTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, std::optional< Reloc::Model > RM, std::optional< CodeModel::Model > CM, CodeGenOptLevel OL, bool JIT)
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
TargetLoweringObjectFile * getObjFileLowering() const override
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
ScheduleDAGInstrs * createPostMachineScheduler(MachineSchedContext *C) const override
Similar to createMachineScheduler but used when postRA machine scheduling is enabled.
std::unique_ptr< const MCSubtargetInfo > STI
TargetOptions Options
Target-Independent Code Generator Pass Configuration Options.
TargetSubtargetInfo - Generic base class for all target subtargets.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:47
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
This is an optimization pass for GlobalISel generic memory operations.
Definition Types.h:26
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:82
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:383
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...
MachineSchedContext provides enough context from the MachineScheduler pass for the target to instanti...