blob: 75d1353238ddf9e7e3c35f96ab088ee7f3ac9e82 [file] [log] [blame]
Andrew Lenharth2d6f0222005-01-24 19:44:07 +00001//===-- AlphaTargetMachine.h - Define TargetMachine for Alpha -*- C++ -*-----=//
Andrew Lenharth304d0f32005-01-22 23:41:55 +00002//
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.
7//
8//===----------------------------------------------------------------------===//
9//
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 Lenharth304d0f32005-01-22 23:41:55 +000021
22namespace llvm {
23
24class GlobalValue;
25class IntrinsicLowering;
26
27class AlphaTargetMachine : public TargetMachine {
28 AlphaInstrInfo InstrInfo;
29 TargetFrameInfo FrameInfo;
Andrew Lenharth304d0f32005-01-22 23:41:55 +000030
31public:
32 AlphaTargetMachine(const Module &M, IntrinsicLowering *IL);
33
34 virtual const AlphaInstrInfo *getInstrInfo() const { return &InstrInfo; }
35 virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
36 virtual const MRegisterInfo *getRegisterInfo() const {
37 return &InstrInfo.getRegisterInfo();
38 }
Andrew Lenharth304d0f32005-01-22 23:41:55 +000039
Andrew Lenharth304d0f32005-01-22 23:41:55 +000040 virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out);
41
42};
43
44} // end namespace llvm
45
46#endif