blob: d0dfa4e94316795a4010bcaf310e943c66d66b31 [file] [log] [blame]
Brian Gaekee785e532004-02-25 19:28:19 +00001//===-- SparcV8TargetMachine.h - Define TargetMachine for SparcV8 -*- C++ -*-=//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00002//
Brian Gaekee785e532004-02-25 19:28:19 +00003// 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 Brukmanb5f662f2005-04-21 23:30:14 +00007//
Brian Gaekee785e532004-02-25 19:28:19 +00008//===----------------------------------------------------------------------===//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00009//
Brian Gaekee785e532004-02-25 19:28:19 +000010// 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 "SparcV8JITInfo.h"
22
23namespace llvm {
24
25class IntrinsicLowering;
Brian Gaeke0e2d4662004-10-09 05:57:01 +000026class Module;
Brian Gaekee785e532004-02-25 19:28:19 +000027
28class SparcV8TargetMachine : public TargetMachine {
29 SparcV8InstrInfo InstrInfo;
30 TargetFrameInfo FrameInfo;
31 SparcV8JITInfo JITInfo;
32public:
Jim Laskeyb1e11802005-09-01 21:38:21 +000033 SparcV8TargetMachine(const Module &M, IntrinsicLowering *IL,
34 const std::string &FS);
Brian Gaekee785e532004-02-25 19:28:19 +000035
Chris Lattner143e0ea2004-06-02 05:47:26 +000036 virtual const SparcV8InstrInfo *getInstrInfo() const { return &InstrInfo; }
37 virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
Brian Gaekee785e532004-02-25 19:28:19 +000038 virtual const MRegisterInfo *getRegisterInfo() const {
39 return &InstrInfo.getRegisterInfo();
40 }
41 virtual TargetJITInfo *getJITInfo() {
42 return &JITInfo;
43 }
44
Brian Gaeke0e2d4662004-10-09 05:57:01 +000045 static unsigned getModuleMatchQuality(const Module &M);
46 static unsigned getJITMatchQuality();
47
Brian Gaekee785e532004-02-25 19:28:19 +000048 virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
49 MachineCodeEmitter &MCE);
Misha Brukmanb5f662f2005-04-21 23:30:14 +000050
Chris Lattner0431c962005-06-25 02:48:37 +000051 virtual bool addPassesToEmitFile(PassManager &PM, std::ostream &Out,
Chris Lattnerce8eb0c2005-11-08 02:11:51 +000052 CodeGenFileType FileType, bool Fast);
Brian Gaekee785e532004-02-25 19:28:19 +000053};
54
55} // end namespace llvm
56
57#endif