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

Side by Side Diff: src/interpreter/interpreter-generator.cc

Issue 2760953002: [builtins] Move more files into v8_builtins_generators source set (Closed)
Patch Set: rebased Created 3 years, 9 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/interpreter/bytecode-generator.cc ('k') | src/v8.gyp » ('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 2017 the V8 project authors. All rights reserved. 1 // Copyright 2017 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/interpreter-generator.h" 5 #include "src/interpreter/interpreter-generator.h"
6 6
7 #include <array> 7 #include <array>
8 #include <tuple> 8 #include <tuple>
9 9
10 #include "src/builtins/builtins-arguments.h" 10 #include "src/builtins/builtins-arguments-gen.h"
11 #include "src/builtins/builtins-constructor.h" 11 #include "src/builtins/builtins-constructor-gen.h"
12 #include "src/builtins/builtins-forin.h" 12 #include "src/builtins/builtins-forin-gen.h"
13 #include "src/code-events.h" 13 #include "src/code-events.h"
14 #include "src/code-factory.h" 14 #include "src/code-factory.h"
15 #include "src/factory.h" 15 #include "src/factory.h"
16 #include "src/ic/accessor-assembler.h" 16 #include "src/ic/accessor-assembler.h"
17 #include "src/interpreter/bytecode-flags.h" 17 #include "src/interpreter/bytecode-flags.h"
18 #include "src/interpreter/bytecodes.h" 18 #include "src/interpreter/bytecodes.h"
19 #include "src/interpreter/interpreter-assembler.h" 19 #include "src/interpreter/interpreter-assembler.h"
20 #include "src/interpreter/interpreter-intrinsics.h" 20 #include "src/interpreter/interpreter-intrinsics.h"
21 #include "src/objects-inl.h" 21 #include "src/objects-inl.h"
22 22
(...skipping 3398 matching lines...) Expand 10 before | Expand all | Expand 10 after
3421 __ StoreObjectField(generator, JSGeneratorObject::kContinuationOffset, 3421 __ StoreObjectField(generator, JSGeneratorObject::kContinuationOffset,
3422 __ SmiTag(new_state)); 3422 __ SmiTag(new_state));
3423 __ SetAccumulator(old_state); 3423 __ SetAccumulator(old_state);
3424 3424
3425 __ Dispatch(); 3425 __ Dispatch();
3426 } 3426 }
3427 3427
3428 } // namespace interpreter 3428 } // namespace interpreter
3429 } // namespace internal 3429 } // namespace internal
3430 } // namespace v8 3430 } // namespace v8
OLDNEW
« no previous file with comments | « src/interpreter/bytecode-generator.cc ('k') | src/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698