2007-12-29 20:36:04 +00:00
|
|
|
//===-- SPUISelDAGToDAG.cpp - CellSPU pattern matching inst selector ------===//
|
2007-12-04 22:23:35 +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-12-04 22:23:35 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines a pattern matching instruction selector for the Cell SPU,
|
|
|
|
// converting from a legalized dag to a SPU-target dag.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "SPU.h"
|
|
|
|
#include "SPUTargetMachine.h"
|
|
|
|
#include "SPUISelLowering.h"
|
|
|
|
#include "SPUHazardRecognizers.h"
|
|
|
|
#include "SPUFrameInfo.h"
|
2008-04-30 00:30:08 +00:00
|
|
|
#include "SPURegisterNames.h"
|
2009-01-15 04:41:47 +00:00
|
|
|
#include "SPUTargetMachine.h"
|
2007-12-04 22:23:35 +00:00
|
|
|
#include "llvm/CodeGen/MachineConstantPool.h"
|
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
#include "llvm/CodeGen/SelectionDAG.h"
|
|
|
|
#include "llvm/CodeGen/SelectionDAGISel.h"
|
2009-01-15 04:41:47 +00:00
|
|
|
#include "llvm/CodeGen/PseudoSourceValue.h"
|
2007-12-04 22:23:35 +00:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
|
|
|
#include "llvm/ADT/Statistic.h"
|
|
|
|
#include "llvm/Constants.h"
|
|
|
|
#include "llvm/GlobalValue.h"
|
|
|
|
#include "llvm/Intrinsics.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/MathExtras.h"
|
|
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
//! ConstantSDNode predicate for i32 sign-extended, 10-bit immediates
|
|
|
|
bool
|
|
|
|
isI64IntS10Immediate(ConstantSDNode *CN)
|
|
|
|
{
|
2008-09-26 21:54:37 +00:00
|
|
|
return isS10Constant(CN->getSExtValue());
|
2007-12-04 22:23:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//! ConstantSDNode predicate for i32 sign-extended, 10-bit immediates
|
|
|
|
bool
|
|
|
|
isI32IntS10Immediate(ConstantSDNode *CN)
|
|
|
|
{
|
2008-09-26 21:54:37 +00:00
|
|
|
return isS10Constant(CN->getSExtValue());
|
2007-12-04 22:23:35 +00:00
|
|
|
}
|
|
|
|
|
2007-12-17 22:32:34 +00:00
|
|
|
//! ConstantSDNode predicate for i32 unsigned 10-bit immediate values
|
|
|
|
bool
|
|
|
|
isI32IntU10Immediate(ConstantSDNode *CN)
|
|
|
|
{
|
2008-09-26 21:54:37 +00:00
|
|
|
return isU10Constant(CN->getSExtValue());
|
2007-12-17 22:32:34 +00:00
|
|
|
}
|
|
|
|
|
2007-12-04 22:23:35 +00:00
|
|
|
//! ConstantSDNode predicate for i16 sign-extended, 10-bit immediate values
|
|
|
|
bool
|
|
|
|
isI16IntS10Immediate(ConstantSDNode *CN)
|
|
|
|
{
|
2008-09-26 21:54:37 +00:00
|
|
|
return isS10Constant(CN->getSExtValue());
|
2007-12-04 22:23:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//! SDNode predicate for i16 sign-extended, 10-bit immediate values
|
|
|
|
bool
|
|
|
|
isI16IntS10Immediate(SDNode *N)
|
|
|
|
{
|
2009-01-26 22:33:37 +00:00
|
|
|
ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N);
|
|
|
|
return (CN != 0 && isI16IntS10Immediate(CN));
|
2007-12-04 22:23:35 +00:00
|
|
|
}
|
|
|
|
|
2007-12-15 00:38:50 +00:00
|
|
|
//! ConstantSDNode predicate for i16 unsigned 10-bit immediate values
|
|
|
|
bool
|
|
|
|
isI16IntU10Immediate(ConstantSDNode *CN)
|
|
|
|
{
|
2008-09-12 16:56:44 +00:00
|
|
|
return isU10Constant((short) CN->getZExtValue());
|
2007-12-15 00:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//! SDNode predicate for i16 sign-extended, 10-bit immediate values
|
|
|
|
bool
|
|
|
|
isI16IntU10Immediate(SDNode *N)
|
|
|
|
{
|
|
|
|
return (N->getOpcode() == ISD::Constant
|
|
|
|
&& isI16IntU10Immediate(cast<ConstantSDNode>(N)));
|
|
|
|
}
|
|
|
|
|
2007-12-04 22:23:35 +00:00
|
|
|
//! ConstantSDNode predicate for signed 16-bit values
|
|
|
|
/*!
|
|
|
|
\arg CN The constant SelectionDAG node holding the value
|
|
|
|
\arg Imm The returned 16-bit value, if returning true
|
|
|
|
|
|
|
|
This predicate tests the value in \a CN to see whether it can be
|
|
|
|
represented as a 16-bit, sign-extended quantity. Returns true if
|
|
|
|
this is the case.
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
isIntS16Immediate(ConstantSDNode *CN, short &Imm)
|
|
|
|
{
|
2008-06-06 12:08:01 +00:00
|
|
|
MVT vt = CN->getValueType(0);
|
2008-09-12 16:56:44 +00:00
|
|
|
Imm = (short) CN->getZExtValue();
|
2008-06-08 20:54:56 +00:00
|
|
|
if (vt.getSimpleVT() >= MVT::i1 && vt.getSimpleVT() <= MVT::i16) {
|
2007-12-04 22:23:35 +00:00
|
|
|
return true;
|
|
|
|
} else if (vt == MVT::i32) {
|
2008-09-12 16:56:44 +00:00
|
|
|
int32_t i_val = (int32_t) CN->getZExtValue();
|
2007-12-04 22:23:35 +00:00
|
|
|
short s_val = (short) i_val;
|
|
|
|
return i_val == s_val;
|
|
|
|
} else {
|
2008-09-12 16:56:44 +00:00
|
|
|
int64_t i_val = (int64_t) CN->getZExtValue();
|
2007-12-04 22:23:35 +00:00
|
|
|
short s_val = (short) i_val;
|
|
|
|
return i_val == s_val;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! SDNode predicate for signed 16-bit values.
|
|
|
|
bool
|
|
|
|
isIntS16Immediate(SDNode *N, short &Imm)
|
|
|
|
{
|
|
|
|
return (N->getOpcode() == ISD::Constant
|
|
|
|
&& isIntS16Immediate(cast<ConstantSDNode>(N), Imm));
|
|
|
|
}
|
|
|
|
|
|
|
|
//! ConstantFPSDNode predicate for representing floats as 16-bit sign ext.
|
|
|
|
static bool
|
|
|
|
isFPS16Immediate(ConstantFPSDNode *FPN, short &Imm)
|
|
|
|
{
|
2008-06-06 12:08:01 +00:00
|
|
|
MVT vt = FPN->getValueType(0);
|
2007-12-04 22:23:35 +00:00
|
|
|
if (vt == MVT::f32) {
|
2007-12-22 22:45:38 +00:00
|
|
|
int val = FloatToBits(FPN->getValueAPF().convertToFloat());
|
2007-12-04 22:23:35 +00:00
|
|
|
int sval = (int) ((val << 16) >> 16);
|
|
|
|
Imm = (short) val;
|
|
|
|
return val == sval;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-01-29 02:16:57 +00:00
|
|
|
bool
|
2008-12-30 23:28:25 +00:00
|
|
|
isHighLow(const SDValue &Op)
|
2008-01-29 02:16:57 +00:00
|
|
|
{
|
|
|
|
return (Op.getOpcode() == SPUISD::IndirectAddr
|
|
|
|
&& ((Op.getOperand(0).getOpcode() == SPUISD::Hi
|
|
|
|
&& Op.getOperand(1).getOpcode() == SPUISD::Lo)
|
|
|
|
|| (Op.getOperand(0).getOpcode() == SPUISD::Lo
|
|
|
|
&& Op.getOperand(1).getOpcode() == SPUISD::Hi)));
|
|
|
|
}
|
|
|
|
|
2007-12-04 22:23:35 +00:00
|
|
|
//===------------------------------------------------------------------===//
|
2008-06-06 12:08:01 +00:00
|
|
|
//! MVT to "useful stuff" mapping structure:
|
2007-12-04 22:23:35 +00:00
|
|
|
|
|
|
|
struct valtype_map_s {
|
2008-06-06 12:08:01 +00:00
|
|
|
MVT VT;
|
2008-01-30 02:55:46 +00:00
|
|
|
unsigned ldresult_ins; /// LDRESULT instruction (0 = undefined)
|
2008-02-23 18:41:37 +00:00
|
|
|
bool ldresult_imm; /// LDRESULT instruction requires immediate?
|
2008-12-27 04:51:36 +00:00
|
|
|
unsigned lrinst; /// LR instruction
|
2007-12-04 22:23:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const valtype_map_s valtype_map[] = {
|
2008-12-27 04:51:36 +00:00
|
|
|
{ MVT::i8, SPU::ORBIr8, true, SPU::LRr8 },
|
|
|
|
{ MVT::i16, SPU::ORHIr16, true, SPU::LRr16 },
|
|
|
|
{ MVT::i32, SPU::ORIr32, true, SPU::LRr32 },
|
|
|
|
{ MVT::i64, SPU::ORr64, false, SPU::LRr64 },
|
|
|
|
{ MVT::f32, SPU::ORf32, false, SPU::LRf32 },
|
|
|
|
{ MVT::f64, SPU::ORf64, false, SPU::LRf64 },
|
2008-01-17 20:38:41 +00:00
|
|
|
// vector types... (sigh!)
|
2008-12-27 04:51:36 +00:00
|
|
|
{ MVT::v16i8, 0, false, SPU::LRv16i8 },
|
|
|
|
{ MVT::v8i16, 0, false, SPU::LRv8i16 },
|
|
|
|
{ MVT::v4i32, 0, false, SPU::LRv4i32 },
|
|
|
|
{ MVT::v2i64, 0, false, SPU::LRv2i64 },
|
|
|
|
{ MVT::v4f32, 0, false, SPU::LRv4f32 },
|
|
|
|
{ MVT::v2f64, 0, false, SPU::LRv2f64 }
|
2007-12-04 22:23:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const size_t n_valtype_map = sizeof(valtype_map) / sizeof(valtype_map[0]);
|
|
|
|
|
2008-06-06 12:08:01 +00:00
|
|
|
const valtype_map_s *getValueTypeMapEntry(MVT VT)
|
2007-12-04 22:23:35 +00:00
|
|
|
{
|
|
|
|
const valtype_map_s *retval = 0;
|
|
|
|
for (size_t i = 0; i < n_valtype_map; ++i) {
|
|
|
|
if (valtype_map[i].VT == VT) {
|
2008-01-30 02:55:46 +00:00
|
|
|
retval = valtype_map + i;
|
|
|
|
break;
|
2007-12-04 22:23:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
if (retval == 0) {
|
|
|
|
cerr << "SPUISelDAGToDAG.cpp: getValueTypeMapEntry returns NULL for "
|
2008-06-06 12:08:01 +00:00
|
|
|
<< VT.getMVTString()
|
2008-01-30 02:55:46 +00:00
|
|
|
<< "\n";
|
2007-12-04 22:23:35 +00:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-03-17 01:15:45 +00:00
|
|
|
//! Generate the carry-generate shuffle mask.
|
|
|
|
SDValue getCarryGenerateShufMask(SelectionDAG &DAG, DebugLoc dl) {
|
|
|
|
SmallVector<SDValue, 16 > ShufBytes;
|
2008-05-13 00:00:25 +00:00
|
|
|
|
2009-03-17 01:15:45 +00:00
|
|
|
// Create the shuffle mask for "rotating" the borrow up one register slot
|
|
|
|
// once the borrow is generated.
|
|
|
|
ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32));
|
|
|
|
ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32));
|
|
|
|
ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32));
|
|
|
|
ShufBytes.push_back(DAG.getConstant(0x80808080, MVT::i32));
|
2008-12-30 23:28:25 +00:00
|
|
|
|
2009-03-17 01:15:45 +00:00
|
|
|
return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
|
|
|
|
&ShufBytes[0], ShufBytes.size());
|
2007-12-04 22:23:35 +00:00
|
|
|
}
|
|
|
|
|
2009-03-17 01:15:45 +00:00
|
|
|
//! Generate the borrow-generate shuffle mask
|
|
|
|
SDValue getBorrowGenerateShufMask(SelectionDAG &DAG, DebugLoc dl) {
|
|
|
|
SmallVector<SDValue, 16 > ShufBytes;
|
|
|
|
|
|
|
|
// Create the shuffle mask for "rotating" the borrow up one register slot
|
|
|
|
// once the borrow is generated.
|
|
|
|
ShufBytes.push_back(DAG.getConstant(0x04050607, MVT::i32));
|
|
|
|
ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32));
|
|
|
|
ShufBytes.push_back(DAG.getConstant(0x0c0d0e0f, MVT::i32));
|
|
|
|
ShufBytes.push_back(DAG.getConstant(0xc0c0c0c0, MVT::i32));
|
|
|
|
|
|
|
|
return DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
|
|
|
|
&ShufBytes[0], ShufBytes.size());
|
2007-12-04 22:23:35 +00:00
|
|
|
}
|
2008-12-30 23:28:25 +00:00
|
|
|
|
2009-03-17 01:15:45 +00:00
|
|
|
//===------------------------------------------------------------------===//
|
|
|
|
/// SPUDAGToDAGISel - Cell SPU-specific code to select SPU machine
|
|
|
|
/// instructions for SelectionDAG operations.
|
|
|
|
///
|
|
|
|
class SPUDAGToDAGISel :
|
|
|
|
public SelectionDAGISel
|
|
|
|
{
|
|
|
|
SPUTargetMachine &TM;
|
|
|
|
SPUTargetLowering &SPUtli;
|
|
|
|
unsigned GlobalBaseReg;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit SPUDAGToDAGISel(SPUTargetMachine &tm) :
|
|
|
|
SelectionDAGISel(tm),
|
|
|
|
TM(tm),
|
|
|
|
SPUtli(*tm.getTargetLowering())
|
|
|
|
{ }
|
|
|
|
|
|
|
|
virtual bool runOnFunction(Function &Fn) {
|
|
|
|
// Make sure we re-emit a set of the global base reg if necessary
|
|
|
|
GlobalBaseReg = 0;
|
|
|
|
SelectionDAGISel::runOnFunction(Fn);
|
|
|
|
return true;
|
2009-01-26 03:31:40 +00:00
|
|
|
}
|
2007-12-04 22:23:35 +00:00
|
|
|
|
2009-03-17 01:15:45 +00:00
|
|
|
/// getI32Imm - Return a target constant with the specified value, of type
|
|
|
|
/// i32.
|
|
|
|
inline SDValue getI32Imm(uint32_t Imm) {
|
|
|
|
return CurDAG->getTargetConstant(Imm, MVT::i32);
|
2009-01-15 04:41:47 +00:00
|
|
|
}
|
|
|
|
|
2009-03-17 01:15:45 +00:00
|
|
|
/// getI64Imm - Return a target constant with the specified value, of type
|
|
|
|
/// i64.
|
|
|
|
inline SDValue getI64Imm(uint64_t Imm) {
|
|
|
|
return CurDAG->getTargetConstant(Imm, MVT::i64);
|
|
|
|
}
|
2009-01-15 04:41:47 +00:00
|
|
|
|
2009-03-17 01:15:45 +00:00
|
|
|
/// getSmallIPtrImm - Return a target constant of pointer type.
|
|
|
|
inline SDValue getSmallIPtrImm(unsigned Imm) {
|
|
|
|
return CurDAG->getTargetConstant(Imm, SPUtli.getPointerTy());
|
2007-12-04 22:23:35 +00:00
|
|
|
}
|
2009-03-17 01:15:45 +00:00
|
|
|
|
|
|
|
SDNode *emitBuildVector(SDValue build_vec) {
|
|
|
|
MVT vecVT = build_vec.getValueType();
|
|
|
|
MVT eltVT = vecVT.getVectorElementType();
|
|
|
|
SDNode *bvNode = build_vec.getNode();
|
|
|
|
DebugLoc dl = bvNode->getDebugLoc();
|
|
|
|
|
|
|
|
// Check to see if this vector can be represented as a CellSPU immediate
|
|
|
|
// constant by invoking all of the instruction selection predicates:
|
|
|
|
if (((vecVT == MVT::v8i16) &&
|
|
|
|
(SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i16).getNode() != 0)) ||
|
|
|
|
((vecVT == MVT::v4i32) &&
|
|
|
|
((SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
|
|
|
|
(SPU::get_ILHUvec_imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
|
|
|
|
(SPU::get_vec_u18imm(bvNode, *CurDAG, MVT::i32).getNode() != 0) ||
|
|
|
|
(SPU::get_v4i32_imm(bvNode, *CurDAG).getNode() != 0))) ||
|
|
|
|
((vecVT == MVT::v2i64) &&
|
|
|
|
((SPU::get_vec_i16imm(bvNode, *CurDAG, MVT::i64).getNode() != 0) ||
|
|
|
|
(SPU::get_ILHUvec_imm(bvNode, *CurDAG, MVT::i64).getNode() != 0) ||
|
|
|
|
(SPU::get_vec_u18imm(bvNode, *CurDAG, MVT::i64).getNode() != 0))))
|
|
|
|
return Select(build_vec);
|
|
|
|
|
|
|
|
// No, need to emit a constant pool spill:
|
|
|
|
std::vector<Constant*> CV;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < build_vec.getNumOperands(); ++i) {
|
|
|
|
ConstantSDNode *V = dyn_cast<ConstantSDNode > (build_vec.getOperand(i));
|
|
|
|
CV.push_back(const_cast<ConstantInt *> (V->getConstantIntValue()));
|
|
|
|
}
|
|
|
|
|
|
|
|
Constant *CP = ConstantVector::get(CV);
|
|
|
|
SDValue CPIdx = CurDAG->getConstantPool(CP, SPUtli.getPointerTy());
|
|
|
|
unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
|
|
|
|
SDValue CGPoolOffset =
|
|
|
|
SPU::LowerConstantPool(CPIdx, *CurDAG,
|
|
|
|
SPUtli.getSPUTargetMachine());
|
|
|
|
return SelectCode(CurDAG->getLoad(build_vec.getValueType(), dl,
|
|
|
|
CurDAG->getEntryNode(), CGPoolOffset,
|
|
|
|
PseudoSourceValue::getConstantPool(), 0,
|
|
|
|
false, Alignment));
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Select - Convert the specified operand from a target-independent to a
|
|
|
|
/// target-specific node if it hasn't already been changed.
|
|
|
|
SDNode *Select(SDValue Op);
|
|
|
|
|
|
|
|
//! Emit the instruction sequence for i64 shl
|
|
|
|
SDNode *SelectSHLi64(SDValue &Op, MVT OpVT);
|
|
|
|
|
|
|
|
//! Emit the instruction sequence for i64 srl
|
|
|
|
SDNode *SelectSRLi64(SDValue &Op, MVT OpVT);
|
|
|
|
|
|
|
|
//! Emit the instruction sequence for i64 sra
|
|
|
|
SDNode *SelectSRAi64(SDValue &Op, MVT OpVT);
|
|
|
|
|
|
|
|
//! Emit the necessary sequence for loading i64 constants:
|
|
|
|
SDNode *SelectI64Constant(SDValue &Op, MVT OpVT, DebugLoc dl);
|
|
|
|
|
|
|
|
//! Alternate instruction emit sequence for loading i64 constants
|
|
|
|
SDNode *SelectI64Constant(uint64_t i64const, MVT OpVT, DebugLoc dl);
|
|
|
|
|
|
|
|
//! Returns true if the address N is an A-form (local store) address
|
|
|
|
bool SelectAFormAddr(SDValue Op, SDValue N, SDValue &Base,
|
|
|
|
SDValue &Index);
|
|
|
|
|
|
|
|
//! D-form address predicate
|
|
|
|
bool SelectDFormAddr(SDValue Op, SDValue N, SDValue &Base,
|
|
|
|
SDValue &Index);
|
|
|
|
|
|
|
|
/// Alternate D-form address using i7 offset predicate
|
|
|
|
bool SelectDForm2Addr(SDValue Op, SDValue N, SDValue &Disp,
|
|
|
|
SDValue &Base);
|
|
|
|
|
|
|
|
/// D-form address selection workhorse
|
|
|
|
bool DFormAddressPredicate(SDValue Op, SDValue N, SDValue &Disp,
|
|
|
|
SDValue &Base, int minOffset, int maxOffset);
|
|
|
|
|
|
|
|
//! Address predicate if N can be expressed as an indexed [r+r] operation.
|
|
|
|
bool SelectXFormAddr(SDValue Op, SDValue N, SDValue &Base,
|
|
|
|
SDValue &Index);
|
|
|
|
|
|
|
|
/// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
|
|
|
|
/// inline asm expressions.
|
|
|
|
virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
|
|
|
|
char ConstraintCode,
|
|
|
|
std::vector<SDValue> &OutOps) {
|
|
|
|
SDValue Op0, Op1;
|
|
|
|
switch (ConstraintCode) {
|
|
|
|
default: return true;
|
|
|
|
case 'm': // memory
|
|
|
|
if (!SelectDFormAddr(Op, Op, Op0, Op1)
|
|
|
|
&& !SelectAFormAddr(Op, Op, Op0, Op1))
|
|
|
|
SelectXFormAddr(Op, Op, Op0, Op1);
|
|
|
|
break;
|
|
|
|
case 'o': // offsetable
|
|
|
|
if (!SelectDFormAddr(Op, Op, Op0, Op1)
|
|
|
|
&& !SelectAFormAddr(Op, Op, Op0, Op1)) {
|
|
|
|
Op0 = Op;
|
|
|
|
Op1 = getSmallIPtrImm(0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'v': // not offsetable
|
2007-12-04 22:23:35 +00:00
|
|
|
#if 1
|
2009-03-17 01:15:45 +00:00
|
|
|
assert(0 && "InlineAsmMemoryOperand 'v' constraint not handled.");
|
2007-12-04 22:23:35 +00:00
|
|
|
#else
|
2009-03-17 01:15:45 +00:00
|
|
|
SelectAddrIdxOnly(Op, Op, Op0, Op1);
|
2007-12-04 22:23:35 +00:00
|
|
|
#endif
|
2009-03-17 01:15:45 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-12-30 23:28:25 +00:00
|
|
|
|
2009-03-17 01:15:45 +00:00
|
|
|
OutOps.push_back(Op0);
|
|
|
|
OutOps.push_back(Op1);
|
|
|
|
return false;
|
|
|
|
}
|
2007-12-04 22:23:35 +00:00
|
|
|
|
2009-03-17 01:15:45 +00:00
|
|
|
/// InstructionSelect - This callback is invoked by
|
|
|
|
/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
|
|
|
|
virtual void InstructionSelect();
|
2007-12-04 22:23:35 +00:00
|
|
|
|
2009-03-17 01:15:45 +00:00
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "Cell SPU DAG->DAG Pattern Instruction Selection";
|
|
|
|
}
|
2008-12-30 23:28:25 +00:00
|
|
|
|
2009-03-17 01:15:45 +00:00
|
|
|
/// CreateTargetHazardRecognizer - Return the hazard recognizer to use for
|
|
|
|
/// this target when scheduling the DAG.
|
|
|
|
virtual ScheduleHazardRecognizer *CreateTargetHazardRecognizer() {
|
|
|
|
const TargetInstrInfo *II = TM.getInstrInfo();
|
|
|
|
assert(II && "No InstrInfo?");
|
|
|
|
return new SPUHazardRecognizer(*II);
|
|
|
|
}
|
2007-12-04 22:23:35 +00:00
|
|
|
|
2009-03-17 01:15:45 +00:00
|
|
|
// Include the pieces autogenerated from the target description.
|
2007-12-04 22:23:35 +00:00
|
|
|
#include "SPUGenDAGISel.inc"
|
2009-03-17 01:15:45 +00:00
|
|
|
};
|
2008-05-13 00:00:25 +00:00
|
|
|
}
|
|
|
|
|
2008-06-30 20:45:06 +00:00
|
|
|
/// InstructionSelect - This callback is invoked by
|
2007-12-04 22:23:35 +00:00
|
|
|
/// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
|
|
|
|
void
|
2008-08-23 02:25:05 +00:00
|
|
|
SPUDAGToDAGISel::InstructionSelect()
|
2007-12-04 22:23:35 +00:00
|
|
|
{
|
|
|
|
DEBUG(BB->dump());
|
|
|
|
|
|
|
|
// Select target instructions for the DAG.
|
2008-10-27 21:56:29 +00:00
|
|
|
SelectRoot(*CurDAG);
|
2008-08-23 02:25:05 +00:00
|
|
|
CurDAG->RemoveDeadNodes();
|
2007-12-04 22:23:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
2009-01-26 22:33:37 +00:00
|
|
|
\arg Op The ISD instruction operand
|
2007-12-04 22:23:35 +00:00
|
|
|
\arg N The address to be tested
|
|
|
|
\arg Base The base address
|
|
|
|
\arg Index The base address index
|
|
|
|
*/
|
|
|
|
bool
|
2008-07-27 21:46:04 +00:00
|
|
|
SPUDAGToDAGISel::SelectAFormAddr(SDValue Op, SDValue N, SDValue &Base,
|
|
|
|
SDValue &Index) {
|
2007-12-04 22:23:35 +00:00
|
|
|
// These match the addr256k operand type:
|
2008-06-06 12:08:01 +00:00
|
|
|
MVT OffsVT = MVT::i16;
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue Zero = CurDAG->getTargetConstant(0, OffsVT);
|
2007-12-04 22:23:35 +00:00
|
|
|
|
|
|
|
switch (N.getOpcode()) {
|
|
|
|
case ISD::Constant:
|
2008-01-11 02:53:15 +00:00
|
|
|
case ISD::ConstantPool:
|
|
|
|
case ISD::GlobalAddress:
|
|
|
|
cerr << "SPU SelectAFormAddr: Constant/Pool/Global not lowered.\n";
|
|
|
|
abort();
|
|
|
|
/*NOTREACHED*/
|
|
|
|
|
2008-01-29 02:16:57 +00:00
|
|
|
case ISD::TargetConstant:
|
2008-01-11 02:53:15 +00:00
|
|
|
case ISD::TargetGlobalAddress:
|
2008-01-29 02:16:57 +00:00
|
|
|
case ISD::TargetJumpTable:
|
|
|
|
cerr << "SPUSelectAFormAddr: Target Constant/Pool/Global not wrapped as "
|
|
|
|
<< "A-form address.\n";
|
|
|
|
abort();
|
|
|
|
/*NOTREACHED*/
|
2007-12-04 22:23:35 +00:00
|
|
|
|
2008-12-30 23:28:25 +00:00
|
|
|
case SPUISD::AFormAddr:
|
2008-01-29 02:16:57 +00:00
|
|
|
// Just load from memory if there's only a single use of the location,
|
|
|
|
// otherwise, this will get handled below with D-form offset addresses
|
|
|
|
if (N.hasOneUse()) {
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue Op0 = N.getOperand(0);
|
2008-01-29 02:16:57 +00:00
|
|
|
switch (Op0.getOpcode()) {
|
|
|
|
case ISD::TargetConstantPool:
|
|
|
|
case ISD::TargetJumpTable:
|
|
|
|
Base = Op0;
|
|
|
|
Index = Zero;
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case ISD::TargetGlobalAddress: {
|
|
|
|
GlobalAddressSDNode *GSDN = cast<GlobalAddressSDNode>(Op0);
|
|
|
|
GlobalValue *GV = GSDN->getGlobal();
|
|
|
|
if (GV->getAlignment() == 16) {
|
|
|
|
Base = Op0;
|
|
|
|
Index = Zero;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2007-12-04 22:23:35 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-12-30 23:28:25 +00:00
|
|
|
bool
|
2008-07-27 21:46:04 +00:00
|
|
|
SPUDAGToDAGISel::SelectDForm2Addr(SDValue Op, SDValue N, SDValue &Disp,
|
|
|
|
SDValue &Base) {
|
2008-04-30 00:30:08 +00:00
|
|
|
const int minDForm2Offset = -(1 << 7);
|
|
|
|
const int maxDForm2Offset = (1 << 7) - 1;
|
|
|
|
return DFormAddressPredicate(Op, N, Disp, Base, minDForm2Offset,
|
|
|
|
maxDForm2Offset);
|
2008-01-30 02:55:46 +00:00
|
|
|
}
|
|
|
|
|
2007-12-04 22:23:35 +00:00
|
|
|
/*!
|
|
|
|
\arg Op The ISD instruction (ignored)
|
|
|
|
\arg N The address to be tested
|
|
|
|
\arg Base Base address register/pointer
|
|
|
|
\arg Index Base address index
|
|
|
|
|
|
|
|
Examine the input address by a base register plus a signed 10-bit
|
|
|
|
displacement, [r+I10] (D-form address).
|
|
|
|
|
|
|
|
\return true if \a N is a D-form address with \a Base and \a Index set
|
2008-07-27 21:46:04 +00:00
|
|
|
to non-empty SDValue instances.
|
2007-12-04 22:23:35 +00:00
|
|
|
*/
|
|
|
|
bool
|
2008-07-27 21:46:04 +00:00
|
|
|
SPUDAGToDAGISel::SelectDFormAddr(SDValue Op, SDValue N, SDValue &Base,
|
|
|
|
SDValue &Index) {
|
2008-01-30 02:55:46 +00:00
|
|
|
return DFormAddressPredicate(Op, N, Base, Index,
|
2008-11-21 02:56:16 +00:00
|
|
|
SPUFrameInfo::minFrameOffset(),
|
|
|
|
SPUFrameInfo::maxFrameOffset());
|
2008-01-30 02:55:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2008-07-27 21:46:04 +00:00
|
|
|
SPUDAGToDAGISel::DFormAddressPredicate(SDValue Op, SDValue N, SDValue &Base,
|
|
|
|
SDValue &Index, int minOffset,
|
2008-01-30 02:55:46 +00:00
|
|
|
int maxOffset) {
|
2007-12-04 22:23:35 +00:00
|
|
|
unsigned Opc = N.getOpcode();
|
2008-06-06 12:08:01 +00:00
|
|
|
MVT PtrTy = SPUtli.getPointerTy();
|
2007-12-04 22:23:35 +00:00
|
|
|
|
2008-01-29 02:16:57 +00:00
|
|
|
if (Opc == ISD::FrameIndex) {
|
|
|
|
// Stack frame index must be less than 512 (divided by 16):
|
2008-04-30 00:30:08 +00:00
|
|
|
FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(N);
|
|
|
|
int FI = int(FIN->getIndex());
|
2007-12-04 22:23:35 +00:00
|
|
|
DEBUG(cerr << "SelectDFormAddr: ISD::FrameIndex = "
|
2008-04-30 00:30:08 +00:00
|
|
|
<< FI << "\n");
|
|
|
|
if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
|
2007-12-04 22:23:35 +00:00
|
|
|
Base = CurDAG->getTargetConstant(0, PtrTy);
|
2008-04-30 00:30:08 +00:00
|
|
|
Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
|
2007-12-04 22:23:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if (Opc == ISD::ADD) {
|
|
|
|
// Generated by getelementptr
|
2008-07-27 21:46:04 +00:00
|
|
|
const SDValue Op0 = N.getOperand(0);
|
|
|
|
const SDValue Op1 = N.getOperand(1);
|
2007-12-04 22:23:35 +00:00
|
|
|
|
2008-01-29 02:16:57 +00:00
|
|
|
if ((Op0.getOpcode() == SPUISD::Hi && Op1.getOpcode() == SPUISD::Lo)
|
|
|
|
|| (Op1.getOpcode() == SPUISD::Hi && Op0.getOpcode() == SPUISD::Lo)) {
|
|
|
|
Base = CurDAG->getTargetConstant(0, PtrTy);
|
|
|
|
Index = N;
|
|
|
|
return true;
|
|
|
|
} else if (Op1.getOpcode() == ISD::Constant
|
|
|
|
|| Op1.getOpcode() == ISD::TargetConstant) {
|
2008-01-11 02:53:15 +00:00
|
|
|
ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op1);
|
2008-09-26 21:54:37 +00:00
|
|
|
int32_t offset = int32_t(CN->getSExtValue());
|
2007-12-04 22:23:35 +00:00
|
|
|
|
2008-01-29 02:16:57 +00:00
|
|
|
if (Op0.getOpcode() == ISD::FrameIndex) {
|
2008-04-30 00:30:08 +00:00
|
|
|
FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Op0);
|
|
|
|
int FI = int(FIN->getIndex());
|
2008-01-11 02:53:15 +00:00
|
|
|
DEBUG(cerr << "SelectDFormAddr: ISD::ADD offset = " << offset
|
2008-04-30 00:30:08 +00:00
|
|
|
<< " frame index = " << FI << "\n");
|
2008-01-11 02:53:15 +00:00
|
|
|
|
2008-04-30 00:30:08 +00:00
|
|
|
if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
|
2008-01-11 02:53:15 +00:00
|
|
|
Base = CurDAG->getTargetConstant(offset, PtrTy);
|
2008-04-30 00:30:08 +00:00
|
|
|
Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
|
2008-01-11 02:53:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
2008-01-30 02:55:46 +00:00
|
|
|
} else if (offset > minOffset && offset < maxOffset) {
|
2008-01-11 02:53:15 +00:00
|
|
|
Base = CurDAG->getTargetConstant(offset, PtrTy);
|
2008-01-29 02:16:57 +00:00
|
|
|
Index = Op0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if (Op0.getOpcode() == ISD::Constant
|
|
|
|
|| Op0.getOpcode() == ISD::TargetConstant) {
|
|
|
|
ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op0);
|
2008-09-26 21:54:37 +00:00
|
|
|
int32_t offset = int32_t(CN->getSExtValue());
|
2008-01-29 02:16:57 +00:00
|
|
|
|
|
|
|
if (Op1.getOpcode() == ISD::FrameIndex) {
|
2008-04-30 00:30:08 +00:00
|
|
|
FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Op1);
|
|
|
|
int FI = int(FIN->getIndex());
|
2008-01-29 02:16:57 +00:00
|
|
|
DEBUG(cerr << "SelectDFormAddr: ISD::ADD offset = " << offset
|
2008-04-30 00:30:08 +00:00
|
|
|
<< " frame index = " << FI << "\n");
|
2008-01-29 02:16:57 +00:00
|
|
|
|
2008-04-30 00:30:08 +00:00
|
|
|
if (SPUFrameInfo::FItoStackOffset(FI) < maxOffset) {
|
2008-01-29 02:16:57 +00:00
|
|
|
Base = CurDAG->getTargetConstant(offset, PtrTy);
|
2008-04-30 00:30:08 +00:00
|
|
|
Index = CurDAG->getTargetFrameIndex(FI, PtrTy);
|
2008-01-11 02:53:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
2008-01-30 02:55:46 +00:00
|
|
|
} else if (offset > minOffset && offset < maxOffset) {
|
2008-01-29 02:16:57 +00:00
|
|
|
Base = CurDAG->getTargetConstant(offset, PtrTy);
|
|
|
|
Index = Op1;
|
|
|
|
return true;
|
2007-12-04 22:23:35 +00:00
|
|
|
}
|
2008-01-11 21:01:19 +00:00
|
|
|
}
|
2008-01-29 02:16:57 +00:00
|
|
|
} else if (Opc == SPUISD::IndirectAddr) {
|
|
|
|
// Indirect with constant offset -> D-Form address
|
2008-07-27 21:46:04 +00:00
|
|
|
const SDValue Op0 = N.getOperand(0);
|
|
|
|
const SDValue Op1 = N.getOperand(1);
|
2008-01-29 02:16:57 +00:00
|
|
|
|
2008-01-30 02:55:46 +00:00
|
|
|
if (Op0.getOpcode() == SPUISD::Hi
|
|
|
|
&& Op1.getOpcode() == SPUISD::Lo) {
|
2008-01-29 02:16:57 +00:00
|
|
|
// (SPUindirect (SPUhi <arg>, 0), (SPUlo <arg>, 0))
|
2008-01-11 02:53:15 +00:00
|
|
|
Base = CurDAG->getTargetConstant(0, PtrTy);
|
2008-01-29 02:16:57 +00:00
|
|
|
Index = N;
|
2008-01-11 02:53:15 +00:00
|
|
|
return true;
|
2008-01-30 02:55:46 +00:00
|
|
|
} else if (isa<ConstantSDNode>(Op0) || isa<ConstantSDNode>(Op1)) {
|
|
|
|
int32_t offset = 0;
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue idxOp;
|
2008-01-30 02:55:46 +00:00
|
|
|
|
|
|
|
if (isa<ConstantSDNode>(Op1)) {
|
|
|
|
ConstantSDNode *CN = cast<ConstantSDNode>(Op1);
|
2008-09-26 21:54:37 +00:00
|
|
|
offset = int32_t(CN->getSExtValue());
|
2008-01-30 02:55:46 +00:00
|
|
|
idxOp = Op0;
|
|
|
|
} else if (isa<ConstantSDNode>(Op0)) {
|
|
|
|
ConstantSDNode *CN = cast<ConstantSDNode>(Op0);
|
2008-09-26 21:54:37 +00:00
|
|
|
offset = int32_t(CN->getSExtValue());
|
2008-01-30 02:55:46 +00:00
|
|
|
idxOp = Op1;
|
2008-12-30 23:28:25 +00:00
|
|
|
}
|
2008-01-30 02:55:46 +00:00
|
|
|
|
|
|
|
if (offset >= minOffset && offset <= maxOffset) {
|
|
|
|
Base = CurDAG->getTargetConstant(offset, PtrTy);
|
|
|
|
Index = idxOp;
|
|
|
|
return true;
|
|
|
|
}
|
2008-01-11 02:53:15 +00:00
|
|
|
}
|
2008-01-29 02:16:57 +00:00
|
|
|
} else if (Opc == SPUISD::AFormAddr) {
|
|
|
|
Base = CurDAG->getTargetConstant(0, N.getValueType());
|
|
|
|
Index = N;
|
2008-01-17 20:38:41 +00:00
|
|
|
return true;
|
2008-01-30 02:55:46 +00:00
|
|
|
} else if (Opc == SPUISD::LDRESULT) {
|
|
|
|
Base = CurDAG->getTargetConstant(0, N.getValueType());
|
|
|
|
Index = N;
|
|
|
|
return true;
|
2008-11-21 02:56:16 +00:00
|
|
|
} else if (Opc == ISD::Register || Opc == ISD::CopyFromReg) {
|
|
|
|
unsigned OpOpc = Op.getOpcode();
|
|
|
|
|
|
|
|
if (OpOpc == ISD::STORE || OpOpc == ISD::LOAD) {
|
|
|
|
// Direct load/store without getelementptr
|
|
|
|
SDValue Addr, Offs;
|
|
|
|
|
|
|
|
// Get the register from CopyFromReg
|
|
|
|
if (Opc == ISD::CopyFromReg)
|
|
|
|
Addr = N.getOperand(1);
|
|
|
|
else
|
|
|
|
Addr = N; // Register
|
|
|
|
|
2008-12-10 00:15:19 +00:00
|
|
|
Offs = ((OpOpc == ISD::STORE) ? Op.getOperand(3) : Op.getOperand(2));
|
2008-11-21 02:56:16 +00:00
|
|
|
|
|
|
|
if (Offs.getOpcode() == ISD::Constant || Offs.getOpcode() == ISD::UNDEF) {
|
|
|
|
if (Offs.getOpcode() == ISD::UNDEF)
|
|
|
|
Offs = CurDAG->getTargetConstant(0, Offs.getValueType());
|
|
|
|
|
|
|
|
Base = Offs;
|
|
|
|
Index = Addr;
|
|
|
|
return true;
|
|
|
|
}
|
2008-12-10 00:15:19 +00:00
|
|
|
} else {
|
|
|
|
/* If otherwise unadorned, default to D-form address with 0 offset: */
|
|
|
|
if (Opc == ISD::CopyFromReg) {
|
2009-01-26 03:37:41 +00:00
|
|
|
Index = N.getOperand(1);
|
2008-12-10 00:15:19 +00:00
|
|
|
} else {
|
2009-01-26 03:37:41 +00:00
|
|
|
Index = N;
|
2008-12-10 00:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Base = CurDAG->getTargetConstant(0, Index.getValueType());
|
|
|
|
return true;
|
2008-11-21 02:56:16 +00:00
|
|
|
}
|
2007-12-04 22:23:35 +00:00
|
|
|
}
|
2008-11-21 02:56:16 +00:00
|
|
|
|
2007-12-04 22:23:35 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\arg Op The ISD instruction operand
|
|
|
|
\arg N The address operand
|
|
|
|
\arg Base The base pointer operand
|
|
|
|
\arg Index The offset/index operand
|
|
|
|
|
2008-11-21 02:56:16 +00:00
|
|
|
If the address \a N can be expressed as an A-form or D-form address, returns
|
|
|
|
false. Otherwise, creates two operands, Base and Index that will become the
|
|
|
|
(r)(r) X-form address.
|
2007-12-04 22:23:35 +00:00
|
|
|
*/
|
|
|
|
bool
|
2008-07-27 21:46:04 +00:00
|
|
|
SPUDAGToDAGISel::SelectXFormAddr(SDValue Op, SDValue N, SDValue &Base,
|
|
|
|
SDValue &Index) {
|
2008-11-21 02:56:16 +00:00
|
|
|
if (!SelectAFormAddr(Op, N, Base, Index)
|
|
|
|
&& !SelectDFormAddr(Op, N, Base, Index)) {
|
2008-11-25 17:29:43 +00:00
|
|
|
// If the address is neither A-form or D-form, punt and use an X-form
|
|
|
|
// address:
|
2008-12-01 17:56:02 +00:00
|
|
|
Base = N.getOperand(1);
|
|
|
|
Index = N.getOperand(0);
|
2008-11-25 04:03:47 +00:00
|
|
|
return true;
|
2008-11-21 02:56:16 +00:00
|
|
|
}
|
2007-12-04 22:23:35 +00:00
|
|
|
|
2008-11-21 02:56:16 +00:00
|
|
|
return false;
|
2008-01-17 20:38:41 +00:00
|
|
|
}
|
|
|
|
|
2007-12-04 22:23:35 +00:00
|
|
|
//! Convert the operand from a target-independent to a target-specific node
|
|
|
|
/*!
|
|
|
|
*/
|
|
|
|
SDNode *
|
2008-07-27 21:46:04 +00:00
|
|
|
SPUDAGToDAGISel::Select(SDValue Op) {
|
2008-08-28 21:40:38 +00:00
|
|
|
SDNode *N = Op.getNode();
|
2007-12-04 22:23:35 +00:00
|
|
|
unsigned Opc = N->getOpcode();
|
2008-01-17 20:38:41 +00:00
|
|
|
int n_ops = -1;
|
|
|
|
unsigned NewOpc;
|
2008-06-06 12:08:01 +00:00
|
|
|
MVT OpVT = Op.getValueType();
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue Ops[8];
|
2009-02-06 01:31:28 +00:00
|
|
|
DebugLoc dl = N->getDebugLoc();
|
2007-12-04 22:23:35 +00:00
|
|
|
|
2008-07-17 19:10:17 +00:00
|
|
|
if (N->isMachineOpcode()) {
|
2007-12-04 22:23:35 +00:00
|
|
|
return NULL; // Already selected.
|
2009-01-26 03:31:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Opc == ISD::FrameIndex) {
|
2008-12-30 23:28:25 +00:00
|
|
|
int FI = cast<FrameIndexSDNode>(N)->getIndex();
|
|
|
|
SDValue TFI = CurDAG->getTargetFrameIndex(FI, Op.getValueType());
|
|
|
|
SDValue Imm0 = CurDAG->getTargetConstant(0, Op.getValueType());
|
|
|
|
|
|
|
|
if (FI < 128) {
|
2008-04-30 00:30:08 +00:00
|
|
|
NewOpc = SPU::AIr32;
|
2008-12-30 23:28:25 +00:00
|
|
|
Ops[0] = TFI;
|
|
|
|
Ops[1] = Imm0;
|
2008-04-30 00:30:08 +00:00
|
|
|
n_ops = 2;
|
|
|
|
} else {
|
|
|
|
NewOpc = SPU::Ar32;
|
2008-12-30 23:28:25 +00:00
|
|
|
Ops[0] = CurDAG->getRegister(SPU::R1, Op.getValueType());
|
2009-02-06 01:31:28 +00:00
|
|
|
Ops[1] = SDValue(CurDAG->getTargetNode(SPU::ILAr32, dl, Op.getValueType(),
|
2008-12-30 23:28:25 +00:00
|
|
|
TFI, Imm0), 0);
|
2008-04-30 00:30:08 +00:00
|
|
|
n_ops = 2;
|
|
|
|
}
|
2009-01-26 03:31:40 +00:00
|
|
|
} else if (Opc == ISD::Constant && OpVT == MVT::i64) {
|
|
|
|
// Catch the i64 constants that end up here. Note: The backend doesn't
|
|
|
|
// attempt to legalize the constant (it's useless because DAGCombiner
|
|
|
|
// will insert 64-bit constants and we can't stop it).
|
2009-03-17 01:15:45 +00:00
|
|
|
return SelectI64Constant(Op, OpVT, Op.getDebugLoc());
|
2009-01-15 04:41:47 +00:00
|
|
|
} else if ((Opc == ISD::ZERO_EXTEND || Opc == ISD::ANY_EXTEND)
|
|
|
|
&& OpVT == MVT::i64) {
|
|
|
|
SDValue Op0 = Op.getOperand(0);
|
|
|
|
MVT Op0VT = Op0.getValueType();
|
|
|
|
MVT Op0VecVT = MVT::getVectorVT(Op0VT, (128 / Op0VT.getSizeInBits()));
|
|
|
|
MVT OpVecVT = MVT::getVectorVT(OpVT, (128 / OpVT.getSizeInBits()));
|
|
|
|
SDValue shufMask;
|
|
|
|
|
|
|
|
switch (Op0VT.getSimpleVT()) {
|
|
|
|
default:
|
|
|
|
cerr << "CellSPU Select: Unhandled zero/any extend MVT\n";
|
|
|
|
abort();
|
|
|
|
/*NOTREACHED*/
|
|
|
|
break;
|
|
|
|
case MVT::i32:
|
2009-02-25 22:49:59 +00:00
|
|
|
shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
|
2009-01-21 04:58:48 +00:00
|
|
|
CurDAG->getConstant(0x80808080, MVT::i32),
|
|
|
|
CurDAG->getConstant(0x00010203, MVT::i32),
|
|
|
|
CurDAG->getConstant(0x80808080, MVT::i32),
|
|
|
|
CurDAG->getConstant(0x08090a0b, MVT::i32));
|
2009-01-15 04:41:47 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MVT::i16:
|
2009-02-25 22:49:59 +00:00
|
|
|
shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
|
2009-01-21 04:58:48 +00:00
|
|
|
CurDAG->getConstant(0x80808080, MVT::i32),
|
|
|
|
CurDAG->getConstant(0x80800203, MVT::i32),
|
|
|
|
CurDAG->getConstant(0x80808080, MVT::i32),
|
|
|
|
CurDAG->getConstant(0x80800a0b, MVT::i32));
|
2009-01-15 04:41:47 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MVT::i8:
|
2009-02-25 22:49:59 +00:00
|
|
|
shufMask = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
|
2009-01-21 04:58:48 +00:00
|
|
|
CurDAG->getConstant(0x80808080, MVT::i32),
|
|
|
|
CurDAG->getConstant(0x80808003, MVT::i32),
|
|
|
|
CurDAG->getConstant(0x80808080, MVT::i32),
|
|
|
|
CurDAG->getConstant(0x8080800b, MVT::i32));
|
2009-01-15 04:41:47 +00:00
|
|
|
break;
|
2008-01-17 20:38:41 +00:00
|
|
|
}
|
2009-01-15 04:41:47 +00:00
|
|
|
|
|
|
|
SDNode *shufMaskLoad = emitBuildVector(shufMask);
|
|
|
|
SDNode *PromoteScalar =
|
2009-02-06 01:31:28 +00:00
|
|
|
SelectCode(CurDAG->getNode(SPUISD::PREFSLOT2VEC, dl, Op0VecVT, Op0));
|
2009-01-15 04:41:47 +00:00
|
|
|
|
|
|
|
SDValue zextShuffle =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getNode(SPUISD::SHUFB, dl, OpVecVT,
|
2009-01-21 04:58:48 +00:00
|
|
|
SDValue(PromoteScalar, 0),
|
|
|
|
SDValue(PromoteScalar, 0),
|
|
|
|
SDValue(shufMaskLoad, 0));
|
2009-01-15 04:41:47 +00:00
|
|
|
|
|
|
|
// N.B.: BIT_CONVERT replaces and updates the zextShuffle node, so we
|
|
|
|
// re-use it in the VEC2PREFSLOT selection without needing to explicitly
|
|
|
|
// call SelectCode (it's already done for us.)
|
2009-02-07 00:56:46 +00:00
|
|
|
SelectCode(CurDAG->getNode(ISD::BIT_CONVERT, dl, OpVecVT, zextShuffle));
|
2009-02-06 01:31:28 +00:00
|
|
|
return SelectCode(CurDAG->getNode(SPUISD::VEC2PREFSLOT, dl, OpVT,
|
2009-01-15 04:41:47 +00:00
|
|
|
zextShuffle));
|
2009-01-21 04:58:48 +00:00
|
|
|
} else if (Opc == ISD::ADD && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
|
|
|
|
SDNode *CGLoad =
|
2009-03-17 01:15:45 +00:00
|
|
|
emitBuildVector(getCarryGenerateShufMask(*CurDAG, dl));
|
2009-01-21 04:58:48 +00:00
|
|
|
|
2009-02-06 01:31:28 +00:00
|
|
|
return SelectCode(CurDAG->getNode(SPUISD::ADD64_MARKER, dl, OpVT,
|
2009-01-21 04:58:48 +00:00
|
|
|
Op.getOperand(0), Op.getOperand(1),
|
|
|
|
SDValue(CGLoad, 0)));
|
|
|
|
} else if (Opc == ISD::SUB && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
|
|
|
|
SDNode *CGLoad =
|
2009-03-17 01:15:45 +00:00
|
|
|
emitBuildVector(getBorrowGenerateShufMask(*CurDAG, dl));
|
2009-01-21 04:58:48 +00:00
|
|
|
|
2009-02-06 01:31:28 +00:00
|
|
|
return SelectCode(CurDAG->getNode(SPUISD::SUB64_MARKER, dl, OpVT,
|
2009-01-21 04:58:48 +00:00
|
|
|
Op.getOperand(0), Op.getOperand(1),
|
|
|
|
SDValue(CGLoad, 0)));
|
|
|
|
} else if (Opc == ISD::MUL && (OpVT == MVT::i64 || OpVT == MVT::v2i64)) {
|
|
|
|
SDNode *CGLoad =
|
2009-03-17 01:15:45 +00:00
|
|
|
emitBuildVector(getCarryGenerateShufMask(*CurDAG, dl));
|
2009-01-21 04:58:48 +00:00
|
|
|
|
2009-02-06 01:31:28 +00:00
|
|
|
return SelectCode(CurDAG->getNode(SPUISD::MUL64_MARKER, dl, OpVT,
|
2009-01-21 04:58:48 +00:00
|
|
|
Op.getOperand(0), Op.getOperand(1),
|
|
|
|
SDValue(CGLoad, 0)));
|
2009-01-26 03:31:40 +00:00
|
|
|
} else if (Opc == ISD::TRUNCATE) {
|
|
|
|
SDValue Op0 = Op.getOperand(0);
|
|
|
|
if ((Op0.getOpcode() == ISD::SRA || Op0.getOpcode() == ISD::SRL)
|
|
|
|
&& OpVT == MVT::i32
|
|
|
|
&& Op0.getValueType() == MVT::i64) {
|
2009-01-26 22:33:37 +00:00
|
|
|
// Catch (truncate:i32 ([sra|srl]:i64 arg, c), where c >= 32
|
|
|
|
//
|
|
|
|
// Take advantage of the fact that the upper 32 bits are in the
|
|
|
|
// i32 preferred slot and avoid shuffle gymnastics:
|
2009-01-26 03:31:40 +00:00
|
|
|
ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op0.getOperand(1));
|
|
|
|
if (CN != 0) {
|
|
|
|
unsigned shift_amt = unsigned(CN->getZExtValue());
|
|
|
|
|
|
|
|
if (shift_amt >= 32) {
|
|
|
|
SDNode *hi32 =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ORr32_r64, dl, OpVT,
|
|
|
|
Op0.getOperand(0));
|
2009-01-26 03:31:40 +00:00
|
|
|
|
|
|
|
shift_amt -= 32;
|
|
|
|
if (shift_amt > 0) {
|
|
|
|
// Take care of the additional shift, if present:
|
|
|
|
SDValue shift = CurDAG->getTargetConstant(shift_amt, MVT::i32);
|
|
|
|
unsigned Opc = SPU::ROTMAIr32_i32;
|
2009-01-26 22:33:37 +00:00
|
|
|
|
2009-01-26 03:31:40 +00:00
|
|
|
if (Op0.getOpcode() == ISD::SRL)
|
|
|
|
Opc = SPU::ROTMr32;
|
|
|
|
|
2009-02-06 01:31:28 +00:00
|
|
|
hi32 = CurDAG->getTargetNode(Opc, dl, OpVT, SDValue(hi32, 0),
|
|
|
|
shift);
|
2009-01-26 03:31:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return hi32;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-12-30 23:28:25 +00:00
|
|
|
} else if (Opc == ISD::SHL) {
|
|
|
|
if (OpVT == MVT::i64) {
|
|
|
|
return SelectSHLi64(Op, OpVT);
|
|
|
|
}
|
|
|
|
} else if (Opc == ISD::SRL) {
|
|
|
|
if (OpVT == MVT::i64) {
|
|
|
|
return SelectSRLi64(Op, OpVT);
|
|
|
|
}
|
|
|
|
} else if (Opc == ISD::SRA) {
|
|
|
|
if (OpVT == MVT::i64) {
|
|
|
|
return SelectSRAi64(Op, OpVT);
|
|
|
|
}
|
2009-03-17 01:15:45 +00:00
|
|
|
} else if (Opc == ISD::FNEG
|
|
|
|
&& (OpVT == MVT::f64 || OpVT == MVT::v2f64)) {
|
|
|
|
DebugLoc dl = Op.getDebugLoc();
|
|
|
|
// Check if the pattern is a special form of DFNMS:
|
|
|
|
// (fneg (fsub (fmul R64FP:$rA, R64FP:$rB), R64FP:$rC))
|
|
|
|
SDValue Op0 = Op.getOperand(0);
|
|
|
|
if (Op0.getOpcode() == ISD::FSUB) {
|
|
|
|
SDValue Op00 = Op0.getOperand(0);
|
|
|
|
if (Op00.getOpcode() == ISD::FMUL) {
|
|
|
|
unsigned Opc = SPU::DFNMSf64;
|
|
|
|
if (OpVT == MVT::v2f64)
|
|
|
|
Opc = SPU::DFNMSv2f64;
|
|
|
|
|
|
|
|
return CurDAG->getTargetNode(Opc, dl, OpVT,
|
|
|
|
Op00.getOperand(0),
|
|
|
|
Op00.getOperand(1),
|
|
|
|
Op0.getOperand(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SDValue negConst = CurDAG->getConstant(0x8000000000000000ULL, MVT::i64);
|
|
|
|
SDNode *signMask = 0;
|
2009-03-17 16:45:16 +00:00
|
|
|
unsigned Opc = SPU::XORfneg64;
|
2009-03-17 01:15:45 +00:00
|
|
|
|
|
|
|
if (OpVT == MVT::f64) {
|
|
|
|
signMask = SelectI64Constant(negConst, MVT::i64, dl);
|
|
|
|
} else if (OpVT == MVT::v2f64) {
|
2009-03-17 16:45:16 +00:00
|
|
|
Opc = SPU::XORfnegvec;
|
2009-03-17 01:15:45 +00:00
|
|
|
signMask = emitBuildVector(CurDAG->getNode(ISD::BUILD_VECTOR, dl,
|
2009-05-30 01:09:53 +00:00
|
|
|
MVT::v2i64,
|
2009-03-17 01:15:45 +00:00
|
|
|
negConst, negConst));
|
|
|
|
}
|
|
|
|
|
|
|
|
return CurDAG->getTargetNode(Opc, dl, OpVT,
|
2009-05-30 01:09:53 +00:00
|
|
|
Op.getOperand(0), SDValue(signMask, 0));
|
2009-03-17 01:15:45 +00:00
|
|
|
} else if (Opc == ISD::FABS) {
|
|
|
|
if (OpVT == MVT::f64) {
|
|
|
|
SDNode *signMask = SelectI64Constant(0x7fffffffffffffffULL, MVT::i64, dl);
|
|
|
|
return CurDAG->getTargetNode(SPU::ANDfabs64, dl, OpVT,
|
|
|
|
Op.getOperand(0), SDValue(signMask, 0));
|
|
|
|
} else if (OpVT == MVT::v2f64) {
|
|
|
|
SDValue absConst = CurDAG->getConstant(0x7fffffffffffffffULL, MVT::i64);
|
|
|
|
SDValue absVec = CurDAG->getNode(ISD::BUILD_VECTOR, dl, MVT::v2i64,
|
|
|
|
absConst, absConst);
|
|
|
|
SDNode *signMask = emitBuildVector(absVec);
|
|
|
|
return CurDAG->getTargetNode(SPU::ANDfabsvec, dl, OpVT,
|
|
|
|
Op.getOperand(0), SDValue(signMask, 0));
|
|
|
|
}
|
2007-12-04 22:23:35 +00:00
|
|
|
} else if (Opc == SPUISD::LDRESULT) {
|
|
|
|
// Custom select instructions for LDRESULT
|
2008-06-06 12:08:01 +00:00
|
|
|
MVT VT = N->getValueType(0);
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue Arg = N->getOperand(0);
|
|
|
|
SDValue Chain = N->getOperand(1);
|
2007-12-04 22:23:35 +00:00
|
|
|
SDNode *Result;
|
2008-02-23 18:41:37 +00:00
|
|
|
const valtype_map_s *vtm = getValueTypeMapEntry(VT);
|
|
|
|
|
|
|
|
if (vtm->ldresult_ins == 0) {
|
|
|
|
cerr << "LDRESULT for unsupported type: "
|
2008-06-06 12:08:01 +00:00
|
|
|
<< VT.getMVTString()
|
2008-02-23 18:41:37 +00:00
|
|
|
<< "\n";
|
|
|
|
abort();
|
|
|
|
}
|
2007-12-04 22:23:35 +00:00
|
|
|
|
2008-02-23 18:41:37 +00:00
|
|
|
Opc = vtm->ldresult_ins;
|
|
|
|
if (vtm->ldresult_imm) {
|
2008-07-27 21:46:04 +00:00
|
|
|
SDValue Zero = CurDAG->getTargetConstant(0, VT);
|
2007-12-20 00:44:13 +00:00
|
|
|
|
2009-02-06 01:31:28 +00:00
|
|
|
Result = CurDAG->getTargetNode(Opc, dl, VT, MVT::Other, Arg, Zero, Chain);
|
2007-12-20 00:44:13 +00:00
|
|
|
} else {
|
2009-02-06 01:31:28 +00:00
|
|
|
Result = CurDAG->getTargetNode(Opc, dl, VT, MVT::Other, Arg, Arg, Chain);
|
2007-12-20 00:44:13 +00:00
|
|
|
}
|
|
|
|
|
2007-12-04 22:23:35 +00:00
|
|
|
return Result;
|
2008-01-29 02:16:57 +00:00
|
|
|
} else if (Opc == SPUISD::IndirectAddr) {
|
2008-12-27 04:51:36 +00:00
|
|
|
// Look at the operands: SelectCode() will catch the cases that aren't
|
|
|
|
// specifically handled here.
|
|
|
|
//
|
|
|
|
// SPUInstrInfo catches the following patterns:
|
|
|
|
// (SPUindirect (SPUhi ...), (SPUlo ...))
|
|
|
|
// (SPUindirect $sp, imm)
|
|
|
|
MVT VT = Op.getValueType();
|
|
|
|
SDValue Op0 = N->getOperand(0);
|
|
|
|
SDValue Op1 = N->getOperand(1);
|
|
|
|
RegisterSDNode *RN;
|
|
|
|
|
|
|
|
if ((Op0.getOpcode() != SPUISD::Hi && Op1.getOpcode() != SPUISD::Lo)
|
|
|
|
|| (Op0.getOpcode() == ISD::Register
|
|
|
|
&& ((RN = dyn_cast<RegisterSDNode>(Op0.getNode())) != 0
|
|
|
|
&& RN->getReg() != SPU::R1))) {
|
|
|
|
NewOpc = SPU::Ar32;
|
2008-01-17 20:38:41 +00:00
|
|
|
if (Op1.getOpcode() == ISD::Constant) {
|
|
|
|
ConstantSDNode *CN = cast<ConstantSDNode>(Op1);
|
2008-12-27 04:51:36 +00:00
|
|
|
Op1 = CurDAG->getTargetConstant(CN->getSExtValue(), VT);
|
2008-01-30 02:55:46 +00:00
|
|
|
NewOpc = (isI32IntS10Immediate(CN) ? SPU::AIr32 : SPU::Ar32);
|
2008-01-17 20:38:41 +00:00
|
|
|
}
|
2008-12-27 04:51:36 +00:00
|
|
|
Ops[0] = Op0;
|
|
|
|
Ops[1] = Op1;
|
|
|
|
n_ops = 2;
|
2008-01-17 20:38:41 +00:00
|
|
|
}
|
2007-12-04 22:23:35 +00:00
|
|
|
}
|
2008-12-30 23:28:25 +00:00
|
|
|
|
2008-01-17 20:38:41 +00:00
|
|
|
if (n_ops > 0) {
|
|
|
|
if (N->hasOneUse())
|
|
|
|
return CurDAG->SelectNodeTo(N, NewOpc, OpVT, Ops, n_ops);
|
|
|
|
else
|
2009-02-06 01:31:28 +00:00
|
|
|
return CurDAG->getTargetNode(NewOpc, dl, OpVT, Ops, n_ops);
|
2008-01-17 20:38:41 +00:00
|
|
|
} else
|
|
|
|
return SelectCode(Op);
|
2007-12-04 22:23:35 +00:00
|
|
|
}
|
|
|
|
|
2008-12-30 23:28:25 +00:00
|
|
|
/*!
|
|
|
|
* Emit the instruction sequence for i64 left shifts. The basic algorithm
|
|
|
|
* is to fill the bottom two word slots with zeros so that zeros are shifted
|
|
|
|
* in as the entire quadword is shifted left.
|
|
|
|
*
|
|
|
|
* \note This code could also be used to implement v2i64 shl.
|
|
|
|
*
|
|
|
|
* @param Op The shl operand
|
|
|
|
* @param OpVT Op's machine value value type (doesn't need to be passed, but
|
|
|
|
* makes life easier.)
|
|
|
|
* @return The SDNode with the entire instruction sequence
|
|
|
|
*/
|
|
|
|
SDNode *
|
|
|
|
SPUDAGToDAGISel::SelectSHLi64(SDValue &Op, MVT OpVT) {
|
|
|
|
SDValue Op0 = Op.getOperand(0);
|
|
|
|
MVT VecVT = MVT::getVectorVT(OpVT, (128 / OpVT.getSizeInBits()));
|
|
|
|
SDValue ShiftAmt = Op.getOperand(1);
|
|
|
|
MVT ShiftAmtVT = ShiftAmt.getValueType();
|
|
|
|
SDNode *VecOp0, *SelMask, *ZeroFill, *Shift = 0;
|
|
|
|
SDValue SelMaskVal;
|
2009-02-06 01:31:28 +00:00
|
|
|
DebugLoc dl = Op.getDebugLoc();
|
2008-12-30 23:28:25 +00:00
|
|
|
|
2009-02-06 01:31:28 +00:00
|
|
|
VecOp0 = CurDAG->getTargetNode(SPU::ORv2i64_i64, dl, VecVT, Op0);
|
2008-12-30 23:28:25 +00:00
|
|
|
SelMaskVal = CurDAG->getTargetConstant(0xff00ULL, MVT::i16);
|
2009-02-06 01:31:28 +00:00
|
|
|
SelMask = CurDAG->getTargetNode(SPU::FSMBIv2i64, dl, VecVT, SelMaskVal);
|
|
|
|
ZeroFill = CurDAG->getTargetNode(SPU::ILv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
CurDAG->getTargetConstant(0, OpVT));
|
2009-02-06 01:31:28 +00:00
|
|
|
VecOp0 = CurDAG->getTargetNode(SPU::SELBv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue(ZeroFill, 0),
|
|
|
|
SDValue(VecOp0, 0),
|
|
|
|
SDValue(SelMask, 0));
|
|
|
|
|
|
|
|
if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
|
|
|
|
unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
|
|
|
|
unsigned bits = unsigned(CN->getZExtValue()) & 7;
|
|
|
|
|
|
|
|
if (bytes > 0) {
|
|
|
|
Shift =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::SHLQBYIv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue(VecOp0, 0),
|
|
|
|
CurDAG->getTargetConstant(bytes, ShiftAmtVT));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bits > 0) {
|
|
|
|
Shift =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::SHLQBIIv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue((Shift != 0 ? Shift : VecOp0), 0),
|
|
|
|
CurDAG->getTargetConstant(bits, ShiftAmtVT));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
SDNode *Bytes =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ROTMIr32, dl, ShiftAmtVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
ShiftAmt,
|
|
|
|
CurDAG->getTargetConstant(3, ShiftAmtVT));
|
|
|
|
SDNode *Bits =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ANDIr32, dl, ShiftAmtVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
ShiftAmt,
|
|
|
|
CurDAG->getTargetConstant(7, ShiftAmtVT));
|
|
|
|
Shift =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::SHLQBYv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue(VecOp0, 0), SDValue(Bytes, 0));
|
|
|
|
Shift =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::SHLQBIv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue(Shift, 0), SDValue(Bits, 0));
|
|
|
|
}
|
|
|
|
|
2009-02-06 01:31:28 +00:00
|
|
|
return CurDAG->getTargetNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
|
2008-12-30 23:28:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Emit the instruction sequence for i64 logical right shifts.
|
|
|
|
*
|
|
|
|
* @param Op The shl operand
|
|
|
|
* @param OpVT Op's machine value value type (doesn't need to be passed, but
|
|
|
|
* makes life easier.)
|
|
|
|
* @return The SDNode with the entire instruction sequence
|
|
|
|
*/
|
|
|
|
SDNode *
|
|
|
|
SPUDAGToDAGISel::SelectSRLi64(SDValue &Op, MVT OpVT) {
|
|
|
|
SDValue Op0 = Op.getOperand(0);
|
|
|
|
MVT VecVT = MVT::getVectorVT(OpVT, (128 / OpVT.getSizeInBits()));
|
|
|
|
SDValue ShiftAmt = Op.getOperand(1);
|
|
|
|
MVT ShiftAmtVT = ShiftAmt.getValueType();
|
|
|
|
SDNode *VecOp0, *Shift = 0;
|
2009-02-06 01:31:28 +00:00
|
|
|
DebugLoc dl = Op.getDebugLoc();
|
2008-12-30 23:28:25 +00:00
|
|
|
|
2009-02-06 01:31:28 +00:00
|
|
|
VecOp0 = CurDAG->getTargetNode(SPU::ORv2i64_i64, dl, VecVT, Op0);
|
2008-12-30 23:28:25 +00:00
|
|
|
|
|
|
|
if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
|
|
|
|
unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
|
|
|
|
unsigned bits = unsigned(CN->getZExtValue()) & 7;
|
|
|
|
|
|
|
|
if (bytes > 0) {
|
|
|
|
Shift =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ROTQMBYIv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue(VecOp0, 0),
|
|
|
|
CurDAG->getTargetConstant(bytes, ShiftAmtVT));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bits > 0) {
|
|
|
|
Shift =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ROTQMBIIv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue((Shift != 0 ? Shift : VecOp0), 0),
|
|
|
|
CurDAG->getTargetConstant(bits, ShiftAmtVT));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
SDNode *Bytes =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ROTMIr32, dl, ShiftAmtVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
ShiftAmt,
|
|
|
|
CurDAG->getTargetConstant(3, ShiftAmtVT));
|
|
|
|
SDNode *Bits =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ANDIr32, dl, ShiftAmtVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
ShiftAmt,
|
|
|
|
CurDAG->getTargetConstant(7, ShiftAmtVT));
|
|
|
|
|
|
|
|
// Ensure that the shift amounts are negated!
|
2009-02-06 01:31:28 +00:00
|
|
|
Bytes = CurDAG->getTargetNode(SPU::SFIr32, dl, ShiftAmtVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue(Bytes, 0),
|
|
|
|
CurDAG->getTargetConstant(0, ShiftAmtVT));
|
|
|
|
|
2009-02-06 01:31:28 +00:00
|
|
|
Bits = CurDAG->getTargetNode(SPU::SFIr32, dl, ShiftAmtVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue(Bits, 0),
|
|
|
|
CurDAG->getTargetConstant(0, ShiftAmtVT));
|
|
|
|
|
|
|
|
Shift =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ROTQMBYv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue(VecOp0, 0), SDValue(Bytes, 0));
|
|
|
|
Shift =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ROTQMBIv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue(Shift, 0), SDValue(Bits, 0));
|
|
|
|
}
|
|
|
|
|
2009-02-06 01:31:28 +00:00
|
|
|
return CurDAG->getTargetNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
|
2008-12-30 23:28:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Emit the instruction sequence for i64 arithmetic right shifts.
|
|
|
|
*
|
|
|
|
* @param Op The shl operand
|
|
|
|
* @param OpVT Op's machine value value type (doesn't need to be passed, but
|
|
|
|
* makes life easier.)
|
|
|
|
* @return The SDNode with the entire instruction sequence
|
|
|
|
*/
|
|
|
|
SDNode *
|
|
|
|
SPUDAGToDAGISel::SelectSRAi64(SDValue &Op, MVT OpVT) {
|
|
|
|
// Promote Op0 to vector
|
|
|
|
MVT VecVT = MVT::getVectorVT(OpVT, (128 / OpVT.getSizeInBits()));
|
|
|
|
SDValue ShiftAmt = Op.getOperand(1);
|
|
|
|
MVT ShiftAmtVT = ShiftAmt.getValueType();
|
2009-02-06 01:31:28 +00:00
|
|
|
DebugLoc dl = Op.getDebugLoc();
|
2008-12-30 23:28:25 +00:00
|
|
|
|
|
|
|
SDNode *VecOp0 =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ORv2i64_i64, dl, VecVT, Op.getOperand(0));
|
2008-12-30 23:28:25 +00:00
|
|
|
|
|
|
|
SDValue SignRotAmt = CurDAG->getTargetConstant(31, ShiftAmtVT);
|
|
|
|
SDNode *SignRot =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ROTMAIv2i64_i32, dl, MVT::v2i64,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue(VecOp0, 0), SignRotAmt);
|
|
|
|
SDNode *UpperHalfSign =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ORi32_v4i32, dl, MVT::i32, SDValue(SignRot, 0));
|
2008-12-30 23:28:25 +00:00
|
|
|
|
|
|
|
SDNode *UpperHalfSignMask =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::FSM64r32, dl, VecVT, SDValue(UpperHalfSign, 0));
|
2008-12-30 23:28:25 +00:00
|
|
|
SDNode *UpperLowerMask =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::FSMBIv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
CurDAG->getTargetConstant(0xff00ULL, MVT::i16));
|
|
|
|
SDNode *UpperLowerSelect =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::SELBv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue(UpperHalfSignMask, 0),
|
|
|
|
SDValue(VecOp0, 0),
|
|
|
|
SDValue(UpperLowerMask, 0));
|
|
|
|
|
|
|
|
SDNode *Shift = 0;
|
|
|
|
|
|
|
|
if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(ShiftAmt)) {
|
|
|
|
unsigned bytes = unsigned(CN->getZExtValue()) >> 3;
|
|
|
|
unsigned bits = unsigned(CN->getZExtValue()) & 7;
|
|
|
|
|
|
|
|
if (bytes > 0) {
|
|
|
|
bytes = 31 - bytes;
|
|
|
|
Shift =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ROTQBYIv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue(UpperLowerSelect, 0),
|
|
|
|
CurDAG->getTargetConstant(bytes, ShiftAmtVT));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bits > 0) {
|
|
|
|
bits = 8 - bits;
|
|
|
|
Shift =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ROTQBIIv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue((Shift != 0 ? Shift : UpperLowerSelect), 0),
|
|
|
|
CurDAG->getTargetConstant(bits, ShiftAmtVT));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
SDNode *NegShift =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::SFIr32, dl, ShiftAmtVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
ShiftAmt, CurDAG->getTargetConstant(0, ShiftAmtVT));
|
|
|
|
|
|
|
|
Shift =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ROTQBYBIv2i64_r32, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue(UpperLowerSelect, 0), SDValue(NegShift, 0));
|
|
|
|
Shift =
|
2009-02-06 01:31:28 +00:00
|
|
|
CurDAG->getTargetNode(SPU::ROTQBIv2i64, dl, VecVT,
|
2008-12-30 23:28:25 +00:00
|
|
|
SDValue(Shift, 0), SDValue(NegShift, 0));
|
|
|
|
}
|
|
|
|
|
2009-02-06 01:31:28 +00:00
|
|
|
return CurDAG->getTargetNode(SPU::ORi64_v2i64, dl, OpVT, SDValue(Shift, 0));
|
2008-12-30 23:28:25 +00:00
|
|
|
}
|
|
|
|
|
2009-01-26 03:31:40 +00:00
|
|
|
/*!
|
|
|
|
Do the necessary magic necessary to load a i64 constant
|
|
|
|
*/
|
2009-03-17 01:15:45 +00:00
|
|
|
SDNode *SPUDAGToDAGISel::SelectI64Constant(SDValue& Op, MVT OpVT,
|
|
|
|
DebugLoc dl) {
|
2009-01-26 03:31:40 +00:00
|
|
|
ConstantSDNode *CN = cast<ConstantSDNode>(Op.getNode());
|
2009-03-17 01:15:45 +00:00
|
|
|
return SelectI64Constant(CN->getZExtValue(), OpVT, dl);
|
|
|
|
}
|
|
|
|
|
|
|
|
SDNode *SPUDAGToDAGISel::SelectI64Constant(uint64_t Value64, MVT OpVT,
|
|
|
|
DebugLoc dl) {
|
2009-01-26 03:31:40 +00:00
|
|
|
MVT OpVecVT = MVT::getVectorVT(OpVT, 2);
|
|
|
|
SDValue i64vec =
|
2009-03-17 01:15:45 +00:00
|
|
|
SPU::LowerV2I64Splat(OpVecVT, *CurDAG, Value64, dl);
|
2009-01-26 03:31:40 +00:00
|
|
|
|
|
|
|
// Here's where it gets interesting, because we have to parse out the
|
|
|
|
// subtree handed back in i64vec:
|
|
|
|
|
|
|
|
if (i64vec.getOpcode() == ISD::BIT_CONVERT) {
|
|
|
|
// The degenerate case where the upper and lower bits in the splat are
|
|
|
|
// identical:
|
|
|
|
SDValue Op0 = i64vec.getOperand(0);
|
|
|
|
|
2009-01-26 22:33:37 +00:00
|
|
|
ReplaceUses(i64vec, Op0);
|
2009-02-06 01:31:28 +00:00
|
|
|
return CurDAG->getTargetNode(SPU::ORi64_v2i64, dl, OpVT,
|
2009-01-26 03:31:40 +00:00
|
|
|
SDValue(emitBuildVector(Op0), 0));
|
|
|
|
} else if (i64vec.getOpcode() == SPUISD::SHUFB) {
|
|
|
|
SDValue lhs = i64vec.getOperand(0);
|
|
|
|
SDValue rhs = i64vec.getOperand(1);
|
|
|
|
SDValue shufmask = i64vec.getOperand(2);
|
|
|
|
|
|
|
|
if (lhs.getOpcode() == ISD::BIT_CONVERT) {
|
|
|
|
ReplaceUses(lhs, lhs.getOperand(0));
|
|
|
|
lhs = lhs.getOperand(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
SDNode *lhsNode = (lhs.getNode()->isMachineOpcode()
|
|
|
|
? lhs.getNode()
|
|
|
|
: emitBuildVector(lhs));
|
|
|
|
|
|
|
|
if (rhs.getOpcode() == ISD::BIT_CONVERT) {
|
|
|
|
ReplaceUses(rhs, rhs.getOperand(0));
|
|
|
|
rhs = rhs.getOperand(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
SDNode *rhsNode = (rhs.getNode()->isMachineOpcode()
|
|
|
|
? rhs.getNode()
|
|
|
|
: emitBuildVector(rhs));
|
2009-01-26 22:33:37 +00:00
|
|
|
|
2009-01-26 03:31:40 +00:00
|
|
|
if (shufmask.getOpcode() == ISD::BIT_CONVERT) {
|
|
|
|
ReplaceUses(shufmask, shufmask.getOperand(0));
|
|
|
|
shufmask = shufmask.getOperand(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
SDNode *shufMaskNode = (shufmask.getNode()->isMachineOpcode()
|
|
|
|
? shufmask.getNode()
|
|
|
|
: emitBuildVector(shufmask));
|
|
|
|
|
|
|
|
SDNode *shufNode =
|
2009-02-06 01:31:28 +00:00
|
|
|
Select(CurDAG->getNode(SPUISD::SHUFB, dl, OpVecVT,
|
2009-01-26 03:31:40 +00:00
|
|
|
SDValue(lhsNode, 0), SDValue(rhsNode, 0),
|
|
|
|
SDValue(shufMaskNode, 0)));
|
|
|
|
|
2009-03-17 01:15:45 +00:00
|
|
|
return CurDAG->getTargetNode(SPU::ORi64_v2i64, dl, OpVT,
|
2009-02-06 01:31:28 +00:00
|
|
|
SDValue(shufNode, 0));
|
2009-03-17 01:15:45 +00:00
|
|
|
} else if (i64vec.getOpcode() == ISD::BUILD_VECTOR) {
|
|
|
|
return CurDAG->getTargetNode(SPU::ORi64_v2i64, dl, OpVT,
|
|
|
|
SDValue(emitBuildVector(i64vec), 0));
|
2009-01-26 03:31:40 +00:00
|
|
|
} else {
|
|
|
|
cerr << "SPUDAGToDAGISel::SelectI64Constant: Unhandled i64vec condition\n";
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-30 23:28:25 +00:00
|
|
|
/// createSPUISelDag - This pass converts a legalized DAG into a
|
2007-12-04 22:23:35 +00:00
|
|
|
/// SPU-specific DAG, ready for instruction scheduling.
|
|
|
|
///
|
|
|
|
FunctionPass *llvm::createSPUISelDag(SPUTargetMachine &TM) {
|
|
|
|
return new SPUDAGToDAGISel(TM);
|
|
|
|
}
|