SparcTargetMachine.h revision 0d170a7969e7e36ad00afe596f2937f0c74d2b49
1//===-- SparcV8TargetMachine.h - Define TargetMachine for SparcV8 -*- C++ -*-=//
2//
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 SparcV8 specific subclass of TargetMachine.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef SPARCV8TARGETMACHINE_H
15#define SPARCV8TARGETMACHINE_H
16
17#include "llvm/Target/TargetMachine.h"
18#include "llvm/Target/TargetFrameInfo.h"
19#include "llvm/PassManager.h"
20#include "SparcV8InstrInfo.h"
21#include "SparcV8Subtarget.h"
22
23namespace llvm {
24
25class IntrinsicLowering;
26class Module;
27
28class SparcV8TargetMachine : public TargetMachine {
29  SparcV8Subtarget Subtarget;
30  SparcV8InstrInfo InstrInfo;
31  TargetFrameInfo FrameInfo;
32public:
33  SparcV8TargetMachine(const Module &M, IntrinsicLowering *IL,
34                       const std::string &FS);
35
36  virtual const SparcV8InstrInfo *getInstrInfo() const { return &InstrInfo; }
37  virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
38  virtual const TargetSubtarget  *getSubtargetImpl() const{ return &Subtarget; }
39  virtual const MRegisterInfo *getRegisterInfo() const {
40    return &InstrInfo.getRegisterInfo();
41  }
42
43  static unsigned getModuleMatchQuality(const Module &M);
44
45  virtual bool addPassesToEmitFile(PassManager &PM, std::ostream &Out,
46                                   CodeGenFileType FileType, bool Fast);
47};
48
49} // end namespace llvm
50
51#endif
52