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

Side by Side Diff: src/interpreter/bytecode-pipeline.cc

Issue 1997653002: [interpreter] Bytecode register optimizer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Grammar. Created 4 years, 7 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
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/interpreter/bytecode-pipeline.h" 5 #include "src/interpreter/bytecode-pipeline.h"
6 6
7 #include <iomanip> 7 #include <iomanip>
8 #include "src/interpreter/source-position-table.h" 8 #include "src/interpreter/source-position-table.h"
9 9
10 namespace v8 { 10 namespace v8 {
11 namespace internal { 11 namespace internal {
12 namespace interpreter { 12 namespace interpreter {
13 13
14 void BytecodeSourceInfo::Update(const BytecodeSourceInfo& entry) { 14 void BytecodeSourceInfo::Update(const BytecodeSourceInfo& entry) {
15 if (!entry.is_valid()) return;
16
15 if (!is_valid() || (entry.is_statement() && !is_statement()) || 17 if (!is_valid() || (entry.is_statement() && !is_statement()) ||
16 (entry.is_statement() && is_statement() && 18 (entry.is_statement() && is_statement() &&
17 entry.source_position() > source_position())) { 19 entry.source_position() > source_position())) {
18 // Position is updated if any of the following conditions are met: 20 // Position is updated if any of the following conditions are met:
19 // (1) there is no existing position. 21 // (1) there is no existing position.
20 // (2) the incoming position is a statement and the current position 22 // (2) the incoming position is a statement and the current position
21 // is an expression. 23 // is an expression.
22 // (3) the existing position is a statement and the incoming 24 // (3) the existing position is a statement and the incoming
23 // statement has a later source position. 25 // statement has a later source position.
24 // Condition 3 is needed for the first statement in a function which 26 // Condition 3 is needed for the first statement in a function which
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 if (info.is_valid()) { 173 if (info.is_valid()) {
172 char description = info.is_statement() ? 'S' : 'E'; 174 char description = info.is_statement() ? 'S' : 'E';
173 os << info.source_position() << ' ' << description << '>'; 175 os << info.source_position() << ' ' << description << '>';
174 } 176 }
175 return os; 177 return os;
176 } 178 }
177 179
178 } // namespace interpreter 180 } // namespace interpreter
179 } // namespace internal 181 } // namespace internal
180 } // namespace v8 182 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698