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"
|
2013-04-09 19:46:01 +00:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
|
|
|
#include "llvm/CodeGen/SelectionDAGISel.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/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"
|
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
|
2014-04-21 09:34:48 +00:00
|
|
|
std::unique_ptr<const MipsInstrInfo> InstrInfo;
|
|
|
|
std::unique_ptr<const MipsFrameLowering> FrameLowering;
|
|
|
|
std::unique_ptr<const MipsTargetLowering> TLInfo;
|
|
|
|
std::unique_ptr<const MipsInstrInfo> InstrInfo16;
|
|
|
|
std::unique_ptr<const MipsFrameLowering> FrameLowering16;
|
|
|
|
std::unique_ptr<const MipsTargetLowering> TLInfo16;
|
|
|
|
std::unique_ptr<const MipsInstrInfo> InstrInfoSE;
|
|
|
|
std::unique_ptr<const MipsFrameLowering> FrameLoweringSE;
|
|
|
|
std::unique_ptr<const MipsTargetLowering> TLInfoSE;
|
2012-07-31 21:39:17 +00:00
|
|
|
MipsSelectionDAGInfo TSInfo;
|
2013-07-12 23:33:22 +00:00
|
|
|
const InstrItineraryData &InstrItins;
|
2012-07-31 21:39:17 +00:00
|
|
|
MipsJITInfo JITInfo;
|
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
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
void addAnalysisPasses(PassManagerBase &PM) override;
|
2013-04-09 19:46:01 +00:00
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
const MipsInstrInfo *getInstrInfo() const override
|
2012-12-12 20:09:58 +00:00
|
|
|
{ return InstrInfo.get(); }
|
2014-04-29 07:58:02 +00:00
|
|
|
const TargetFrameLowering *getFrameLowering() const override
|
2012-12-12 20:09:58 +00:00
|
|
|
{ return FrameLowering.get(); }
|
2014-04-29 07:58:02 +00:00
|
|
|
const MipsSubtarget *getSubtargetImpl() const override
|
2012-07-31 21:39:17 +00:00
|
|
|
{ return &Subtarget; }
|
2014-04-29 07:58:02 +00:00
|
|
|
const DataLayout *getDataLayout() const override
|
2012-10-08 16:38:25 +00:00
|
|
|
{ return &DL;}
|
2013-07-12 23:33:22 +00:00
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
const InstrItineraryData *getInstrItineraryData() const override {
|
2014-04-28 04:05:08 +00:00
|
|
|
return Subtarget.inMips16Mode() ? nullptr : &InstrItins;
|
2013-07-12 23:33:22 +00:00
|
|
|
}
|
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
MipsJITInfo *getJITInfo() override { return &JITInfo; }
|
2012-07-31 21:39:17 +00:00
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
const MipsRegisterInfo *getRegisterInfo() const override {
|
2012-07-31 21:49:49 +00:00
|
|
|
return &InstrInfo->getRegisterInfo();
|
2012-07-31 21:39:17 +00:00
|
|
|
}
|
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
const MipsTargetLowering *getTargetLowering() const override {
|
2013-03-13 00:54:29 +00:00
|
|
|
return TLInfo.get();
|
2012-07-31 21:39:17 +00:00
|
|
|
}
|
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
const MipsSelectionDAGInfo* getSelectionDAGInfo() const override {
|
2012-07-31 21:39:17 +00:00
|
|
|
return &TSInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pass Pipeline Configuration
|
2014-04-29 07:58:02 +00:00
|
|
|
TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
|
|
|
|
bool addCodeEmitter(PassManagerBase &PM, JITCodeEmitter &JCE) override;
|
2013-04-09 19:46:01 +00:00
|
|
|
|
|
|
|
// Set helper classes
|
|
|
|
void setHelperClassesMips16();
|
|
|
|
|
|
|
|
void setHelperClassesMipsSE();
|
|
|
|
|
|
|
|
|
2012-07-31 21:39:17 +00:00
|
|
|
};
|
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
|