[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / lib / Target / SystemZ / SystemZTargetMachine.h
blob9ea03e104fc9a18502fc20802a98d412a561fd32
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.
11 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZTARGETMACHINE_H
15 #define LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZTARGETMACHINE_H
17 #include "SystemZSubtarget.h"
18 #include "llvm/ADT/Optional.h"
19 #include "llvm/ADT/StringRef.h"
20 #include "llvm/Analysis/TargetTransformInfo.h"
21 #include "llvm/Support/CodeGen.h"
22 #include "llvm/Target/TargetMachine.h"
23 #include <memory>
25 namespace llvm {
27 class SystemZTargetMachine : public LLVMTargetMachine {
28 std::unique_ptr<TargetLoweringObjectFile> TLOF;
30 mutable StringMap<std::unique_ptr<SystemZSubtarget>> SubtargetMap;
32 public:
33 SystemZTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
34 StringRef FS, const TargetOptions &Options,
35 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
36 CodeGenOpt::Level OL, bool JIT);
37 ~SystemZTargetMachine() override;
39 const SystemZSubtarget *getSubtargetImpl(const Function &) const override;
40 // DO NOT IMPLEMENT: There is no such thing as a valid default subtarget,
41 // subtargets are per-function entities based on the target-specific
42 // attributes of each function.
43 const SystemZSubtarget *getSubtargetImpl() const = delete;
45 // Override LLVMTargetMachine
46 TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
47 TargetTransformInfo getTargetTransformInfo(const Function &F) override;
49 TargetLoweringObjectFile *getObjFileLowering() const override {
50 return TLOF.get();
53 bool targetSchedulesPostRAScheduling() const override { return true; };
56 } // end namespace llvm
58 #endif // LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZTARGETMACHINE_H