OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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 |
OLD | NEW |