diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-29 22:37:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-29 22:37:54 +0000 |
commit | 02a3d837c2b00d886b5ad56b1350c533fb722f46 (patch) | |
tree | 94618e8ac7260aa6977dacd5dd76d04d6f976210 /llvm/lib/Target/X86/X86TargetMachine.h | |
parent | e2ac27117376f97cbe0c2fdcba25de5207e5dd01 (diff) | |
download | bcm5719-llvm-02a3d837c2b00d886b5ad56b1350c533fb722f46.tar.gz bcm5719-llvm-02a3d837c2b00d886b5ad56b1350c533fb722f46.zip |
Convert backend to use passes, implement X86TargetMachine
llvm-svn: 4421
Diffstat (limited to 'llvm/lib/Target/X86/X86TargetMachine.h')
-rw-r--r-- | llvm/lib/Target/X86/X86TargetMachine.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/X86TargetMachine.h b/llvm/lib/Target/X86/X86TargetMachine.h new file mode 100644 index 00000000000..863eb604f53 --- /dev/null +++ b/llvm/lib/Target/X86/X86TargetMachine.h @@ -0,0 +1,32 @@ +//===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- C++ -*-===// +// +// This file declares the X86 specific subclass of TargetMachine. +// +//===----------------------------------------------------------------------===// + +#ifndef X86TARGETMACHINE_H +#define X86TARGETMACHINE_H + +#include "llvm/Target/TargetMachine.h" +#include "X86InstrInfo.h" + +class X86TargetMachine : public TargetMachine { + X86InstrInfo instrInfo; +public: + X86TargetMachine(); + + virtual const MachineInstrInfo &getInstrInfo() const { return instrInfo; } + virtual const MachineSchedInfo &getSchedInfo() const { abort(); } + virtual const MachineRegInfo &getRegInfo() const { abort(); } + virtual const MachineFrameInfo &getFrameInfo() const { abort(); } + virtual const MachineCacheInfo &getCacheInfo() const { abort(); } + virtual const MachineOptInfo &getOptInfo() const { abort(); } + + /// addPassesToJITCompile - Add passes to the specified pass manager to + /// implement a fast dynamic compiler for this target. Return true if this is + /// not supported for this target. + /// + virtual bool addPassesToJITCompile(PassManager &PM); +}; + +#endif |