2013-03-14 18:27:31 +00:00
|
|
|
//===-- MipsSEISelDAGToDAG.h - A Dag to Dag Inst Selector for MipsSE -----===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Subclass of MipsDAGToDAGISel specialized for mips32/64.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_MIPS_MIPSSEISELDAGTODAG_H
|
|
|
|
#define LLVM_LIB_TARGET_MIPS_MIPSSEISELDAGTODAG_H
|
2013-03-14 18:27:31 +00:00
|
|
|
|
|
|
|
#include "MipsISelDAGToDAG.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class MipsSEDAGToDAGISel : public MipsDAGToDAGISel {
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit MipsSEDAGToDAGISel(MipsTargetMachine &TM) : MipsDAGToDAGISel(TM) {}
|
|
|
|
|
|
|
|
private:
|
2013-04-09 19:46:01 +00:00
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
bool runOnMachineFunction(MachineFunction &MF) override;
|
2013-04-09 19:46:01 +00:00
|
|
|
|
2013-05-03 18:37:49 +00:00
|
|
|
void addDSPCtrlRegOperands(bool IsDef, MachineInstr &MI,
|
|
|
|
MachineFunction &MF);
|
|
|
|
|
2013-08-28 10:26:24 +00:00
|
|
|
unsigned getMSACtrlReg(const SDValue RegIdx) const;
|
|
|
|
|
2013-03-14 18:33:23 +00:00
|
|
|
bool replaceUsesWithZeroReg(MachineRegisterInfo *MRI, const MachineInstr&);
|
2013-03-14 18:27:31 +00:00
|
|
|
|
2013-05-25 02:42:55 +00:00
|
|
|
std::pair<SDNode*, SDNode*> selectMULT(SDNode *N, unsigned Opc, SDLoc dl,
|
2013-03-14 18:27:31 +00:00
|
|
|
EVT Ty, bool HasLo, bool HasHi);
|
|
|
|
|
2013-03-14 18:39:25 +00:00
|
|
|
SDNode *selectAddESubE(unsigned MOp, SDValue InFlag, SDValue CmpLHS,
|
2013-05-25 02:42:55 +00:00
|
|
|
SDLoc DL, SDNode *Node) const;
|
2013-03-14 18:39:25 +00:00
|
|
|
|
2014-03-03 14:31:21 +00:00
|
|
|
bool selectAddrFrameIndex(SDValue Addr, SDValue &Base, SDValue &Offset) const;
|
|
|
|
bool selectAddrFrameIndexOffset(SDValue Addr, SDValue &Base, SDValue &Offset,
|
|
|
|
unsigned OffsetBits) const;
|
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectAddrRegImm(SDValue Addr, SDValue &Base,
|
|
|
|
SDValue &Offset) const override;
|
2013-03-14 18:27:31 +00:00
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectAddrRegReg(SDValue Addr, SDValue &Base,
|
|
|
|
SDValue &Offset) const override;
|
2013-08-28 12:04:29 +00:00
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectAddrDefault(SDValue Addr, SDValue &Base,
|
|
|
|
SDValue &Offset) const override;
|
2013-03-14 18:27:31 +00:00
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectIntAddr(SDValue Addr, SDValue &Base,
|
|
|
|
SDValue &Offset) const override;
|
2013-03-14 18:27:31 +00:00
|
|
|
|
2015-03-24 11:26:34 +00:00
|
|
|
bool selectAddrRegImm9(SDValue Addr, SDValue &Base,
|
|
|
|
SDValue &Offset) const;
|
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectAddrRegImm10(SDValue Addr, SDValue &Base,
|
|
|
|
SDValue &Offset) const;
|
2014-03-03 14:31:21 +00:00
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectAddrRegImm12(SDValue Addr, SDValue &Base,
|
|
|
|
SDValue &Offset) const;
|
2013-08-13 20:19:16 +00:00
|
|
|
|
2015-03-24 11:26:34 +00:00
|
|
|
bool selectAddrRegImm16(SDValue Addr, SDValue &Base,
|
|
|
|
SDValue &Offset) const;
|
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectIntAddrMM(SDValue Addr, SDValue &Base,
|
|
|
|
SDValue &Offset) const override;
|
2013-08-13 20:19:16 +00:00
|
|
|
|
2015-02-04 15:43:17 +00:00
|
|
|
bool selectIntAddrLSL2MM(SDValue Addr, SDValue &Base,
|
|
|
|
SDValue &Offset) const override;
|
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectIntAddrMSA(SDValue Addr, SDValue &Base,
|
|
|
|
SDValue &Offset) const override;
|
2014-03-03 14:31:21 +00:00
|
|
|
|
2013-09-24 13:33:07 +00:00
|
|
|
/// \brief Select constant vector splats.
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectVSplat(SDNode *N, APInt &Imm) const override;
|
2013-09-24 13:33:07 +00:00
|
|
|
/// \brief Select constant vector splats whose value fits in a given integer.
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectVSplatCommon(SDValue N, SDValue &Imm, bool Signed,
|
2013-09-24 13:33:07 +00:00
|
|
|
unsigned ImmBitSize) const;
|
2013-09-27 11:48:57 +00:00
|
|
|
/// \brief Select constant vector splats whose value fits in a uimm1.
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectVSplatUimm1(SDValue N, SDValue &Imm) const override;
|
2013-09-27 11:48:57 +00:00
|
|
|
/// \brief Select constant vector splats whose value fits in a uimm2.
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectVSplatUimm2(SDValue N, SDValue &Imm) const override;
|
2013-09-24 13:33:07 +00:00
|
|
|
/// \brief Select constant vector splats whose value fits in a uimm3.
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectVSplatUimm3(SDValue N, SDValue &Imm) const override;
|
2013-09-24 13:33:07 +00:00
|
|
|
/// \brief Select constant vector splats whose value fits in a uimm4.
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectVSplatUimm4(SDValue N, SDValue &Imm) const override;
|
2013-09-24 13:33:07 +00:00
|
|
|
/// \brief Select constant vector splats whose value fits in a uimm5.
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectVSplatUimm5(SDValue N, SDValue &Imm) const override;
|
2013-09-24 13:33:07 +00:00
|
|
|
/// \brief Select constant vector splats whose value fits in a uimm6.
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectVSplatUimm6(SDValue N, SDValue &Imm) const override;
|
2013-09-24 13:33:07 +00:00
|
|
|
/// \brief Select constant vector splats whose value fits in a uimm8.
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectVSplatUimm8(SDValue N, SDValue &Imm) const override;
|
2013-09-24 13:33:07 +00:00
|
|
|
/// \brief Select constant vector splats whose value fits in a simm5.
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectVSplatSimm5(SDValue N, SDValue &Imm) const override;
|
2013-09-24 13:33:07 +00:00
|
|
|
/// \brief Select constant vector splats whose value is a power of 2.
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectVSplatUimmPow2(SDValue N, SDValue &Imm) const override;
|
2013-11-12 10:45:18 +00:00
|
|
|
/// \brief Select constant vector splats whose value is the inverse of a
|
|
|
|
/// power of 2.
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectVSplatUimmInvPow2(SDValue N, SDValue &Imm) const override;
|
2013-10-30 14:45:14 +00:00
|
|
|
/// \brief Select constant vector splats whose value is a run of set bits
|
|
|
|
/// ending at the most significant bit
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectVSplatMaskL(SDValue N, SDValue &Imm) const override;
|
2013-10-30 14:45:14 +00:00
|
|
|
/// \brief Select constant vector splats whose value is a run of set bits
|
|
|
|
/// starting at bit zero.
|
2014-04-29 07:58:02 +00:00
|
|
|
bool selectVSplatMaskR(SDValue N, SDValue &Imm) const override;
|
2013-09-24 13:33:07 +00:00
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
std::pair<bool, SDNode*> selectNode(SDNode *Node) override;
|
2013-03-14 18:27:31 +00:00
|
|
|
|
2014-04-29 07:58:02 +00:00
|
|
|
void processFunctionAfterISel(MachineFunction &MF) override;
|
2013-03-14 18:27:31 +00:00
|
|
|
|
|
|
|
// Insert instructions to initialize the global base register in the
|
|
|
|
// first MBB of the function.
|
2013-03-14 18:33:23 +00:00
|
|
|
void initGlobalBaseReg(MachineFunction &MF);
|
2015-03-24 11:26:34 +00:00
|
|
|
|
|
|
|
bool SelectInlineAsmMemoryOperand(const SDValue &Op,
|
|
|
|
unsigned ConstraintID,
|
|
|
|
std::vector<SDValue> &OutOps) override;
|
2013-03-14 18:27:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
FunctionPass *createMipsSEISelDag(MipsTargetMachine &TM);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|