blob: 0cad652f71daa1b287abeb6672e8f5d681e6ddeb [file] [log] [blame]
Chris Lattner7c90f732006-02-05 05:50:24 +00001//===-- SparcTargetMachine.h - Define TargetMachine for Sparc ---*- 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//
Chris Lattner7c90f732006-02-05 05:50:24 +000010// This file declares the Sparc specific subclass of TargetMachine.
Brian Gaekee785e532004-02-25 19:28:19 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner7c90f732006-02-05 05:50:24 +000014#ifndef SPARCTARGETMACHINE_H
15#define SPARCTARGETMACHINE_H
Brian Gaekee785e532004-02-25 19:28:19 +000016
17#include "llvm/Target/TargetMachine.h"
18#include "llvm/Target/TargetFrameInfo.h"
19#include "llvm/PassManager.h"
Chris Lattner7c90f732006-02-05 05:50:24 +000020#include "SparcInstrInfo.h"
21#include "SparcSubtarget.h"
Brian Gaekee785e532004-02-25 19:28:19 +000022
23namespace llvm {
24
Brian Gaeke0e2d4662004-10-09 05:57:01 +000025class Module;
Brian Gaekee785e532004-02-25 19:28:19 +000026
Chris Lattner7c90f732006-02-05 05:50:24 +000027class SparcTargetMachine : public TargetMachine {
28 SparcSubtarget Subtarget;
29 SparcInstrInfo InstrInfo;
Brian Gaekee785e532004-02-25 19:28:19 +000030 TargetFrameInfo FrameInfo;
Brian Gaekee785e532004-02-25 19:28:19 +000031public:
Chris Lattnerbc641b92006-03-23 05:43:16 +000032 SparcTargetMachine(const Module &M, const std::string &FS);
Brian Gaekee785e532004-02-25 19:28:19 +000033
Chris Lattner7c90f732006-02-05 05:50:24 +000034 virtual const SparcInstrInfo *getInstrInfo() const { return &InstrInfo; }
Chris Lattner143e0ea2004-06-02 05:47:26 +000035 virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
Chris Lattner0d170a72006-01-26 06:51:21 +000036 virtual const TargetSubtarget *getSubtargetImpl() const{ return &Subtarget; }
Brian Gaekee785e532004-02-25 19:28:19 +000037 virtual const MRegisterInfo *getRegisterInfo() const {
38 return &InstrInfo.getRegisterInfo();
39 }
Brian Gaekee785e532004-02-25 19:28:19 +000040
Brian Gaeke0e2d4662004-10-09 05:57:01 +000041 static unsigned getModuleMatchQuality(const Module &M);
Misha Brukmanb5f662f2005-04-21 23:30:14 +000042
Chris Lattner0431c962005-06-25 02:48:37 +000043 virtual bool addPassesToEmitFile(PassManager &PM, std::ostream &Out,
Chris Lattnerce8eb0c2005-11-08 02:11:51 +000044 CodeGenFileType FileType, bool Fast);
Brian Gaekee785e532004-02-25 19:28:19 +000045};
46
47} // end namespace llvm
48
49#endif