2012-02-17 01:23:50 +00:00
|
|
|
//===-- MipsTargetMachine.h - Define TargetMachine for Mips -----*- 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
|
|
|
|
|
2012-03-17 18:46:09 +00:00
|
|
|
#include "MipsFrameLowering.h"
|
2007-06-06 07:42:06 +00:00
|
|
|
#include "MipsISelLowering.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "MipsInstrInfo.h"
|
2012-03-17 18:46:09 +00:00
|
|
|
#include "MipsJITInfo.h"
|
2010-05-11 17:31:57 +00:00
|
|
|
#include "MipsSelectionDAGInfo.h"
|
2012-03-17 18:46:09 +00:00
|
|
|
#include "MipsSubtarget.h"
|
2012-12-12 20:09:58 +00:00
|
|
|
#include "llvm/ADT/OwningPtr.h"
|
2012-10-08 16:38:25 +00:00
|
|
|
#include "llvm/DataLayout.h"
|
2011-01-10 12:39:04 +00:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2012-10-18 23:22:48 +00:00
|
|
|
#include "llvm/Target/TargetTransformImpl.h"
|
2007-06-06 07:42:06 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2012-07-31 21:49:49 +00:00
|
|
|
class formatted_raw_ostream;
|
|
|
|
class MipsRegisterInfo;
|
2010-11-15 00:06:54 +00:00
|
|
|
|
2012-07-31 21:39:17 +00:00
|
|
|
class MipsTargetMachine : public LLVMTargetMachine {
|
|
|
|
MipsSubtarget Subtarget;
|
2012-10-08 16:38:25 +00:00
|
|
|
const DataLayout DL; // Calculates type size & alignment
|
2012-12-12 20:09:58 +00:00
|
|
|
OwningPtr<const MipsInstrInfo> InstrInfo;
|
|
|
|
OwningPtr<const MipsFrameLowering> FrameLowering;
|
2012-07-31 21:39:17 +00:00
|
|
|
MipsTargetLowering TLInfo;
|
|
|
|
MipsSelectionDAGInfo TSInfo;
|
|
|
|
MipsJITInfo JITInfo;
|
2012-10-18 23:22:48 +00:00
|
|
|
ScalarTargetTransformImpl STTI;
|
2012-10-24 17:22:41 +00:00
|
|
|
VectorTargetTransformImpl VTTI;
|
2011-07-21 16:28:51 +00:00
|
|
|
|
2012-07-31 21:39:17 +00:00
|
|
|
public:
|
|
|
|
MipsTargetMachine(const Target &T, StringRef TT,
|
|
|
|
StringRef CPU, StringRef FS, const TargetOptions &Options,
|
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL,
|
|
|
|
bool isLittle);
|
|
|
|
|
2012-12-12 20:09:58 +00:00
|
|
|
virtual ~MipsTargetMachine() {}
|
2012-07-31 21:49:49 +00:00
|
|
|
|
2012-07-31 21:39:17 +00:00
|
|
|
virtual const MipsInstrInfo *getInstrInfo() const
|
2012-12-12 20:09:58 +00:00
|
|
|
{ return InstrInfo.get(); }
|
2012-07-31 21:39:17 +00:00
|
|
|
virtual const TargetFrameLowering *getFrameLowering() const
|
2012-12-12 20:09:58 +00:00
|
|
|
{ return FrameLowering.get(); }
|
2012-07-31 21:39:17 +00:00
|
|
|
virtual const MipsSubtarget *getSubtargetImpl() const
|
|
|
|
{ return &Subtarget; }
|
2012-10-08 16:38:25 +00:00
|
|
|
virtual const DataLayout *getDataLayout() const
|
|
|
|
{ return &DL;}
|
2012-07-31 21:39:17 +00:00
|
|
|
virtual MipsJITInfo *getJITInfo()
|
|
|
|
{ return &JITInfo; }
|
|
|
|
|
|
|
|
virtual const MipsRegisterInfo *getRegisterInfo() const {
|
2012-07-31 21:49:49 +00:00
|
|
|
return &InstrInfo->getRegisterInfo();
|
2012-07-31 21:39:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual const MipsTargetLowering *getTargetLowering() const {
|
|
|
|
return &TLInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const MipsSelectionDAGInfo* getSelectionDAGInfo() const {
|
|
|
|
return &TSInfo;
|
|
|
|
}
|
|
|
|
|
2012-10-18 23:22:48 +00:00
|
|
|
virtual const ScalarTargetTransformInfo *getScalarTargetTransformInfo()const {
|
|
|
|
return &STTI;
|
|
|
|
}
|
|
|
|
virtual const VectorTargetTransformInfo *getVectorTargetTransformInfo()const {
|
|
|
|
return &VTTI;
|
|
|
|
}
|
2012-08-17 21:28:04 +00:00
|
|
|
|
2012-07-31 21:39:17 +00:00
|
|
|
// Pass Pipeline Configuration
|
|
|
|
virtual TargetPassConfig *createPassConfig(PassManagerBase &PM);
|
|
|
|
virtual bool addCodeEmitter(PassManagerBase &PM, JITCodeEmitter &JCE);
|
|
|
|
};
|
2008-06-04 01:45:25 +00:00
|
|
|
|
2012-07-31 21:39:17 +00:00
|
|
|
/// MipsebTargetMachine - Mips32/64 big endian target machine.
|
2011-09-21 03:00:58 +00:00
|
|
|
///
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2012-07-31 21:39:17 +00:00
|
|
|
/// MipselTargetMachine - Mips32/64 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
|
|
|
};
|
|
|
|
|
2007-06-06 07:42:06 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|