2017-10-20 05:37:38 +08:00
|
|
|
//===-- RISCVISelDAGToDAG.cpp - A dag to dag inst selector for RISCV ------===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2017-10-20 05:37:38 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines an instruction selector for the RISCV target.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "MCTargetDesc/RISCVMCTargetDesc.h"
|
2018-11-16 18:14:16 +08:00
|
|
|
#include "RISCV.h"
|
2017-10-20 05:37:38 +08:00
|
|
|
#include "RISCVTargetMachine.h"
|
2018-11-16 18:14:16 +08:00
|
|
|
#include "Utils/RISCVMatInt.h"
|
2017-12-11 19:53:54 +08:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
2017-10-20 05:37:38 +08:00
|
|
|
#include "llvm/CodeGen/SelectionDAGISel.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/MathExtras.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "riscv-isel"
|
|
|
|
|
|
|
|
// RISCV-specific code to select RISCV machine instructions for
|
|
|
|
// SelectionDAG operations.
|
|
|
|
namespace {
|
|
|
|
class RISCVDAGToDAGISel final : public SelectionDAGISel {
|
2017-11-21 16:23:08 +08:00
|
|
|
const RISCVSubtarget *Subtarget;
|
|
|
|
|
2017-10-20 05:37:38 +08:00
|
|
|
public:
|
|
|
|
explicit RISCVDAGToDAGISel(RISCVTargetMachine &TargetMachine)
|
|
|
|
: SelectionDAGISel(TargetMachine) {}
|
|
|
|
|
|
|
|
StringRef getPassName() const override {
|
|
|
|
return "RISCV DAG->DAG Pattern Instruction Selection";
|
|
|
|
}
|
|
|
|
|
2017-11-21 16:23:08 +08:00
|
|
|
bool runOnMachineFunction(MachineFunction &MF) override {
|
|
|
|
Subtarget = &MF.getSubtarget<RISCVSubtarget>();
|
|
|
|
return SelectionDAGISel::runOnMachineFunction(MF);
|
|
|
|
}
|
|
|
|
|
2018-03-19 19:54:28 +08:00
|
|
|
void PostprocessISelDAG() override;
|
|
|
|
|
2017-10-20 05:37:38 +08:00
|
|
|
void Select(SDNode *Node) override;
|
|
|
|
|
2018-01-11 04:05:09 +08:00
|
|
|
bool SelectInlineAsmMemoryOperand(const SDValue &Op, unsigned ConstraintID,
|
|
|
|
std::vector<SDValue> &OutOps) override;
|
|
|
|
|
2017-12-11 19:53:54 +08:00
|
|
|
bool SelectAddrFI(SDValue Addr, SDValue &Base);
|
|
|
|
|
2017-10-20 05:37:38 +08:00
|
|
|
// Include the pieces autogenerated from the target description.
|
|
|
|
#include "RISCVGenDAGISel.inc"
|
2018-03-19 19:54:28 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
void doPeepholeLoadStoreADDI();
|
2017-10-20 05:37:38 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-04-12 13:34:25 +08:00
|
|
|
void RISCVDAGToDAGISel::PostprocessISelDAG() {
|
|
|
|
doPeepholeLoadStoreADDI();
|
|
|
|
}
|
2018-03-19 19:54:28 +08:00
|
|
|
|
2018-11-16 18:14:16 +08:00
|
|
|
static SDNode *selectImm(SelectionDAG *CurDAG, const SDLoc &DL, int64_t Imm,
|
|
|
|
MVT XLenVT) {
|
|
|
|
RISCVMatInt::InstSeq Seq;
|
|
|
|
RISCVMatInt::generateInstSeq(Imm, XLenVT == MVT::i64, Seq);
|
|
|
|
|
|
|
|
SDNode *Result;
|
|
|
|
SDValue SrcReg = CurDAG->getRegister(RISCV::X0, XLenVT);
|
|
|
|
for (RISCVMatInt::Inst &Inst : Seq) {
|
|
|
|
SDValue SDImm = CurDAG->getTargetConstant(Inst.Imm, DL, XLenVT);
|
|
|
|
if (Inst.Opc == RISCV::LUI)
|
|
|
|
Result = CurDAG->getMachineNode(RISCV::LUI, DL, XLenVT, SDImm);
|
|
|
|
else
|
|
|
|
Result = CurDAG->getMachineNode(Inst.Opc, DL, XLenVT, SrcReg, SDImm);
|
|
|
|
|
|
|
|
// Only the first instruction has X0 as its source.
|
|
|
|
SrcReg = SDValue(Result, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
[RISCV] Introduce codegen patterns for instructions introduced in RV64I
As discussed in the RFC
<http://lists.llvm.org/pipermail/llvm-dev/2018-October/126690.html>, 64-bit
RISC-V has i64 as the only legal integer type. This patch introduces patterns
to support codegen of the new instructions
introduced in RV64I: addiw, addiw, subw, sllw, slliw, srlw, srliw, sraw,
sraiw, ld, sd.
Custom selection code is needed for srliw as SimplifyDemandedBits will remove
lower bits from the mask, meaning the obvious pattern won't work:
def : Pat<(sext_inreg (srl (and GPR:$rs1, 0xffffffff), uimm5:$shamt), i32),
(SRLIW GPR:$rs1, uimm5:$shamt)>;
This is sufficient to compile and execute all of the GCC torture suite for
RV64I other than those files using frameaddr or returnaddr intrinsics
(LegalizeDAG doesn't know how to promote the operands - a future patch
addresses this).
When promoting i32 sltu/sltiu operands, it would be more efficient to use
sign-extension rather than zero-extension for RV64. A future patch adds a hook
to allow this.
Differential Revision: https://reviews.llvm.org/D52977
llvm-svn: 347973
2018-11-30 17:38:44 +08:00
|
|
|
// Returns true if the Node is an ISD::AND with a constant argument. If so,
|
|
|
|
// set Mask to that constant value.
|
|
|
|
static bool isConstantMask(SDNode *Node, uint64_t &Mask) {
|
|
|
|
if (Node->getOpcode() == ISD::AND &&
|
|
|
|
Node->getOperand(1).getOpcode() == ISD::Constant) {
|
|
|
|
Mask = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-10-20 05:37:38 +08:00
|
|
|
void RISCVDAGToDAGISel::Select(SDNode *Node) {
|
2018-10-03 21:13:13 +08:00
|
|
|
// If we have a custom node, we have already selected.
|
2017-10-20 05:37:38 +08:00
|
|
|
if (Node->isMachineOpcode()) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << "\n");
|
2017-10-20 05:37:38 +08:00
|
|
|
Node->setNodeId(-1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-21 16:23:08 +08:00
|
|
|
// Instruction Selection not handled by the auto-generated tablegen selection
|
|
|
|
// should be handled here.
|
2018-10-03 21:13:13 +08:00
|
|
|
unsigned Opcode = Node->getOpcode();
|
|
|
|
MVT XLenVT = Subtarget->getXLenVT();
|
|
|
|
SDLoc DL(Node);
|
2017-11-21 16:23:08 +08:00
|
|
|
EVT VT = Node->getValueType(0);
|
2018-10-03 21:13:13 +08:00
|
|
|
|
|
|
|
switch (Opcode) {
|
|
|
|
case ISD::Constant: {
|
|
|
|
auto ConstNode = cast<ConstantSDNode>(Node);
|
|
|
|
if (VT == XLenVT && ConstNode->isNullValue()) {
|
2017-11-21 20:00:19 +08:00
|
|
|
SDValue New = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), SDLoc(Node),
|
|
|
|
RISCV::X0, XLenVT);
|
|
|
|
ReplaceNode(Node, New.getNode());
|
|
|
|
return;
|
2017-11-21 16:23:08 +08:00
|
|
|
}
|
2018-11-16 18:14:16 +08:00
|
|
|
int64_t Imm = ConstNode->getSExtValue();
|
|
|
|
if (XLenVT == MVT::i64) {
|
|
|
|
ReplaceNode(Node, selectImm(CurDAG, SDLoc(Node), Imm, XLenVT));
|
|
|
|
return;
|
|
|
|
}
|
2018-10-03 21:13:13 +08:00
|
|
|
break;
|
2017-11-21 16:23:08 +08:00
|
|
|
}
|
2018-10-03 21:13:13 +08:00
|
|
|
case ISD::FrameIndex: {
|
2017-12-11 19:53:54 +08:00
|
|
|
SDValue Imm = CurDAG->getTargetConstant(0, DL, XLenVT);
|
2018-05-05 09:57:00 +08:00
|
|
|
int FI = cast<FrameIndexSDNode>(Node)->getIndex();
|
2017-12-11 19:53:54 +08:00
|
|
|
SDValue TFI = CurDAG->getTargetFrameIndex(FI, VT);
|
|
|
|
ReplaceNode(Node, CurDAG->getMachineNode(RISCV::ADDI, DL, VT, TFI, Imm));
|
|
|
|
return;
|
|
|
|
}
|
[RISCV] Introduce codegen patterns for instructions introduced in RV64I
As discussed in the RFC
<http://lists.llvm.org/pipermail/llvm-dev/2018-October/126690.html>, 64-bit
RISC-V has i64 as the only legal integer type. This patch introduces patterns
to support codegen of the new instructions
introduced in RV64I: addiw, addiw, subw, sllw, slliw, srlw, srliw, sraw,
sraiw, ld, sd.
Custom selection code is needed for srliw as SimplifyDemandedBits will remove
lower bits from the mask, meaning the obvious pattern won't work:
def : Pat<(sext_inreg (srl (and GPR:$rs1, 0xffffffff), uimm5:$shamt), i32),
(SRLIW GPR:$rs1, uimm5:$shamt)>;
This is sufficient to compile and execute all of the GCC torture suite for
RV64I other than those files using frameaddr or returnaddr intrinsics
(LegalizeDAG doesn't know how to promote the operands - a future patch
addresses this).
When promoting i32 sltu/sltiu operands, it would be more efficient to use
sign-extension rather than zero-extension for RV64. A future patch adds a hook
to allow this.
Differential Revision: https://reviews.llvm.org/D52977
llvm-svn: 347973
2018-11-30 17:38:44 +08:00
|
|
|
case ISD::SRL: {
|
|
|
|
if (!Subtarget->is64Bit())
|
|
|
|
break;
|
|
|
|
SDValue Op0 = Node->getOperand(0);
|
|
|
|
SDValue Op1 = Node->getOperand(1);
|
|
|
|
uint64_t Mask;
|
|
|
|
// Match (srl (and val, mask), imm) where the result would be a
|
|
|
|
// zero-extended 32-bit integer. i.e. the mask is 0xffffffff or the result
|
|
|
|
// is equivalent to this (SimplifyDemandedBits may have removed lower bits
|
|
|
|
// from the mask that aren't necessary due to the right-shifting).
|
|
|
|
if (Op1.getOpcode() == ISD::Constant &&
|
|
|
|
isConstantMask(Op0.getNode(), Mask)) {
|
|
|
|
uint64_t ShAmt = cast<ConstantSDNode>(Op1.getNode())->getZExtValue();
|
|
|
|
|
|
|
|
if ((Mask | maskTrailingOnes<uint64_t>(ShAmt)) == 0xffffffff) {
|
|
|
|
SDValue ShAmtVal =
|
|
|
|
CurDAG->getTargetConstant(ShAmt, SDLoc(Node), XLenVT);
|
|
|
|
CurDAG->SelectNodeTo(Node, RISCV::SRLIW, XLenVT, Op0.getOperand(0),
|
|
|
|
ShAmtVal);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2019-01-22 15:22:00 +08:00
|
|
|
break;
|
[RISCV] Introduce codegen patterns for instructions introduced in RV64I
As discussed in the RFC
<http://lists.llvm.org/pipermail/llvm-dev/2018-October/126690.html>, 64-bit
RISC-V has i64 as the only legal integer type. This patch introduces patterns
to support codegen of the new instructions
introduced in RV64I: addiw, addiw, subw, sllw, slliw, srlw, srliw, sraw,
sraiw, ld, sd.
Custom selection code is needed for srliw as SimplifyDemandedBits will remove
lower bits from the mask, meaning the obvious pattern won't work:
def : Pat<(sext_inreg (srl (and GPR:$rs1, 0xffffffff), uimm5:$shamt), i32),
(SRLIW GPR:$rs1, uimm5:$shamt)>;
This is sufficient to compile and execute all of the GCC torture suite for
RV64I other than those files using frameaddr or returnaddr intrinsics
(LegalizeDAG doesn't know how to promote the operands - a future patch
addresses this).
When promoting i32 sltu/sltiu operands, it would be more efficient to use
sign-extension rather than zero-extension for RV64. A future patch adds a hook
to allow this.
Differential Revision: https://reviews.llvm.org/D52977
llvm-svn: 347973
2018-11-30 17:38:44 +08:00
|
|
|
}
|
[RISCV] Support @llvm.readcyclecounter() Intrinsic
On RISC-V, the `cycle` CSR holds a 64-bit count of the number of clock
cycles executed by the core, from an arbitrary point in the past. This
matches the intended semantics of `@llvm.readcyclecounter()`, which we
currently leave to the default lowering (to the constant 0).
With this patch, we will now correctly lower this intrinsic to the
intended semantics, using the user-space instruction `rdcycle`. On
64-bit targets, we can directly lower to this instruction.
On 32-bit targets, we need to do more, as `rdcycle` only returns the low
32-bits of the `cycle` CSR. In this case, we perform a custom lowering,
based on the PowerPC lowering, using `rdcycleh` to obtain the high
32-bits of the `cycle` CSR. This custom lowering inserts a new basic
block which detects overflow in the high 32-bits of the `cycle` CSR
during reading (because multiple instructions are required to read). The
emitted assembly matches the suggested assembly in the RISC-V
specification.
Differential Revision: https://reviews.llvm.org/D64125
llvm-svn: 365201
2019-07-05 20:35:21 +08:00
|
|
|
case RISCVISD::READ_CYCLE_WIDE:
|
|
|
|
assert(!Subtarget->is64Bit() && "READ_CYCLE_WIDE is only used on riscv32");
|
|
|
|
|
|
|
|
ReplaceNode(Node, CurDAG->getMachineNode(RISCV::ReadCycleWide, DL, MVT::i32,
|
|
|
|
MVT::i32, MVT::Other,
|
|
|
|
Node->getOperand(0)));
|
|
|
|
return;
|
2018-10-03 21:13:13 +08:00
|
|
|
}
|
2017-11-21 16:23:08 +08:00
|
|
|
|
2017-10-20 05:37:38 +08:00
|
|
|
// Select the default instruction.
|
|
|
|
SelectCode(Node);
|
|
|
|
}
|
|
|
|
|
2018-01-11 04:05:09 +08:00
|
|
|
bool RISCVDAGToDAGISel::SelectInlineAsmMemoryOperand(
|
|
|
|
const SDValue &Op, unsigned ConstraintID, std::vector<SDValue> &OutOps) {
|
|
|
|
switch (ConstraintID) {
|
|
|
|
case InlineAsm::Constraint_i:
|
|
|
|
case InlineAsm::Constraint_m:
|
|
|
|
// We just support simple memory operands that have a single address
|
|
|
|
// operand and need no special handling.
|
|
|
|
OutOps.push_back(Op);
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-12-11 19:53:54 +08:00
|
|
|
bool RISCVDAGToDAGISel::SelectAddrFI(SDValue Addr, SDValue &Base) {
|
|
|
|
if (auto FIN = dyn_cast<FrameIndexSDNode>(Addr)) {
|
|
|
|
Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), Subtarget->getXLenVT());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-03-19 19:54:28 +08:00
|
|
|
// Merge an ADDI into the offset of a load/store instruction where possible.
|
|
|
|
// (load (add base, off), 0) -> (load base, off)
|
|
|
|
// (store val, (add base, off)) -> (store val, base, off)
|
|
|
|
void RISCVDAGToDAGISel::doPeepholeLoadStoreADDI() {
|
|
|
|
SelectionDAG::allnodes_iterator Position(CurDAG->getRoot().getNode());
|
|
|
|
++Position;
|
|
|
|
|
|
|
|
while (Position != CurDAG->allnodes_begin()) {
|
|
|
|
SDNode *N = &*--Position;
|
|
|
|
// Skip dead nodes and any non-machine opcodes.
|
|
|
|
if (N->use_empty() || !N->isMachineOpcode())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
int OffsetOpIdx;
|
|
|
|
int BaseOpIdx;
|
|
|
|
|
|
|
|
// Only attempt this optimisation for I-type loads and S-type stores.
|
|
|
|
switch (N->getMachineOpcode()) {
|
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
case RISCV::LB:
|
|
|
|
case RISCV::LH:
|
|
|
|
case RISCV::LW:
|
|
|
|
case RISCV::LBU:
|
|
|
|
case RISCV::LHU:
|
|
|
|
case RISCV::LWU:
|
|
|
|
case RISCV::LD:
|
|
|
|
case RISCV::FLW:
|
|
|
|
case RISCV::FLD:
|
|
|
|
BaseOpIdx = 0;
|
|
|
|
OffsetOpIdx = 1;
|
|
|
|
break;
|
|
|
|
case RISCV::SB:
|
|
|
|
case RISCV::SH:
|
|
|
|
case RISCV::SW:
|
|
|
|
case RISCV::SD:
|
|
|
|
case RISCV::FSW:
|
|
|
|
case RISCV::FSD:
|
|
|
|
BaseOpIdx = 1;
|
|
|
|
OffsetOpIdx = 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Currently, the load/store offset must be 0 to be considered for this
|
|
|
|
// peephole optimisation.
|
|
|
|
if (!isa<ConstantSDNode>(N->getOperand(OffsetOpIdx)) ||
|
|
|
|
N->getConstantOperandVal(OffsetOpIdx) != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
SDValue Base = N->getOperand(BaseOpIdx);
|
|
|
|
|
2018-04-19 03:02:31 +08:00
|
|
|
// If the base is an ADDI, we can merge it in to the load/store.
|
|
|
|
if (!Base.isMachineOpcode() || Base.getMachineOpcode() != RISCV::ADDI)
|
2018-03-19 19:54:28 +08:00
|
|
|
continue;
|
|
|
|
|
2018-04-19 03:02:31 +08:00
|
|
|
SDValue ImmOperand = Base.getOperand(1);
|
|
|
|
|
|
|
|
if (auto Const = dyn_cast<ConstantSDNode>(ImmOperand)) {
|
|
|
|
ImmOperand = CurDAG->getTargetConstant(
|
|
|
|
Const->getSExtValue(), SDLoc(ImmOperand), ImmOperand.getValueType());
|
|
|
|
} else if (auto GA = dyn_cast<GlobalAddressSDNode>(ImmOperand)) {
|
|
|
|
ImmOperand = CurDAG->getTargetGlobalAddress(
|
|
|
|
GA->getGlobal(), SDLoc(ImmOperand), ImmOperand.getValueType(),
|
|
|
|
GA->getOffset(), GA->getTargetFlags());
|
2018-03-19 19:54:28 +08:00
|
|
|
} else {
|
2018-04-19 03:02:31 +08:00
|
|
|
continue;
|
2018-03-19 19:54:28 +08:00
|
|
|
}
|
|
|
|
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Folding add-immediate into mem-op:\nBase: ");
|
|
|
|
LLVM_DEBUG(Base->dump(CurDAG));
|
|
|
|
LLVM_DEBUG(dbgs() << "\nN: ");
|
|
|
|
LLVM_DEBUG(N->dump(CurDAG));
|
|
|
|
LLVM_DEBUG(dbgs() << "\n");
|
2018-03-19 19:54:28 +08:00
|
|
|
|
|
|
|
// Modify the offset operand of the load/store.
|
|
|
|
if (BaseOpIdx == 0) // Load
|
2018-04-19 03:02:31 +08:00
|
|
|
CurDAG->UpdateNodeOperands(N, Base.getOperand(0), ImmOperand,
|
|
|
|
N->getOperand(2));
|
2018-03-19 19:54:28 +08:00
|
|
|
else // Store
|
2018-04-19 03:02:31 +08:00
|
|
|
CurDAG->UpdateNodeOperands(N, N->getOperand(0), Base.getOperand(0),
|
|
|
|
ImmOperand, N->getOperand(3));
|
|
|
|
|
|
|
|
// The add-immediate may now be dead, in which case remove it.
|
|
|
|
if (Base.getNode()->use_empty())
|
|
|
|
CurDAG->RemoveDeadNode(Base.getNode());
|
2018-03-19 19:54:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-20 05:37:38 +08:00
|
|
|
// This pass converts a legalized DAG into a RISCV-specific DAG, ready
|
|
|
|
// for instruction scheduling.
|
|
|
|
FunctionPass *llvm::createRISCVISelDag(RISCVTargetMachine &TM) {
|
|
|
|
return new RISCVDAGToDAGISel(TM);
|
|
|
|
}
|