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 {
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
// 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,
|
|
|
|
llvm_anyvector_ty, llvm_anyint_ty],
|
|
|
|
[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,
|
|
|
|
llvm_anyvector_ty, llvm_anyint_ty],
|
|
|
|
[IntrNoMem]>, RISCVVIntrinsic {
|
|
|
|
let ExtendOperand = 3;
|
|
|
|
}
|
2020-12-11 08:16:08 +01:00
|
|
|
|
|
|
|
multiclass RISCVBinaryAAX {
|
|
|
|
def "int_riscv_" # NAME : RISCVBinaryAAXNoMask;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVBinaryAAXMask;
|
|
|
|
}
|
2020-12-11 09:08:10 +01:00
|
|
|
multiclass RISCVBinaryABX {
|
|
|
|
def "int_riscv_" # NAME : RISCVBinaryABXNoMask;
|
|
|
|
def "int_riscv_" # NAME # "_mask" : RISCVBinaryABXMask;
|
|
|
|
}
|
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-11 08:16:08 +01:00
|
|
|
} // TargetPrefix = "riscv"
|