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

Side by Side Diff: test/cctest/interpreter/test-interpreter.cc

Issue 2035813002: [Interpreter] Move jump processing to bytecode array writer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@int_fix_bytecode
Patch Set: Address comments Created 4 years, 6 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 | « src/v8.gyp ('k') | test/unittests/interpreter/bytecode-array-builder-unittest.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/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/execution.h" 7 #include "src/execution.h"
8 #include "src/handles.h" 8 #include "src/handles.h"
9 #include "src/interpreter/bytecode-array-builder.h" 9 #include "src/interpreter/bytecode-array-builder.h"
10 #include "src/interpreter/bytecode-array-iterator.h" 10 #include "src/interpreter/bytecode-array-iterator.h"
11 #include "src/interpreter/bytecode-label.h"
11 #include "src/interpreter/interpreter.h" 12 #include "src/interpreter/interpreter.h"
12 #include "test/cctest/cctest.h" 13 #include "test/cctest/cctest.h"
13 #include "test/cctest/interpreter/interpreter-tester.h" 14 #include "test/cctest/interpreter/interpreter-tester.h"
14 #include "test/cctest/test-feedback-vector.h" 15 #include "test/cctest/test-feedback-vector.h"
15 16
16 namespace v8 { 17 namespace v8 {
17 namespace internal { 18 namespace internal {
18 namespace interpreter { 19 namespace interpreter {
19 20
20 21
(...skipping 4171 matching lines...) Expand 10 before | Expand all | Expand 10 after
4192 Handle<i::Object> return_value = callable().ToHandleChecked(); 4193 Handle<i::Object> return_value = callable().ToHandleChecked();
4193 CHECK(return_value->SameValue(*tests[i].second)); 4194 CHECK(return_value->SameValue(*tests[i].second));
4194 } 4195 }
4195 4196
4196 FLAG_ignition_generators = old_flag; 4197 FLAG_ignition_generators = old_flag;
4197 } 4198 }
4198 4199
4199 } // namespace interpreter 4200 } // namespace interpreter
4200 } // namespace internal 4201 } // namespace internal
4201 } // namespace v8 4202 } // namespace v8
OLDNEW
« no previous file with comments | « src/v8.gyp ('k') | test/unittests/interpreter/bytecode-array-builder-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698