mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
* Use debug mode by default * Enable build with assertions enabled * Update cli.zig * Update bun-linux-build.yml * Fixes * Fix `ASSERT_ENABLED` * try this * Update Dockerfile * mimalloc debug * Update CMakeLists.txt * `Bun.deepMatch` - fix assertion failures cc @dylan-conway, looks like we need to use `putDirectMayBeIndex` and check for `isCell` more carefully. * Object.create support in code generator and callbacks wrapper * Remove unused file * zig upgrade * zls * Fix various errors * Support `BuiltinAccessor` in create_hash_table script * Fix assertion failure in `process.mainModule` * Fix assertion failure in `onerror` * Fix assertion failure when creating a Worker * Fix asssertion failure when loading lots of files in bun test * Fix assertion failure when termating a `Worker` * Add helper for converting BunString to a WTFString * Fix assertion failure in notifyNeedTermination * Add more debug logs in `bun test` * Fix compiler warning in usockets * Fix assertion failure with `Worker` termination (another) * Fix assertion failure in `coerceToInt64` * Fix assertion failure in `BroadcastChannel` * Fix assertion failure in `Headers.prototype.getAll` * Fixes #7067 * Add heap analyzer label for CommonJS modules * Fix assertion failure in module.require && module.require.resolve * Remove unused code * Fix assertion failure in debugger * Fix crash in debugger * Fix assertion failures in bun:sqlite * Bump zig * Bump WebKit * Fix assertion failure in JSPromise::reject && JSInternalPromise::reject * Fix assertion failure in ReadableStream::cancel * Fix assertion failure in AsyncContextFrame::create * Fix assertion failure in bun:sqlite * Fix assertion failure in mocks * Fix assertion failure in ServerWebSocket.close * Fix assertion failure in N-API with subclasses * [napi] Make promises cheaper * undo * Don't check for exceptions in ObjectInitializationScope * Add separate entry point for test runner that doesn't generate code * Don't deref builtin code * Fix preload test * Fix assertion failure in memoryUsage() * Fix preload test, part 2 * Ensure that the env map for a Worker is empty after it is used * The pointer for the Arena allocator used in parsing should not change * Terminate thread on exit * Start to implement scriptExecutionStatus * Update worker.test.ts * Fix Dirent.name setter * Update settings.json * Fix assertion failure in node:http * Use correct value for `JSFinalObject::maxInlineCapacity` * JSFinalObject::maxInlineCapacity x2 * Don't strip when assertions are enabled * Make `m_wasTerminated` atomic * Preserve directives in the transpiler cc @ctjlewis * Workaround assertion failure in ServerWebSocket.sendBinary and ServerWebSocket.sendText * windows * Buffer lockfile serialization in-memory * PR feedback * PR feedback * PR feedback * Windows * quotes * Update CMakeLists.txt * Update bun-linux-build.yml * Update bun-linux-build.yml * Move this code to BunString.cpp * Update BunString.cpp --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
115 lines
5.4 KiB
C++
115 lines
5.4 KiB
C++
#include "root.h"
|
|
#include "ZigGlobalObject.h"
|
|
#include "AsyncContextFrame.h"
|
|
#include <JavaScriptCore/InternalFieldTuple.h>
|
|
|
|
using namespace JSC;
|
|
using namespace WebCore;
|
|
|
|
const ClassInfo AsyncContextFrame::s_info = { "AsyncContextFrame"_s, &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(AsyncContextFrame) };
|
|
|
|
AsyncContextFrame* AsyncContextFrame::create(VM& vm, JSC::Structure* structure, JSValue callback, JSValue context)
|
|
{
|
|
AsyncContextFrame* asyncContextData = new (NotNull, allocateCell<AsyncContextFrame>(vm)) AsyncContextFrame(vm, structure);
|
|
asyncContextData->finishCreation(vm);
|
|
asyncContextData->callback.set(vm, asyncContextData, callback);
|
|
asyncContextData->context.set(vm, asyncContextData, context);
|
|
return asyncContextData;
|
|
}
|
|
|
|
AsyncContextFrame* AsyncContextFrame::create(JSGlobalObject* global, JSValue callback, JSValue context)
|
|
{
|
|
auto& vm = global->vm();
|
|
auto* structure = jsCast<Zig::GlobalObject*>(global)->AsyncContextFrameStructure();
|
|
AsyncContextFrame* asyncContextData = new (NotNull, allocateCell<AsyncContextFrame>(vm)) AsyncContextFrame(vm, structure);
|
|
asyncContextData->finishCreation(vm);
|
|
asyncContextData->callback.set(vm, asyncContextData, callback);
|
|
asyncContextData->context.set(vm, asyncContextData, context);
|
|
return asyncContextData;
|
|
}
|
|
|
|
JSC::Structure* AsyncContextFrame::createStructure(JSC::VM& vm, JSC::JSGlobalObject* globalObject)
|
|
{
|
|
return Structure::create(vm, globalObject, jsNull(), TypeInfo(ObjectType, StructureFlags), info());
|
|
}
|
|
|
|
JSValue AsyncContextFrame::withAsyncContextIfNeeded(JSGlobalObject* globalObject, JSValue callback)
|
|
{
|
|
JSValue context = globalObject->m_asyncContextData.get()->getInternalField(0);
|
|
|
|
// If there is no async context, do not snapshot the callback.
|
|
if (context.isUndefined()) {
|
|
return callback;
|
|
}
|
|
|
|
// Construct a low-overhead wrapper
|
|
auto& vm = globalObject->vm();
|
|
return AsyncContextFrame::create(
|
|
vm,
|
|
jsCast<Zig::GlobalObject*>(globalObject)->AsyncContextFrameStructure(),
|
|
callback,
|
|
context);
|
|
}
|
|
|
|
template<typename Visitor>
|
|
void AsyncContextFrame::visitChildrenImpl(JSCell* cell, Visitor& visitor)
|
|
{
|
|
auto* thisObject = jsCast<AsyncContextFrame*>(cell);
|
|
ASSERT_GC_OBJECT_INHERITS(thisObject, info());
|
|
Base::visitChildren(thisObject, visitor);
|
|
visitor.append(thisObject->callback);
|
|
visitor.append(thisObject->context);
|
|
}
|
|
|
|
DEFINE_VISIT_CHILDREN(AsyncContextFrame);
|
|
|
|
extern "C" JSC::EncodedJSValue AsyncContextFrame__withAsyncContextIfNeeded(JSGlobalObject* globalObject, JSC::EncodedJSValue callback)
|
|
{
|
|
return JSValue::encode(AsyncContextFrame::withAsyncContextIfNeeded(globalObject, JSValue::decode(callback)));
|
|
}
|
|
|
|
#define ASYNCCONTEXTFRAME_CALL_IMPL(...) \
|
|
if (!functionObject.isCell()) \
|
|
return jsUndefined(); \
|
|
auto& vm = global->vm(); \
|
|
JSValue restoreAsyncContext; \
|
|
InternalFieldTuple* asyncContextData = nullptr; \
|
|
if (auto* wrapper = jsDynamicCast<AsyncContextFrame*>(functionObject)) { \
|
|
functionObject = jsCast<JSC::JSObject*>(wrapper->callback.get()); \
|
|
asyncContextData = global->m_asyncContextData.get(); \
|
|
restoreAsyncContext = asyncContextData->getInternalField(0); \
|
|
asyncContextData->putInternalField(vm, 0, wrapper->context.get()); \
|
|
} \
|
|
auto result = JSC::profiledCall(__VA_ARGS__); \
|
|
if (asyncContextData) { \
|
|
asyncContextData->putInternalField(vm, 0, restoreAsyncContext); \
|
|
} \
|
|
return result;
|
|
|
|
// JSValue AsyncContextFrame::call(JSGlobalObject* global, JSValue functionObject, const ArgList& args, ASCIILiteral errorMessage)
|
|
// {
|
|
// ASYNCCONTEXTFRAME_CALL_IMPL(global, ProfilingReason::API, functionObject, args, errorMessage);
|
|
// }
|
|
// JSValue AsyncContextFrame::call(JSGlobalObject* global, JSValue functionObject, JSValue thisValue, const ArgList& args, ASCIILiteral errorMessage)
|
|
// {
|
|
// ASYNCCONTEXTFRAME_CALL_IMPL(global, ProfilingReason::API, functionObject, thisValue, args, errorMessage);
|
|
// }
|
|
JSValue AsyncContextFrame::call(JSGlobalObject* global, JSValue functionObject, JSValue thisValue, const ArgList& args)
|
|
{
|
|
if (LIKELY(!global->isAsyncContextTrackingEnabled())) {
|
|
return JSC::profiledCall(global, ProfilingReason::API, functionObject, JSC::getCallData(functionObject), thisValue, args);
|
|
}
|
|
|
|
ASYNCCONTEXTFRAME_CALL_IMPL(global, ProfilingReason::API, functionObject, JSC::getCallData(functionObject), thisValue, args);
|
|
}
|
|
JSValue AsyncContextFrame::call(JSGlobalObject* global, JSValue functionObject, JSValue thisValue, const ArgList& args, NakedPtr<Exception>& returnedException)
|
|
{
|
|
if (LIKELY(!global->isAsyncContextTrackingEnabled())) {
|
|
return JSC::profiledCall(global, ProfilingReason::API, functionObject, JSC::getCallData(functionObject), thisValue, args, returnedException);
|
|
}
|
|
|
|
ASYNCCONTEXTFRAME_CALL_IMPL(global, ProfilingReason::API, functionObject, JSC::getCallData(functionObject), thisValue, args, returnedException);
|
|
}
|
|
|
|
#undef ASYNCCONTEXTFRAME_CALL_IMPL
|