Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
deps: patch V8 to 10.2.154.15
Refs: v8/v8@10.2.154.13...10.2.154.15
PR-URL: #44294
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
  • Loading branch information
targos authored and RafaelGSS committed Sep 5, 2022
1 parent 443730c commit 754d26a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deps/v8/include/v8-version.h
Expand Up @@ -11,7 +11,7 @@
#define V8_MAJOR_VERSION 10
#define V8_MINOR_VERSION 2
#define V8_BUILD_NUMBER 154
#define V8_PATCH_LEVEL 13
#define V8_PATCH_LEVEL 15

// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
Expand Down
6 changes: 5 additions & 1 deletion deps/v8/src/compiler/escape-analysis.cc
Expand Up @@ -78,6 +78,8 @@ class ReduceScope {
explicit ReduceScope(Node* node, Reduction* reduction)
: current_node_(node), reduction_(reduction) {}

void SetValueChanged() { reduction()->set_value_changed(); }

protected:
Node* current_node() const { return current_node_; }
Reduction* reduction() { return reduction_; }
Expand Down Expand Up @@ -806,7 +808,9 @@ void ReduceNode(const Operator* op, EscapeAnalysisTracker::Scope* current,
break;
}
case IrOpcode::kStateValues:
// These uses are always safe.
// We visit StateValue nodes through their correpsonding FrameState node,
// so we need to make sure we revisit the FrameState.
current->SetValueChanged();
break;
case IrOpcode::kFrameState: {
// We mark the receiver as escaping due to the non-standard `.getThis`
Expand Down
2 changes: 1 addition & 1 deletion deps/v8/tools/whitespace.txt
Expand Up @@ -15,4 +15,4 @@ Because whitespaces are not that funny......
Today's answer to life the universe and everything is 12950!
Today's answer to life the universe and everything is 6728!
Today's answer to life the universe and everything is 6728!!
..
.

0 comments on commit 754d26a

Please sign in to comment.