mirror of
https://github.com/oven-sh/bun
synced 2026-02-18 14:51:52 +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>
183 lines
5.8 KiB
C++
183 lines
5.8 KiB
C++
#pragma once
|
|
#include "root.h"
|
|
#include "headers-handwritten.h"
|
|
|
|
namespace Zig {
|
|
class GlobalObject;
|
|
}
|
|
namespace JSC {
|
|
class SourceCode;
|
|
class JSSourceCode;
|
|
class ProgramExecutable;
|
|
class AbstractModuleRecord;
|
|
}
|
|
|
|
namespace Bun {
|
|
|
|
JSC_DECLARE_HOST_FUNCTION(jsFunctionCreateCommonJSModule);
|
|
JSC_DECLARE_HOST_FUNCTION(jsFunctionLoadModule);
|
|
|
|
void populateESMExports(
|
|
JSC::JSGlobalObject* globalObject,
|
|
JSC::JSValue result,
|
|
WTF::Vector<JSC::Identifier, 4>& exportNames,
|
|
JSC::MarkedArgumentBuffer& exportValues,
|
|
bool ignoreESModuleAnnotation);
|
|
|
|
class JSCommonJSModule final : public JSC::JSDestructibleObject {
|
|
public:
|
|
using Base = JSC::JSDestructibleObject;
|
|
static constexpr unsigned StructureFlags = Base::StructureFlags;
|
|
|
|
mutable JSC::WriteBarrier<JSString> m_id;
|
|
mutable JSC::WriteBarrier<Unknown> m_filename;
|
|
mutable JSC::WriteBarrier<JSString> m_dirname;
|
|
mutable JSC::WriteBarrier<Unknown> m_paths;
|
|
mutable JSC::WriteBarrier<Unknown> m_parent;
|
|
mutable JSC::WriteBarrier<JSSourceCode> sourceCode;
|
|
bool ignoreESModuleAnnotation { false };
|
|
|
|
static void destroy(JSC::JSCell*);
|
|
~JSCommonJSModule();
|
|
|
|
void finishCreation(JSC::VM& vm,
|
|
JSC::JSString* id, JSValue filename,
|
|
JSC::JSString* dirname, JSC::JSSourceCode* sourceCode);
|
|
|
|
static JSC::Structure* createStructure(JSC::JSGlobalObject* globalObject);
|
|
|
|
bool evaluate(Zig::GlobalObject* globalObject, const WTF::String& sourceURL, ResolvedSource resolvedSource, bool isBuiltIn);
|
|
inline bool evaluate(Zig::GlobalObject* globalObject, const WTF::String& sourceURL, ResolvedSource resolvedSource)
|
|
{
|
|
return evaluate(globalObject, sourceURL, resolvedSource, false);
|
|
}
|
|
bool evaluate(Zig::GlobalObject* globalObject, const WTF::String& key, const SyntheticSourceProvider::SyntheticSourceGenerator& generator);
|
|
bool evaluate(Zig::GlobalObject* globalObject, const WTF::String& key, JSSourceCode* sourceCode);
|
|
|
|
static JSCommonJSModule* create(JSC::VM& vm, JSC::Structure* structure,
|
|
JSC::JSString* id,
|
|
JSValue filename,
|
|
JSC::JSString* dirname, JSC::JSSourceCode* sourceCode);
|
|
|
|
static JSCommonJSModule* create(
|
|
Zig::GlobalObject* globalObject,
|
|
const WTF::String& key,
|
|
JSValue exportsObject, bool hasEvaluated, JSValue parent);
|
|
|
|
static JSCommonJSModule* create(
|
|
Zig::GlobalObject* globalObject,
|
|
const WTF::String& key,
|
|
ResolvedSource resolvedSource);
|
|
|
|
static JSObject* createBoundRequireFunction(VM& vm, JSGlobalObject* lexicalGlobalObject, const WTF::String& pathString);
|
|
|
|
void toSyntheticSource(JSC::JSGlobalObject* globalObject,
|
|
JSC::Identifier moduleKey,
|
|
Vector<JSC::Identifier, 4>& exportNames,
|
|
JSC::MarkedArgumentBuffer& exportValues);
|
|
|
|
JSValue exportsObject();
|
|
JSValue id();
|
|
|
|
DECLARE_INFO;
|
|
DECLARE_VISIT_CHILDREN;
|
|
|
|
|
|
static void analyzeHeap(JSCell*, JSC::HeapAnalyzer&);
|
|
|
|
template<typename, SubspaceAccess mode>
|
|
static JSC::GCClient::IsoSubspace* subspaceFor(JSC::VM& vm)
|
|
{
|
|
if constexpr (mode == JSC::SubspaceAccess::Concurrently)
|
|
return nullptr;
|
|
return WebCore::subspaceForImpl<JSCommonJSModule, WebCore::UseCustomHeapCellType::No>(
|
|
vm,
|
|
[](auto& spaces) { return spaces.m_clientSubspaceForCommonJSModuleRecord.get(); },
|
|
[](auto& spaces, auto&& space) { spaces.m_clientSubspaceForCommonJSModuleRecord = std::forward<decltype(space)>(space); },
|
|
[](auto& spaces) { return spaces.m_subspaceForCommonJSModuleRecord.get(); },
|
|
[](auto& spaces, auto&& space) { spaces.m_subspaceForCommonJSModuleRecord = std::forward<decltype(space)>(space); });
|
|
}
|
|
|
|
bool hasEvaluated = false;
|
|
|
|
JSCommonJSModule(JSC::VM& vm, JSC::Structure* structure)
|
|
: Base(vm, structure)
|
|
{
|
|
}
|
|
};
|
|
|
|
JSCommonJSModule* createCommonJSModuleWithoutRunning(
|
|
Zig::GlobalObject* globalObject,
|
|
Ref<Zig::SourceProvider> sourceProvider,
|
|
const WTF::String& sourceURL,
|
|
ResolvedSource source);
|
|
|
|
JSC::Structure* createCommonJSModuleStructure(
|
|
Zig::GlobalObject* globalObject);
|
|
|
|
std::optional<JSC::SourceCode> createCommonJSModule(
|
|
Zig::GlobalObject* globalObject,
|
|
ResolvedSource source,
|
|
bool isBuiltIn);
|
|
|
|
inline std::optional<JSC::SourceCode> createCommonJSModule(
|
|
Zig::GlobalObject* globalObject,
|
|
ResolvedSource source)
|
|
{
|
|
return createCommonJSModule(globalObject, source, false);
|
|
}
|
|
|
|
class RequireResolveFunctionPrototype final : public JSC::JSNonFinalObject {
|
|
public:
|
|
using Base = JSC::JSNonFinalObject;
|
|
|
|
static RequireResolveFunctionPrototype* create(JSC::JSGlobalObject* globalObject);
|
|
static Structure* createStructure(VM& vm, JSC::JSGlobalObject* globalObject);
|
|
|
|
DECLARE_INFO;
|
|
|
|
RequireResolveFunctionPrototype(
|
|
JSC::VM& vm,
|
|
JSC::Structure* structure)
|
|
: Base(vm, structure)
|
|
{
|
|
}
|
|
|
|
template<typename CellType, JSC::SubspaceAccess>
|
|
static JSC::GCClient::IsoSubspace* subspaceFor(JSC::VM& vm)
|
|
{
|
|
STATIC_ASSERT_ISO_SUBSPACE_SHARABLE(RequireResolveFunctionPrototype, Base);
|
|
return &vm.plainObjectSpace();
|
|
}
|
|
|
|
void finishCreation(JSC::VM& vm);
|
|
};
|
|
|
|
class RequireFunctionPrototype final : public JSC::JSNonFinalObject {
|
|
public:
|
|
using Base = JSC::JSNonFinalObject;
|
|
|
|
static RequireFunctionPrototype* create(JSC::JSGlobalObject* globalObject);
|
|
static Structure* createStructure(VM& vm, JSC::JSGlobalObject* globalObject);
|
|
|
|
DECLARE_INFO;
|
|
|
|
RequireFunctionPrototype(
|
|
JSC::VM& vm,
|
|
JSC::Structure* structure)
|
|
: Base(vm, structure)
|
|
{
|
|
}
|
|
|
|
template<typename CellType, JSC::SubspaceAccess>
|
|
static JSC::GCClient::IsoSubspace* subspaceFor(JSC::VM& vm)
|
|
{
|
|
STATIC_ASSERT_ISO_SUBSPACE_SHARABLE(RequireFunctionPrototype, Base);
|
|
return &vm.plainObjectSpace();
|
|
}
|
|
|
|
void finishCreation(JSC::VM&);
|
|
};
|
|
|
|
} // namespace Bun
|