Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Side by Side Diff: src/compiler/bytecode-graph-builder.cc

Issue 1641143002: [Interpreter] Adds a placeholder merge node when visiting jumps. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | test/cctest/compiler/test-run-bytecode-graph-builder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/compiler/bytecode-graph-builder.h" 5 #include "src/compiler/bytecode-graph-builder.h"
6 6
7 #include "src/compiler/bytecode-branch-analysis.h" 7 #include "src/compiler/bytecode-branch-analysis.h"
8 #include "src/compiler/linkage.h" 8 #include "src/compiler/linkage.h"
9 #include "src/compiler/operator-properties.h" 9 #include "src/compiler/operator-properties.h"
10 #include "src/interpreter/bytecodes.h" 10 #include "src/interpreter/bytecodes.h"
(...skipping 1880 matching lines...) Expand 10 before | Expand all | Expand 10 after
1891 if (branch_analysis()->backward_branches_target(source_offset)) { 1891 if (branch_analysis()->backward_branches_target(source_offset)) {
1892 // Add loop header and store a copy so we can connect merged back 1892 // Add loop header and store a copy so we can connect merged back
1893 // edge inputs to the loop header. 1893 // edge inputs to the loop header.
1894 loop_header_environments_[source_offset] = environment()->CopyForLoop(); 1894 loop_header_environments_[source_offset] = environment()->CopyForLoop();
1895 } 1895 }
1896 } 1896 }
1897 1897
1898 1898
1899 void BytecodeGraphBuilder::BuildJump(int source_offset, int target_offset) { 1899 void BytecodeGraphBuilder::BuildJump(int source_offset, int target_offset) {
1900 DCHECK_NULL(merge_environments_[source_offset]); 1900 DCHECK_NULL(merge_environments_[source_offset]);
1901 // Append merge nodes to the environment. We may merge here with another
1902 // environment. So add a place holder for merge nodes. We may add redundant
1903 // but will be eliminated in a later pass.
1904 NewMerge();
Michael Starzinger 2016/01/28 12:27:50 This can be made nice when we forward propagate en
mythria 2016/01/28 13:03:16 Done.
1901 merge_environments_[source_offset] = environment(); 1905 merge_environments_[source_offset] = environment();
1902 if (source_offset >= target_offset) { 1906 if (source_offset >= target_offset) {
1903 MergeEnvironmentsOfBackwardBranches(source_offset, target_offset); 1907 MergeEnvironmentsOfBackwardBranches(source_offset, target_offset);
1904 } 1908 }
1905 set_environment(nullptr); 1909 set_environment(nullptr);
1906 } 1910 }
1907 1911
1908 1912
1909 void BytecodeGraphBuilder::BuildJump() { 1913 void BytecodeGraphBuilder::BuildJump() {
1910 int source_offset = bytecode_iterator()->current_offset(); 1914 int source_offset = bytecode_iterator()->current_offset();
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
2101 2105
2102 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) { 2106 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) {
2103 if (environment()->IsMarkedAsUnreachable()) return; 2107 if (environment()->IsMarkedAsUnreachable()) return;
2104 environment()->MarkAsUnreachable(); 2108 environment()->MarkAsUnreachable();
2105 exit_controls_.push_back(exit); 2109 exit_controls_.push_back(exit);
2106 } 2110 }
2107 2111
2108 } // namespace compiler 2112 } // namespace compiler
2109 } // namespace internal 2113 } // namespace internal
2110 } // namespace v8 2114 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | test/cctest/compiler/test-run-bytecode-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698