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
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_MIPS_MIPSTARGETMACHINE_H
|
|
|
|
#define LLVM_LIB_TARGET_MIPS_MIPSTARGETMACHINE_H
|
2007-06-06 07:42:06 +00:00
|
|
|
|
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"
|
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 {
|
2014-09-26 01:44:08 +00:00
|
|
|
bool isLittle;
|
2014-07-18 23:41:32 +00:00
|
|
|
MipsSubtarget *Subtarget;
|
|
|
|
MipsSubtarget DefaultSubtarget;
|
|
|
|
MipsSubtarget NoMips16Subtarget;
|
|
|
|
MipsSubtarget Mips16Subtarget;
|
2011-07-21 16:28:51 +00:00
|
|
|
|
2014-09-26 01:44:08 +00:00
|
|
|
mutable StringMap<std::unique_ptr<MipsSubtarget>> SubtargetMap;
|
|
|
|
|
2012-07-31 21:39:17 +00:00
|
|
|
public:
|
2014-07-03 00:10:24 +00:00
|
|
|
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-07-31 21:39:17 +00:00
|
|
|
|
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-07-18 23:41:32 +00:00
|
|
|
const MipsSubtarget *getSubtargetImpl() const override {
|
|
|
|
if (Subtarget)
|
|
|
|
return Subtarget;
|
|
|
|
return &DefaultSubtarget;
|
|
|
|
}
|
2014-08-04 21:25:23 +00:00
|
|
|
|
2014-09-26 01:44:08 +00:00
|
|
|
const MipsSubtarget *getSubtargetImpl(const Function &F) const override;
|
|
|
|
|
2014-07-18 23:41:32 +00:00
|
|
|
/// \brief Reset the subtarget for the Mips target.
|
|
|
|
void resetSubtarget(MachineFunction *MF);
|
2012-07-31 21:39:17 +00:00
|
|
|
|
|
|
|
// Pass Pipeline Configuration
|
2014-04-29 07:58:02 +00:00
|
|
|
TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
|
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
|