2020-01-14 09:58:39 +01:00
|
|
|
//===-- VEISelLowering.h - VE DAG Lowering Interface ------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// 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 the interfaces that VE uses to lower LLVM code into a
|
|
|
|
// selection DAG.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_LIB_TARGET_VE_VEISELLOWERING_H
|
|
|
|
#define LLVM_LIB_TARGET_VE_VEISELLOWERING_H
|
|
|
|
|
|
|
|
#include "VE.h"
|
|
|
|
#include "llvm/CodeGen/TargetLowering.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class VESubtarget;
|
|
|
|
|
|
|
|
namespace VEISD {
|
|
|
|
enum NodeType : unsigned {
|
|
|
|
FIRST_NUMBER = ISD::BUILTIN_OP_END,
|
2020-01-24 17:33:57 +01:00
|
|
|
|
|
|
|
Hi,
|
|
|
|
Lo, // Hi/Lo operations, typically on a global address.
|
|
|
|
|
2020-05-27 09:39:39 +02:00
|
|
|
GETFUNPLT, // load function address through %plt insturction
|
|
|
|
GETTLSADDR, // load address for TLS access
|
|
|
|
GETSTACKTOP, // retrieve address of stack top (first address of
|
|
|
|
// locals and temporaries)
|
2020-02-18 16:09:02 +01:00
|
|
|
|
2020-10-25 03:11:49 +01:00
|
|
|
MEMBARRIER, // Compiler barrier only; generate a no-op.
|
|
|
|
|
2020-11-19 09:44:48 +01:00
|
|
|
VEC_BROADCAST, // 0: scalar value, 1: VL
|
|
|
|
|
2020-01-28 09:55:56 +01:00
|
|
|
CALL, // A call instruction.
|
2020-02-14 09:31:06 +01:00
|
|
|
RET_FLAG, // Return with a flag operand.
|
|
|
|
GLOBAL_BASE_REG, // Global base reg for PIC.
|
2020-01-14 09:58:39 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
class VETargetLowering : public TargetLowering {
|
|
|
|
const VESubtarget *Subtarget;
|
|
|
|
|
2020-10-30 16:14:42 +01:00
|
|
|
void initRegisterClasses();
|
|
|
|
void initSPUActions();
|
2020-11-04 12:41:11 +01:00
|
|
|
void initVPUActions();
|
2020-10-30 16:14:42 +01:00
|
|
|
|
2020-01-14 09:58:39 +01:00
|
|
|
public:
|
|
|
|
VETargetLowering(const TargetMachine &TM, const VESubtarget &STI);
|
|
|
|
|
|
|
|
const char *getTargetNodeName(unsigned Opcode) const override;
|
2020-01-22 09:17:36 +01:00
|
|
|
MVT getScalarShiftAmountTy(const DataLayout &, EVT) const override {
|
|
|
|
return MVT::i32;
|
|
|
|
}
|
2020-01-14 09:58:39 +01:00
|
|
|
|
|
|
|
Register getRegisterByName(const char *RegName, LLT VT,
|
|
|
|
const MachineFunction &MF) const override;
|
|
|
|
|
|
|
|
/// getSetCCResultType - Return the ISD::SETCC ValueType
|
|
|
|
EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context,
|
|
|
|
EVT VT) const override;
|
|
|
|
|
|
|
|
SDValue LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv,
|
|
|
|
bool isVarArg,
|
|
|
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
|
|
|
const SDLoc &dl, SelectionDAG &DAG,
|
|
|
|
SmallVectorImpl<SDValue> &InVals) const override;
|
|
|
|
|
2020-01-28 09:55:56 +01:00
|
|
|
SDValue LowerCall(TargetLowering::CallLoweringInfo &CLI,
|
|
|
|
SmallVectorImpl<SDValue> &InVals) const override;
|
|
|
|
|
2020-01-14 09:58:39 +01:00
|
|
|
bool CanLowerReturn(CallingConv::ID CallConv, MachineFunction &MF,
|
|
|
|
bool isVarArg,
|
|
|
|
const SmallVectorImpl<ISD::OutputArg> &ArgsFlags,
|
|
|
|
LLVMContext &Context) const override;
|
|
|
|
SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
|
|
|
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
|
|
|
const SmallVectorImpl<SDValue> &OutVals, const SDLoc &dl,
|
|
|
|
SelectionDAG &DAG) const override;
|
2020-01-22 09:17:36 +01:00
|
|
|
|
2020-10-23 15:10:34 +02:00
|
|
|
/// Helper functions for atomic operations.
|
|
|
|
bool shouldInsertFencesForAtomic(const Instruction *I) const override {
|
|
|
|
// VE uses release consistency, so need fence for each atomics.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
Instruction *emitLeadingFence(IRBuilder<> &Builder, Instruction *Inst,
|
|
|
|
AtomicOrdering Ord) const override;
|
|
|
|
Instruction *emitTrailingFence(IRBuilder<> &Builder, Instruction *Inst,
|
|
|
|
AtomicOrdering Ord) const override;
|
|
|
|
|
2020-01-24 17:33:57 +01:00
|
|
|
/// Custom Lower {
|
|
|
|
SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override;
|
2020-11-17 14:38:49 +01:00
|
|
|
unsigned getJumpTableEncoding() const override;
|
|
|
|
const MCExpr *LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
|
|
|
|
const MachineBasicBlock *MBB,
|
|
|
|
unsigned Uid,
|
|
|
|
MCContext &Ctx) const override;
|
|
|
|
SDValue getPICJumpTableRelocBase(SDValue Table,
|
|
|
|
SelectionDAG &DAG) const override;
|
|
|
|
// VE doesn't need getPICJumpTableRelocBaseExpr since it is used for only
|
|
|
|
// EK_LabelDifference32.
|
2020-01-24 17:33:57 +01:00
|
|
|
|
2020-10-25 03:11:49 +01:00
|
|
|
SDValue lowerATOMIC_FENCE(SDValue Op, SelectionDAG &DAG) const;
|
2020-08-17 16:02:24 +02:00
|
|
|
SDValue lowerBlockAddress(SDValue Op, SelectionDAG &DAG) const;
|
2020-06-27 12:08:09 +02:00
|
|
|
SDValue lowerConstantPool(SDValue Op, SelectionDAG &DAG) const;
|
2020-08-17 16:02:24 +02:00
|
|
|
SDValue lowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue lowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue lowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const;
|
2020-11-17 14:38:49 +01:00
|
|
|
SDValue lowerJumpTable(SDValue Op, SelectionDAG &DAG) const;
|
2020-06-27 12:08:09 +02:00
|
|
|
SDValue lowerLOAD(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue lowerSTORE(SDValue Op, SelectionDAG &DAG) const;
|
2020-08-17 16:02:24 +02:00
|
|
|
SDValue lowerToTLSGeneralDynamicModel(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue lowerVASTART(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
SDValue lowerVAARG(SDValue Op, SelectionDAG &DAG) const;
|
2020-11-19 09:44:48 +01:00
|
|
|
|
|
|
|
SDValue lowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const;
|
2020-01-24 17:33:57 +01:00
|
|
|
/// } Custom Lower
|
|
|
|
|
2020-08-04 09:41:12 +02:00
|
|
|
/// Custom DAGCombine {
|
|
|
|
SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const override;
|
|
|
|
|
|
|
|
SDValue combineTRUNCATE(SDNode *N, DAGCombinerInfo &DCI) const;
|
|
|
|
/// } Custom DAGCombine
|
|
|
|
|
2020-01-24 17:33:57 +01:00
|
|
|
SDValue withTargetFlags(SDValue Op, unsigned TF, SelectionDAG &DAG) const;
|
|
|
|
SDValue makeHiLoPair(SDValue Op, unsigned HiTF, unsigned LoTF,
|
|
|
|
SelectionDAG &DAG) const;
|
|
|
|
SDValue makeAddress(SDValue Op, SelectionDAG &DAG) const;
|
|
|
|
|
2020-06-27 12:08:09 +02:00
|
|
|
bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
|
2020-01-22 09:17:36 +01:00
|
|
|
bool isFPImmLegal(const APFloat &Imm, EVT VT,
|
|
|
|
bool ForCodeSize) const override;
|
2020-01-28 09:52:53 +01:00
|
|
|
/// Returns true if the target allows unaligned memory accesses of the
|
|
|
|
/// specified type.
|
|
|
|
bool allowsMisalignedMemoryAccesses(EVT VT, unsigned AS, unsigned Align,
|
|
|
|
MachineMemOperand::Flags Flags,
|
|
|
|
bool *Fast) const override;
|
2020-01-29 15:59:29 +01:00
|
|
|
|
2020-11-10 05:42:24 +01:00
|
|
|
/// Inline Assembly {
|
|
|
|
|
2020-11-10 05:42:24 +01:00
|
|
|
ConstraintType getConstraintType(StringRef Constraint) const override;
|
2020-11-10 05:42:24 +01:00
|
|
|
std::pair<unsigned, const TargetRegisterClass *>
|
|
|
|
getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI,
|
|
|
|
StringRef Constraint, MVT VT) const override;
|
|
|
|
|
|
|
|
/// } Inline Assembly
|
|
|
|
|
2020-08-10 10:16:57 +02:00
|
|
|
/// Target Optimization {
|
|
|
|
|
|
|
|
// SX-Aurora VE's s/udiv is 5-9 times slower than multiply.
|
|
|
|
bool isIntDivCheap(EVT, AttributeList) const override { return false; }
|
|
|
|
// VE doesn't have rem.
|
|
|
|
bool hasStandaloneRem(EVT) const override { return false; }
|
|
|
|
// VE LDZ instruction returns 64 if the input is zero.
|
|
|
|
bool isCheapToSpeculateCtlz() const override { return true; }
|
|
|
|
// VE LDZ instruction is fast.
|
|
|
|
bool isCtlzFast() const override { return true; }
|
|
|
|
// VE has NND instruction.
|
2020-06-09 10:17:20 +02:00
|
|
|
bool hasAndNot(SDValue Y) const override;
|
2020-08-10 10:16:57 +02:00
|
|
|
|
|
|
|
/// } Target Optimization
|
2020-01-14 09:58:39 +01:00
|
|
|
};
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif // VE_ISELLOWERING_H
|