2012-02-17 16:55:11 +08:00
|
|
|
//===-- MipsTargetMachine.cpp - Define TargetMachine for Mips -------------===//
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
2011-04-16 05:51:11 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 15:42:06 +08:00
|
|
|
//
|
|
|
|
// Implements the info about Mips target spec.
|
|
|
|
//
|
2011-04-16 05:51:11 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 15:42:06 +08:00
|
|
|
|
|
|
|
#include "MipsTargetMachine.h"
|
2012-03-18 02:46:09 +08:00
|
|
|
#include "Mips.h"
|
2014-01-07 19:48:04 +08:00
|
|
|
#include "Mips16FrameLowering.h"
|
|
|
|
#include "Mips16ISelDAGToDAG.h"
|
|
|
|
#include "Mips16ISelLowering.h"
|
|
|
|
#include "Mips16InstrInfo.h"
|
2012-08-03 02:21:47 +08:00
|
|
|
#include "MipsFrameLowering.h"
|
|
|
|
#include "MipsInstrInfo.h"
|
2013-04-10 03:46:01 +08:00
|
|
|
#include "MipsSEFrameLowering.h"
|
|
|
|
#include "MipsSEISelDAGToDAG.h"
|
2014-01-07 19:48:04 +08:00
|
|
|
#include "MipsSEISelLowering.h"
|
|
|
|
#include "MipsSEInstrInfo.h"
|
2014-11-13 17:26:31 +08:00
|
|
|
#include "MipsTargetObjectFile.h"
|
2013-04-10 03:46:01 +08:00
|
|
|
#include "llvm/Analysis/TargetTransformInfo.h"
|
2012-02-03 13:12:41 +08:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2015-02-13 18:01:29 +08:00
|
|
|
#include "llvm/IR/LegacyPassManager.h"
|
2013-04-10 03:46:01 +08:00
|
|
|
#include "llvm/Support/Debug.h"
|
2011-08-25 02:08:43 +08:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2014-01-07 19:48:04 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2013-08-23 18:27:02 +08:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2015-03-14 16:34:25 +08:00
|
|
|
|
2007-06-06 15:42:06 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 06:55:11 +08:00
|
|
|
#define DEBUG_TYPE "mips"
|
|
|
|
|
2009-07-25 14:49:55 +08:00
|
|
|
extern "C" void LLVMInitializeMipsTarget() {
|
|
|
|
// Register the target.
|
2011-09-21 11:00:58 +08:00
|
|
|
RegisterTargetMachine<MipsebTargetMachine> X(TheMipsTarget);
|
2009-08-03 10:22:28 +08:00
|
|
|
RegisterTargetMachine<MipselTargetMachine> Y(TheMipselTarget);
|
2012-08-01 05:39:17 +08:00
|
|
|
RegisterTargetMachine<MipsebTargetMachine> A(TheMips64Target);
|
|
|
|
RegisterTargetMachine<MipselTargetMachine> B(TheMips64elTarget);
|
2007-06-06 15:42:06 +08:00
|
|
|
}
|
|
|
|
|
2015-06-11 23:34:59 +08:00
|
|
|
static std::string computeDataLayout(const Triple &TT, StringRef CPU,
|
2015-03-12 08:07:24 +08:00
|
|
|
const TargetOptions &Options,
|
|
|
|
bool isLittle) {
|
2015-01-27 03:03:15 +08:00
|
|
|
std::string Ret = "";
|
2015-09-16 00:17:27 +08:00
|
|
|
MipsABIInfo ABI = MipsABIInfo::computeTargetABI(TT, CPU, Options.MCOptions);
|
2015-01-27 03:03:15 +08:00
|
|
|
|
|
|
|
// There are both little and big endian mips.
|
|
|
|
if (isLittle)
|
|
|
|
Ret += "e";
|
|
|
|
else
|
|
|
|
Ret += "E";
|
|
|
|
|
|
|
|
Ret += "-m:m";
|
|
|
|
|
|
|
|
// Pointers are 32 bit on some ABIs.
|
|
|
|
if (!ABI.IsN64())
|
|
|
|
Ret += "-p:32:32";
|
|
|
|
|
2015-07-08 05:31:54 +08:00
|
|
|
// 8 and 16 bit integers only need to have natural alignment, but try to
|
2015-01-27 03:03:15 +08:00
|
|
|
// align them to 32 bits. 64 bit integers have natural alignment.
|
|
|
|
Ret += "-i8:8:32-i16:16:32-i64:64";
|
|
|
|
|
|
|
|
// 32 bit registers are always available and the stack is at least 64 bit
|
|
|
|
// aligned. On N64 64 bit registers are also available and the stack is
|
|
|
|
// 128 bit aligned.
|
|
|
|
if (ABI.IsN64() || ABI.IsN32())
|
|
|
|
Ret += "-n32:64-S128";
|
|
|
|
else
|
|
|
|
Ret += "-n32-S64";
|
|
|
|
|
|
|
|
return Ret;
|
|
|
|
}
|
|
|
|
|
2007-08-28 13:13:42 +08:00
|
|
|
// On function prologue, the stack is created by decrementing
|
|
|
|
// its pointer. Once decremented, all references are done with positive
|
2010-11-15 08:06:54 +08:00
|
|
|
// offset from the stack/frame pointer, using StackGrowsUp enables
|
2008-08-06 14:14:43 +08: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.
llvm-svn: 53146
2008-07-06 03:05:21 +08:00
|
|
|
// Using CodeModel::Large enables different CALL behavior.
|
2015-06-12 03:41:26 +08:00
|
|
|
MipsTargetMachine::MipsTargetMachine(const Target &T, const Triple &TT,
|
2014-07-02 08:54:07 +08:00
|
|
|
StringRef CPU, StringRef FS,
|
|
|
|
const TargetOptions &Options,
|
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL, bool isLittle)
|
2015-06-12 03:41:26 +08:00
|
|
|
: LLVMTargetMachine(T, computeDataLayout(TT, CPU, Options, isLittle), TT,
|
|
|
|
CPU, FS, Options, RM, CM, OL),
|
2015-01-27 01:33:46 +08:00
|
|
|
isLittle(isLittle), TLOF(make_unique<MipsTargetObjectFile>()),
|
2015-09-16 00:17:27 +08:00
|
|
|
ABI(MipsABIInfo::computeTargetABI(TT, CPU, Options.MCOptions)),
|
2015-06-12 03:41:26 +08:00
|
|
|
Subtarget(nullptr), DefaultSubtarget(TT, CPU, FS, isLittle, *this),
|
|
|
|
NoMips16Subtarget(TT, CPU, FS.empty() ? "-mips16" : FS.str() + ",-mips16",
|
2015-01-09 02:18:57 +08:00
|
|
|
isLittle, *this),
|
2015-06-12 03:41:26 +08:00
|
|
|
Mips16Subtarget(TT, CPU, FS.empty() ? "+mips16" : FS.str() + ",+mips16",
|
|
|
|
isLittle, *this) {
|
2014-07-19 07:41:32 +08:00
|
|
|
Subtarget = &DefaultSubtarget;
|
2013-05-13 09:16:13 +08:00
|
|
|
initAsmInfo();
|
2013-04-10 03:46:01 +08:00
|
|
|
}
|
|
|
|
|
2014-11-21 07:37:18 +08:00
|
|
|
MipsTargetMachine::~MipsTargetMachine() {}
|
|
|
|
|
2011-12-20 10:50:00 +08:00
|
|
|
void MipsebTargetMachine::anchor() { }
|
|
|
|
|
2015-06-12 03:41:26 +08:00
|
|
|
MipsebTargetMachine::MipsebTargetMachine(const Target &T, const Triple &TT,
|
|
|
|
StringRef CPU, StringRef FS,
|
|
|
|
const TargetOptions &Options,
|
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL)
|
|
|
|
: MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {}
|
2011-09-21 11:00:58 +08:00
|
|
|
|
2011-12-20 10:50:00 +08:00
|
|
|
void MipselTargetMachine::anchor() { }
|
|
|
|
|
2015-06-12 03:41:26 +08:00
|
|
|
MipselTargetMachine::MipselTargetMachine(const Target &T, const Triple &TT,
|
|
|
|
StringRef CPU, StringRef FS,
|
|
|
|
const TargetOptions &Options,
|
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL)
|
|
|
|
: MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) {}
|
2008-06-04 09:45:25 +08:00
|
|
|
|
2014-09-26 09:44:08 +08:00
|
|
|
const MipsSubtarget *
|
2014-09-26 10:57:05 +08:00
|
|
|
MipsTargetMachine::getSubtargetImpl(const Function &F) const {
|
2015-02-14 10:37:48 +08:00
|
|
|
Attribute CPUAttr = F.getFnAttribute("target-cpu");
|
|
|
|
Attribute FSAttr = F.getFnAttribute("target-features");
|
2014-09-26 09:44:08 +08:00
|
|
|
|
|
|
|
std::string CPU = !CPUAttr.hasAttribute(Attribute::None)
|
|
|
|
? CPUAttr.getValueAsString().str()
|
|
|
|
: TargetCPU;
|
|
|
|
std::string FS = !FSAttr.hasAttribute(Attribute::None)
|
|
|
|
? FSAttr.getValueAsString().str()
|
|
|
|
: TargetFS;
|
|
|
|
bool hasMips16Attr =
|
2015-02-14 10:37:48 +08:00
|
|
|
!F.getFnAttribute("mips16").hasAttribute(Attribute::None);
|
2014-09-26 09:44:08 +08:00
|
|
|
bool hasNoMips16Attr =
|
2015-02-14 10:37:48 +08:00
|
|
|
!F.getFnAttribute("nomips16").hasAttribute(Attribute::None);
|
2014-09-26 09:44:08 +08:00
|
|
|
|
2014-09-30 05:57:54 +08:00
|
|
|
// FIXME: This is related to the code below to reset the target options,
|
|
|
|
// we need to know whether or not the soft float flag is set on the
|
2015-05-07 18:29:52 +08:00
|
|
|
// function, so we can enable it as a subtarget feature.
|
2015-05-12 09:26:05 +08:00
|
|
|
bool softFloat =
|
|
|
|
F.hasFnAttribute("use-soft-float") &&
|
|
|
|
F.getFnAttribute("use-soft-float").getValueAsString() == "true";
|
2014-09-30 05:57:54 +08:00
|
|
|
|
2014-09-26 09:44:08 +08:00
|
|
|
if (hasMips16Attr)
|
|
|
|
FS += FS.empty() ? "+mips16" : ",+mips16";
|
|
|
|
else if (hasNoMips16Attr)
|
|
|
|
FS += FS.empty() ? "-mips16" : ",-mips16";
|
2015-05-07 18:29:52 +08:00
|
|
|
if (softFloat)
|
|
|
|
FS += FS.empty() ? "+soft-float" : ",+soft-float";
|
2014-09-26 09:44:08 +08:00
|
|
|
|
2015-05-07 18:29:52 +08:00
|
|
|
auto &I = SubtargetMap[CPU + FS];
|
2014-09-26 09:44:08 +08:00
|
|
|
if (!I) {
|
|
|
|
// This needs to be done before we create a new subtarget since any
|
|
|
|
// creation will depend on the TM and the code generation flags on the
|
|
|
|
// function that reside in TargetOptions.
|
|
|
|
resetTargetOptions(F);
|
2015-06-16 23:44:21 +08:00
|
|
|
I = llvm::make_unique<MipsSubtarget>(TargetTriple, CPU, FS, isLittle,
|
|
|
|
*this);
|
2014-09-26 09:44:08 +08:00
|
|
|
}
|
|
|
|
return I.get();
|
|
|
|
}
|
|
|
|
|
2014-07-19 07:41:32 +08:00
|
|
|
void MipsTargetMachine::resetSubtarget(MachineFunction *MF) {
|
|
|
|
DEBUG(dbgs() << "resetSubtarget\n");
|
2014-09-26 09:44:08 +08:00
|
|
|
|
2014-09-26 10:57:05 +08:00
|
|
|
Subtarget = const_cast<MipsSubtarget *>(getSubtargetImpl(*MF->getFunction()));
|
2014-08-05 10:39:49 +08:00
|
|
|
MF->setSubtarget(Subtarget);
|
2014-07-19 07:41:32 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-02-03 13:12:41 +08:00
|
|
|
namespace {
|
|
|
|
/// Mips Code Generator Pass Configuration Options.
|
|
|
|
class MipsPassConfig : public TargetPassConfig {
|
|
|
|
public:
|
2012-02-04 10:56:59 +08:00
|
|
|
MipsPassConfig(MipsTargetMachine *TM, PassManagerBase &PM)
|
2013-10-08 03:13:53 +08:00
|
|
|
: TargetPassConfig(TM, PM) {
|
|
|
|
// The current implementation of long branch pass requires a scratch
|
|
|
|
// register ($at) to be available before branch instructions. Tail merging
|
|
|
|
// can break this requirement, so disable it when long branch pass is
|
|
|
|
// enabled.
|
|
|
|
EnableTailMerge = !getMipsSubtarget().enableLongBranchPass();
|
|
|
|
}
|
2012-02-03 13:12:41 +08:00
|
|
|
|
|
|
|
MipsTargetMachine &getMipsTargetMachine() const {
|
|
|
|
return getTM<MipsTargetMachine>();
|
|
|
|
}
|
|
|
|
|
|
|
|
const MipsSubtarget &getMipsSubtarget() const {
|
|
|
|
return *getMipsTargetMachine().getSubtargetImpl();
|
|
|
|
}
|
|
|
|
|
2014-04-29 15:58:02 +08:00
|
|
|
void addIRPasses() override;
|
|
|
|
bool addInstSelector() override;
|
|
|
|
void addMachineSSAOptimization() override;
|
2014-12-12 05:26:47 +08:00
|
|
|
void addPreEmitPass() override;
|
2014-03-11 00:31:25 +08:00
|
|
|
|
2014-12-12 05:26:47 +08:00
|
|
|
void addPreRegAlloc() override;
|
2014-03-11 00:31:25 +08:00
|
|
|
|
2012-02-03 13:12:41 +08:00
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
|
2012-02-04 10:56:59 +08:00
|
|
|
TargetPassConfig *MipsTargetMachine::createPassConfig(PassManagerBase &PM) {
|
|
|
|
return new MipsPassConfig(this, PM);
|
2012-02-03 13:12:41 +08:00
|
|
|
}
|
|
|
|
|
2013-04-11 00:58:04 +08:00
|
|
|
void MipsPassConfig::addIRPasses() {
|
|
|
|
TargetPassConfig::addIRPasses();
|
Erase fence insertion from SelectionDAGBuilder.cpp (NFC)
Summary:
Backends can use setInsertFencesForAtomic to signal to the middle-end that
montonic is the only memory ordering they can accept for
stores/loads/rmws/cmpxchg. The code lowering those accesses with a stronger
ordering to fences + monotonic accesses is currently living in
SelectionDAGBuilder.cpp. In this patch I propose moving this logic out of it
for several reasons:
- There is lots of redundancy to avoid: extremely similar logic already
exists in AtomicExpand.
- The current code in SelectionDAGBuilder does not use any target-hooks, it
does the same transformation for every backend that requires it
- As a result it is plain *unsound*, as it was apparently designed for ARM.
It happens to mostly work for the other targets because they are extremely
conservative, but Power for example had to switch to AtomicExpand to be
able to use lwsync safely (see r218331).
- Because it produces IR-level fences, it cannot be made sound ! This is noted
in the C++11 standard (section 29.3, page 1140):
```
Fences cannot, in general, be used to restore sequential consistency for atomic
operations with weaker ordering semantics.
```
It can also be seen by the following example (called IRIW in the litterature):
```
atomic<int> x = y = 0;
int r1, r2, r3, r4;
Thread 0:
x.store(1);
Thread 1:
y.store(1);
Thread 2:
r1 = x.load();
r2 = y.load();
Thread 3:
r3 = y.load();
r4 = x.load();
```
r1 = r3 = 1 and r2 = r4 = 0 is impossible as long as the accesses are all seq_cst.
But if they are lowered to monotonic accesses, no amount of fences can prevent it..
This patch does three things (I could cut it into parts, but then some of them
would not be tested/testable, please tell me if you would prefer that):
- it provides a default implementation for emitLeadingFence/emitTrailingFence in
terms of IR-level fences, that mimic the original logic of SelectionDAGBuilder.
As we saw above, this is unsound, but the best that can be done without knowing
the targets well (and there is a comment warning about this risk).
- it then switches Mips/Sparc/XCore to use AtomicExpand, relying on this default
implementation (that exactly replicates the logic of SelectionDAGBuilder, so no
functional change)
- it finally erase this logic from SelectionDAGBuilder as it is dead-code.
Ideally, each target would define its own override for emitLeading/TrailingFence
using target-specific fences, but I do not know the Sparc/Mips/XCore memory model
well enough to do this, and they appear to be dealing fine with the ARM-inspired
default expansion for now (probably because they are overly conservative, as
Power was). If anyone wants to compile fences more agressively on these
platforms, the long comment should make it clear why he should first override
emitLeading/TrailingFence.
Test Plan: make check-all, no functional change
Reviewers: jfb, t.p.northover
Subscribers: aemerson, llvm-commits
Differential Revision: http://reviews.llvm.org/D5474
llvm-svn: 219957
2014-10-17 04:34:57 +08:00
|
|
|
addPass(createAtomicExpandPass(&getMipsTargetMachine()));
|
2013-04-11 00:58:04 +08:00
|
|
|
if (getMipsSubtarget().os16())
|
2015-03-14 16:34:25 +08:00
|
|
|
addPass(createMipsOs16Pass(getMipsTargetMachine()));
|
Checkin in of first of several patches to finish implementation of
mips16/mips32 floating point interoperability.
This patch fixes returns from mips16 functions so that if the function
was in fact called by a mips32 hard float routine, then values
that would have been returned in floating point registers are so returned.
Mips16 mode has no floating point instructions so there is no way to
load values into floating point registers.
This is needed when returning float, double, single complex, double complex
in the Mips ABI.
Helper functions in libc for mips16 are available to do this.
For efficiency purposes, these helper functions have a different calling
convention from normal Mips calls.
Registers v0,v1,a0,a1 are used to pass parameters instead of
a0,a1,a2,a3.
This is because v0,v1,a0,a1 are the natural registers used to return
floating point values in soft float. These values can then be moved
to the appropriate floating point registers with no extra cost.
The only register that is modified is ra in this call.
The helper functions make sure that the return values are in the floating
point registers that they would be in if soft float was not in effect
(which it is for mips16, though the soft float is implemented using a mips32
library that uses hard float).
llvm-svn: 181641
2013-05-11 06:25:39 +08:00
|
|
|
if (getMipsSubtarget().inMips16HardFloat())
|
2015-03-14 17:02:23 +08:00
|
|
|
addPass(createMips16HardFloatPass(getMipsTargetMachine()));
|
2013-04-11 00:58:04 +08:00
|
|
|
}
|
2010-11-15 08:06:54 +08:00
|
|
|
// Install an instruction selector pass using
|
2007-06-06 15:42:06 +08:00
|
|
|
// the ISelDag to gen Mips code.
|
2012-05-01 16:27:43 +08:00
|
|
|
bool MipsPassConfig::addInstSelector() {
|
2015-03-14 17:20:52 +08:00
|
|
|
addPass(createMipsModuleISelDagPass(getMipsTargetMachine()));
|
2014-07-19 04:29:02 +08:00
|
|
|
addPass(createMips16ISelDag(getMipsTargetMachine()));
|
|
|
|
addPass(createMipsSEISelDag(getMipsTargetMachine()));
|
2007-06-06 15:42:06 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-11-28 07:38:42 +08:00
|
|
|
void MipsPassConfig::addMachineSSAOptimization() {
|
|
|
|
addPass(createMipsOptimizePICCallPass(getMipsTargetMachine()));
|
|
|
|
TargetPassConfig::addMachineSSAOptimization();
|
|
|
|
}
|
|
|
|
|
2014-12-12 05:26:47 +08:00
|
|
|
void MipsPassConfig::addPreRegAlloc() {
|
|
|
|
if (getOptLevel() == CodeGenOpt::None)
|
2014-03-11 00:31:25 +08:00
|
|
|
addPass(createMipsOptimizePICCallPass(getMipsTargetMachine()));
|
|
|
|
}
|
|
|
|
|
2015-02-01 21:20:00 +08:00
|
|
|
TargetIRAnalysis MipsTargetMachine::getTargetIRAnalysis() {
|
2015-09-17 07:38:13 +08:00
|
|
|
return TargetIRAnalysis([this](const Function &F) {
|
2015-02-01 21:20:00 +08:00
|
|
|
if (Subtarget->allowMixed16_32()) {
|
|
|
|
DEBUG(errs() << "No Target Transform Info Pass Added\n");
|
|
|
|
// FIXME: This is no longer necessary as the TTI returned is per-function.
|
2015-07-09 10:08:42 +08:00
|
|
|
return TargetTransformInfo(F.getParent()->getDataLayout());
|
2015-02-01 21:20:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG(errs() << "Target Transform Info Pass Added\n");
|
2015-02-01 22:22:17 +08:00
|
|
|
return TargetTransformInfo(BasicTTIImpl(this, F));
|
2015-02-01 21:20:00 +08:00
|
|
|
});
|
2013-04-10 03:46:01 +08:00
|
|
|
}
|
|
|
|
|
2010-11-15 08:06:54 +08:00
|
|
|
// Implemented by targets that want to run passes immediately before
|
|
|
|
// machine code is emitted. return true if -print-machineinstrs should
|
2007-06-06 15:42:06 +08:00
|
|
|
// print out the code after the passes.
|
2014-12-12 05:26:47 +08:00
|
|
|
void MipsPassConfig::addPreEmitPass() {
|
2012-06-14 09:19:35 +08:00
|
|
|
MipsTargetMachine &TM = getMipsTargetMachine();
|
2014-12-12 07:18:03 +08:00
|
|
|
addPass(createMipsDelaySlotFillerPass(TM));
|
|
|
|
addPass(createMipsLongBranchPass(TM));
|
2014-07-19 04:29:02 +08:00
|
|
|
addPass(createMipsConstantIslandPass(TM));
|
2007-06-06 15:42:06 +08:00
|
|
|
}
|