2011-04-15 21:51:11 +00:00
|
|
|
//===-- MipsISelDAGToDAG.cpp - A dag to dag inst selector 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
|
|
|
//
|
|
|
|
// This file defines an instruction selector for the MIPS target.
|
|
|
|
//
|
2011-04-15 21:51:11 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 07:42:06 +00:00
|
|
|
|
|
|
|
#define DEBUG_TYPE "mips-isel"
|
|
|
|
#include "Mips.h"
|
2012-01-25 03:01:35 +00:00
|
|
|
#include "MipsAnalyzeImmediate.h"
|
2007-11-05 03:02:32 +00:00
|
|
|
#include "MipsMachineFunction.h"
|
2007-06-06 07:42:06 +00:00
|
|
|
#include "MipsRegisterInfo.h"
|
|
|
|
#include "MipsSubtarget.h"
|
|
|
|
#include "MipsTargetMachine.h"
|
|
|
|
#include "llvm/GlobalValue.h"
|
|
|
|
#include "llvm/Instructions.h"
|
|
|
|
#include "llvm/Intrinsics.h"
|
|
|
|
#include "llvm/Support/CFG.h"
|
|
|
|
#include "llvm/Type.h"
|
|
|
|
#include "llvm/CodeGen/MachineConstantPool.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
2007-12-31 04:13:23 +00:00
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2007-06-06 07:42:06 +00:00
|
|
|
#include "llvm/CodeGen/SelectionDAGISel.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
2009-07-08 20:53:28 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2007-06-06 07:42:06 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2011-04-15 21:51:11 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 07:42:06 +00:00
|
|
|
// Instruction Selector Implementation
|
2011-04-15 21:51:11 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 07:42:06 +00:00
|
|
|
|
2011-04-15 21:51:11 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 07:42:06 +00:00
|
|
|
// MipsDAGToDAGISel - MIPS specific code to select MIPS machine
|
|
|
|
// instructions for SelectionDAG operations.
|
2011-04-15 21:51:11 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-06-06 07:42:06 +00:00
|
|
|
namespace {
|
|
|
|
|
2009-10-25 06:33:48 +00:00
|
|
|
class MipsDAGToDAGISel : public SelectionDAGISel {
|
2007-06-06 07:42:06 +00:00
|
|
|
|
|
|
|
/// TM - Keep a reference to MipsTargetMachine.
|
|
|
|
MipsTargetMachine &TM;
|
|
|
|
|
|
|
|
/// Subtarget - Keep a pointer to the MipsSubtarget around so that we can
|
|
|
|
/// make the right decision when generating code for different targets.
|
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
|
|
|
const MipsSubtarget &Subtarget;
|
2011-03-04 17:51:39 +00:00
|
|
|
|
2007-06-06 07:42:06 +00:00
|
|
|
public:
|
2008-07-07 18:00:37 +00:00
|
|
|
explicit MipsDAGToDAGISel(MipsTargetMachine &tm) :
|
2009-01-15 19:20:50 +00:00
|
|
|
SelectionDAGISel(tm),
|
2008-10-03 16:55:19 +00:00
|
|
|
TM(tm), Subtarget(tm.getSubtarget<MipsSubtarget>()) {}
|
2011-03-04 17:51:39 +00:00
|
|
|
|
2007-06-06 07:42:06 +00:00
|
|
|
// Pass Name
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "MIPS DAG->DAG Pattern Instruction Selection";
|
2011-03-04 17:51:39 +00:00
|
|
|
}
|
2007-06-06 07:42:06 +00:00
|
|
|
|
2011-03-04 17:51:39 +00:00
|
|
|
|
|
|
|
private:
|
2007-06-06 07:42:06 +00:00
|
|
|
// Include the pieces autogenerated from the target description.
|
|
|
|
#include "MipsGenDAGISel.inc"
|
|
|
|
|
2009-06-03 20:30:14 +00:00
|
|
|
/// getTargetMachine - Return a reference to the TargetMachine, casted
|
|
|
|
/// to the target-specific type.
|
|
|
|
const MipsTargetMachine &getTargetMachine() {
|
|
|
|
return static_cast<const MipsTargetMachine &>(TM);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getInstrInfo - Return a reference to the TargetInstrInfo, casted
|
|
|
|
/// to the target-specific type.
|
|
|
|
const MipsInstrInfo *getInstrInfo() {
|
|
|
|
return getTargetMachine().getInstrInfo();
|
|
|
|
}
|
|
|
|
|
|
|
|
SDNode *getGlobalBaseReg();
|
2011-12-20 23:10:57 +00:00
|
|
|
|
|
|
|
std::pair<SDNode*, SDNode*> SelectMULT(SDNode *N, unsigned Opc, DebugLoc dl,
|
|
|
|
EVT Ty, bool HasLo, bool HasHi);
|
|
|
|
|
2010-01-05 01:24:18 +00:00
|
|
|
SDNode *Select(SDNode *N);
|
2007-06-06 07:42:06 +00:00
|
|
|
|
|
|
|
// Complex Pattern.
|
2010-09-21 20:31:19 +00:00
|
|
|
bool SelectAddr(SDValue N, SDValue &Base, SDValue &Offset);
|
2007-06-06 07:42:06 +00:00
|
|
|
|
2011-12-07 20:15:01 +00:00
|
|
|
// getImm - Return a target constant with the specified value.
|
2011-12-07 20:10:24 +00:00
|
|
|
inline SDValue getImm(const SDNode *Node, unsigned Imm) {
|
|
|
|
return CurDAG->getTargetConstant(Imm, Node->getValueType(0));
|
2007-06-06 07:42:06 +00:00
|
|
|
}
|
2011-06-21 00:40:49 +00:00
|
|
|
|
|
|
|
virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
|
|
|
|
char ConstraintCode,
|
|
|
|
std::vector<SDValue> &OutOps);
|
2007-06-06 07:42:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-12 19:49:57 +00:00
|
|
|
/// getGlobalBaseReg - Output the instructions required to put the
|
|
|
|
/// GOT address into a register.
|
2009-06-03 20:30:14 +00:00
|
|
|
SDNode *MipsDAGToDAGISel::getGlobalBaseReg() {
|
|
|
|
unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
|
|
|
|
return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
|
2007-11-12 19:49:57 +00:00
|
|
|
}
|
|
|
|
|
2007-06-06 07:42:06 +00:00
|
|
|
/// ComplexPattern used on MipsInstrInfo
|
|
|
|
/// Used on Mips Load/Store instructions
|
|
|
|
bool MipsDAGToDAGISel::
|
2011-07-07 18:57:00 +00:00
|
|
|
SelectAddr(SDValue Addr, SDValue &Base, SDValue &Offset) {
|
2011-10-11 00:44:20 +00:00
|
|
|
EVT ValTy = Addr.getValueType();
|
|
|
|
unsigned GPReg = ValTy == MVT::i32 ? Mips::GP : Mips::GP_64;
|
|
|
|
|
2007-06-06 07:42:06 +00:00
|
|
|
// if Address is FI, get the TargetFrameIndex.
|
|
|
|
if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
|
2011-10-11 00:44:20 +00:00
|
|
|
Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
|
|
|
|
Offset = CurDAG->getTargetConstant(0, ValTy);
|
2007-06-06 07:42:06 +00:00
|
|
|
return true;
|
|
|
|
}
|
2011-03-04 17:51:39 +00:00
|
|
|
|
2007-11-05 03:02:32 +00:00
|
|
|
// on PIC code Load GA
|
2011-12-09 01:53:17 +00:00
|
|
|
if (Addr.getOpcode() == MipsISD::Wrapper) {
|
2011-12-08 20:34:32 +00:00
|
|
|
Base = CurDAG->getRegister(GPReg, ValTy);
|
|
|
|
Offset = Addr.getOperand(0);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TM.getRelocationModel() != Reloc::PIC_) {
|
2008-09-16 21:48:12 +00:00
|
|
|
if ((Addr.getOpcode() == ISD::TargetExternalSymbol ||
|
2007-11-05 03:02:32 +00:00
|
|
|
Addr.getOpcode() == ISD::TargetGlobalAddress))
|
|
|
|
return false;
|
2011-03-04 17:51:39 +00:00
|
|
|
}
|
|
|
|
|
2011-06-02 01:03:14 +00:00
|
|
|
// Addresses of the form FI+const or FI|const
|
|
|
|
if (CurDAG->isBaseWithConstantOffset(Addr)) {
|
|
|
|
ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1));
|
|
|
|
if (isInt<16>(CN->getSExtValue())) {
|
|
|
|
|
|
|
|
// If the first operand is a FI, get the TargetFI Node
|
|
|
|
if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>
|
|
|
|
(Addr.getOperand(0)))
|
2011-10-11 00:44:20 +00:00
|
|
|
Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy);
|
2011-06-02 01:03:14 +00:00
|
|
|
else
|
|
|
|
Base = Addr.getOperand(0);
|
|
|
|
|
2011-10-11 00:44:20 +00:00
|
|
|
Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy);
|
2011-06-02 01:03:14 +00:00
|
|
|
return true;
|
2007-06-06 07:42:06 +00:00
|
|
|
}
|
2011-06-02 01:03:14 +00:00
|
|
|
}
|
2009-11-16 04:33:42 +00:00
|
|
|
|
2011-06-02 01:03:14 +00:00
|
|
|
// Operand is a result from an ADD.
|
|
|
|
if (Addr.getOpcode() == ISD::ADD) {
|
2009-11-16 04:33:42 +00:00
|
|
|
// When loading from constant pools, load the lower address part in
|
2009-11-25 12:17:58 +00:00
|
|
|
// the instruction itself. Example, instead of:
|
2009-11-16 04:33:42 +00:00
|
|
|
// lui $2, %hi($CPI1_0)
|
|
|
|
// addiu $2, $2, %lo($CPI1_0)
|
|
|
|
// lwc1 $f0, 0($2)
|
|
|
|
// Generate:
|
|
|
|
// lui $2, %hi($CPI1_0)
|
|
|
|
// lwc1 $f0, %lo($CPI1_0)($2)
|
Remove the restriction on the first operand of the add node in SelectAddr.
This change reduces the number of instructions generated.
For example,
(load (add (sub $n0, $n1), (MipsLo got(s))))
results in the following sequence of instructions:
1. sub $n2, $n0, $n1
2. lw got(s)($n2)
Previously, three instructions were needed.
1. sub $n2, $n0, $n1
2. addiu $n3, $n2, got(s)
3. lw 0($n3)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146888 91177308-0d34-0410-b5e6-96231b3b80d8
2011-12-19 19:28:37 +00:00
|
|
|
if (Addr.getOperand(1).getOpcode() == MipsISD::Lo) {
|
2011-03-04 17:51:39 +00:00
|
|
|
SDValue LoVal = Addr.getOperand(1);
|
2011-06-24 17:55:19 +00:00
|
|
|
if (isa<ConstantPoolSDNode>(LoVal.getOperand(0)) ||
|
|
|
|
isa<GlobalAddressSDNode>(LoVal.getOperand(0))) {
|
2009-11-25 12:17:58 +00:00
|
|
|
Base = Addr.getOperand(0);
|
|
|
|
Offset = LoVal.getOperand(0);
|
|
|
|
return true;
|
2009-11-16 04:33:42 +00:00
|
|
|
}
|
|
|
|
}
|
2007-06-06 07:42:06 +00:00
|
|
|
}
|
|
|
|
|
2007-07-11 23:24:41 +00:00
|
|
|
Base = Addr;
|
2011-10-11 00:44:20 +00:00
|
|
|
Offset = CurDAG->getTargetConstant(0, ValTy);
|
2007-06-06 07:42:06 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-12-20 23:10:57 +00:00
|
|
|
/// Select multiply instructions.
|
|
|
|
std::pair<SDNode*, SDNode*>
|
|
|
|
MipsDAGToDAGISel::SelectMULT(SDNode *N, unsigned Opc, DebugLoc dl, EVT Ty,
|
|
|
|
bool HasLo, bool HasHi) {
|
2012-01-06 20:02:49 +00:00
|
|
|
SDNode *Lo = 0, *Hi = 0;
|
2011-12-20 23:10:57 +00:00
|
|
|
SDNode *Mul = CurDAG->getMachineNode(Opc, dl, MVT::Glue, N->getOperand(0),
|
|
|
|
N->getOperand(1));
|
|
|
|
SDValue InFlag = SDValue(Mul, 0);
|
|
|
|
|
|
|
|
if (HasLo) {
|
|
|
|
Lo = CurDAG->getMachineNode(Ty == MVT::i32 ? Mips::MFLO : Mips::MFLO64, dl,
|
|
|
|
Ty, MVT::Glue, InFlag);
|
|
|
|
InFlag = SDValue(Lo, 1);
|
|
|
|
}
|
|
|
|
if (HasHi)
|
|
|
|
Hi = CurDAG->getMachineNode(Ty == MVT::i32 ? Mips::MFHI : Mips::MFHI64, dl,
|
|
|
|
Ty, InFlag);
|
|
|
|
|
|
|
|
return std::make_pair(Lo, Hi);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-06 07:42:06 +00:00
|
|
|
/// Select instructions not customized! Used for
|
|
|
|
/// expanded, promoted and normal instructions
|
2010-01-05 01:24:18 +00:00
|
|
|
SDNode* MipsDAGToDAGISel::Select(SDNode *Node) {
|
2007-06-06 07:42:06 +00:00
|
|
|
unsigned Opcode = Node->getOpcode();
|
2009-02-04 23:02:30 +00:00
|
|
|
DebugLoc dl = Node->getDebugLoc();
|
2007-06-06 07:42:06 +00:00
|
|
|
|
|
|
|
// Dump information about the Node being selected
|
2010-03-02 06:34:30 +00:00
|
|
|
DEBUG(errs() << "Selecting: "; Node->dump(CurDAG); errs() << "\n");
|
2007-06-06 07:42:06 +00:00
|
|
|
|
|
|
|
// If we have a custom node, we already have selected!
|
2008-07-17 19:10:17 +00:00
|
|
|
if (Node->isMachineOpcode()) {
|
2010-03-02 06:34:30 +00:00
|
|
|
DEBUG(errs() << "== "; Node->dump(CurDAG); errs() << "\n");
|
2007-06-06 07:42:06 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
///
|
2011-03-04 17:51:39 +00:00
|
|
|
// Instruction Selection not handled by the auto-generated
|
2007-09-24 20:15:11 +00:00
|
|
|
// tablegen selection should be handled here.
|
2011-03-04 17:51:39 +00:00
|
|
|
///
|
2011-12-20 23:10:57 +00:00
|
|
|
EVT NodeTy = Node->getValueType(0);
|
|
|
|
unsigned MultOpc;
|
|
|
|
|
2007-06-06 07:42:06 +00:00
|
|
|
switch(Opcode) {
|
2011-12-20 22:58:01 +00:00
|
|
|
default: break;
|
|
|
|
|
|
|
|
case ISD::SUBE:
|
|
|
|
case ISD::ADDE: {
|
|
|
|
SDValue InFlag = Node->getOperand(2), CmpLHS;
|
|
|
|
unsigned Opc = InFlag.getOpcode(); (void)Opc;
|
|
|
|
assert(((Opc == ISD::ADDC || Opc == ISD::ADDE) ||
|
|
|
|
(Opc == ISD::SUBC || Opc == ISD::SUBE)) &&
|
|
|
|
"(ADD|SUB)E flag operand must come from (ADD|SUB)C/E insn");
|
|
|
|
|
|
|
|
unsigned MOp;
|
|
|
|
if (Opcode == ISD::ADDE) {
|
|
|
|
CmpLHS = InFlag.getValue(0);
|
|
|
|
MOp = Mips::ADDu;
|
|
|
|
} else {
|
|
|
|
CmpLHS = InFlag.getOperand(0);
|
|
|
|
MOp = Mips::SUBu;
|
|
|
|
}
|
2008-06-06 06:37:31 +00:00
|
|
|
|
2011-12-20 22:58:01 +00:00
|
|
|
SDValue Ops[] = { CmpLHS, InFlag.getOperand(1) };
|
2008-06-06 00:58:26 +00:00
|
|
|
|
2011-12-20 22:58:01 +00:00
|
|
|
SDValue LHS = Node->getOperand(0);
|
|
|
|
SDValue RHS = Node->getOperand(1);
|
2008-06-06 00:58:26 +00:00
|
|
|
|
2011-12-20 22:58:01 +00:00
|
|
|
EVT VT = LHS.getValueType();
|
|
|
|
SDNode *Carry = CurDAG->getMachineNode(Mips::SLTu, dl, VT, Ops, 2);
|
|
|
|
SDNode *AddCarry = CurDAG->getMachineNode(Mips::ADDu, dl, VT,
|
|
|
|
SDValue(Carry,0), RHS);
|
2008-06-06 00:58:26 +00:00
|
|
|
|
2011-12-20 22:58:01 +00:00
|
|
|
return CurDAG->SelectNodeTo(Node, MOp, VT, MVT::Glue,
|
|
|
|
LHS, SDValue(AddCarry,0));
|
|
|
|
}
|
2008-06-06 00:58:26 +00:00
|
|
|
|
2011-12-20 22:58:01 +00:00
|
|
|
/// Mul with two results
|
|
|
|
case ISD::SMUL_LOHI:
|
|
|
|
case ISD::UMUL_LOHI: {
|
2011-12-20 23:10:57 +00:00
|
|
|
if (NodeTy == MVT::i32)
|
|
|
|
MultOpc = (Opcode == ISD::UMUL_LOHI ? Mips::MULTu : Mips::MULT);
|
|
|
|
else
|
|
|
|
MultOpc = (Opcode == ISD::UMUL_LOHI ? Mips::DMULTu : Mips::DMULT);
|
2008-06-06 00:58:26 +00:00
|
|
|
|
2011-12-20 23:10:57 +00:00
|
|
|
std::pair<SDNode*, SDNode*> LoHi = SelectMULT(Node, MultOpc, dl, NodeTy,
|
|
|
|
true, true);
|
2008-06-06 06:37:31 +00:00
|
|
|
|
2011-12-20 22:58:01 +00:00
|
|
|
if (!SDValue(Node, 0).use_empty())
|
2011-12-20 23:10:57 +00:00
|
|
|
ReplaceUses(SDValue(Node, 0), SDValue(LoHi.first, 0));
|
2008-06-06 06:37:31 +00:00
|
|
|
|
2011-12-20 22:58:01 +00:00
|
|
|
if (!SDValue(Node, 1).use_empty())
|
2011-12-20 23:10:57 +00:00
|
|
|
ReplaceUses(SDValue(Node, 1), SDValue(LoHi.second, 0));
|
2008-06-06 06:37:31 +00:00
|
|
|
|
2011-12-20 22:58:01 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2008-06-06 00:58:26 +00:00
|
|
|
|
2011-12-20 22:58:01 +00:00
|
|
|
/// Special Muls
|
2011-12-20 23:10:57 +00:00
|
|
|
case ISD::MUL: {
|
2011-12-20 22:58:01 +00:00
|
|
|
// Mips32 has a 32-bit three operand mul instruction.
|
2011-12-20 23:10:57 +00:00
|
|
|
if (Subtarget.hasMips32() && NodeTy == MVT::i32)
|
2011-12-20 22:58:01 +00:00
|
|
|
break;
|
2011-12-20 23:10:57 +00:00
|
|
|
return SelectMULT(Node, NodeTy == MVT::i32 ? Mips::MULT : Mips::DMULT,
|
|
|
|
dl, NodeTy, true, false).first;
|
|
|
|
}
|
2011-12-20 22:58:01 +00:00
|
|
|
case ISD::MULHS:
|
|
|
|
case ISD::MULHU: {
|
2011-12-20 23:10:57 +00:00
|
|
|
if (NodeTy == MVT::i32)
|
|
|
|
MultOpc = (Opcode == ISD::MULHU ? Mips::MULTu : Mips::MULT);
|
2011-12-20 22:58:01 +00:00
|
|
|
else
|
2011-12-20 23:10:57 +00:00
|
|
|
MultOpc = (Opcode == ISD::MULHU ? Mips::DMULTu : Mips::DMULT);
|
|
|
|
|
|
|
|
return SelectMULT(Node, MultOpc, dl, NodeTy, false, true).second;
|
2011-12-20 22:58:01 +00:00
|
|
|
}
|
2007-06-06 07:42:06 +00:00
|
|
|
|
2011-12-20 22:58:01 +00:00
|
|
|
// Get target GOT address.
|
|
|
|
case ISD::GLOBAL_OFFSET_TABLE:
|
|
|
|
return getGlobalBaseReg();
|
2011-12-20 22:25:50 +00:00
|
|
|
|
2011-12-20 22:58:01 +00:00
|
|
|
case ISD::ConstantFP: {
|
|
|
|
ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(Node);
|
|
|
|
if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) {
|
|
|
|
if (Subtarget.hasMips64()) {
|
2011-03-04 17:51:39 +00:00
|
|
|
SDValue Zero = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
|
2011-12-20 22:58:01 +00:00
|
|
|
Mips::ZERO_64, MVT::i64);
|
|
|
|
return CurDAG->getMachineNode(Mips::DMTC1, dl, MVT::f64, Zero);
|
2009-11-13 18:49:59 +00:00
|
|
|
}
|
2011-12-20 22:58:01 +00:00
|
|
|
|
|
|
|
SDValue Zero = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
|
|
|
|
Mips::ZERO, MVT::i32);
|
|
|
|
return CurDAG->getMachineNode(Mips::BuildPairF64, dl, MVT::f64, Zero,
|
|
|
|
Zero);
|
2009-11-13 18:49:59 +00:00
|
|
|
}
|
2011-12-20 22:58:01 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-11-13 18:49:59 +00:00
|
|
|
|
2012-01-25 03:01:35 +00:00
|
|
|
case ISD::Constant: {
|
|
|
|
const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Node);
|
|
|
|
unsigned Size = CN->getValueSizeInBits(0);
|
|
|
|
|
|
|
|
if (Size == 32)
|
|
|
|
break;
|
|
|
|
|
|
|
|
MipsAnalyzeImmediate AnalyzeImm;
|
|
|
|
int64_t Imm = CN->getSExtValue();
|
|
|
|
|
|
|
|
const MipsAnalyzeImmediate::InstSeq &Seq =
|
|
|
|
AnalyzeImm.Analyze(Imm, Size, false);
|
|
|
|
|
|
|
|
MipsAnalyzeImmediate::InstSeq::const_iterator Inst = Seq.begin();
|
|
|
|
DebugLoc DL = CN->getDebugLoc();
|
|
|
|
SDNode *RegOpnd;
|
|
|
|
SDValue ImmOpnd = CurDAG->getTargetConstant(SignExtend64<16>(Inst->ImmOpnd),
|
|
|
|
MVT::i64);
|
|
|
|
|
|
|
|
// The first instruction can be a LUi which is different from other
|
|
|
|
// instructions (ADDiu, ORI and SLL) in that it does not have a register
|
|
|
|
// operand.
|
|
|
|
if (Inst->Opc == Mips::LUi64)
|
|
|
|
RegOpnd = CurDAG->getMachineNode(Inst->Opc, DL, MVT::i64, ImmOpnd);
|
|
|
|
else
|
|
|
|
RegOpnd =
|
|
|
|
CurDAG->getMachineNode(Inst->Opc, DL, MVT::i64,
|
|
|
|
CurDAG->getRegister(Mips::ZERO_64, MVT::i64),
|
|
|
|
ImmOpnd);
|
|
|
|
|
|
|
|
// The remaining instructions in the sequence are handled here.
|
|
|
|
for (++Inst; Inst != Seq.end(); ++Inst) {
|
|
|
|
ImmOpnd = CurDAG->getTargetConstant(SignExtend64<16>(Inst->ImmOpnd),
|
|
|
|
MVT::i64);
|
|
|
|
RegOpnd = CurDAG->getMachineNode(Inst->Opc, DL, MVT::i64,
|
|
|
|
SDValue(RegOpnd, 0), ImmOpnd);
|
|
|
|
}
|
|
|
|
|
|
|
|
return RegOpnd;
|
|
|
|
}
|
|
|
|
|
2011-12-20 22:58:01 +00:00
|
|
|
case MipsISD::ThreadPointer: {
|
|
|
|
EVT PtrVT = TLI.getPointerTy();
|
|
|
|
unsigned RdhwrOpc, SrcReg, DestReg;
|
|
|
|
|
|
|
|
if (PtrVT == MVT::i32) {
|
|
|
|
RdhwrOpc = Mips::RDHWR;
|
|
|
|
SrcReg = Mips::HWR29;
|
|
|
|
DestReg = Mips::V1;
|
|
|
|
} else {
|
|
|
|
RdhwrOpc = Mips::RDHWR64;
|
|
|
|
SrcReg = Mips::HWR29_64;
|
|
|
|
DestReg = Mips::V1_64;
|
2011-05-31 02:53:58 +00:00
|
|
|
}
|
2011-12-20 22:58:01 +00:00
|
|
|
|
|
|
|
SDNode *Rdhwr =
|
|
|
|
CurDAG->getMachineNode(RdhwrOpc, Node->getDebugLoc(),
|
|
|
|
Node->getValueType(0),
|
|
|
|
CurDAG->getRegister(SrcReg, PtrVT));
|
|
|
|
SDValue Chain = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, DestReg,
|
|
|
|
SDValue(Rdhwr, 0));
|
|
|
|
SDValue ResNode = CurDAG->getCopyFromReg(Chain, dl, DestReg, PtrVT);
|
|
|
|
ReplaceUses(SDValue(Node, 0), ResNode);
|
|
|
|
return ResNode.getNode();
|
|
|
|
}
|
2007-06-06 07:42:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Select the default instruction
|
2010-01-05 01:24:18 +00:00
|
|
|
SDNode *ResNode = SelectCode(Node);
|
2007-06-06 07:42:06 +00:00
|
|
|
|
2010-03-02 06:34:30 +00:00
|
|
|
DEBUG(errs() << "=> ");
|
2010-01-05 01:24:18 +00:00
|
|
|
if (ResNode == NULL || ResNode == Node)
|
|
|
|
DEBUG(Node->dump(CurDAG));
|
2007-06-06 07:42:06 +00:00
|
|
|
else
|
|
|
|
DEBUG(ResNode->dump(CurDAG));
|
2009-08-23 06:49:22 +00:00
|
|
|
DEBUG(errs() << "\n");
|
2007-06-06 07:42:06 +00:00
|
|
|
return ResNode;
|
|
|
|
}
|
|
|
|
|
2011-06-21 00:40:49 +00:00
|
|
|
bool MipsDAGToDAGISel::
|
|
|
|
SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
|
|
|
|
std::vector<SDValue> &OutOps) {
|
|
|
|
assert(ConstraintCode == 'm' && "unexpected asm memory constraint");
|
|
|
|
OutOps.push_back(Op);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-03-04 17:51:39 +00:00
|
|
|
/// createMipsISelDag - This pass converts a legalized DAG into a
|
2007-06-06 07:42:06 +00:00
|
|
|
/// MIPS-specific DAG, ready for instruction scheduling.
|
|
|
|
FunctionPass *llvm::createMipsISelDag(MipsTargetMachine &TM) {
|
|
|
|
return new MipsDAGToDAGISel(TM);
|
|
|
|
}
|