blob: 6f3a774a1eaf8064a935464cb4844b7fe2cb985d [file] [log] [blame]
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001//===-- AlphaTargetMachine.h - Define TargetMachine for Alpha ---*- 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 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/TargetData.h"
19#include "llvm/Target/TargetFrameInfo.h"
20#include "AlphaInstrInfo.h"
21#include "AlphaJITInfo.h"
22#include "AlphaISelLowering.h"
23#include "AlphaSubtarget.h"
24
25namespace llvm {
26
27class GlobalValue;
28
29class AlphaTargetMachine : public LLVMTargetMachine {
30 const TargetData DataLayout; // Calculates type size & alignment
31 AlphaInstrInfo InstrInfo;
32 TargetFrameInfo FrameInfo;
33 AlphaJITInfo JITInfo;
34 AlphaSubtarget Subtarget;
35 AlphaTargetLowering TLInfo;
36
37public:
38 AlphaTargetMachine(const Target &T, const std::string &TT,
39 const std::string &FS);
40
41 virtual const AlphaInstrInfo *getInstrInfo() const { return &InstrInfo; }
42 virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
43 virtual const AlphaSubtarget *getSubtargetImpl() const{ return &Subtarget; }
44 virtual const AlphaRegisterInfo *getRegisterInfo() const {
45 return &InstrInfo.getRegisterInfo();
46 }
47 virtual AlphaTargetLowering* getTargetLowering() const {
48 return const_cast<AlphaTargetLowering*>(&TLInfo);
49 }
50 virtual const TargetData *getTargetData() const { return &DataLayout; }
51 virtual AlphaJITInfo* getJITInfo() {
52 return &JITInfo;
53 }
54
55 // Pass Pipeline Configuration
56 virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
57 virtual bool addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
58 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
59 JITCodeEmitter &JCE);
60};
61
62} // end namespace llvm
63
64#endif