mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
95c86f6829
Replace some existing isel patterns that are covered by the new code. SLLIUWPat has been removed in favor of folding its root case into the new code. The other uses in isel patterns for shXadd.uw have been switched to using hardcoded AND masks. This is based on the original version of D49585 from ARM. The final version of that was made a DAG combine, but I've chosen to keep it as custom isel. I'm not convinced DAG combine is as good with shift pairs as it is with and+shift. I saw some issues optimizing the shifts created by vscale lowering if an and isn't created for from a shift pair. Reviewed By: luismarques Differential Revision: https://reviews.llvm.org/D106230
173 lines
4.8 KiB
C++
173 lines
4.8 KiB
C++
//===---- RISCVISelDAGToDAG.h - A dag to dag inst selector for RISCV ------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines an instruction selector for the RISCV target.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_RISCV_RISCVISELDAGTODAG_H
|
|
#define LLVM_LIB_TARGET_RISCV_RISCVISELDAGTODAG_H
|
|
|
|
#include "RISCV.h"
|
|
#include "RISCVTargetMachine.h"
|
|
#include "llvm/CodeGen/SelectionDAGISel.h"
|
|
|
|
// RISCV-specific code to select RISCV machine instructions for
|
|
// SelectionDAG operations.
|
|
namespace llvm {
|
|
class RISCVDAGToDAGISel : public SelectionDAGISel {
|
|
const RISCVSubtarget *Subtarget = nullptr;
|
|
|
|
public:
|
|
explicit RISCVDAGToDAGISel(RISCVTargetMachine &TargetMachine)
|
|
: SelectionDAGISel(TargetMachine) {}
|
|
|
|
StringRef getPassName() const override {
|
|
return "RISCV DAG->DAG Pattern Instruction Selection";
|
|
}
|
|
|
|
bool runOnMachineFunction(MachineFunction &MF) override {
|
|
Subtarget = &MF.getSubtarget<RISCVSubtarget>();
|
|
return SelectionDAGISel::runOnMachineFunction(MF);
|
|
}
|
|
|
|
void PreprocessISelDAG() override;
|
|
void PostprocessISelDAG() override;
|
|
|
|
void Select(SDNode *Node) override;
|
|
|
|
bool SelectInlineAsmMemoryOperand(const SDValue &Op, unsigned ConstraintID,
|
|
std::vector<SDValue> &OutOps) override;
|
|
|
|
bool SelectAddrFI(SDValue Addr, SDValue &Base);
|
|
bool SelectBaseAddr(SDValue Addr, SDValue &Base);
|
|
|
|
bool selectShiftMask(SDValue N, unsigned ShiftWidth, SDValue &ShAmt);
|
|
bool selectShiftMaskXLen(SDValue N, SDValue &ShAmt) {
|
|
return selectShiftMask(N, Subtarget->getXLen(), ShAmt);
|
|
}
|
|
bool selectShiftMask32(SDValue N, SDValue &ShAmt) {
|
|
return selectShiftMask(N, 32, ShAmt);
|
|
}
|
|
|
|
bool selectSExti32(SDValue N, SDValue &Val);
|
|
bool selectZExti32(SDValue N, SDValue &Val);
|
|
|
|
bool selectVLOp(SDValue N, SDValue &VL);
|
|
|
|
bool selectVSplat(SDValue N, SDValue &SplatVal);
|
|
bool selectVSplatSimm5(SDValue N, SDValue &SplatVal);
|
|
bool selectVSplatUimm5(SDValue N, SDValue &SplatVal);
|
|
bool selectVSplatSimm5Plus1(SDValue N, SDValue &SplatVal);
|
|
bool selectVSplatSimm5Plus1NonZero(SDValue N, SDValue &SplatVal);
|
|
|
|
bool selectRVVSimm5(SDValue N, unsigned Width, SDValue &Imm);
|
|
template <unsigned Width> bool selectRVVSimm5(SDValue N, SDValue &Imm) {
|
|
return selectRVVSimm5(N, Width, Imm);
|
|
}
|
|
|
|
void addVectorLoadStoreOperands(SDNode *Node, unsigned SEWImm,
|
|
const SDLoc &DL, unsigned CurOp,
|
|
bool IsMasked, bool IsStridedOrIndexed,
|
|
SmallVectorImpl<SDValue> &Operands,
|
|
MVT *IndexVT = nullptr);
|
|
|
|
void selectVLSEG(SDNode *Node, bool IsMasked, bool IsStrided);
|
|
void selectVLSEGFF(SDNode *Node, bool IsMasked);
|
|
void selectVLXSEG(SDNode *Node, bool IsMasked, bool IsOrdered);
|
|
void selectVSSEG(SDNode *Node, bool IsMasked, bool IsStrided);
|
|
void selectVSXSEG(SDNode *Node, bool IsMasked, bool IsOrdered);
|
|
|
|
// Include the pieces autogenerated from the target description.
|
|
#include "RISCVGenDAGISel.inc"
|
|
|
|
private:
|
|
void doPeepholeLoadStoreADDI();
|
|
};
|
|
|
|
namespace RISCV {
|
|
struct VLSEGPseudo {
|
|
uint16_t NF : 4;
|
|
uint16_t Masked : 1;
|
|
uint16_t Strided : 1;
|
|
uint16_t FF : 1;
|
|
uint16_t Log2SEW : 3;
|
|
uint16_t LMUL : 3;
|
|
uint16_t Pseudo;
|
|
};
|
|
|
|
struct VLXSEGPseudo {
|
|
uint16_t NF : 4;
|
|
uint16_t Masked : 1;
|
|
uint16_t Ordered : 1;
|
|
uint16_t Log2SEW : 3;
|
|
uint16_t LMUL : 3;
|
|
uint16_t IndexLMUL : 3;
|
|
uint16_t Pseudo;
|
|
};
|
|
|
|
struct VSSEGPseudo {
|
|
uint16_t NF : 4;
|
|
uint16_t Masked : 1;
|
|
uint16_t Strided : 1;
|
|
uint16_t Log2SEW : 3;
|
|
uint16_t LMUL : 3;
|
|
uint16_t Pseudo;
|
|
};
|
|
|
|
struct VSXSEGPseudo {
|
|
uint16_t NF : 4;
|
|
uint16_t Masked : 1;
|
|
uint16_t Ordered : 1;
|
|
uint16_t Log2SEW : 3;
|
|
uint16_t LMUL : 3;
|
|
uint16_t IndexLMUL : 3;
|
|
uint16_t Pseudo;
|
|
};
|
|
|
|
struct VLEPseudo {
|
|
uint16_t Masked : 1;
|
|
uint16_t Strided : 1;
|
|
uint16_t FF : 1;
|
|
uint16_t Log2SEW : 3;
|
|
uint16_t LMUL : 3;
|
|
uint16_t Pseudo;
|
|
};
|
|
|
|
struct VSEPseudo {
|
|
uint16_t Masked :1;
|
|
uint16_t Strided : 1;
|
|
uint16_t Log2SEW : 3;
|
|
uint16_t LMUL : 3;
|
|
uint16_t Pseudo;
|
|
};
|
|
|
|
struct VLX_VSXPseudo {
|
|
uint16_t Masked : 1;
|
|
uint16_t Ordered : 1;
|
|
uint16_t Log2SEW : 3;
|
|
uint16_t LMUL : 3;
|
|
uint16_t IndexLMUL : 3;
|
|
uint16_t Pseudo;
|
|
};
|
|
|
|
#define GET_RISCVVSSEGTable_DECL
|
|
#define GET_RISCVVLSEGTable_DECL
|
|
#define GET_RISCVVLXSEGTable_DECL
|
|
#define GET_RISCVVSXSEGTable_DECL
|
|
#define GET_RISCVVLETable_DECL
|
|
#define GET_RISCVVSETable_DECL
|
|
#define GET_RISCVVLXTable_DECL
|
|
#define GET_RISCVVSXTable_DECL
|
|
#include "RISCVGenSearchableTables.inc"
|
|
} // namespace RISCV
|
|
|
|
} // namespace llvm
|
|
|
|
#endif
|