2011-04-15 21:51:11 +00:00
|
|
|
//===-- MipsTargetMachine.h - Define TargetMachine for Mips -00--*- C++ -*-===//
|
2007-06-06 07:42:06 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-06-06 07:42:06 +00:00
|
|
|
//
|
2011-04-15 21:51:11 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 07:42:06 +00:00
|
|
|
//
|
|
|
|
// This file declares the Mips specific subclass of TargetMachine.
|
|
|
|
//
|
2011-04-15 21:51:11 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 07:42:06 +00:00
|
|
|
|
|
|
|
#ifndef MIPSTARGETMACHINE_H
|
|
|
|
#define MIPSTARGETMACHINE_H
|
|
|
|
|
|
|
|
#include "MipsSubtarget.h"
|
|
|
|
#include "MipsInstrInfo.h"
|
|
|
|
#include "MipsISelLowering.h"
|
2011-01-10 12:39:04 +00:00
|
|
|
#include "MipsFrameLowering.h"
|
2010-05-11 17:31:57 +00:00
|
|
|
#include "MipsSelectionDAGInfo.h"
|
2007-06-06 07:42:06 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/Target/TargetData.h"
|
2011-01-10 12:39:04 +00:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2011-07-21 16:28:51 +00:00
|
|
|
#include "MipsJITInfo.h"
|
2007-06-06 07:42:06 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-07-14 20:18:05 +00:00
|
|
|
class formatted_raw_ostream;
|
2010-11-15 00:06:54 +00:00
|
|
|
|
2007-06-06 07:42:06 +00:00
|
|
|
class MipsTargetMachine : public LLVMTargetMachine {
|
|
|
|
MipsSubtarget Subtarget;
|
|
|
|
const TargetData DataLayout; // Calculates type size & alignment
|
|
|
|
MipsInstrInfo InstrInfo;
|
2011-01-10 12:39:04 +00:00
|
|
|
MipsFrameLowering FrameLowering;
|
2007-06-06 07:42:06 +00:00
|
|
|
MipsTargetLowering TLInfo;
|
2010-05-11 17:31:57 +00:00
|
|
|
MipsSelectionDAGInfo TSInfo;
|
2011-07-21 16:28:51 +00:00
|
|
|
MipsJITInfo JITInfo;
|
|
|
|
|
2007-06-06 07:42:06 +00:00
|
|
|
public:
|
2011-07-19 06:37:02 +00:00
|
|
|
MipsTargetMachine(const Target &T, StringRef TT,
|
2011-12-02 22:16:29 +00:00
|
|
|
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
2011-07-20 07:51:56 +00:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
2011-11-16 08:38:26 +00:00
|
|
|
CodeGenOpt::Level OL,
|
2011-07-20 07:51:56 +00:00
|
|
|
bool isLittle);
|
2010-11-15 00:06:54 +00:00
|
|
|
|
|
|
|
virtual const MipsInstrInfo *getInstrInfo() const
|
2007-06-06 07:42:06 +00:00
|
|
|
{ return &InstrInfo; }
|
2011-01-10 12:39:04 +00:00
|
|
|
virtual const TargetFrameLowering *getFrameLowering() const
|
|
|
|
{ return &FrameLowering; }
|
2010-11-15 00:06:54 +00:00
|
|
|
virtual const MipsSubtarget *getSubtargetImpl() const
|
2007-06-06 07:42:06 +00:00
|
|
|
{ return &Subtarget; }
|
2010-11-15 00:06:54 +00:00
|
|
|
virtual const TargetData *getTargetData() const
|
2007-06-06 07:42:06 +00:00
|
|
|
{ return &DataLayout;}
|
2011-07-21 16:28:51 +00:00
|
|
|
virtual MipsJITInfo *getJITInfo()
|
|
|
|
{ return &JITInfo; }
|
|
|
|
|
2007-06-06 07:42:06 +00:00
|
|
|
|
2008-05-14 01:58:56 +00:00
|
|
|
virtual const MipsRegisterInfo *getRegisterInfo() const {
|
2007-06-06 07:42:06 +00:00
|
|
|
return &InstrInfo.getRegisterInfo();
|
|
|
|
}
|
|
|
|
|
2010-11-15 00:06:54 +00:00
|
|
|
virtual const MipsTargetLowering *getTargetLowering() const {
|
2010-04-17 15:26:15 +00:00
|
|
|
return &TLInfo;
|
2007-06-06 07:42:06 +00:00
|
|
|
}
|
|
|
|
|
2010-05-11 17:31:57 +00:00
|
|
|
virtual const MipsSelectionDAGInfo* getSelectionDAGInfo() const {
|
|
|
|
return &TSInfo;
|
|
|
|
}
|
|
|
|
|
2007-06-06 07:42:06 +00:00
|
|
|
// Pass Pipeline Configuration
|
2011-11-16 08:38:26 +00:00
|
|
|
virtual bool addInstSelector(PassManagerBase &PM);
|
|
|
|
virtual bool addPreEmitPass(PassManagerBase &PM);
|
|
|
|
virtual bool addPreRegAlloc(PassManagerBase &PM);
|
|
|
|
virtual bool addPostRegAlloc(PassManagerBase &);
|
2011-07-21 16:28:51 +00:00
|
|
|
virtual bool addCodeEmitter(PassManagerBase &PM,
|
|
|
|
JITCodeEmitter &JCE);
|
|
|
|
|
2007-06-06 07:42:06 +00:00
|
|
|
};
|
2008-06-04 01:45:25 +00:00
|
|
|
|
2011-09-21 03:00:58 +00:00
|
|
|
/// MipsebTargetMachine - Mips32 big endian target machine.
|
|
|
|
///
|
|
|
|
class MipsebTargetMachine : public MipsTargetMachine {
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2011-09-21 03:00:58 +00:00
|
|
|
public:
|
|
|
|
MipsebTargetMachine(const Target &T, StringRef TT,
|
2011-12-02 22:16:29 +00:00
|
|
|
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
2011-11-16 08:38:26 +00:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2011-09-21 03:00:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// MipselTargetMachine - Mips32 little endian target machine.
|
2008-06-04 01:45:25 +00:00
|
|
|
///
|
|
|
|
class MipselTargetMachine : public MipsTargetMachine {
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2008-06-04 01:45:25 +00:00
|
|
|
public:
|
2011-07-19 06:37:02 +00:00
|
|
|
MipselTargetMachine(const Target &T, StringRef TT,
|
2011-12-02 22:16:29 +00:00
|
|
|
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
2011-11-16 08:38:26 +00:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2008-06-04 01:45:25 +00:00
|
|
|
};
|
|
|
|
|
2011-09-22 17:26:58 +00:00
|
|
|
/// Mips64ebTargetMachine - Mips64 big endian target machine.
|
2011-09-21 03:00:58 +00:00
|
|
|
///
|
|
|
|
class Mips64ebTargetMachine : public MipsTargetMachine {
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2011-09-21 03:00:58 +00:00
|
|
|
public:
|
|
|
|
Mips64ebTargetMachine(const Target &T, StringRef TT,
|
|
|
|
StringRef CPU, StringRef FS,
|
2011-12-02 22:16:29 +00:00
|
|
|
const TargetOptions &Options,
|
2011-11-16 08:38:26 +00:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2011-09-21 03:00:58 +00:00
|
|
|
};
|
|
|
|
|
2011-09-22 17:26:58 +00:00
|
|
|
/// Mips64elTargetMachine - Mips64 little endian target machine.
|
2011-09-21 03:00:58 +00:00
|
|
|
///
|
|
|
|
class Mips64elTargetMachine : public MipsTargetMachine {
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2011-09-21 03:00:58 +00:00
|
|
|
public:
|
|
|
|
Mips64elTargetMachine(const Target &T, StringRef TT,
|
|
|
|
StringRef CPU, StringRef FS,
|
2011-12-02 22:16:29 +00:00
|
|
|
const TargetOptions &Options,
|
2011-11-16 08:38:26 +00:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL);
|
2011-09-21 03:00:58 +00:00
|
|
|
};
|
2007-06-06 07:42:06 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|