Misha Brukman | bc9ccf6 | 2005-02-04 20:25:52 +0000 | [diff] [blame] | 1 | //===-- AlphaTargetMachine.h - Define TargetMachine for Alpha ---*- C++ -*-===// |
Misha Brukman | 4633f1c | 2005-04-21 23:13:11 +0000 | [diff] [blame] | 2 | // |
Andrew Lenharth | 304d0f3 | 2005-01-22 23:41:55 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
Misha Brukman | 4633f1c | 2005-04-21 23:13:11 +0000 | [diff] [blame] | 7 | // |
Andrew Lenharth | 304d0f3 | 2005-01-22 23:41:55 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Misha Brukman | 4633f1c | 2005-04-21 23:13:11 +0000 | [diff] [blame] | 9 | // |
Andrew Lenharth | 304d0f3 | 2005-01-22 23:41:55 +0000 | [diff] [blame] | 10 | // This file declares the Alpha-specific subclass of TargetMachine. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef ALPHA_TARGETMACHINE_H |
| 15 | #define ALPHA_TARGETMACHINE_H |
| 16 | |
| 17 | #include "llvm/Target/TargetMachine.h" |
| 18 | #include "llvm/Target/TargetFrameInfo.h" |
| 19 | #include "llvm/PassManager.h" |
| 20 | #include "AlphaInstrInfo.h" |
Andrew Lenharth | 0934ae0 | 2005-07-22 20:52:16 +0000 | [diff] [blame^] | 21 | #include "AlphaJITInfo.h" |
Andrew Lenharth | 304d0f3 | 2005-01-22 23:41:55 +0000 | [diff] [blame] | 22 | |
| 23 | namespace llvm { |
| 24 | |
| 25 | class GlobalValue; |
| 26 | class IntrinsicLowering; |
| 27 | |
| 28 | class AlphaTargetMachine : public TargetMachine { |
| 29 | AlphaInstrInfo InstrInfo; |
| 30 | TargetFrameInfo FrameInfo; |
Andrew Lenharth | 0934ae0 | 2005-07-22 20:52:16 +0000 | [diff] [blame^] | 31 | AlphaJITInfo JITInfo; |
Andrew Lenharth | 304d0f3 | 2005-01-22 23:41:55 +0000 | [diff] [blame] | 32 | |
| 33 | public: |
| 34 | AlphaTargetMachine(const Module &M, IntrinsicLowering *IL); |
Misha Brukman | 4633f1c | 2005-04-21 23:13:11 +0000 | [diff] [blame] | 35 | |
| 36 | virtual const AlphaInstrInfo *getInstrInfo() const { return &InstrInfo; } |
Andrew Lenharth | 304d0f3 | 2005-01-22 23:41:55 +0000 | [diff] [blame] | 37 | virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; } |
| 38 | virtual const MRegisterInfo *getRegisterInfo() const { |
| 39 | return &InstrInfo.getRegisterInfo(); |
| 40 | } |
Andrew Lenharth | 0934ae0 | 2005-07-22 20:52:16 +0000 | [diff] [blame^] | 41 | virtual TargetJITInfo* getJITInfo() { |
| 42 | return &JITInfo; |
| 43 | } |
| 44 | |
| 45 | static unsigned getJITMatchQuality(); |
| 46 | |
| 47 | /// addPassesToEmitMachineCode - Add passes to the specified pass manager to |
| 48 | /// get machine code emitted. This uses a MachineCodeEmitter object to handle |
| 49 | /// actually outputting the machine code and resolving things like the address |
| 50 | /// of functions. This method should returns true if machine code emission is |
| 51 | /// not supported. |
| 52 | /// |
| 53 | virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM, |
| 54 | MachineCodeEmitter &MCE); |
Misha Brukman | 4633f1c | 2005-04-21 23:13:11 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 0431c96 | 2005-06-25 02:48:37 +0000 | [diff] [blame] | 56 | virtual bool addPassesToEmitFile(PassManager &PM, std::ostream &Out, |
| 57 | CodeGenFileType FileType); |
Andrew Lenharth | 2f40163 | 2005-02-01 20:35:11 +0000 | [diff] [blame] | 58 | |
| 59 | static unsigned getModuleMatchQuality(const Module &M); |
Andrew Lenharth | 304d0f3 | 2005-01-22 23:41:55 +0000 | [diff] [blame] | 60 | }; |
| 61 | |
| 62 | } // end namespace llvm |
| 63 | |
| 64 | #endif |