[ARM] MVE integer min and max
[llvm-complete.git] / lib / Target / X86 / X86TargetMachine.h
blobb999e2e86af68b96cfd361af5229ac521b3cc3ba
1 //===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- 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 X86 specific subclass of TargetMachine.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_X86_X86TARGETMACHINE_H
14 #define LLVM_LIB_TARGET_X86_X86TARGETMACHINE_H
16 #include "X86Subtarget.h"
17 #include "llvm/ADT/Optional.h"
18 #include "llvm/ADT/StringMap.h"
19 #include "llvm/Analysis/TargetTransformInfo.h"
20 #include "llvm/Support/CodeGen.h"
21 #include "llvm/Target/TargetMachine.h"
22 #include <memory>
24 namespace llvm {
26 class StringRef;
27 class X86Subtarget;
28 class X86RegisterBankInfo;
30 class X86TargetMachine final : public LLVMTargetMachine {
31 std::unique_ptr<TargetLoweringObjectFile> TLOF;
32 mutable StringMap<std::unique_ptr<X86Subtarget>> SubtargetMap;
34 public:
35 X86TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
36 StringRef FS, const TargetOptions &Options,
37 Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM,
38 CodeGenOpt::Level OL, bool JIT);
39 ~X86TargetMachine() override;
41 const X86Subtarget *getSubtargetImpl(const Function &F) 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 X86Subtarget *getSubtargetImpl() const = delete;
47 TargetTransformInfo getTargetTransformInfo(const Function &F) override;
49 // Set up the pass pipeline.
50 TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
52 TargetLoweringObjectFile *getObjFileLowering() const override {
53 return TLOF.get();
57 } // end namespace llvm
59 #endif // LLVM_LIB_TARGET_X86_X86TARGETMACHINE_H