74 lines
1.9 KiB
C++
74 lines
1.9 KiB
C++
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
||
|
|
||
|
#ifdef WITH_JSC_EXTRA_TRACING
|
||
|
|
||
|
#include "JSCLegacyTracing.h"
|
||
|
|
||
|
#include <JavaScriptCore/JavaScript.h>
|
||
|
#include <JavaScriptCore/API/JSProfilerPrivate.h>
|
||
|
|
||
|
#include <fbsystrace.h>
|
||
|
|
||
|
#include "JSCHelpers.h"
|
||
|
#include "JSCTracing.h"
|
||
|
|
||
|
static const char *ENABLED_FBSYSTRACE_PROFILE_NAME = "__fbsystrace__";
|
||
|
|
||
|
static JSValueRef nativeTraceBeginLegacy(
|
||
|
JSContextRef ctx,
|
||
|
JSObjectRef function,
|
||
|
JSObjectRef thisObject,
|
||
|
size_t argumentCount,
|
||
|
const JSValueRef arguments[],
|
||
|
JSValueRef* exception) {
|
||
|
if (FBSYSTRACE_LIKELY(argumentCount >= 1)) {
|
||
|
uint64_t tag = facebook::react::tracingTagFromJSValue(ctx, arguments[0], exception);
|
||
|
if (!fbsystrace_is_tracing(tag)) {
|
||
|
return JSValueMakeUndefined(ctx);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
JSStringRef title = JSStringCreateWithUTF8CString(ENABLED_FBSYSTRACE_PROFILE_NAME);
|
||
|
#if WITH_REACT_INTERNAL_SETTINGS
|
||
|
JSStartProfiling(ctx, title, true);
|
||
|
#else
|
||
|
JSStartProfiling(ctx, title);
|
||
|
#endif
|
||
|
JSStringRelease(title);
|
||
|
|
||
|
return JSValueMakeUndefined(ctx);
|
||
|
}
|
||
|
|
||
|
static JSValueRef nativeTraceEndLegacy(
|
||
|
JSContextRef ctx,
|
||
|
JSObjectRef function,
|
||
|
JSObjectRef thisObject,
|
||
|
size_t argumentCount,
|
||
|
const JSValueRef arguments[],
|
||
|
JSValueRef* exception) {
|
||
|
if (FBSYSTRACE_LIKELY(argumentCount >= 1)) {
|
||
|
uint64_t tag = facebook::react::tracingTagFromJSValue(ctx, arguments[0], exception);
|
||
|
if (!fbsystrace_is_tracing(tag)) {
|
||
|
return JSValueMakeUndefined(ctx);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
JSStringRef title = JSStringCreateWithUTF8CString(ENABLED_FBSYSTRACE_PROFILE_NAME);
|
||
|
JSEndProfiling(ctx, title);
|
||
|
JSStringRelease(title);
|
||
|
|
||
|
return JSValueMakeUndefined(ctx);
|
||
|
}
|
||
|
|
||
|
namespace facebook {
|
||
|
namespace react {
|
||
|
|
||
|
void addNativeTracingLegacyHooks(JSGlobalContextRef ctx) {
|
||
|
installGlobalFunction(ctx, "nativeTraceBeginLegacy", nativeTraceBeginLegacy);
|
||
|
installGlobalFunction(ctx, "nativeTraceEndLegacy", nativeTraceEndLegacy);
|
||
|
}
|
||
|
|
||
|
} }
|
||
|
|
||
|
#endif
|