2018-09-19 12:54:22 +02:00
|
|
|
//===- IntrinsicsRISCV.td - Defines RISCV intrinsics -------*- tablegen -*-===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01: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
|
2018-09-19 12:54:22 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines all of the RISCV-specific intrinsics.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Atomics
|
|
|
|
|
[RISCV][NFC] Deduplicate Atomic Intrinsic Definitions
Summary:
This is a slight cleanup, to use multiclasses to avoid the duplication between
the different atomic intrinsic definitions. The produced intrinsics are
unchanged, they're just generated in a more succinct way.
Reviewers: asb, luismarques, jrtc27
Reviewed By: luismarques, jrtc27
Subscribers: Jim, rbar, johnrusso, simoncook, sabuasal, niosHD, kito-cheng, shiva0217, jrtc27, MaskRay, zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o, rkruppe, jfb, PkmX, jocewei, psnobl, benna, s.egerton, pzheng, sameer.abuasal, apazos, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D71777
2020-01-14 14:16:52 +01:00
|
|
|
// Atomic Intrinsics have multiple versions for different access widths, which
|
|
|
|
// all follow one of the following signatures (depending on how many arguments
|
|
|
|
// they require). We carefully instantiate only specific versions of these for
|
|
|
|
// specific integer widths, rather than using `llvm_anyint_ty`.
|
|
|
|
//
|
|
|
|
// In fact, as these intrinsics take `llvm_anyptr_ty`, the given names are the
|
|
|
|
// canonical names, and the intrinsics used in the code will have a name
|
|
|
|
// suffixed with the pointer type they are specialised for (denoted `<p>` in the
|
|
|
|
// names below), in order to avoid type conflicts.
|
2018-09-19 12:54:22 +02:00
|
|
|
|
[RISCV][NFC] Deduplicate Atomic Intrinsic Definitions
Summary:
This is a slight cleanup, to use multiclasses to avoid the duplication between
the different atomic intrinsic definitions. The produced intrinsics are
unchanged, they're just generated in a more succinct way.
Reviewers: asb, luismarques, jrtc27
Reviewed By: luismarques, jrtc27
Subscribers: Jim, rbar, johnrusso, simoncook, sabuasal, niosHD, kito-cheng, shiva0217, jrtc27, MaskRay, zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o, rkruppe, jfb, PkmX, jocewei, psnobl, benna, s.egerton, pzheng, sameer.abuasal, apazos, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D71777
2020-01-14 14:16:52 +01:00
|
|
|
let TargetPrefix = "riscv" in {
|
2018-09-19 12:54:22 +02:00
|
|
|
|
[RISCV][NFC] Deduplicate Atomic Intrinsic Definitions
Summary:
This is a slight cleanup, to use multiclasses to avoid the duplication between
the different atomic intrinsic definitions. The produced intrinsics are
unchanged, they're just generated in a more succinct way.
Reviewers: asb, luismarques, jrtc27
Reviewed By: luismarques, jrtc27
Subscribers: Jim, rbar, johnrusso, simoncook, sabuasal, niosHD, kito-cheng, shiva0217, jrtc27, MaskRay, zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o, rkruppe, jfb, PkmX, jocewei, psnobl, benna, s.egerton, pzheng, sameer.abuasal, apazos, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D71777
2020-01-14 14:16:52 +01:00
|
|
|
// T @llvm.<name>.T.<p>(any*, T, T, T imm);
|
|
|
|
class MaskedAtomicRMWFourArg<LLVMType itype>
|
|
|
|
: Intrinsic<[itype], [llvm_anyptr_ty, itype, itype, itype],
|
2020-05-27 21:58:07 +02:00
|
|
|
[IntrArgMemOnly, NoCapture<ArgIndex<0>>, ImmArg<ArgIndex<3>>]>;
|
[RISCV][NFC] Deduplicate Atomic Intrinsic Definitions
Summary:
This is a slight cleanup, to use multiclasses to avoid the duplication between
the different atomic intrinsic definitions. The produced intrinsics are
unchanged, they're just generated in a more succinct way.
Reviewers: asb, luismarques, jrtc27
Reviewed By: luismarques, jrtc27
Subscribers: Jim, rbar, johnrusso, simoncook, sabuasal, niosHD, kito-cheng, shiva0217, jrtc27, MaskRay, zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o, rkruppe, jfb, PkmX, jocewei, psnobl, benna, s.egerton, pzheng, sameer.abuasal, apazos, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D71777
2020-01-14 14:16:52 +01:00
|
|
|
// T @llvm.<name>.T.<p>(any*, T, T, T, T imm);
|
|
|
|
class MaskedAtomicRMWFiveArg<LLVMType itype>
|
|
|
|
: Intrinsic<[itype], [llvm_anyptr_ty, itype, itype, itype, itype],
|
2020-05-27 21:58:07 +02:00
|
|
|
[IntrArgMemOnly, NoCapture<ArgIndex<0>>, ImmArg<ArgIndex<4>>]>;
|
2018-11-29 21:43:42 +01:00
|
|
|
|
[RISCV][NFC] Deduplicate Atomic Intrinsic Definitions
Summary:
This is a slight cleanup, to use multiclasses to avoid the duplication between
the different atomic intrinsic definitions. The produced intrinsics are
unchanged, they're just generated in a more succinct way.
Reviewers: asb, luismarques, jrtc27
Reviewed By: luismarques, jrtc27
Subscribers: Jim, rbar, johnrusso, simoncook, sabuasal, niosHD, kito-cheng, shiva0217, jrtc27, MaskRay, zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o, rkruppe, jfb, PkmX, jocewei, psnobl, benna, s.egerton, pzheng, sameer.abuasal, apazos, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D71777
2020-01-14 14:16:52 +01:00
|
|
|
// We define 32-bit and 64-bit variants of the above, where T stands for i32
|
|
|
|
// or i64 respectively:
|
|
|
|
multiclass MaskedAtomicRMWFourArgIntrinsics {
|
|
|
|
// i32 @llvm.<name>.i32.<p>(any*, i32, i32, i32 imm);
|
|
|
|
def _i32 : MaskedAtomicRMWFourArg<llvm_i32_ty>;
|
|
|
|
// i64 @llvm.<name>.i32.<p>(any*, i64, i64, i64 imm);
|
|
|
|
def _i64 : MaskedAtomicRMWFourArg<llvm_i64_ty>;
|
|
|
|
}
|
2019-01-17 11:04:39 +01:00
|
|
|
|
[RISCV][NFC] Deduplicate Atomic Intrinsic Definitions
Summary:
This is a slight cleanup, to use multiclasses to avoid the duplication between
the different atomic intrinsic definitions. The produced intrinsics are
unchanged, they're just generated in a more succinct way.
Reviewers: asb, luismarques, jrtc27
Reviewed By: luismarques, jrtc27
Subscribers: Jim, rbar, johnrusso, simoncook, sabuasal, niosHD, kito-cheng, shiva0217, jrtc27, MaskRay, zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o, rkruppe, jfb, PkmX, jocewei, psnobl, benna, s.egerton, pzheng, sameer.abuasal, apazos, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D71777
2020-01-14 14:16:52 +01:00
|
|
|
multiclass MaskedAtomicRMWFiveArgIntrinsics {
|
|
|
|
// i32 @llvm.<name>.i32.<p>(any*, i32, i32, i32, i32 imm);
|
|
|
|
def _i32 : MaskedAtomicRMWFiveArg<llvm_i32_ty>;
|
|
|
|
// i64 @llvm.<name>.i64.<p>(any*, i64, i64, i64, i64 imm);
|
|
|
|
def _i64 : MaskedAtomicRMWFiveArg<llvm_i64_ty>;
|
|
|
|
}
|
2019-01-17 11:04:39 +01:00
|
|
|
|
[RISCV][NFC] Deduplicate Atomic Intrinsic Definitions
Summary:
This is a slight cleanup, to use multiclasses to avoid the duplication between
the different atomic intrinsic definitions. The produced intrinsics are
unchanged, they're just generated in a more succinct way.
Reviewers: asb, luismarques, jrtc27
Reviewed By: luismarques, jrtc27
Subscribers: Jim, rbar, johnrusso, simoncook, sabuasal, niosHD, kito-cheng, shiva0217, jrtc27, MaskRay, zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o, rkruppe, jfb, PkmX, jocewei, psnobl, benna, s.egerton, pzheng, sameer.abuasal, apazos, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D71777
2020-01-14 14:16:52 +01:00
|
|
|
// @llvm.riscv.masked.atomicrmw.*.{i32,i64}.<p>(...)
|
|
|
|
defm int_riscv_masked_atomicrmw_xchg : MaskedAtomicRMWFourArgIntrinsics;
|
|
|
|
defm int_riscv_masked_atomicrmw_add : MaskedAtomicRMWFourArgIntrinsics;
|
|
|
|
defm int_riscv_masked_atomicrmw_sub : MaskedAtomicRMWFourArgIntrinsics;
|
|
|
|
defm int_riscv_masked_atomicrmw_nand : MaskedAtomicRMWFourArgIntrinsics;
|
|
|
|
// Signed min and max need an extra operand to do sign extension with.
|
|
|
|
defm int_riscv_masked_atomicrmw_max : MaskedAtomicRMWFiveArgIntrinsics;
|
|
|
|
defm int_riscv_masked_atomicrmw_min : MaskedAtomicRMWFiveArgIntrinsics;
|
|
|
|
// Unsigned min and max don't need the extra operand.
|
|
|
|
defm int_riscv_masked_atomicrmw_umax : MaskedAtomicRMWFourArgIntrinsics;
|
|
|
|
defm int_riscv_masked_atomicrmw_umin : MaskedAtomicRMWFourArgIntrinsics;
|
2019-01-17 11:04:39 +01:00
|
|
|
|
[RISCV][NFC] Deduplicate Atomic Intrinsic Definitions
Summary:
This is a slight cleanup, to use multiclasses to avoid the duplication between
the different atomic intrinsic definitions. The produced intrinsics are
unchanged, they're just generated in a more succinct way.
Reviewers: asb, luismarques, jrtc27
Reviewed By: luismarques, jrtc27
Subscribers: Jim, rbar, johnrusso, simoncook, sabuasal, niosHD, kito-cheng, shiva0217, jrtc27, MaskRay, zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o, rkruppe, jfb, PkmX, jocewei, psnobl, benna, s.egerton, pzheng, sameer.abuasal, apazos, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D71777
2020-01-14 14:16:52 +01:00
|
|
|
// @llvm.riscv.masked.cmpxchg.{i32,i64}.<p>(...)
|
|
|
|
defm int_riscv_masked_cmpxchg : MaskedAtomicRMWFiveArgIntrinsics;
|
2019-01-17 11:04:39 +01:00
|
|
|
|
2018-09-19 12:54:22 +02:00
|
|
|
} // TargetPrefix = "riscv"
|
2020-12-11 08:16:08 +01:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Vectors
|
|
|
|
|
|
|
|
class RISCVVIntrinsic {
|
|
|
|
// These intrinsics may accept illegal integer values in their llvm_any_ty
|
|
|
|
// operand, so they have to be extended. If set to zero then the intrinsic
|
|
|
|
// does not have any operand that must be extended.
|
|
|
|
Intrinsic IntrinsicID = !cast<Intrinsic>(NAME);
|
|
|
|
bits<4> ExtendOperand = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
let TargetPrefix = "riscv" in {
|
2020-12-18 21:08:27 +01:00
|
|
|
// We use anyint here but we only support XLen.
|
|
|
|
def int_riscv_vsetvli : Intrinsic<[llvm_anyint_ty],
|
|
|
|
/* AVL */ [LLVMMatchType<0>,
|
|
|
|
/* VSEW */ LLVMMatchType<0>,
|
|
|
|
/* VLMUL */ LLVMMatchType<0>],
|
|
|
|
[IntrNoMem, IntrHasSideEffects,
|
|
|
|
ImmArg<ArgIndex<1>>,
|
|
|
|
ImmArg<ArgIndex<2>>]>;
|
|
|
|
def int_riscv_vsetvlimax : Intrinsic<[llvm_anyint_ty],
|
|
|
|
/* VSEW */ [LLVMMatchType<0>,
|
|
|
|
/* VLMUL */ LLVMMatchType<0>],
|
|
|
|
[IntrNoMem, IntrHasSideEffects,
|
|
|
|
ImmArg<ArgIndex<0>>,
|
|
|
|
ImmArg<ArgIndex<1>>]>;
|
|
|
|
|
2020-12-15 15:53:16 +01:00
|
|
|
// For unit stride load
|
|
|
|
// Input: (pointer, vl)
|
|
|
|
class RISCVUSLoad
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMPointerType<LLVMMatchType<0>>,
|
|
|
|
llvm_anyint_ty],
|
|
|
|
[NoCapture<ArgIndex<0>>, IntrReadMem]>, RISCVVIntrinsic;
|
|
|
|
// For unit stride load with mask
|
|
|
|
// Input: (maskedoff, pointer, mask, vl)
|
|
|
|
class RISCVUSLoadMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty ],
|
|
|
|
[LLVMMatchType<0>,
|
|
|
|
LLVMPointerType<LLVMMatchType<0>>,
|
2020-12-17 05:55:23 +01:00
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>,
|
|
|
|
llvm_anyint_ty],
|
2020-12-15 15:53:16 +01:00
|
|
|
[NoCapture<ArgIndex<1>>, IntrReadMem]>, RISCVVIntrinsic;
|
2020-12-17 06:59:09 +01:00
|
|
|
// For strided load
|
|
|
|
// Input: (pointer, stride, vl)
|
|
|
|
class RISCVSLoad
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMPointerType<LLVMMatchType<0>>,
|
|
|
|
llvm_anyint_ty, LLVMMatchType<1>],
|
|
|
|
[NoCapture<ArgIndex<0>>, IntrReadMem]>, RISCVVIntrinsic;
|
|
|
|
// For strided load with mask
|
|
|
|
// Input: (maskedoff, pointer, stride, mask, vl)
|
|
|
|
class RISCVSLoadMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty ],
|
|
|
|
[LLVMMatchType<0>,
|
|
|
|
LLVMPointerType<LLVMMatchType<0>>, llvm_anyint_ty,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>, LLVMMatchType<1>],
|
|
|
|
[NoCapture<ArgIndex<1>>, IntrReadMem]>, RISCVVIntrinsic;
|
2020-12-17 18:30:03 +01:00
|
|
|
// For indexed load
|
|
|
|
// Input: (pointer, index, vl)
|
|
|
|
class RISCVILoad
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMPointerType<LLVMMatchType<0>>,
|
|
|
|
llvm_anyvector_ty, llvm_anyint_ty],
|
|
|
|
[NoCapture<ArgIndex<0>>, IntrReadMem]>, RISCVVIntrinsic;
|
|
|
|
// For indexed load with mask
|
|
|
|
// Input: (maskedoff, pointer, index, mask, vl)
|
|
|
|
class RISCVILoadMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty ],
|
|
|
|
[LLVMMatchType<0>,
|
|
|
|
LLVMPointerType<LLVMMatchType<0>>, llvm_anyvector_ty,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>, llvm_anyint_ty],
|
|
|
|
[NoCapture<ArgIndex<1>>, IntrReadMem]>, RISCVVIntrinsic;
|
2020-12-15 15:53:16 +01:00
|
|
|
// For unit stride store
|
|
|
|
// Input: (vector_in, pointer, vl)
|
|
|
|
class RISCVUSStore
|
|
|
|
: Intrinsic<[],
|
|
|
|
[llvm_anyvector_ty,
|
|
|
|
LLVMPointerType<LLVMMatchType<0>>,
|
|
|
|
llvm_anyint_ty],
|
|
|
|
[NoCapture<ArgIndex<1>>, IntrWriteMem]>, RISCVVIntrinsic;
|
|
|
|
// For unit stride store with mask
|
|
|
|
// Input: (vector_in, pointer, mask, vl)
|
|
|
|
class RISCVUSStoreMask
|
|
|
|
: Intrinsic<[],
|
|
|
|
[llvm_anyvector_ty,
|
|
|
|
LLVMPointerType<LLVMMatchType<0>>,
|
2020-12-17 05:55:23 +01:00
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>,
|
|
|
|
llvm_anyint_ty],
|
2020-12-15 15:53:16 +01:00
|
|
|
[NoCapture<ArgIndex<1>>, IntrWriteMem]>, RISCVVIntrinsic;
|
2020-12-17 06:59:09 +01:00
|
|
|
// For strided store
|
|
|
|
// Input: (vector_in, pointer, stride, vl)
|
|
|
|
class RISCVSStore
|
|
|
|
: Intrinsic<[],
|
|
|
|
[llvm_anyvector_ty,
|
|
|
|
LLVMPointerType<LLVMMatchType<0>>,
|
|
|
|
llvm_anyint_ty, LLVMMatchType<1>],
|
|
|
|
[NoCapture<ArgIndex<1>>, IntrWriteMem]>, RISCVVIntrinsic;
|
|
|
|
// For stride store with mask
|
|
|
|
// Input: (vector_in, pointer, stirde, mask, vl)
|
|
|
|
class RISCVSStoreMask
|
|
|
|
: Intrinsic<[],
|
|
|
|
[llvm_anyvector_ty,
|
|
|
|
LLVMPointerType<LLVMMatchType<0>>, llvm_anyint_ty,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>, LLVMMatchType<1>],
|
|
|
|
[NoCapture<ArgIndex<1>>, IntrWriteMem]>, RISCVVIntrinsic;
|
2020-12-17 18:30:03 +01:00
|
|
|
// For indexed store
|
|
|
|
// Input: (vector_in, pointer, index, vl)
|
|
|
|
class RISCVIStore
|
|
|
|
: Intrinsic<[],
|
|
|
|
[llvm_anyvector_ty,
|
|
|
|
LLVMPointerType<LLVMMatchType<0>>,
|
|
|
|
llvm_anyint_ty, llvm_anyint_ty],
|
|
|
|
[NoCapture<ArgIndex<1>>, IntrWriteMem]>, RISCVVIntrinsic;
|
|
|
|
// For indexed store with mask
|
|
|
|
// Input: (vector_in, pointer, index, mask, vl)
|
|
|
|
class RISCVIStoreMask
|
|
|
|
: Intrinsic<[],
|
|
|
|
[llvm_anyvector_ty,
|
|
|
|
LLVMPointerType<LLVMMatchType<0>>, llvm_anyvector_ty,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>, llvm_anyint_ty],
|
|
|
|
[NoCapture<ArgIndex<1>>, IntrWriteMem]>, RISCVVIntrinsic;
|
2020-12-25 03:56:24 +01:00
|
|
|
// For destination vector type is the same as first source vector (with mask).
|
|
|
|
// Input: (maskedoff, vector_in, mask, vl)
|
|
|
|
class RISCVUnaryAAMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, LLVMMatchType<0>,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
2020-12-25 03:59:05 +01:00
|
|
|
// For destination vector type is the same as first and second source vector.
|
|
|
|
// Input: (vector_in, vector_in, vl)
|
|
|
|
class RISCVBinaryAAANoMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, LLVMMatchType<0>, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
2020-12-11 08:16:08 +01:00
|
|
|
// For destination vector type is the same as first source vector.
|
|
|
|
// Input: (vector_in, vector_in/scalar_in, vl)
|
|
|
|
class RISCVBinaryAAXNoMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, llvm_any_ty, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 2;
|
|
|
|
}
|
2020-12-15 15:53:16 +01:00
|
|
|
|
2020-12-11 08:16:08 +01:00
|
|
|
// For destination vector type is the same as first source vector (with mask).
|
|
|
|
// Input: (maskedoff, vector_in, vector_in/scalar_in, mask, vl)
|
|
|
|
class RISCVBinaryAAXMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, LLVMMatchType<0>, llvm_any_ty,
|
2020-12-17 05:04:48 +01:00
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>, llvm_anyint_ty],
|
2020-12-11 08:16:08 +01:00
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 3;
|
|
|
|
}
|
2020-12-11 09:08:10 +01:00
|
|
|
// For destination vector type is NOT the same as first source vector.
|
|
|
|
// Input: (vector_in, vector_in/scalar_in, vl)
|
|
|
|
class RISCVBinaryABXNoMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[llvm_anyvector_ty, llvm_any_ty, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 2;
|
|
|
|
}
|
|
|
|
// For destination vector type is NOT the same as first source vector (with mask).
|
|
|
|
// Input: (maskedoff, vector_in, vector_in/scalar_in, mask, vl)
|
|
|
|
class RISCVBinaryABXMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, llvm_anyvector_ty, llvm_any_ty,
|
2020-12-17 05:04:48 +01:00
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>, llvm_anyint_ty],
|
2020-12-11 09:08:10 +01:00
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 3;
|
|
|
|
}
|
2020-12-12 10:18:32 +01:00
|
|
|
// For binary operations with V0 as input.
|
|
|
|
// Input: (vector_in, vector_in/scalar_in, V0, vl)
|
|
|
|
class RISCVBinaryWithV0
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
2020-12-17 05:04:48 +01:00
|
|
|
[LLVMMatchType<0>, llvm_any_ty,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>,
|
2020-12-12 10:18:32 +01:00
|
|
|
llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 2;
|
|
|
|
}
|
|
|
|
// For binary operations with mask type output and V0 as input.
|
|
|
|
// Output: (mask type output)
|
|
|
|
// Input: (vector_in, vector_in/scalar_in, V0, vl)
|
|
|
|
class RISCVBinaryMOutWithV0
|
2020-12-17 05:04:48 +01:00
|
|
|
:Intrinsic<[LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>],
|
|
|
|
[llvm_anyvector_ty, llvm_any_ty,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>,
|
2020-12-12 10:18:32 +01:00
|
|
|
llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 2;
|
|
|
|
}
|
|
|
|
// For binary operations with mask type output.
|
|
|
|
// Output: (mask type output)
|
|
|
|
// Input: (vector_in, vector_in/scalar_in, vl)
|
|
|
|
class RISCVBinaryMOut
|
2020-12-17 05:04:48 +01:00
|
|
|
: Intrinsic<[LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>],
|
2020-12-12 10:18:32 +01:00
|
|
|
[llvm_anyvector_ty, llvm_any_ty, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 2;
|
|
|
|
}
|
2020-12-16 00:06:07 +01:00
|
|
|
// For binary operations with mask type output without mask.
|
|
|
|
// Output: (mask type output)
|
|
|
|
// Input: (vector_in, vector_in/scalar_in, vl)
|
|
|
|
class RISCVCompareNoMask
|
|
|
|
: Intrinsic<[LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>],
|
|
|
|
[llvm_anyvector_ty, llvm_any_ty, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 2;
|
|
|
|
}
|
|
|
|
// For binary operations with mask type output with mask.
|
|
|
|
// Output: (mask type output)
|
|
|
|
// Input: (maskedoff, vector_in, vector_in/scalar_in, mask, vl)
|
|
|
|
class RISCVCompareMask
|
|
|
|
: Intrinsic<[LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>],
|
|
|
|
[LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>,
|
|
|
|
llvm_anyvector_ty, llvm_any_ty,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 3;
|
|
|
|
}
|
2020-12-11 08:16:08 +01:00
|
|
|
|
2020-12-17 06:45:52 +01:00
|
|
|
// For Saturating binary operations.
|
|
|
|
// The destination vector type is the same as first source vector.
|
|
|
|
// Input: (vector_in, vector_in/scalar_in, vl)
|
|
|
|
class RISCVSaturatingBinaryAAXNoMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, llvm_any_ty, llvm_anyint_ty],
|
|
|
|
[IntrNoMem, IntrHasSideEffects]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 2;
|
|
|
|
}
|
|
|
|
// For Saturating binary operations with mask.
|
|
|
|
// The destination vector type is the same as first source vector.
|
|
|
|
// Input: (maskedoff, vector_in, vector_in/scalar_in, mask, vl)
|
|
|
|
class RISCVSaturatingBinaryAAXMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, LLVMMatchType<0>, llvm_any_ty,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>, llvm_anyint_ty],
|
|
|
|
[IntrNoMem, IntrHasSideEffects]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 3;
|
|
|
|
}
|
2020-12-21 06:51:57 +01:00
|
|
|
// For Saturating binary operations.
|
|
|
|
// The destination vector type is NOT the same as first source vector.
|
|
|
|
// Input: (vector_in, vector_in/scalar_in, vl)
|
|
|
|
class RISCVSaturatingBinaryABXNoMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[llvm_anyvector_ty, llvm_any_ty, llvm_anyint_ty],
|
|
|
|
[IntrNoMem, IntrHasSideEffects]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 2;
|
|
|
|
}
|
|
|
|
// For Saturating binary operations with mask.
|
|
|
|
// The destination vector type is NOT the same as first source vector (with mask).
|
|
|
|
// Input: (maskedoff, vector_in, vector_in/scalar_in, mask, vl)
|
|
|
|
class RISCVSaturatingBinaryABXMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, llvm_anyvector_ty, llvm_any_ty,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>, llvm_anyint_ty],
|
|
|
|
[IntrNoMem, IntrHasSideEffects]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 3;
|
|
|
|
}
|
2020-12-17 06:45:52 +01:00
|
|
|
|
2020-12-20 13:56:07 +01:00
|
|
|
class RISCVTernaryAAAXNoMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, LLVMMatchType<0>, llvm_anyint_ty,
|
|
|
|
LLVMMatchType<1>],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
|
|
|
class RISCVTernaryAAAXMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, LLVMMatchType<0>, llvm_anyint_ty,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>, LLVMMatchType<1>],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
2020-12-21 07:41:47 +01:00
|
|
|
class RISCVTernaryAAXANoMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, llvm_any_ty, LLVMMatchType<0>,
|
|
|
|
llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 2;
|
|
|
|
}
|
|
|
|
class RISCVTernaryAAXAMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, llvm_any_ty, LLVMMatchType<0>,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 2;
|
|
|
|
}
|
2020-12-22 09:01:46 +01:00
|
|
|
class RISCVTernaryWideNoMask
|
|
|
|
: Intrinsic< [llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, llvm_any_ty, llvm_anyvector_ty,
|
|
|
|
llvm_anyint_ty],
|
|
|
|
[IntrNoMem] >, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 2;
|
|
|
|
}
|
|
|
|
class RISCVTernaryWideMask
|
|
|
|
: Intrinsic< [llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, llvm_any_ty, llvm_anyvector_ty,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 2;
|
|
|
|
}
|
2020-12-24 03:31:35 +01:00
|
|
|
// For Reduction ternary operations.
|
|
|
|
// For destination vector type is the same as first and third source vector.
|
|
|
|
// Input: (vector_in, vector_in, vector_in, vl)
|
|
|
|
class RISCVReductionNoMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, llvm_anyvector_ty, LLVMMatchType<0>,
|
|
|
|
llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
|
|
|
// For Reduction ternary operations with mask.
|
|
|
|
// For destination vector type is the same as first and third source vector.
|
|
|
|
// The mask type come from second source vector.
|
|
|
|
// Input: (maskedoff, vector_in, vector_in, vector_in, mask, vl)
|
|
|
|
class RISCVReductionMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, llvm_anyvector_ty, LLVMMatchType<0>,
|
|
|
|
LLVMScalarOrSameVectorWidth<1, llvm_i1_ty>, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
2020-12-23 16:42:36 +01:00
|
|
|
// For unary operations with scalar type output without mask
|
|
|
|
// Output: (scalar type)
|
|
|
|
// Input: (vector_in, vl)
|
|
|
|
class RISCVMaskUnarySOutNoMask
|
|
|
|
: Intrinsic<[llvm_anyint_ty],
|
|
|
|
[llvm_anyvector_ty, LLVMMatchType<0>],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
|
|
|
// For unary operations with scalar type output with mask
|
|
|
|
// Output: (scalar type)
|
|
|
|
// Input: (vector_in, mask, vl)
|
|
|
|
class RISCVMaskUnarySOutMask
|
|
|
|
: Intrinsic<[llvm_anyint_ty],
|
|
|
|
[llvm_anyvector_ty, LLVMMatchType<1>, LLVMMatchType<0>],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
2020-12-28 17:44:38 +01:00
|
|
|
// For destination vector type is NOT the same as source vector.
|
|
|
|
// Input: (vector_in, vl)
|
|
|
|
class RISCVUnaryABNoMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[llvm_anyvector_ty, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
|
|
|
// For destination vector type is NOT the same as source vector (with mask).
|
|
|
|
// Input: (maskedoff, vector_in, mask, vl)
|
|
|
|
class RISCVUnaryABMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, llvm_anyvector_ty,
|
|
|
|
LLVMScalarOrSameVectorWidth<1, llvm_i1_ty>,
|
|
|
|
llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
|
|
|
// For unary operations with the same vector type in/out without mask
|
|
|
|
// Output: (vector)
|
|
|
|
// Input: (vector_in, vl)
|
|
|
|
class RISCVUnaryNoMask
|
2020-12-25 03:13:56 +01:00
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
|
|
|
// For mask unary operations with mask type in/out with mask
|
|
|
|
// Output: (mask type output)
|
|
|
|
// Input: (mask type maskedoff, mask type vector_in, mask, vl)
|
|
|
|
class RISCVMaskUnaryMOutMask
|
|
|
|
: Intrinsic<[llvm_anyint_ty],
|
|
|
|
[LLVMMatchType<0>, LLVMMatchType<0>,
|
|
|
|
LLVMMatchType<0>, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
2020-12-28 05:00:33 +01:00
|
|
|
// Output: (vector)
|
|
|
|
// Input: (vl)
|
|
|
|
class RISCVNullaryIntrinsic
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
2020-12-31 04:31:46 +01:00
|
|
|
// For Conversion unary operations.
|
|
|
|
// Input: (vector_in, vl)
|
|
|
|
class RISCVConversionNoMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[llvm_anyvector_ty, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
|
|
|
// For Conversion unary operations with mask.
|
|
|
|
// Input: (maskedoff, vector_in, mask, vl)
|
|
|
|
class RISCVConversionMask
|
|
|
|
: Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, llvm_anyvector_ty,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
2020-12-20 13:56:07 +01:00
|
|
|
|
2020-12-15 15:53:16 +01:00
|
|
|
multiclass RISCVUSLoad {
|
|
|
|
def "int_riscv_" # NAME : RISCVUSLoad;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVUSLoadMask;
|
|
|
|
}
|
2020-12-17 06:59:09 +01:00
|
|
|
multiclass RISCVSLoad {
|
|
|
|
def "int_riscv_" # NAME : RISCVSLoad;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVSLoadMask;
|
|
|
|
}
|
2020-12-17 18:30:03 +01:00
|
|
|
multiclass RISCVILoad {
|
|
|
|
def "int_riscv_" # NAME : RISCVILoad;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVILoadMask;
|
|
|
|
}
|
2020-12-15 15:53:16 +01:00
|
|
|
multiclass RISCVUSStore {
|
|
|
|
def "int_riscv_" # NAME : RISCVUSStore;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVUSStoreMask;
|
|
|
|
}
|
2020-12-17 06:59:09 +01:00
|
|
|
multiclass RISCVSStore {
|
|
|
|
def "int_riscv_" # NAME : RISCVSStore;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVSStoreMask;
|
|
|
|
}
|
2020-12-16 00:06:07 +01:00
|
|
|
|
2020-12-17 18:30:03 +01:00
|
|
|
multiclass RISCVIStore {
|
|
|
|
def "int_riscv_" # NAME : RISCVIStore;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVIStoreMask;
|
|
|
|
}
|
2020-12-16 00:06:07 +01:00
|
|
|
|
|
|
|
// AAX means the destination type(A) is the same as the first source
|
|
|
|
// type(A). X means any type for the second source operand.
|
2020-12-11 08:16:08 +01:00
|
|
|
multiclass RISCVBinaryAAX {
|
|
|
|
def "int_riscv_" # NAME : RISCVBinaryAAXNoMask;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVBinaryAAXMask;
|
|
|
|
}
|
2020-12-16 00:06:07 +01:00
|
|
|
// ABX means the destination type(A) is different from the first source
|
|
|
|
// type(B). X means any type for the second source operand.
|
2020-12-11 09:08:10 +01:00
|
|
|
multiclass RISCVBinaryABX {
|
|
|
|
def "int_riscv_" # NAME : RISCVBinaryABXNoMask;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVBinaryABXMask;
|
|
|
|
}
|
2020-12-12 10:18:32 +01:00
|
|
|
multiclass RISCVBinaryWithV0 {
|
|
|
|
def "int_riscv_" # NAME : RISCVBinaryWithV0;
|
|
|
|
}
|
|
|
|
multiclass RISCVBinaryMaskOutWithV0 {
|
|
|
|
def "int_riscv_" # NAME : RISCVBinaryMOutWithV0;
|
|
|
|
}
|
|
|
|
multiclass RISCVBinaryMaskOut {
|
|
|
|
def "int_riscv_" # NAME : RISCVBinaryMOut;
|
|
|
|
}
|
2020-12-17 06:45:52 +01:00
|
|
|
multiclass RISCVSaturatingBinaryAAX {
|
|
|
|
def "int_riscv_" # NAME : RISCVSaturatingBinaryAAXNoMask;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVSaturatingBinaryAAXMask;
|
|
|
|
}
|
2020-12-21 06:51:57 +01:00
|
|
|
multiclass RISCVSaturatingBinaryABX {
|
|
|
|
def "int_riscv_" # NAME : RISCVSaturatingBinaryABXNoMask;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVSaturatingBinaryABXMask;
|
|
|
|
}
|
2020-12-20 13:56:07 +01:00
|
|
|
multiclass RISCVTernaryAAAX {
|
|
|
|
def "int_riscv_" # NAME : RISCVTernaryAAAXNoMask;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVTernaryAAAXMask;
|
|
|
|
}
|
2020-12-21 07:41:47 +01:00
|
|
|
multiclass RISCVTernaryAAXA {
|
|
|
|
def "int_riscv_" # NAME : RISCVTernaryAAXANoMask;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVTernaryAAXAMask;
|
|
|
|
}
|
2020-12-16 00:06:07 +01:00
|
|
|
multiclass RISCVCompare {
|
|
|
|
def "int_riscv_" # NAME : RISCVCompareNoMask;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVCompareMask;
|
|
|
|
}
|
2020-12-22 09:01:46 +01:00
|
|
|
multiclass RISCVTernaryWide {
|
|
|
|
def "int_riscv_" # NAME : RISCVTernaryWideNoMask;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVTernaryWideMask;
|
|
|
|
}
|
2020-12-24 03:31:35 +01:00
|
|
|
multiclass RISCVReduction {
|
|
|
|
def "int_riscv_" # NAME : RISCVReductionNoMask;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVReductionMask;
|
|
|
|
}
|
2020-12-23 16:42:36 +01:00
|
|
|
multiclass RISCVMaskUnarySOut {
|
|
|
|
def "int_riscv_" # NAME : RISCVMaskUnarySOutNoMask;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVMaskUnarySOutMask;
|
|
|
|
}
|
2020-12-28 17:44:38 +01:00
|
|
|
multiclass RISCVUnaryAB {
|
|
|
|
def "int_riscv_" # NAME : RISCVUnaryABNoMask;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVUnaryABMask;
|
|
|
|
}
|
2020-12-25 03:13:56 +01:00
|
|
|
multiclass RISCVMaskUnaryMOut {
|
2020-12-28 17:44:38 +01:00
|
|
|
def "int_riscv_" # NAME : RISCVUnaryNoMask;
|
2020-12-25 03:13:56 +01:00
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVMaskUnaryMOutMask;
|
|
|
|
}
|
2020-12-31 04:31:46 +01:00
|
|
|
multiclass RISCVConversion {
|
|
|
|
def "int_riscv_" #NAME :RISCVConversionNoMask;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVConversionMask;
|
|
|
|
}
|
2020-12-11 08:16:08 +01:00
|
|
|
|
2020-12-15 15:53:16 +01:00
|
|
|
defm vle : RISCVUSLoad;
|
2020-12-18 09:14:53 +01:00
|
|
|
defm vleff : RISCVUSLoad;
|
2020-12-15 15:53:16 +01:00
|
|
|
defm vse : RISCVUSStore;
|
2020-12-17 06:59:09 +01:00
|
|
|
defm vlse: RISCVSLoad;
|
|
|
|
defm vsse: RISCVSStore;
|
2020-12-17 18:30:03 +01:00
|
|
|
defm vlxe: RISCVILoad;
|
|
|
|
defm vsxe: RISCVIStore;
|
|
|
|
defm vsuxe: RISCVIStore;
|
2020-12-15 15:53:16 +01:00
|
|
|
|
2020-12-11 08:16:08 +01:00
|
|
|
defm vadd : RISCVBinaryAAX;
|
|
|
|
defm vsub : RISCVBinaryAAX;
|
|
|
|
defm vrsub : RISCVBinaryAAX;
|
2020-12-11 09:08:10 +01:00
|
|
|
|
|
|
|
defm vwaddu : RISCVBinaryABX;
|
|
|
|
defm vwadd : RISCVBinaryABX;
|
|
|
|
defm vwaddu_w : RISCVBinaryAAX;
|
|
|
|
defm vwadd_w : RISCVBinaryAAX;
|
|
|
|
defm vwsubu : RISCVBinaryABX;
|
|
|
|
defm vwsub : RISCVBinaryABX;
|
|
|
|
defm vwsubu_w : RISCVBinaryAAX;
|
|
|
|
defm vwsub_w : RISCVBinaryAAX;
|
|
|
|
|
2020-12-28 17:44:38 +01:00
|
|
|
defm vzext : RISCVUnaryAB;
|
|
|
|
defm vsext : RISCVUnaryAB;
|
|
|
|
|
2020-12-12 10:18:32 +01:00
|
|
|
defm vadc : RISCVBinaryWithV0;
|
|
|
|
defm vmadc_carry_in : RISCVBinaryMaskOutWithV0;
|
|
|
|
defm vmadc : RISCVBinaryMaskOut;
|
|
|
|
|
|
|
|
defm vsbc : RISCVBinaryWithV0;
|
|
|
|
defm vmsbc_borrow_in : RISCVBinaryMaskOutWithV0;
|
|
|
|
defm vmsbc : RISCVBinaryMaskOut;
|
|
|
|
|
2020-12-19 03:34:55 +01:00
|
|
|
defm vand : RISCVBinaryAAX;
|
|
|
|
defm vor : RISCVBinaryAAX;
|
|
|
|
defm vxor : RISCVBinaryAAX;
|
|
|
|
|
2020-12-14 07:54:14 +01:00
|
|
|
defm vsll : RISCVBinaryAAX;
|
|
|
|
defm vsrl : RISCVBinaryAAX;
|
|
|
|
defm vsra : RISCVBinaryAAX;
|
|
|
|
|
2020-12-14 14:47:15 +01:00
|
|
|
defm vnsrl : RISCVBinaryABX;
|
|
|
|
defm vnsra : RISCVBinaryABX;
|
|
|
|
|
2020-12-16 00:06:07 +01:00
|
|
|
defm vmseq : RISCVCompare;
|
|
|
|
defm vmsne : RISCVCompare;
|
|
|
|
defm vmsltu : RISCVCompare;
|
|
|
|
defm vmslt : RISCVCompare;
|
|
|
|
defm vmsleu : RISCVCompare;
|
|
|
|
defm vmsle : RISCVCompare;
|
|
|
|
defm vmsgtu : RISCVCompare;
|
|
|
|
defm vmsgt : RISCVCompare;
|
|
|
|
|
2020-12-14 16:39:35 +01:00
|
|
|
defm vminu : RISCVBinaryAAX;
|
|
|
|
defm vmin : RISCVBinaryAAX;
|
|
|
|
defm vmaxu : RISCVBinaryAAX;
|
|
|
|
defm vmax : RISCVBinaryAAX;
|
|
|
|
|
2020-12-16 09:25:46 +01:00
|
|
|
defm vmul : RISCVBinaryAAX;
|
|
|
|
defm vmulh : RISCVBinaryAAX;
|
|
|
|
defm vmulhu : RISCVBinaryAAX;
|
|
|
|
defm vmulhsu : RISCVBinaryAAX;
|
|
|
|
|
|
|
|
defm vdivu : RISCVBinaryAAX;
|
|
|
|
defm vdiv : RISCVBinaryAAX;
|
|
|
|
defm vremu : RISCVBinaryAAX;
|
|
|
|
defm vrem : RISCVBinaryAAX;
|
|
|
|
|
2020-12-16 09:46:21 +01:00
|
|
|
defm vwmul : RISCVBinaryABX;
|
|
|
|
defm vwmulu : RISCVBinaryABX;
|
|
|
|
defm vwmulsu : RISCVBinaryABX;
|
|
|
|
|
2020-12-21 07:41:47 +01:00
|
|
|
defm vmacc : RISCVTernaryAAXA;
|
|
|
|
defm vnmsac : RISCVTernaryAAXA;
|
|
|
|
defm vmadd : RISCVTernaryAAXA;
|
|
|
|
defm vnmsub : RISCVTernaryAAXA;
|
|
|
|
|
2020-12-22 09:01:46 +01:00
|
|
|
defm vwmaccu : RISCVTernaryWide;
|
|
|
|
defm vwmacc : RISCVTernaryWide;
|
|
|
|
defm vwmaccus : RISCVTernaryWide;
|
|
|
|
defm vwmaccsu : RISCVTernaryWide;
|
|
|
|
|
2020-12-14 17:51:07 +01:00
|
|
|
defm vfadd : RISCVBinaryAAX;
|
|
|
|
defm vfsub : RISCVBinaryAAX;
|
|
|
|
defm vfrsub : RISCVBinaryAAX;
|
2020-12-17 06:45:52 +01:00
|
|
|
|
2020-12-19 16:12:18 +01:00
|
|
|
defm vfwadd : RISCVBinaryABX;
|
|
|
|
defm vfwsub : RISCVBinaryABX;
|
|
|
|
defm vfwadd_w : RISCVBinaryAAX;
|
|
|
|
defm vfwsub_w : RISCVBinaryAAX;
|
|
|
|
|
2020-12-17 06:45:52 +01:00
|
|
|
defm vsaddu : RISCVSaturatingBinaryAAX;
|
|
|
|
defm vsadd : RISCVSaturatingBinaryAAX;
|
|
|
|
defm vssubu : RISCVSaturatingBinaryAAX;
|
|
|
|
defm vssub : RISCVSaturatingBinaryAAX;
|
2020-12-18 06:56:42 +01:00
|
|
|
|
2020-12-22 05:50:58 +01:00
|
|
|
def int_riscv_vmerge : RISCVBinaryWithV0;
|
|
|
|
|
2020-12-22 00:16:57 +01:00
|
|
|
def int_riscv_vmv_v_v : Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
|
|
|
def int_riscv_vmv_v_x : Intrinsic<[llvm_anyint_ty],
|
|
|
|
[LLVMVectorElementType<0>, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 1;
|
|
|
|
}
|
2020-12-23 19:01:43 +01:00
|
|
|
def int_riscv_vfmv_v_f : Intrinsic<[llvm_anyfloat_ty],
|
|
|
|
[LLVMVectorElementType<0>, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
|
|
|
|
2020-12-18 18:50:23 +01:00
|
|
|
def int_riscv_vmv_x_s : Intrinsic<[LLVMVectorElementType<0>],
|
|
|
|
[llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
|
|
|
def int_riscv_vmv_s_x : Intrinsic<[llvm_anyint_ty],
|
|
|
|
[LLVMMatchType<0>, LLVMVectorElementType<0>,
|
|
|
|
llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 2;
|
|
|
|
}
|
2020-12-18 20:17:09 +01:00
|
|
|
|
|
|
|
def int_riscv_vfmv_f_s : Intrinsic<[LLVMVectorElementType<0>],
|
|
|
|
[llvm_anyfloat_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
|
|
|
def int_riscv_vfmv_s_f : Intrinsic<[llvm_anyfloat_ty],
|
|
|
|
[LLVMMatchType<0>, LLVMVectorElementType<0>,
|
|
|
|
llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
2020-12-19 14:46:29 +01:00
|
|
|
|
|
|
|
defm vfmul : RISCVBinaryAAX;
|
|
|
|
defm vfdiv : RISCVBinaryAAX;
|
|
|
|
defm vfrdiv : RISCVBinaryAAX;
|
2020-12-19 15:01:41 +01:00
|
|
|
|
2020-12-19 16:34:07 +01:00
|
|
|
defm vfwmul : RISCVBinaryABX;
|
|
|
|
|
2020-12-22 13:50:19 +01:00
|
|
|
defm vfmacc : RISCVTernaryAAXA;
|
|
|
|
defm vfnmacc : RISCVTernaryAAXA;
|
|
|
|
defm vfmsac : RISCVTernaryAAXA;
|
|
|
|
defm vfnmsac : RISCVTernaryAAXA;
|
|
|
|
defm vfmadd : RISCVTernaryAAXA;
|
|
|
|
defm vfnmadd : RISCVTernaryAAXA;
|
|
|
|
defm vfmsub : RISCVTernaryAAXA;
|
|
|
|
defm vfnmsub : RISCVTernaryAAXA;
|
|
|
|
|
2020-12-22 14:30:24 +01:00
|
|
|
defm vfwmacc : RISCVTernaryWide;
|
|
|
|
defm vfwnmacc : RISCVTernaryWide;
|
|
|
|
defm vfwmsac : RISCVTernaryWide;
|
|
|
|
defm vfwnmsac : RISCVTernaryWide;
|
|
|
|
|
2020-12-23 07:27:38 +01:00
|
|
|
defm vfmin : RISCVBinaryAAX;
|
|
|
|
defm vfmax : RISCVBinaryAAX;
|
|
|
|
|
2020-12-19 15:01:41 +01:00
|
|
|
defm vfsgnj : RISCVBinaryAAX;
|
|
|
|
defm vfsgnjn : RISCVBinaryAAX;
|
|
|
|
defm vfsgnjx : RISCVBinaryAAX;
|
2020-12-20 13:56:07 +01:00
|
|
|
|
2020-12-22 05:50:58 +01:00
|
|
|
defm vfmerge : RISCVBinaryWithV0;
|
|
|
|
|
2020-12-20 13:56:07 +01:00
|
|
|
defm vslideup : RISCVTernaryAAAX;
|
|
|
|
defm vslidedown : RISCVTernaryAAAX;
|
2020-12-21 06:51:57 +01:00
|
|
|
|
2020-12-21 03:07:42 +01:00
|
|
|
defm vslide1up : RISCVBinaryAAX;
|
|
|
|
defm vslide1down : RISCVBinaryAAX;
|
|
|
|
defm vfslide1up : RISCVBinaryAAX;
|
|
|
|
defm vfslide1down : RISCVBinaryAAX;
|
|
|
|
|
2020-12-24 09:23:35 +01:00
|
|
|
defm vrgather : RISCVBinaryAAX;
|
|
|
|
|
2020-12-25 03:56:24 +01:00
|
|
|
def "int_riscv_vcompress_mask" : RISCVUnaryAAMask;
|
|
|
|
|
2020-12-21 06:51:57 +01:00
|
|
|
defm vaaddu : RISCVSaturatingBinaryAAX;
|
|
|
|
defm vaadd : RISCVSaturatingBinaryAAX;
|
|
|
|
defm vasubu : RISCVSaturatingBinaryAAX;
|
|
|
|
defm vasub : RISCVSaturatingBinaryAAX;
|
|
|
|
|
|
|
|
defm vsmul : RISCVSaturatingBinaryAAX;
|
|
|
|
|
|
|
|
defm vssrl : RISCVSaturatingBinaryAAX;
|
|
|
|
defm vssra : RISCVSaturatingBinaryAAX;
|
|
|
|
|
|
|
|
defm vnclipu : RISCVSaturatingBinaryABX;
|
|
|
|
defm vnclip : RISCVSaturatingBinaryABX;
|
2020-12-16 00:06:07 +01:00
|
|
|
|
|
|
|
defm vmfeq : RISCVCompare;
|
|
|
|
defm vmfne : RISCVCompare;
|
|
|
|
defm vmflt : RISCVCompare;
|
|
|
|
defm vmfle : RISCVCompare;
|
|
|
|
defm vmfgt : RISCVCompare;
|
|
|
|
defm vmfge : RISCVCompare;
|
2020-12-24 03:31:35 +01:00
|
|
|
|
|
|
|
defm vredsum : RISCVReduction;
|
|
|
|
defm vredand : RISCVReduction;
|
|
|
|
defm vredor : RISCVReduction;
|
|
|
|
defm vredxor : RISCVReduction;
|
|
|
|
defm vredminu : RISCVReduction;
|
|
|
|
defm vredmin : RISCVReduction;
|
|
|
|
defm vredmaxu : RISCVReduction;
|
|
|
|
defm vredmax : RISCVReduction;
|
|
|
|
|
2020-12-26 14:21:46 +01:00
|
|
|
defm vwredsumu : RISCVReduction;
|
|
|
|
defm vwredsum : RISCVReduction;
|
|
|
|
|
2020-12-24 03:31:35 +01:00
|
|
|
defm vfredosum : RISCVReduction;
|
|
|
|
defm vfredsum : RISCVReduction;
|
|
|
|
defm vfredmin : RISCVReduction;
|
|
|
|
defm vfredmax : RISCVReduction;
|
2020-12-25 03:59:05 +01:00
|
|
|
|
2020-12-26 14:21:46 +01:00
|
|
|
defm vfwredsum : RISCVReduction;
|
|
|
|
defm vfwredosum : RISCVReduction;
|
|
|
|
|
2020-12-25 03:59:05 +01:00
|
|
|
def int_riscv_vmand: RISCVBinaryAAANoMask;
|
|
|
|
def int_riscv_vmnand: RISCVBinaryAAANoMask;
|
|
|
|
def int_riscv_vmandnot: RISCVBinaryAAANoMask;
|
|
|
|
def int_riscv_vmxor: RISCVBinaryAAANoMask;
|
|
|
|
def int_riscv_vmor: RISCVBinaryAAANoMask;
|
|
|
|
def int_riscv_vmnor: RISCVBinaryAAANoMask;
|
|
|
|
def int_riscv_vmornot: RISCVBinaryAAANoMask;
|
|
|
|
def int_riscv_vmxnor: RISCVBinaryAAANoMask;
|
2020-12-28 05:00:33 +01:00
|
|
|
def int_riscv_vmclr : RISCVNullaryIntrinsic;
|
|
|
|
def int_riscv_vmset : RISCVNullaryIntrinsic;
|
2020-12-23 16:42:36 +01:00
|
|
|
|
|
|
|
defm vpopc : RISCVMaskUnarySOut;
|
|
|
|
defm vfirst : RISCVMaskUnarySOut;
|
2020-12-25 03:13:56 +01:00
|
|
|
defm vmsbf : RISCVMaskUnaryMOut;
|
|
|
|
defm vmsof : RISCVMaskUnaryMOut;
|
|
|
|
defm vmsif : RISCVMaskUnaryMOut;
|
|
|
|
|
2020-12-31 04:31:46 +01:00
|
|
|
defm vfwcvt_f_xu_v : RISCVConversion;
|
|
|
|
defm vfwcvt_f_x_v : RISCVConversion;
|
|
|
|
defm vfwcvt_xu_f_v : RISCVConversion;
|
|
|
|
defm vfwcvt_x_f_v : RISCVConversion;
|
|
|
|
defm vfwcvt_rtz_xu_f_v : RISCVConversion;
|
|
|
|
defm vfwcvt_rtz_x_f_v : RISCVConversion;
|
|
|
|
defm vfwcvt_f_f_v : RISCVConversion;
|
|
|
|
|
2020-12-31 04:35:37 +01:00
|
|
|
defm vfncvt_f_xu_w : RISCVConversion;
|
|
|
|
defm vfncvt_f_x_w : RISCVConversion;
|
|
|
|
defm vfncvt_xu_f_w : RISCVConversion;
|
|
|
|
defm vfncvt_x_f_w : RISCVConversion;
|
|
|
|
defm vfncvt_rtz_xu_f_w : RISCVConversion;
|
|
|
|
defm vfncvt_rtz_x_f_w : RISCVConversion;
|
|
|
|
defm vfncvt_f_f_w : RISCVConversion;
|
|
|
|
defm vfncvt_rod_f_f_w : RISCVConversion;
|
|
|
|
|
2020-12-25 03:13:56 +01:00
|
|
|
// Output: (vector)
|
|
|
|
// Input: (mask type input, vl)
|
|
|
|
def int_riscv_viota : Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>,
|
|
|
|
llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
|
|
|
// Output: (vector)
|
|
|
|
// Input: (maskedoff, mask type vector_in, mask, vl)
|
|
|
|
def int_riscv_viota_mask : Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>,
|
|
|
|
llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
|
|
|
// Output: (vector)
|
|
|
|
// Input: (vl)
|
2020-12-28 05:00:33 +01:00
|
|
|
def int_riscv_vid : RISCVNullaryIntrinsic;
|
|
|
|
|
2020-12-25 03:13:56 +01:00
|
|
|
// Output: (vector)
|
|
|
|
// Input: (maskedoff, mask, vl)
|
|
|
|
def int_riscv_vid_mask : Intrinsic<[llvm_anyvector_ty],
|
|
|
|
[LLVMMatchType<0>,
|
|
|
|
LLVMScalarOrSameVectorWidth<0, llvm_i1_ty>,
|
|
|
|
llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic;
|
2020-12-23 16:42:36 +01:00
|
|
|
|
2020-12-11 08:16:08 +01:00
|
|
|
} // TargetPrefix = "riscv"
|