2017-04-07 13:31:29 +00:00
|
|
|
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "src/setup-isolate.h"
|
|
|
|
|
|
|
|
#include "src/base/logging.h"
|
2017-09-06 10:48:08 +00:00
|
|
|
#include "src/heap/heap-inl.h"
|
2017-04-26 10:44:44 +00:00
|
|
|
#include "src/interpreter/interpreter.h"
|
2017-04-07 13:31:29 +00:00
|
|
|
#include "src/interpreter/setup-interpreter.h"
|
|
|
|
#include "src/isolate.h"
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
|
2017-09-06 10:48:08 +00:00
|
|
|
void SetupIsolateDelegate::SetupBuiltins(Isolate* isolate) {
|
|
|
|
if (create_heap_objects_) {
|
2017-04-07 13:31:29 +00:00
|
|
|
SetupBuiltinsInternal(isolate);
|
|
|
|
} else {
|
2017-11-20 13:29:20 +00:00
|
|
|
CHECK(isolate->snapshot_available());
|
2017-04-07 13:31:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetupIsolateDelegate::SetupInterpreter(
|
2017-09-06 10:48:08 +00:00
|
|
|
interpreter::Interpreter* interpreter) {
|
|
|
|
if (create_heap_objects_) {
|
2017-04-07 13:31:29 +00:00
|
|
|
interpreter::SetupInterpreter::InstallBytecodeHandlers(interpreter);
|
2017-04-26 10:44:44 +00:00
|
|
|
} else {
|
2017-11-20 13:29:20 +00:00
|
|
|
CHECK(interpreter->IsDispatchTableInitialized());
|
2017-04-07 13:31:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-06 10:48:08 +00:00
|
|
|
bool SetupIsolateDelegate::SetupHeap(Heap* heap) {
|
|
|
|
if (create_heap_objects_) {
|
|
|
|
return SetupHeapInternal(heap);
|
|
|
|
} else {
|
2017-11-20 13:29:20 +00:00
|
|
|
CHECK(heap->isolate()->snapshot_available());
|
2017-09-06 10:48:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-07 13:31:29 +00:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|