2007-06-06 07:42:06 +00:00
|
|
|
//===-- MipsISelDAGToDAG.cpp - A dag to dag inst selector for Mips --------===//
|
|
|
|
//
|
|
|
|
// 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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines an instruction selector for the MIPS target.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "mips-isel"
|
|
|
|
#include "Mips.h"
|
|
|
|
#include "MipsISelLowering.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/Compiler.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include <queue>
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction Selector Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// MipsDAGToDAGISel - MIPS specific code to select MIPS machine
|
|
|
|
// instructions for SelectionDAG operations.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class VISIBILITY_HIDDEN MipsDAGToDAGISel : public SelectionDAGISel {
|
|
|
|
|
|
|
|
/// TM - Keep a reference to MipsTargetMachine.
|
|
|
|
MipsTargetMachine &TM;
|
|
|
|
|
|
|
|
/// MipsLowering - This object fully describes how to lower LLVM code to an
|
|
|
|
/// Mips-specific SelectionDAG.
|
|
|
|
MipsTargetLowering MipsLowering;
|
|
|
|
|
|
|
|
/// 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;
|
2007-06-06 07:42:06 +00:00
|
|
|
|
|
|
|
public:
|
2008-07-07 18:00:37 +00:00
|
|
|
explicit MipsDAGToDAGISel(MipsTargetMachine &tm) :
|
|
|
|
SelectionDAGISel(MipsLowering),
|
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
|
|
|
TM(tm), MipsLowering(*TM.getTargetLowering()),
|
|
|
|
Subtarget(tm.getSubtarget<MipsSubtarget>()) {}
|
2007-06-06 07:42:06 +00:00
|
|
|
|
2008-08-23 02:25:05 +00:00
|
|
|
virtual void InstructionSelect();
|
2007-06-06 07:42:06 +00:00
|
|
|
|
|
|
|
// Pass Name
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "MIPS DAG->DAG Pattern Instruction Selection";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Include the pieces autogenerated from the target description.
|
|
|
|
#include "MipsGenDAGISel.inc"
|
|
|
|
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue getGlobalBaseReg();
|
|
|
|
SDNode *Select(SDValue N);
|
2007-06-06 07:42:06 +00:00
|
|
|
|
|
|
|
// Complex Pattern.
|
2008-07-27 21:46:04 +00:00
|
|
|
bool SelectAddr(SDValue Op, SDValue N,
|
|
|
|
SDValue &Base, SDValue &Offset);
|
2007-06-06 07:42:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
// getI32Imm - Return a target constant with the specified
|
|
|
|
// value, of type i32.
|
2008-07-27 21:46:04 +00:00
|
|
|
inline SDValue getI32Imm(unsigned Imm) {
|
2007-06-06 07:42:06 +00:00
|
|
|
return CurDAG->getTargetConstant(Imm, MVT::i32);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
unsigned Indent;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-06-30 20:45:06 +00:00
|
|
|
/// InstructionSelect - This callback is invoked by
|
2007-06-06 07:42:06 +00:00
|
|
|
/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
|
|
|
|
void MipsDAGToDAGISel::
|
2008-08-23 02:25:05 +00:00
|
|
|
InstructionSelect()
|
2007-06-06 07:42:06 +00:00
|
|
|
{
|
|
|
|
DEBUG(BB->dump());
|
|
|
|
// Codegen the basic block.
|
|
|
|
#ifndef NDEBUG
|
|
|
|
DOUT << "===== Instruction selection begins:\n";
|
|
|
|
Indent = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Select target instructions for the DAG.
|
2008-08-21 16:36:34 +00:00
|
|
|
SelectRoot();
|
2007-06-06 07:42:06 +00:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
DOUT << "===== Instruction selection ends:\n";
|
|
|
|
#endif
|
|
|
|
|
2008-08-23 02:25:05 +00:00
|
|
|
CurDAG->RemoveDeadNodes();
|
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.
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue MipsDAGToDAGISel::getGlobalBaseReg() {
|
2007-11-12 19:49:57 +00:00
|
|
|
MachineFunction* MF = BB->getParent();
|
|
|
|
unsigned GP = 0;
|
2007-12-31 04:13:23 +00:00
|
|
|
for(MachineRegisterInfo::livein_iterator ii = MF->getRegInfo().livein_begin(),
|
|
|
|
ee = MF->getRegInfo().livein_end(); ii != ee; ++ii)
|
2007-11-12 19:49:57 +00:00
|
|
|
if (ii->first == Mips::GP) {
|
|
|
|
GP = ii->second;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
assert(GP && "GOT PTR not in liveins");
|
|
|
|
return CurDAG->getCopyFromReg(CurDAG->getEntryNode(),
|
|
|
|
GP, MVT::i32);
|
|
|
|
}
|
|
|
|
|
2007-06-06 07:42:06 +00:00
|
|
|
/// ComplexPattern used on MipsInstrInfo
|
|
|
|
/// Used on Mips Load/Store instructions
|
|
|
|
bool MipsDAGToDAGISel::
|
2008-07-27 21:46:04 +00:00
|
|
|
SelectAddr(SDValue Op, SDValue Addr, SDValue &Offset, SDValue &Base)
|
2007-06-06 07:42:06 +00:00
|
|
|
{
|
|
|
|
// if Address is FI, get the TargetFrameIndex.
|
|
|
|
if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
|
|
|
|
Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
|
|
|
|
Offset = CurDAG->getTargetConstant(0, MVT::i32);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-11-05 03:02:32 +00:00
|
|
|
// on PIC code Load GA
|
|
|
|
if (TM.getRelocationModel() == Reloc::PIC_) {
|
2007-11-12 19:49:57 +00:00
|
|
|
if ((Addr.getOpcode() == ISD::TargetGlobalAddress) ||
|
|
|
|
(Addr.getOpcode() == ISD::TargetJumpTable)){
|
2007-11-05 03:02:32 +00:00
|
|
|
Base = CurDAG->getRegister(Mips::GP, MVT::i32);
|
|
|
|
Offset = Addr;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
2008-09-16 21:12:30 +00:00
|
|
|
if ((Addr.getOpcode() == ISD::TargetSymbol ||
|
2007-11-05 03:02:32 +00:00
|
|
|
Addr.getOpcode() == ISD::TargetGlobalAddress))
|
|
|
|
return false;
|
|
|
|
}
|
2007-06-06 07:42:06 +00:00
|
|
|
|
2007-08-18 02:16:30 +00:00
|
|
|
// Operand is a result from an ADD.
|
2007-11-05 03:02:32 +00:00
|
|
|
if (Addr.getOpcode() == ISD::ADD) {
|
|
|
|
if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) {
|
|
|
|
if (Predicate_immSExt16(CN)) {
|
|
|
|
|
2007-06-06 07:42:06 +00:00
|
|
|
// If the first operand is a FI, get the TargetFI Node
|
|
|
|
if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>
|
|
|
|
(Addr.getOperand(0))) {
|
|
|
|
Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32);
|
|
|
|
} else {
|
|
|
|
Base = Addr.getOperand(0);
|
|
|
|
}
|
|
|
|
|
2008-09-12 16:56:44 +00:00
|
|
|
Offset = CurDAG->getTargetConstant(CN->getZExtValue(), MVT::i32);
|
2007-06-06 07:42:06 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-11 23:24:41 +00:00
|
|
|
Base = Addr;
|
2007-06-06 07:42:06 +00:00
|
|
|
Offset = CurDAG->getTargetConstant(0, MVT::i32);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Select instructions not customized! Used for
|
|
|
|
/// expanded, promoted and normal instructions
|
|
|
|
SDNode* MipsDAGToDAGISel::
|
2008-07-27 21:46:04 +00:00
|
|
|
Select(SDValue N)
|
2007-06-06 07:42:06 +00:00
|
|
|
{
|
2008-08-28 21:40:38 +00:00
|
|
|
SDNode *Node = N.getNode();
|
2007-06-06 07:42:06 +00:00
|
|
|
unsigned Opcode = Node->getOpcode();
|
|
|
|
|
|
|
|
// Dump information about the Node being selected
|
|
|
|
#ifndef NDEBUG
|
|
|
|
DOUT << std::string(Indent, ' ') << "Selecting: ";
|
|
|
|
DEBUG(Node->dump(CurDAG));
|
|
|
|
DOUT << "\n";
|
|
|
|
Indent += 2;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// If we have a custom node, we already have selected!
|
2008-07-17 19:10:17 +00:00
|
|
|
if (Node->isMachineOpcode()) {
|
2007-06-06 07:42:06 +00:00
|
|
|
#ifndef NDEBUG
|
|
|
|
DOUT << std::string(Indent-2, ' ') << "== ";
|
|
|
|
DEBUG(Node->dump(CurDAG));
|
|
|
|
DOUT << "\n";
|
|
|
|
Indent -= 2;
|
|
|
|
#endif
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
///
|
2007-09-24 20:15:11 +00:00
|
|
|
// Instruction Selection not handled by the auto-generated
|
|
|
|
// tablegen selection should be handled here.
|
2007-06-06 07:42:06 +00:00
|
|
|
///
|
|
|
|
switch(Opcode) {
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
|
2008-06-06 06:37:31 +00:00
|
|
|
case ISD::SUBE:
|
2008-06-06 00:58:26 +00:00
|
|
|
case ISD::ADDE: {
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue InFlag = Node->getOperand(2), CmpLHS;
|
2008-06-06 06:37:31 +00:00
|
|
|
unsigned Opc = InFlag.getOpcode(), MOp;
|
|
|
|
|
|
|
|
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");
|
|
|
|
|
|
|
|
if (Opcode == ISD::ADDE) {
|
|
|
|
CmpLHS = InFlag.getValue(0);
|
|
|
|
MOp = Mips::ADDu;
|
|
|
|
} else {
|
|
|
|
CmpLHS = InFlag.getOperand(0);
|
|
|
|
MOp = Mips::SUBu;
|
|
|
|
}
|
|
|
|
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue Ops[] = { CmpLHS, InFlag.getOperand(1) };
|
2008-06-06 00:58:26 +00:00
|
|
|
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue LHS = Node->getOperand(0);
|
|
|
|
SDValue RHS = Node->getOperand(1);
|
2008-06-06 00:58:26 +00:00
|
|
|
AddToISelQueue(LHS);
|
|
|
|
AddToISelQueue(RHS);
|
|
|
|
|
2008-06-06 12:08:01 +00:00
|
|
|
MVT VT = LHS.getValueType();
|
2008-06-06 00:58:26 +00:00
|
|
|
SDNode *Carry = CurDAG->getTargetNode(Mips::SLTu, VT, Ops, 2);
|
|
|
|
SDNode *AddCarry = CurDAG->getTargetNode(Mips::ADDu, VT,
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue(Carry,0), RHS);
|
2008-06-06 00:58:26 +00:00
|
|
|
|
2008-08-28 21:40:38 +00:00
|
|
|
return CurDAG->SelectNodeTo(N.getNode(), MOp, VT, MVT::Flag,
|
2008-07-27 21:46:04 +00:00
|
|
|
LHS, SDValue(AddCarry,0));
|
2008-06-06 00:58:26 +00:00
|
|
|
}
|
|
|
|
|
2008-06-06 06:37:31 +00:00
|
|
|
/// Mul/Div with two results
|
|
|
|
case ISD::SDIVREM:
|
|
|
|
case ISD::UDIVREM:
|
|
|
|
case ISD::SMUL_LOHI:
|
|
|
|
case ISD::UMUL_LOHI: {
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue Op1 = Node->getOperand(0);
|
|
|
|
SDValue Op2 = Node->getOperand(1);
|
2008-06-06 06:37:31 +00:00
|
|
|
AddToISelQueue(Op1);
|
|
|
|
AddToISelQueue(Op2);
|
2008-06-06 00:58:26 +00:00
|
|
|
|
2008-06-06 06:37:31 +00:00
|
|
|
unsigned Op;
|
|
|
|
if (Opcode == ISD::UMUL_LOHI || Opcode == ISD::SMUL_LOHI)
|
|
|
|
Op = (Opcode == ISD::UMUL_LOHI ? Mips::MULTu : Mips::MULT);
|
|
|
|
else
|
|
|
|
Op = (Opcode == ISD::UDIVREM ? Mips::DIVu : Mips::DIV);
|
2008-06-06 00:58:26 +00:00
|
|
|
|
2008-06-06 06:37:31 +00:00
|
|
|
SDNode *Node = CurDAG->getTargetNode(Op, MVT::Flag, Op1, Op2);
|
2008-06-06 00:58:26 +00:00
|
|
|
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue InFlag = SDValue(Node, 0);
|
2008-07-09 04:45:36 +00:00
|
|
|
SDNode *Lo = CurDAG->getTargetNode(Mips::MFLO, MVT::i32,
|
|
|
|
MVT::Flag, InFlag);
|
2008-07-27 21:46:04 +00:00
|
|
|
InFlag = SDValue(Lo,1);
|
2008-06-06 06:37:31 +00:00
|
|
|
SDNode *Hi = CurDAG->getTargetNode(Mips::MFHI, MVT::i32, InFlag);
|
|
|
|
|
|
|
|
if (!N.getValue(0).use_empty())
|
2008-07-27 21:46:04 +00:00
|
|
|
ReplaceUses(N.getValue(0), SDValue(Lo,0));
|
2008-06-06 06:37:31 +00:00
|
|
|
|
|
|
|
if (!N.getValue(1).use_empty())
|
2008-07-27 21:46:04 +00:00
|
|
|
ReplaceUses(N.getValue(1), SDValue(Hi,0));
|
2008-06-06 06:37:31 +00:00
|
|
|
|
|
|
|
return NULL;
|
2008-06-06 00:58:26 +00:00
|
|
|
}
|
|
|
|
|
2008-06-06 06:37:31 +00:00
|
|
|
/// Special Muls
|
|
|
|
case ISD::MUL:
|
2007-06-06 07:42:06 +00:00
|
|
|
case ISD::MULHS:
|
|
|
|
case ISD::MULHU: {
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue MulOp1 = Node->getOperand(0);
|
|
|
|
SDValue MulOp2 = Node->getOperand(1);
|
2007-06-06 07:42:06 +00:00
|
|
|
AddToISelQueue(MulOp1);
|
|
|
|
AddToISelQueue(MulOp2);
|
|
|
|
|
|
|
|
unsigned MulOp = (Opcode == ISD::MULHU ? Mips::MULTu : Mips::MULT);
|
|
|
|
SDNode *MulNode = CurDAG->getTargetNode(MulOp, MVT::Flag, MulOp1, MulOp2);
|
|
|
|
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue InFlag = SDValue(MulNode, 0);
|
2008-06-06 06:37:31 +00:00
|
|
|
|
|
|
|
if (MulOp == ISD::MUL)
|
|
|
|
return CurDAG->getTargetNode(Mips::MFLO, MVT::i32, InFlag);
|
|
|
|
else
|
|
|
|
return CurDAG->getTargetNode(Mips::MFHI, MVT::i32, InFlag);
|
2007-06-06 07:42:06 +00:00
|
|
|
}
|
|
|
|
|
2008-06-06 06:37:31 +00:00
|
|
|
/// Div/Rem operations
|
|
|
|
case ISD::SREM:
|
|
|
|
case ISD::UREM:
|
2007-06-06 07:42:06 +00:00
|
|
|
case ISD::SDIV:
|
|
|
|
case ISD::UDIV: {
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue Op1 = Node->getOperand(0);
|
|
|
|
SDValue Op2 = Node->getOperand(1);
|
2008-06-06 06:37:31 +00:00
|
|
|
AddToISelQueue(Op1);
|
|
|
|
AddToISelQueue(Op2);
|
|
|
|
|
|
|
|
unsigned Op, MOp;
|
|
|
|
if (Opcode == ISD::SDIV || Opcode == ISD::UDIV) {
|
|
|
|
Op = (Opcode == ISD::SDIV ? Mips::DIV : Mips::DIVu);
|
|
|
|
MOp = Mips::MFLO;
|
|
|
|
} else {
|
|
|
|
Op = (Opcode == ISD::SREM ? Mips::DIV : Mips::DIVu);
|
|
|
|
MOp = Mips::MFHI;
|
|
|
|
}
|
|
|
|
SDNode *Node = CurDAG->getTargetNode(Op, MVT::Flag, Op1, Op2);
|
2007-06-06 07:42:06 +00:00
|
|
|
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue InFlag = SDValue(Node, 0);
|
2008-06-06 06:37:31 +00:00
|
|
|
return CurDAG->getTargetNode(MOp, MVT::i32, InFlag);
|
2007-06-06 07:42:06 +00:00
|
|
|
}
|
2007-11-05 03:02:32 +00:00
|
|
|
|
2007-11-12 19:49:57 +00:00
|
|
|
// Get target GOT address.
|
|
|
|
case ISD::GLOBAL_OFFSET_TABLE: {
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue Result = getGlobalBaseReg();
|
2007-11-12 19:49:57 +00:00
|
|
|
ReplaceUses(N, Result);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-11-05 03:02:32 +00:00
|
|
|
/// Handle direct and indirect calls when using PIC. On PIC, when
|
|
|
|
/// GOT is smaller than about 64k (small code) the GA target is
|
|
|
|
/// loaded with only one instruction. Otherwise GA's target must
|
|
|
|
/// be loaded with 3 instructions.
|
|
|
|
case MipsISD::JmpLink: {
|
|
|
|
if (TM.getRelocationModel() == Reloc::PIC_) {
|
|
|
|
//bool isCodeLarge = (TM.getCodeModel() == CodeModel::Large);
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue Chain = Node->getOperand(0);
|
|
|
|
SDValue Callee = Node->getOperand(1);
|
2007-11-05 03:02:32 +00:00
|
|
|
AddToISelQueue(Chain);
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue T9Reg = CurDAG->getRegister(Mips::T9, MVT::i32);
|
|
|
|
SDValue InFlag(0, 0);
|
2007-11-05 03:02:32 +00:00
|
|
|
|
|
|
|
if ( (isa<GlobalAddressSDNode>(Callee)) ||
|
2008-09-16 21:12:30 +00:00
|
|
|
(isa<SymbolSDNode>(Callee)) )
|
2007-11-05 03:02:32 +00:00
|
|
|
{
|
|
|
|
/// Direct call for global addresses and external symbols
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue GPReg = CurDAG->getRegister(Mips::GP, MVT::i32);
|
2007-11-05 03:02:32 +00:00
|
|
|
|
|
|
|
// Use load to get GOT target
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue Ops[] = { Callee, GPReg, Chain };
|
|
|
|
SDValue Load = SDValue(CurDAG->getTargetNode(Mips::LW, MVT::i32,
|
2007-11-05 03:02:32 +00:00
|
|
|
MVT::Other, Ops, 3), 0);
|
|
|
|
Chain = Load.getValue(1);
|
|
|
|
AddToISelQueue(Chain);
|
|
|
|
|
|
|
|
// Call target must be on T9
|
|
|
|
Chain = CurDAG->getCopyToReg(Chain, T9Reg, Load, InFlag);
|
|
|
|
} else
|
|
|
|
/// Indirect call
|
|
|
|
Chain = CurDAG->getCopyToReg(Chain, T9Reg, Callee, InFlag);
|
|
|
|
|
|
|
|
AddToISelQueue(Chain);
|
|
|
|
|
|
|
|
// Emit Jump and Link Register
|
|
|
|
SDNode *ResNode = CurDAG->getTargetNode(Mips::JALR, MVT::Other,
|
|
|
|
MVT::Flag, T9Reg, Chain);
|
2008-07-27 21:46:04 +00:00
|
|
|
Chain = SDValue(ResNode, 0);
|
|
|
|
InFlag = SDValue(ResNode, 1);
|
|
|
|
ReplaceUses(SDValue(Node, 0), Chain);
|
|
|
|
ReplaceUses(SDValue(Node, 1), InFlag);
|
2007-11-05 03:02:32 +00:00
|
|
|
return ResNode;
|
|
|
|
}
|
|
|
|
}
|
2007-06-06 07:42:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Select the default instruction
|
|
|
|
SDNode *ResNode = SelectCode(N);
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
DOUT << std::string(Indent-2, ' ') << "=> ";
|
2008-08-28 21:40:38 +00:00
|
|
|
if (ResNode == NULL || ResNode == N.getNode())
|
|
|
|
DEBUG(N.getNode()->dump(CurDAG));
|
2007-06-06 07:42:06 +00:00
|
|
|
else
|
|
|
|
DEBUG(ResNode->dump(CurDAG));
|
|
|
|
DOUT << "\n";
|
|
|
|
Indent -= 2;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ResNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// createMipsISelDag - This pass converts a legalized DAG into a
|
|
|
|
/// MIPS-specific DAG, ready for instruction scheduling.
|
|
|
|
FunctionPass *llvm::createMipsISelDag(MipsTargetMachine &TM) {
|
|
|
|
return new MipsDAGToDAGISel(TM);
|
|
|
|
}
|