Skip to content

Commit 5c81c16

Browse files
targosnodejs-github-bot
authored andcommitted
deps: patch V8 to support older Clang versions
PR-URL: nodejs/node#54536 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Richard Lau <[email protected]>
1 parent 130b0ea commit 5c81c16

File tree

3 files changed

+16
-15
lines changed

3 files changed

+16
-15
lines changed

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
# Reset this number to 0 on major V8 upgrades.
3939
# Increment by one for each non-official patch applied to deps/v8.
40-
'v8_embedder_string': '-node.6',
40+
'v8_embedder_string': '-node.7',
4141

4242
##### V8 defaults for Node.js #####
4343

deps/v8/src/base/template-meta-programming/list.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ template <template <typename, typename> typename F, typename T, typename Head,
134134
typename... Tail>
135135
struct fold_right_impl<F, T, list<Head, Tail...>> {
136136
using type =
137-
F<Head, typename fold_right_impl<F, T, list<Tail...>>::type>::type;
137+
typename F<Head, typename fold_right_impl<F, T, list<Tail...>>::type>::type;
138138
};
139139
template <template <typename, typename> typename F, typename T>
140140
struct fold_right_impl<F, T, list<>> {
@@ -147,7 +147,7 @@ template <template <TYPENAME1, typename> typename F, typename T, TYPENAME1 Head,
147147
TYPENAME1... Tail>
148148
struct fold_right1_impl<F, T, list1<Head, Tail...>> {
149149
using type =
150-
F<Head, typename fold_right1_impl<F, T, list1<Tail...>>::type>::type;
150+
typename F<Head, typename fold_right1_impl<F, T, list1<Tail...>>::type>::type;
151151
};
152152
template <template <TYPENAME1, typename> typename F, typename T>
153153
struct fold_right1_impl<F, T, list1<>> {
@@ -217,11 +217,11 @@ constexpr bool all_equal_v = all_equal<List, Cmp>::value;
217217
template <typename List, size_t I, typename T>
218218
struct insert_at : public detail::insert_at_impl<I, T, list<>, List> {};
219219
template <typename List, size_t I, typename T>
220-
using insert_at_t = insert_at<List, I, T>::type;
220+
using insert_at_t = typename insert_at<List, I, T>::type;
221221
template <typename List1, size_t I, TYPENAME1 T>
222222
struct insert_at1 : public detail::insert_at1_impl<I, T, list1<>, List1> {};
223223
template <typename List1, size_t I, TYPENAME1 T>
224-
using insert_at1_t = insert_at1<List1, I, T>::type;
224+
using insert_at1_t = typename insert_at1<List1, I, T>::type;
225225

226226
// fold_right recursively applies binary function {F} to elements of the {List}
227227
// and the previous result, starting from the right. The initial value is {T}.
@@ -232,11 +232,11 @@ using insert_at1_t = insert_at1<List1, I, T>::type;
232232
template <template <typename, typename> typename F, typename List, typename T>
233233
struct fold_right : public detail::fold_right_impl<F, T, List> {};
234234
template <template <typename, typename> typename F, typename List, typename T>
235-
using fold_right_t = fold_right<F, List, T>::type;
235+
using fold_right_t = typename fold_right<F, List, T>::type;
236236
template <template <TYPENAME1, typename> typename F, typename List1, typename T>
237237
struct fold_right1 : public detail::fold_right1_impl<F, T, List1> {};
238238
template <template <TYPENAME1, typename> typename F, typename List1, typename T>
239-
using fold_right1_t = fold_right1<F, List1, T>::type;
239+
using fold_right1_t = typename fold_right1<F, List1, T>::type;
240240

241241
} // namespace v8::base::tmp
242242

deps/v8/src/compiler/turboshaft/assembler.h

+9-8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#ifndef V8_COMPILER_TURBOSHAFT_ASSEMBLER_H_
66
#define V8_COMPILER_TURBOSHAFT_ASSEMBLER_H_
77

8+
#include <concepts>
89
#include <cstring>
910
#include <iomanip>
1011
#include <iterator>
@@ -194,8 +195,8 @@ template <typename T>
194195
class IndexRange : public Range<T> {
195196
public:
196197
using base = Range<T>;
197-
using value_type = base::value_type;
198-
using iterator_type = base::iterator_type;
198+
using value_type = typename base::value_type;
199+
using iterator_type = typename base::iterator_type;
199200

200201
explicit IndexRange(ConstOrV<T> count) : Range<T>(0, count, 1) {}
201202
};
@@ -223,8 +224,8 @@ class Sequence : private Range<T> {
223224
using base = Range<T>;
224225

225226
public:
226-
using value_type = base::value_type;
227-
using iterator_type = base::iterator_type;
227+
using value_type = typename base::value_type;
228+
using iterator_type = typename base::iterator_type;
228229

229230
explicit Sequence(ConstOrV<T> begin, ConstOrV<T> stride = 1)
230231
: base(begin, 0, stride) {}
@@ -729,7 +730,7 @@ struct LoopLabelForHelper<std::tuple<V<Ts>...>> {
729730
} // namespace detail
730731

731732
template <typename T>
732-
using LoopLabelFor = detail::LoopLabelForHelper<T>::type;
733+
using LoopLabelFor = typename detail::LoopLabelForHelper<T>::type;
733734

734735
Handle<Code> BuiltinCodeHandle(Builtin builtin, Isolate* isolate);
735736

@@ -788,19 +789,19 @@ struct ReducerStack {
788789
static_assert(base_index == length - 1);
789790
// Insert a GenericReducerBase before that.
790791
using WithGeneric =
791-
reducer_list_insert_at<ReducerList, base_index, GenericReducerBase>::type;
792+
typename reducer_list_insert_at<ReducerList, base_index, GenericReducerBase>::type;
792793
// If we have a ValueNumberingReducer in the list, we insert at that index,
793794
// otherwise before the reducer_base.
794795
static constexpr size_t ep_index =
795796
reducer_list_index_of<WithGeneric, ValueNumberingReducer,
796797
base_index>::value;
797798
using WithGenericAndEmitProjection =
798-
reducer_list_insert_at<WithGeneric, ep_index,
799+
typename reducer_list_insert_at<WithGeneric, ep_index,
799800
EmitProjectionReducer>::type;
800801
static_assert(reducer_list_length<WithGenericAndEmitProjection>::value ==
801802
length + 2);
802803

803-
using type = reducer_list_to_stack<WithGenericAndEmitProjection,
804+
using type = typename reducer_list_to_stack<WithGenericAndEmitProjection,
804805
StackBottom<ReducerList>>::type;
805806
};
806807

0 commit comments

Comments
 (0)