6#if defined(DART_HOST_OS_ANDROID) && defined(SUPPORT_TIMELINE)
27static int OpenTraceFD() {
28 const char* kSystraceDebugPath =
"/sys/kernel/debug/tracing/trace_marker";
29 const char* kSystracePath =
"/sys/kernel/tracing/trace_marker";
36 if (fd < 0 && FLAG_trace_timeline) {
37 OS::PrintErr(
"TimelineEventSystraceRecorder: Could not open `%s` or `%s`\n",
38 kSystraceDebugPath, kSystracePath);
43TimelineEventSystraceRecorder::TimelineEventSystraceRecorder()
44 : TimelineEventPlatformRecorder(), systrace_fd_(OpenTraceFD()) {
45 Timeline::set_recorder_discards_clock_values(
true);
48TimelineEventSystraceRecorder::~TimelineEventSystraceRecorder() {
49 if (systrace_fd_ >= 0) {
54intptr_t TimelineEventSystraceRecorder::PrintSystrace(TimelineEvent*
event,
61 int64_t pid = OS::ProcessId();
62 switch (
event->event_type()) {
63 case TimelineEvent::kBegin: {
68 case TimelineEvent::kEnd: {
72 case TimelineEvent::kCounter: {
73 if (
event->arguments_length() > 0) {
80 case TimelineEvent::kAsyncBegin: {
85 case TimelineEvent::kAsyncEnd: {
97void TimelineEventSystraceRecorder::OnEvent(TimelineEvent*
event) {
98 if (
event ==
nullptr) {
101 if (systrace_fd_ < 0) {
106 const intptr_t kBufferLength = 1024;
107 char buffer[kBufferLength];
108 const intptr_t event_length = PrintSystrace(
event, &
buffer[0], kBufferLength);
109 if (event_length > 0) {
114 }
while ((
result == -1L) && (errno == EINTR));
static uint32_t buffer_size(uint32_t offset, uint32_t maxAlignment)
static void static void PrintErr(const char *format,...) PRINTF_ATTRIBUTE(1
DECLARE_FLAG(bool, show_invisible_frames)
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace buffer
#define TEMP_FAILURE_RETRY(expression)
void write(SkWStream *wStream, const T &text)