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

Side by Side Diff: src/setup-isolate-full.cc

Issue 2803903002: Revert of [snapshot] Move builtins generation into mksnapshot (Closed)
Patch Set: rebased Created 3 years, 8 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/setup-isolate-deserialize.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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "src/setup-isolate.h"
6
7 #include "src/base/logging.h"
8 #include "src/interpreter/setup-interpreter.h"
9 #include "src/isolate.h"
10
11 namespace v8 {
12 namespace internal {
13
14 void SetupIsolateDelegate::SetupBuiltins(Isolate* isolate,
15 bool create_heap_objects) {
16 #ifdef V8_GYP_BUILD
17 // Compatibility hack to keep the deprecated GYP build working.
18 if (create_heap_objects) {
19 SetupBuiltinsInternal(isolate);
20 }
21 return;
22 #endif
23 DCHECK(create_heap_objects);
24 SetupBuiltinsInternal(isolate);
25 }
26
27 void SetupIsolateDelegate::SetupInterpreter(
28 interpreter::Interpreter* interpreter, bool create_heap_objects) {
29 #ifdef V8_GYP_BUILD
30 // Compatibility hack to keep the deprecated GYP build working.
31 if (create_heap_objects) {
32 interpreter::SetupInterpreter::InstallBytecodeHandlers(interpreter);
33 }
34 return;
35 #endif
36 DCHECK(create_heap_objects);
37 interpreter::SetupInterpreter::InstallBytecodeHandlers(interpreter);
38 }
39
40 } // namespace internal
41 } // namespace v8
OLDNEW
« no previous file with comments | « src/setup-isolate-deserialize.cc ('k') | src/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698