LLVM  8.0.1
X86TargetMachine.h
Go to the documentation of this file.
1 //===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the X86 specific subclass of TargetMachine.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_LIB_TARGET_X86_X86TARGETMACHINE_H
15 #define LLVM_LIB_TARGET_X86_X86TARGETMACHINE_H
16 
17 #include "X86Subtarget.h"
18 #include "llvm/ADT/Optional.h"
19 #include "llvm/ADT/StringMap.h"
21 #include "llvm/Support/CodeGen.h"
23 #include <memory>
24 
25 namespace llvm {
26 
27 class StringRef;
28 class X86Subtarget;
29 class X86RegisterBankInfo;
30 
31 class X86TargetMachine final : public LLVMTargetMachine {
32  std::unique_ptr<TargetLoweringObjectFile> TLOF;
33  mutable StringMap<std::unique_ptr<X86Subtarget>> SubtargetMap;
34 
35 public:
36  X86TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
37  StringRef FS, const TargetOptions &Options,
39  CodeGenOpt::Level OL, bool JIT);
40  ~X86TargetMachine() override;
41 
42  const X86Subtarget *getSubtargetImpl(const Function &F) const override;
43  // DO NOT IMPLEMENT: There is no such thing as a valid default subtarget,
44  // subtargets are per-function entities based on the target-specific
45  // attributes of each function.
46  const X86Subtarget *getSubtargetImpl() const = delete;
47 
49 
50  // Set up the pass pipeline.
52 
54  return TLOF.get();
55  }
56 };
57 
58 } // end namespace llvm
59 
60 #endif // LLVM_LIB_TARGET_X86_X86TARGETMACHINE_H
This class represents lattice values for constants.
Definition: AllocatorList.h:24
F(f)
Target-Independent Code Generator Pass Configuration Options.
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
TargetLoweringObjectFile * getObjFileLowering() const override
const X86Subtarget * getSubtargetImpl() const =delete
This class describes a target machine that is implemented with the LLVM target-independent code gener...
~X86TargetMachine() override
TargetTransformInfo getTargetTransformInfo(const Function &F) override
Get a TargetTransformInfo implementation for the target.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
StringMap - This is an unconventional map that is specialized for handling keys that are "strings"...
Definition: StringMap.h:220
Target - Wrapper for Target specific information.
X86TargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional< Reloc::Model > RM, Optional< CodeModel::Model > CM, CodeGenOpt::Level OL, bool JIT)
Create an X86 target.
TargetOptions Options
Definition: TargetMachine.h:97
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
This pass exposes codegen information to IR-level passes.