2012-02-17 08:55:11 +00:00
|
|
|
//===-- MipsTargetMachine.cpp - Define TargetMachine for Mips -------------===//
|
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
|
|
|
//
|
|
|
|
// Implements the info about Mips target spec.
|
|
|
|
//
|
2011-04-15 21:51:11 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 07:42:06 +00:00
|
|
|
|
|
|
|
#include "MipsTargetMachine.h"
|
2012-03-17 18:46:09 +00:00
|
|
|
#include "Mips.h"
|
2012-08-02 18:21:47 +00:00
|
|
|
#include "MipsFrameLowering.h"
|
|
|
|
#include "MipsInstrInfo.h"
|
2013-04-09 19:46:01 +00:00
|
|
|
#include "MipsModuleISelDAGToDAG.h"
|
|
|
|
#include "MipsSEFrameLowering.h"
|
|
|
|
#include "MipsSEInstrInfo.h"
|
|
|
|
#include "MipsSEISelLowering.h"
|
|
|
|
#include "MipsSEISelDAGToDAG.h"
|
|
|
|
#include "Mips16FrameLowering.h"
|
|
|
|
#include "Mips16InstrInfo.h"
|
|
|
|
#include "Mips16ISelDAGToDAG.h"
|
|
|
|
#include "Mips16ISelLowering.h"
|
|
|
|
#include "llvm/Analysis/TargetTransformInfo.h"
|
2012-02-03 05:12:41 +00:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/PassManager.h"
|
2013-04-09 19:46:01 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2011-08-24 18:08:43 +00:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2007-06-06 07:42:06 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2013-04-09 19:46:01 +00:00
|
|
|
|
|
|
|
|
2009-07-25 06:49:55 +00:00
|
|
|
extern "C" void LLVMInitializeMipsTarget() {
|
|
|
|
// Register the target.
|
2011-09-21 03:00:58 +00:00
|
|
|
RegisterTargetMachine<MipsebTargetMachine> X(TheMipsTarget);
|
2009-08-03 02:22:28 +00:00
|
|
|
RegisterTargetMachine<MipselTargetMachine> Y(TheMipselTarget);
|
2012-07-31 21:39:17 +00:00
|
|
|
RegisterTargetMachine<MipsebTargetMachine> A(TheMips64Target);
|
|
|
|
RegisterTargetMachine<MipselTargetMachine> B(TheMips64elTarget);
|
2007-06-06 07:42:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DataLayout --> Big-endian, 32-bit pointer/ABI/alignment
|
2007-08-28 05:13:42 +00:00
|
|
|
// The stack is always 8 byte aligned
|
|
|
|
// On function prologue, the stack is created by decrementing
|
|
|
|
// its pointer. Once decremented, all references are done with positive
|
2010-11-15 00:06:54 +00:00
|
|
|
// offset from the stack/frame pointer, using StackGrowsUp enables
|
2008-08-06 06:14:43 +00:00
|
|
|
// an easier handling.
|
Several changes to Mips backend, experimental fp support being the most
important.
- Cleanup in the Subtarget info with addition of new features, not all support
yet, but they allow the future inclusion of features easier. Among new features,
we have : Arch family info (mips1, mips2, ...), ABI info (o32, eabi), 64-bit
integer
and float registers, allegrex vector FPU (VFPU), single float only support.
- TargetMachine now detects allegrex core.
- Added allegrex (Mips32r2) sext_inreg instructions.
- *Added Float Point Instructions*, handling single float only, and
aliased accesses for 32-bit FPUs.
- Some cleanup in FP instruction formats and FP register classes.
- Calling conventions improved to support mips 32-bit EABI.
- Added Asm Printer support for fp cond codes.
- Added support for sret copy to a return register.
- EABI support added into LowerCALL and FORMAL_ARGS.
- MipsFunctionInfo now keeps a virtual register per function to track the
sret on function entry until function ret.
- MipsInstrInfo FP support into methods (isMoveInstr, isLoadFromStackSlot, ...),
FP cond codes mapping and initial FP Branch Analysis.
- Two new Mips SDNode to handle fp branch and compare instructions : FPBrcond,
FPCmp
- MipsTargetLowering : handling different FP classes, Allegrex support, sret
return copy, no homing location within EABI, non 32-bit stack objects
arguments, and asm constraint for float.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53146 91177308-0d34-0410-b5e6-96231b3b80d8
2008-07-05 19:05:21 +00:00
|
|
|
// Using CodeModel::Large enables different CALL behavior.
|
2007-06-06 07:42:06 +00:00
|
|
|
MipsTargetMachine::
|
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-12-02 22:16:29 +00:00
|
|
|
bool isLittle)
|
|
|
|
: LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL),
|
2013-04-09 19:46:01 +00:00
|
|
|
Subtarget(TT, CPU, FS, isLittle, RM, this),
|
2012-10-08 16:38:25 +00:00
|
|
|
DL(isLittle ?
|
2011-12-02 22:16:29 +00:00
|
|
|
(Subtarget.isABI_N64() ?
|
2013-01-05 02:00:56 +00:00
|
|
|
"e-p:64:64:64-i8:8:32-i16:16:32-i64:64:64-f128:128:128-"
|
|
|
|
"n32:64-S128" :
|
|
|
|
"e-p:32:32:32-i8:8:32-i16:16:32-i64:64:64-n32-S64") :
|
2011-12-02 22:16:29 +00:00
|
|
|
(Subtarget.isABI_N64() ?
|
2013-01-05 02:00:56 +00:00
|
|
|
"E-p:64:64:64-i8:8:32-i16:16:32-i64:64:64-f128:128:128-"
|
|
|
|
"n32:64-S128" :
|
|
|
|
"E-p:32:32:32-i8:8:32-i16:16:32-i64:64:64-n32-S64")),
|
2012-08-02 18:21:47 +00:00
|
|
|
InstrInfo(MipsInstrInfo::create(*this)),
|
|
|
|
FrameLowering(MipsFrameLowering::create(*this, Subtarget)),
|
2013-04-09 19:46:01 +00:00
|
|
|
TLInfo(MipsTargetLowering::create(*this)),
|
|
|
|
TSInfo(*this), JITInfo() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MipsTargetMachine::setHelperClassesMips16() {
|
|
|
|
InstrInfoSE.swap(InstrInfo);
|
|
|
|
FrameLoweringSE.swap(FrameLowering);
|
|
|
|
TLInfoSE.swap(TLInfo);
|
|
|
|
if (!InstrInfo16) {
|
|
|
|
InstrInfo.reset(MipsInstrInfo::create(*this));
|
|
|
|
FrameLowering.reset(MipsFrameLowering::create(*this, Subtarget));
|
|
|
|
TLInfo.reset(MipsTargetLowering::create(*this));
|
|
|
|
} else {
|
|
|
|
InstrInfo16.swap(InstrInfo);
|
|
|
|
FrameLowering16.swap(FrameLowering);
|
|
|
|
TLInfo16.swap(TLInfo);
|
|
|
|
}
|
|
|
|
assert(TLInfo && "null target lowering 16");
|
|
|
|
assert(InstrInfo && "null instr info 16");
|
|
|
|
assert(FrameLowering && "null frame lowering 16");
|
2007-10-09 03:01:19 +00:00
|
|
|
}
|
2007-06-06 07:42:06 +00:00
|
|
|
|
2013-04-09 19:46:01 +00:00
|
|
|
void MipsTargetMachine::setHelperClassesMipsSE() {
|
|
|
|
InstrInfo16.swap(InstrInfo);
|
|
|
|
FrameLowering16.swap(FrameLowering);
|
|
|
|
TLInfo16.swap(TLInfo);
|
|
|
|
if (!InstrInfoSE) {
|
|
|
|
InstrInfo.reset(MipsInstrInfo::create(*this));
|
|
|
|
FrameLowering.reset(MipsFrameLowering::create(*this, Subtarget));
|
|
|
|
TLInfo.reset(MipsTargetLowering::create(*this));
|
|
|
|
} else {
|
|
|
|
InstrInfoSE.swap(InstrInfo);
|
|
|
|
FrameLoweringSE.swap(FrameLowering);
|
|
|
|
TLInfoSE.swap(TLInfo);
|
|
|
|
}
|
|
|
|
assert(TLInfo && "null target lowering in SE");
|
|
|
|
assert(InstrInfo && "null instr info SE");
|
|
|
|
assert(FrameLowering && "null frame lowering SE");
|
|
|
|
}
|
2011-12-20 02:50:00 +00:00
|
|
|
void MipsebTargetMachine::anchor() { }
|
|
|
|
|
2011-09-21 03:00:58 +00:00
|
|
|
MipsebTargetMachine::
|
|
|
|
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,
|
2011-12-02 22:16:29 +00:00
|
|
|
CodeGenOpt::Level OL)
|
|
|
|
: MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
|
2011-09-21 03:00:58 +00:00
|
|
|
|
2011-12-20 02:50:00 +00:00
|
|
|
void MipselTargetMachine::anchor() { }
|
|
|
|
|
2008-06-04 01:45:25 +00:00
|
|
|
MipselTargetMachine::
|
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,
|
2011-12-02 22:16:29 +00:00
|
|
|
CodeGenOpt::Level OL)
|
|
|
|
: MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
|
2008-06-04 01:45:25 +00:00
|
|
|
|
2012-02-03 05:12:41 +00:00
|
|
|
namespace {
|
|
|
|
/// Mips Code Generator Pass Configuration Options.
|
|
|
|
class MipsPassConfig : public TargetPassConfig {
|
|
|
|
public:
|
2012-02-04 02:56:59 +00:00
|
|
|
MipsPassConfig(MipsTargetMachine *TM, PassManagerBase &PM)
|
|
|
|
: TargetPassConfig(TM, PM) {}
|
2012-02-03 05:12:41 +00:00
|
|
|
|
|
|
|
MipsTargetMachine &getMipsTargetMachine() const {
|
|
|
|
return getTM<MipsTargetMachine>();
|
|
|
|
}
|
|
|
|
|
|
|
|
const MipsSubtarget &getMipsSubtarget() const {
|
|
|
|
return *getMipsTargetMachine().getSubtargetImpl();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool addInstSelector();
|
|
|
|
virtual bool addPreEmitPass();
|
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
|
2012-02-04 02:56:59 +00:00
|
|
|
TargetPassConfig *MipsTargetMachine::createPassConfig(PassManagerBase &PM) {
|
|
|
|
return new MipsPassConfig(this, PM);
|
2012-02-03 05:12:41 +00:00
|
|
|
}
|
|
|
|
|
2010-11-15 00:06:54 +00:00
|
|
|
// Install an instruction selector pass using
|
2007-06-06 07:42:06 +00:00
|
|
|
// the ISelDag to gen Mips code.
|
2012-05-01 08:27:43 +00:00
|
|
|
bool MipsPassConfig::addInstSelector() {
|
2013-04-09 19:46:01 +00:00
|
|
|
if (getMipsSubtarget().allowMixed16_32()) {
|
|
|
|
addPass(createMipsModuleISelDag(getMipsTargetMachine()));
|
|
|
|
addPass(createMips16ISelDag(getMipsTargetMachine()));
|
|
|
|
addPass(createMipsSEISelDag(getMipsTargetMachine()));
|
|
|
|
} else {
|
|
|
|
addPass(createMipsISelDag(getMipsTargetMachine()));
|
|
|
|
}
|
2007-06-06 07:42:06 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-04-09 19:46:01 +00:00
|
|
|
void MipsTargetMachine::addAnalysisPasses(PassManagerBase &PM) {
|
|
|
|
if (Subtarget.allowMixed16_32()) {
|
|
|
|
DEBUG(errs() << "No ");
|
|
|
|
//FIXME: The Basic Target Transform Info
|
|
|
|
// pass needs to become a function pass instead of
|
|
|
|
// being an immutable pass and then this method as it exists now
|
|
|
|
// would be unnecessary.
|
|
|
|
PM.add(createNoTargetTransformInfoPass());
|
|
|
|
} else
|
|
|
|
LLVMTargetMachine::addAnalysisPasses(PM);
|
|
|
|
DEBUG(errs() << "Target Transform Info Pass Added\n");
|
|
|
|
}
|
|
|
|
|
2010-11-15 00:06:54 +00:00
|
|
|
// Implemented by targets that want to run passes immediately before
|
|
|
|
// machine code is emitted. return true if -print-machineinstrs should
|
2007-06-06 07:42:06 +00:00
|
|
|
// print out the code after the passes.
|
2012-05-01 08:27:43 +00:00
|
|
|
bool MipsPassConfig::addPreEmitPass() {
|
2012-06-14 01:19:35 +00:00
|
|
|
MipsTargetMachine &TM = getMipsTargetMachine();
|
2013-04-09 19:46:01 +00:00
|
|
|
const MipsSubtarget &Subtarget = TM.getSubtarget<MipsSubtarget>();
|
2012-07-02 19:48:31 +00:00
|
|
|
addPass(createMipsDelaySlotFillerPass(TM));
|
2012-06-14 01:19:35 +00:00
|
|
|
|
2013-04-09 19:46:01 +00:00
|
|
|
if (Subtarget.hasStandardEncoding() ||
|
|
|
|
Subtarget.allowMixed16_32())
|
2012-07-02 19:48:31 +00:00
|
|
|
addPass(createMipsLongBranchPass(TM));
|
2013-04-09 19:46:01 +00:00
|
|
|
if (Subtarget.inMips16Mode() ||
|
|
|
|
Subtarget.allowMixed16_32())
|
2013-02-27 03:33:58 +00:00
|
|
|
addPass(createMipsConstantIslandPass(TM));
|
2012-06-14 01:19:35 +00:00
|
|
|
|
2007-08-18 01:58:15 +00:00
|
|
|
return true;
|
2007-06-06 07:42:06 +00:00
|
|
|
}
|
2011-04-15 19:52:08 +00:00
|
|
|
|
2011-07-21 16:28:51 +00:00
|
|
|
bool MipsTargetMachine::addCodeEmitter(PassManagerBase &PM,
|
2011-11-16 08:38:26 +00:00
|
|
|
JITCodeEmitter &JCE) {
|
2011-07-21 16:28:51 +00:00
|
|
|
// Machine code emitter pass for Mips.
|
|
|
|
PM.add(createMipsJITCodeEmitterPass(*this, JCE));
|
|
|
|
return false;
|
|
|
|
}
|