OLD | NEW |
| (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 | |
OLD | NEW |