d36adbacaf
The former contents of the VM isolate are now included into each isolate group. This makes each isolate group's heap independent, and in particular allows each heap to be allocated to a separate pointer cage (not done in this CL). The duplicated stubs that allowed PC relative calls are removed, since the originals can now be the target of PC relative calls. The bootstrapping needing to load an AppJIT or AppAOT snapshot is reduced to allocating the oddballs. The code is entirely dropped in the AOT runtime, but the JIT runtime still has it to allow for flags to affect the compilation of the stub code. Further refactoring might be able to remove this for the JIT runtime too, with only gen_snapshot knowing how to bootstrap. Class serialization no longer distinguishes predefined classes. The page containing null is marked as never-evacuate. null, false and true must not move because the compiler relies on their low bits having certain patterns for some optimizations. (Previously, the entire VM isolate heap never moved.) Compaction is disabled for IA32. Due to register pressure, some stub calls must not use a scratch register and embed the address of Code. The page containing the call-through-safepoint stub is frozen when running with --write-protect-code and the stub is created at runtime (instead of loaded from an AppJIT or AppAOT snapshot). This stub must remain executable even during a safepoint, as a foreign call might during return during a safepoint and only block after the stub directs it to the runtime. The snapshot symbols are renamed to kDartSnapshotData and kDartSnapshotText. There is no need to distinguish the VM isolate's snapshot, and snaphots are per isolate group not per isolate. Aliases with the old names are added to ease migration. Some global flags that were automatically set based on the VM isolate's snapshot are now isolate group flags and automatically set by the isolate group's snapshot. TEST=ci Change-Id: Iee82016057d609112e9b021d178fc3d4d18b5044 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/500621 Reviewed-by: Alexander Markov <alexmarkov@google.com> Reviewed-by: Tess Strickland <sstrickl@google.com> SLSA-Policy-Verified: SLSA Policy Verification Service <devtools-gerritcodereview-exitgate@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
288 lines
9.0 KiB
C++
288 lines
9.0 KiB
C++
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#include "vm/bootstrap_natives.h"
|
|
|
|
#include "include/dart_api.h"
|
|
|
|
#include "vm/debugger.h"
|
|
#include "vm/exceptions.h"
|
|
#include "vm/flags.h"
|
|
#include "vm/heap/heap.h"
|
|
#include "vm/isolate.h"
|
|
#include "vm/message.h"
|
|
#include "vm/native_entry.h"
|
|
#include "vm/object.h"
|
|
#include "vm/object_graph.h"
|
|
#include "vm/object_store.h"
|
|
#include "vm/service.h"
|
|
#include "vm/service_isolate.h"
|
|
#include "vm/zone_text_buffer.h"
|
|
|
|
namespace dart {
|
|
|
|
DECLARE_FLAG(int, profile_period);
|
|
|
|
// Native implementations for the dart:developer library.
|
|
DEFINE_NATIVE_ENTRY(Developer_debugger, 0, 2) {
|
|
GET_NON_NULL_NATIVE_ARGUMENT(Bool, when, arguments->NativeArgAt(0));
|
|
#if !defined(PRODUCT) && !defined(DART_PRECOMPILED_RUNTIME)
|
|
GET_NATIVE_ARGUMENT(String, msg, arguments->NativeArgAt(1));
|
|
Debugger* debugger = isolate->debugger();
|
|
if (debugger == nullptr) {
|
|
return when.ptr();
|
|
}
|
|
if (when.value()) {
|
|
debugger->PauseDeveloper(msg);
|
|
}
|
|
#endif
|
|
return when.ptr();
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_inspect, 0, 1) {
|
|
GET_NATIVE_ARGUMENT(Instance, inspectee, arguments->NativeArgAt(0));
|
|
#ifndef PRODUCT
|
|
Service::SendInspectEvent(isolate, inspectee);
|
|
#endif // !PRODUCT
|
|
return inspectee.ptr();
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_log, 0, 8) {
|
|
#if defined(PRODUCT)
|
|
return Object::null();
|
|
#else
|
|
GET_NON_NULL_NATIVE_ARGUMENT(String, message, arguments->NativeArgAt(0));
|
|
GET_NON_NULL_NATIVE_ARGUMENT(Integer, timestamp, arguments->NativeArgAt(1));
|
|
GET_NON_NULL_NATIVE_ARGUMENT(Integer, sequence, arguments->NativeArgAt(2));
|
|
GET_NON_NULL_NATIVE_ARGUMENT(Smi, level, arguments->NativeArgAt(3));
|
|
GET_NON_NULL_NATIVE_ARGUMENT(String, name, arguments->NativeArgAt(4));
|
|
GET_NATIVE_ARGUMENT(Instance, dart_zone, arguments->NativeArgAt(5));
|
|
GET_NATIVE_ARGUMENT(Instance, error, arguments->NativeArgAt(6));
|
|
GET_NATIVE_ARGUMENT(Instance, stack_trace, arguments->NativeArgAt(7));
|
|
Service::SendLogEvent(isolate, sequence.Value(), timestamp.Value(),
|
|
level.Value(), name, message, dart_zone, error,
|
|
stack_trace);
|
|
return Object::null();
|
|
#endif // PRODUCT
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_postEvent, 0, 2) {
|
|
#if defined(PRODUCT)
|
|
return Object::null();
|
|
#else
|
|
GET_NON_NULL_NATIVE_ARGUMENT(String, event_kind, arguments->NativeArgAt(0));
|
|
GET_NON_NULL_NATIVE_ARGUMENT(String, event_data, arguments->NativeArgAt(1));
|
|
Service::SendExtensionEvent(isolate, event_kind, event_data);
|
|
return Object::null();
|
|
#endif // PRODUCT
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_lookupExtension, 0, 1) {
|
|
#if defined(PRODUCT)
|
|
return Object::null();
|
|
#else
|
|
GET_NON_NULL_NATIVE_ARGUMENT(String, name, arguments->NativeArgAt(0));
|
|
return isolate->LookupServiceExtensionHandler(name);
|
|
#endif // PRODUCT
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_registerExtension, 0, 2) {
|
|
#if defined(PRODUCT)
|
|
return Object::null();
|
|
#else
|
|
GET_NON_NULL_NATIVE_ARGUMENT(String, name, arguments->NativeArgAt(0));
|
|
GET_NON_NULL_NATIVE_ARGUMENT(Instance, handler, arguments->NativeArgAt(1));
|
|
// We don't allow service extensions to be registered for the
|
|
// service isolate. This can happen, for example, because the
|
|
// service isolate uses dart:io. If we decide that we want to start
|
|
// supporting this in the future, it will take some work.
|
|
if (!isolate->is_service_isolate()) {
|
|
isolate->RegisterServiceExtensionHandler(name, handler);
|
|
}
|
|
return Object::null();
|
|
#endif // PRODUCT
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_getServiceMajorVersion, 0, 0) {
|
|
#if defined(PRODUCT)
|
|
return Smi::New(0);
|
|
#else
|
|
return Smi::New(SERVICE_PROTOCOL_MAJOR_VERSION);
|
|
#endif
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_getServiceMinorVersion, 0, 0) {
|
|
#if defined(PRODUCT)
|
|
return Smi::New(0);
|
|
#else
|
|
return Smi::New(SERVICE_PROTOCOL_MINOR_VERSION);
|
|
#endif
|
|
}
|
|
|
|
static void SendNull(const SendPort& port) {
|
|
Dart_CObject message;
|
|
message.type = Dart_CObject_kNull;
|
|
Dart_PostCObject(port.Id(), &message);
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_getServerInfo, 0, 1) {
|
|
GET_NON_NULL_NATIVE_ARGUMENT(SendPort, port, arguments->NativeArgAt(0));
|
|
#if defined(PRODUCT)
|
|
SendNull(port);
|
|
return Object::null();
|
|
#else
|
|
ServiceIsolate::WaitForServiceIsolateStartup();
|
|
if (!ServiceIsolate::IsRunning()) {
|
|
SendNull(port);
|
|
} else {
|
|
ServiceIsolate::RequestServerInfo(port);
|
|
}
|
|
return Object::null();
|
|
#endif
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_webServerControl, 0, 3) {
|
|
GET_NON_NULL_NATIVE_ARGUMENT(SendPort, port, arguments->NativeArgAt(0));
|
|
#if defined(PRODUCT)
|
|
SendNull(port);
|
|
return Object::null();
|
|
#else
|
|
GET_NON_NULL_NATIVE_ARGUMENT(Bool, enabled, arguments->NativeArgAt(1));
|
|
GET_NATIVE_ARGUMENT(Bool, silence_output, arguments->NativeArgAt(2));
|
|
ServiceIsolate::WaitForServiceIsolateStartup();
|
|
if (!ServiceIsolate::IsRunning()) {
|
|
SendNull(port);
|
|
} else {
|
|
ServiceIsolate::ControlWebServer(port, enabled.value(), silence_output);
|
|
}
|
|
return Object::null();
|
|
#endif
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_getIsolateIdFromSendPort, 0, 1) {
|
|
#if defined(PRODUCT)
|
|
return Object::null();
|
|
#else
|
|
GET_NON_NULL_NATIVE_ARGUMENT(SendPort, port, arguments->NativeArgAt(0));
|
|
int64_t port_id = port.Id();
|
|
return String::NewFormatted(ISOLATE_SERVICE_ID_FORMAT_STRING, port_id);
|
|
#endif
|
|
}
|
|
|
|
// TODO(derekxu16): Make this function accept an idZoneId.
|
|
DEFINE_NATIVE_ENTRY(Developer_getObjectId, 0, 1) {
|
|
#if defined(PRODUCT)
|
|
return Object::null();
|
|
#else
|
|
GET_NON_NULL_NATIVE_ARGUMENT(Instance, instance, arguments->NativeArgAt(0));
|
|
return String::New(
|
|
isolate->EnsureDefaultServiceIdZone().GetServiceId(instance));
|
|
#endif
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_reachability_barrier, 0, 0) {
|
|
IsolateGroup* isolate_group = thread->isolate_group();
|
|
ASSERT(isolate_group != nullptr);
|
|
Heap* heap = isolate_group->heap();
|
|
ASSERT(heap != nullptr);
|
|
return Integer::New(heap->ReachabilityBarrier());
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_NativeRuntime_buildId, 0, 0) {
|
|
#if defined(DART_PRECOMPILED_RUNTIME)
|
|
IsolateGroup* isolate_group = thread->isolate_group();
|
|
ASSERT(isolate_group != nullptr);
|
|
if (const uint8_t* instructions = isolate_group->source()->snapshot_text) {
|
|
const auto& build_id = OS::GetAppBuildId(instructions);
|
|
if (build_id.data != nullptr) {
|
|
ZoneTextBuffer buffer(zone);
|
|
for (intptr_t i = 0; i < build_id.len; i++) {
|
|
buffer.Printf("%2.2x", build_id.data[i]);
|
|
}
|
|
return String::New(buffer.buffer());
|
|
}
|
|
}
|
|
#endif
|
|
return String::null();
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_NativeRuntime_writeHeapSnapshotToFile, 0, 1) {
|
|
#if defined(DART_ENABLE_HEAP_SNAPSHOT_WRITER)
|
|
const String& filename =
|
|
String::CheckedHandle(zone, arguments->NativeArgAt(0));
|
|
bool successful = false;
|
|
{
|
|
NoActiveIsolateScope no_active_isolate_scope(thread);
|
|
FileHeapSnapshotWriter file_writer(thread, filename.ToCString(),
|
|
&successful);
|
|
HeapSnapshotWriter writer(thread, &file_writer);
|
|
writer.Write();
|
|
}
|
|
if (!successful) {
|
|
Exceptions::ThrowUnsupportedError(
|
|
"Could not create & write heapsnapshot to disc. Possibly due to "
|
|
"missing embedder functionality.");
|
|
}
|
|
#else
|
|
Exceptions::ThrowUnsupportedError(
|
|
"Heap snapshots are only supported in non-product mode.");
|
|
#endif // !defined(DART_ENABLE_HEAP_SNAPSHOT_WRITER)
|
|
return Object::null();
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_NativeRuntime_streamTimelineTo, 0, 5) {
|
|
#if defined(SUPPORT_TIMELINE)
|
|
const auto& recorder = String::CheckedHandle(zone, arguments->NativeArgAt(0));
|
|
const auto& path = String::CheckedHandle(zone, arguments->NativeArgAt(1));
|
|
const auto& streams = String::CheckedHandle(zone, arguments->NativeArgAt(2));
|
|
|
|
#if defined(DART_INCLUDE_PROFILER)
|
|
const auto& enable_profiler =
|
|
Bool::CheckedHandle(zone, arguments->NativeArgAt(3));
|
|
const auto& sampling_interval =
|
|
Integer::CheckedHandle(zone, arguments->NativeArgAt(4));
|
|
|
|
if (enable_profiler.value()) {
|
|
Profiler::SetConfig({
|
|
.enabled = true,
|
|
.period_us = static_cast<intptr_t>(sampling_interval.Value()),
|
|
#if defined(SUPPORT_PERFETTO)
|
|
// We only implement profile streaming for perfetto format, we
|
|
// assume that the caller ensured that recorder is "perfettofile".
|
|
.stream_to_timeline = true,
|
|
#endif
|
|
});
|
|
}
|
|
#endif
|
|
|
|
const char* error = nullptr;
|
|
const bool ok = Timeline::StreamTo(recorder.ToCString(), path.ToCString(),
|
|
streams.ToCString(), &error);
|
|
if (!ok) {
|
|
Exceptions::ThrowUnsupportedError(error);
|
|
}
|
|
#else
|
|
Exceptions::ThrowUnsupportedError(
|
|
"Timeline support was excluded during build.");
|
|
#endif // !defined(SUPPORT_TIMELINE)
|
|
return Object::null();
|
|
}
|
|
|
|
DEFINE_NATIVE_ENTRY(Developer_NativeRuntime_stopStreamingTimeline, 0, 0) {
|
|
#if defined(SUPPORT_TIMELINE)
|
|
#if defined(DART_INCLUDE_PROFILER)
|
|
Profiler::SetConfig({
|
|
.enabled = false,
|
|
});
|
|
#endif
|
|
Timeline::StopStreaming();
|
|
#else
|
|
Exceptions::ThrowUnsupportedError(
|
|
"Timeline support was excluded during build.");
|
|
#endif // !defined(SUPPORT_TIMELINE)
|
|
return Object::null();
|
|
}
|
|
|
|
} // namespace dart
|