[riscv64] Move template into non-namespace scope
Fix node build failed Change-Id: I3f465bcdaa17b0f1a6c497e9ab5ef9e50cbe5017 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3281721 Reviewed-by: ji qiu <qiuji@iscas.ac.cn> Commit-Queue: ji qiu <qiuji@iscas.ac.cn> Cr-Commit-Position: refs/heads/main@{#77917}
This commit is contained in:
parent
229005253f
commit
55cd86486a
@ -69,6 +69,60 @@ T Nabs(T a) {
|
||||
return a < 0 ? a : -a;
|
||||
}
|
||||
|
||||
template <uint64_t N>
|
||||
struct type_usew_t;
|
||||
template <>
|
||||
struct type_usew_t<8> {
|
||||
using type = uint8_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_usew_t<16> {
|
||||
using type = uint16_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_usew_t<32> {
|
||||
using type = uint32_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_usew_t<64> {
|
||||
using type = uint64_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_usew_t<128> {
|
||||
using type = __uint128_t;
|
||||
};
|
||||
template <uint64_t N>
|
||||
struct type_sew_t;
|
||||
|
||||
template <>
|
||||
struct type_sew_t<8> {
|
||||
using type = int8_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_sew_t<16> {
|
||||
using type = int16_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_sew_t<32> {
|
||||
using type = int32_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_sew_t<64> {
|
||||
using type = int64_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_sew_t<128> {
|
||||
using type = __int128_t;
|
||||
};
|
||||
|
||||
#if defined(USE_SIMULATOR)
|
||||
// Running with a simulator.
|
||||
|
||||
@ -672,60 +726,6 @@ class Simulator : public SimulatorBase {
|
||||
// PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
|
||||
// HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
|
||||
// MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
||||
template <uint64_t N>
|
||||
struct type_usew_t;
|
||||
template <>
|
||||
struct type_usew_t<8> {
|
||||
using type = uint8_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_usew_t<16> {
|
||||
using type = uint16_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_usew_t<32> {
|
||||
using type = uint32_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_usew_t<64> {
|
||||
using type = uint64_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_usew_t<128> {
|
||||
using type = __uint128_t;
|
||||
};
|
||||
template <uint64_t N>
|
||||
struct type_sew_t;
|
||||
|
||||
template <>
|
||||
struct type_sew_t<8> {
|
||||
using type = int8_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_sew_t<16> {
|
||||
using type = int16_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_sew_t<32> {
|
||||
using type = int32_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_sew_t<64> {
|
||||
using type = int64_t;
|
||||
};
|
||||
|
||||
template <>
|
||||
struct type_sew_t<128> {
|
||||
using type = __int128_t;
|
||||
};
|
||||
|
||||
#define VV_PARAMS(x) \
|
||||
type_sew_t<x>::type& vd = \
|
||||
Rvvelt<type_sew_t<x>::type>(rvv_vd_reg(), i, true); \
|
||||
|
Loading…
Reference in New Issue
Block a user