2007-06-06 09:42:06 +02:00
|
|
|
//===-- MipsTargetMachine.h - Define TargetMachine for Mips -00--*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-06-06 09:42:06 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares the Mips specific subclass of TargetMachine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef MIPSTARGETMACHINE_H
|
|
|
|
#define MIPSTARGETMACHINE_H
|
|
|
|
|
|
|
|
#include "MipsSubtarget.h"
|
|
|
|
#include "MipsInstrInfo.h"
|
|
|
|
#include "MipsISelLowering.h"
|
2011-01-10 13:39:04 +01:00
|
|
|
#include "MipsFrameLowering.h"
|
2010-05-11 19:31:57 +02:00
|
|
|
#include "MipsSelectionDAGInfo.h"
|
2007-06-06 09:42:06 +02:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/Target/TargetData.h"
|
2011-01-10 13:39:04 +01:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2007-06-06 09:42:06 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-07-14 22:18:05 +02:00
|
|
|
class formatted_raw_ostream;
|
2010-11-15 01:06:54 +01:00
|
|
|
|
2007-06-06 09:42:06 +02:00
|
|
|
class MipsTargetMachine : public LLVMTargetMachine {
|
|
|
|
MipsSubtarget Subtarget;
|
|
|
|
const TargetData DataLayout; // Calculates type size & alignment
|
|
|
|
MipsInstrInfo InstrInfo;
|
2011-01-10 13:39:04 +01:00
|
|
|
MipsFrameLowering FrameLowering;
|
2007-06-06 09:42:06 +02:00
|
|
|
MipsTargetLowering TLInfo;
|
2010-05-11 19:31:57 +02:00
|
|
|
MipsSelectionDAGInfo TSInfo;
|
2007-06-06 09:42:06 +02:00
|
|
|
public:
|
2009-08-03 04:22:28 +02:00
|
|
|
MipsTargetMachine(const Target &T, const std::string &TT,
|
2009-08-03 01:37:13 +02:00
|
|
|
const std::string &FS, bool isLittle);
|
2010-11-15 01:06:54 +01:00
|
|
|
|
|
|
|
virtual const MipsInstrInfo *getInstrInfo() const
|
2007-06-06 09:42:06 +02:00
|
|
|
{ return &InstrInfo; }
|
2011-01-10 13:39:04 +01:00
|
|
|
virtual const TargetFrameLowering *getFrameLowering() const
|
|
|
|
{ return &FrameLowering; }
|
2010-11-15 01:06:54 +01:00
|
|
|
virtual const MipsSubtarget *getSubtargetImpl() const
|
2007-06-06 09:42:06 +02:00
|
|
|
{ return &Subtarget; }
|
2010-11-15 01:06:54 +01:00
|
|
|
virtual const TargetData *getTargetData() const
|
2007-06-06 09:42:06 +02:00
|
|
|
{ return &DataLayout;}
|
|
|
|
|
2008-05-14 03:58:56 +02:00
|
|
|
virtual const MipsRegisterInfo *getRegisterInfo() const {
|
2007-06-06 09:42:06 +02:00
|
|
|
return &InstrInfo.getRegisterInfo();
|
|
|
|
}
|
|
|
|
|
2010-11-15 01:06:54 +01:00
|
|
|
virtual const MipsTargetLowering *getTargetLowering() const {
|
2010-04-17 17:26:15 +02:00
|
|
|
return &TLInfo;
|
2007-06-06 09:42:06 +02:00
|
|
|
}
|
|
|
|
|
2010-05-11 19:31:57 +02:00
|
|
|
virtual const MipsSelectionDAGInfo* getSelectionDAGInfo() const {
|
|
|
|
return &TSInfo;
|
|
|
|
}
|
|
|
|
|
2007-06-06 09:42:06 +02:00
|
|
|
// Pass Pipeline Configuration
|
2009-04-30 01:29:43 +02:00
|
|
|
virtual bool addInstSelector(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel);
|
|
|
|
virtual bool addPreEmitPass(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel);
|
2007-06-06 09:42:06 +02:00
|
|
|
};
|
2008-06-04 03:45:25 +02:00
|
|
|
|
|
|
|
/// MipselTargetMachine - Mipsel target machine.
|
|
|
|
///
|
|
|
|
class MipselTargetMachine : public MipsTargetMachine {
|
|
|
|
public:
|
2009-08-03 04:22:28 +02:00
|
|
|
MipselTargetMachine(const Target &T, const std::string &TT,
|
|
|
|
const std::string &FS);
|
2008-06-04 03:45:25 +02:00
|
|
|
};
|
|
|
|
|
2007-06-06 09:42:06 +02:00
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|