forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathModuleLoadingContext.cpp
More file actions
116 lines (103 loc) · 5.21 KB
/
Copy pathModuleLoadingContext.cpp
File metadata and controls
116 lines (103 loc) · 5.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
* Copyright (C) 2026 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "ModuleLoadingContext.h"
#include "CyclicModuleRecord.h"
#include "JSCInlines.h"
#include "JSModuleLoader.h"
#include "ModuleRegistryEntry.h"
#include "ProgramExecutable.h"
namespace JSC {
const ClassInfo ModuleLoadingContext::s_info = { "ModuleLoadingContext"_s, nullptr, nullptr, nullptr, CREATE_METHOD_TABLE(ModuleLoadingContext) };
ModuleLoadingContext::ModuleLoadingContext(VM& vm, Structure* structure, Step step, const JSModuleLoader::ModuleReferrer& referrer, AbstractModuleRecord::ModuleRequest&& moduleRequest, JSCell* payload, ModuleRegistryEntry* entry, RefPtr<ScriptFetcher> scriptFetcher)
: Base(vm, structure)
, m_step(step)
, m_moduleRequest(WTF::move(moduleRequest))
, m_scriptFetcher(WTF::move(scriptFetcher))
, m_payload(payload, WriteBarrierEarlyInit)
, m_entry(entry, WriteBarrierEarlyInit)
, m_referrer(referrer.toJSValue(), WriteBarrierEarlyInit)
{
}
void ModuleLoadingContext::destroy(JSCell* cell)
{
SUPPRESS_MEMORY_UNSAFE_CAST auto* thisObject = static_cast<ModuleLoadingContext*>(cell);
thisObject->~ModuleLoadingContext();
}
ModuleLoadingContext* ModuleLoadingContext::create(VM& vm, Step step, const JSModuleLoader::ModuleReferrer& referrer, const AbstractModuleRecord::ModuleRequest& moduleRequest, JSCell* payload, ModuleRegistryEntry* entry, RefPtr<ScriptFetcher> scriptFetcher)
{
ASSERT(isModuleLoaderHostDefinedPayload(payload));
AbstractModuleRecord::ModuleRequest requestCopy { moduleRequest };
auto* context = new (NotNull, allocateCell<ModuleLoadingContext>(vm)) ModuleLoadingContext(vm, vm.moduleLoadingContextStructure.get(), step, referrer, WTF::move(requestCopy), payload, entry, WTF::move(scriptFetcher));
context->finishCreation(vm);
return context;
}
ModuleLoadingContext::ModuleLoadingContext(VM& vm, Structure* structure, AbstractModuleRecord::ModuleRequest&& moduleRequest, RefPtr<ScriptFetcher> scriptFetcher, OptionSet<ModuleLoadFlag> flags, int64_t referrerAsyncOrder, JSValue importerAsyncContext)
: Base(vm, structure)
, m_moduleRequest(WTF::move(moduleRequest))
, m_scriptFetcher(WTF::move(scriptFetcher))
#if USE(BUN_JSC_ADDITIONS)
, m_importerAsyncContext(importerAsyncContext, WriteBarrierEarlyInit)
, m_referrerAsyncOrder(referrerAsyncOrder)
#endif
, m_flags(flags)
{
#if !USE(BUN_JSC_ADDITIONS)
UNUSED_PARAM(referrerAsyncOrder);
UNUSED_PARAM(importerAsyncContext);
#endif
}
ModuleLoadingContext* ModuleLoadingContext::create(VM& vm, const AbstractModuleRecord::ModuleRequest& moduleRequest, RefPtr<ScriptFetcher> scriptFetcher, OptionSet<ModuleLoadFlag> flags, int64_t referrerAsyncOrder, JSValue importerAsyncContext)
{
AbstractModuleRecord::ModuleRequest requestCopy { moduleRequest };
auto* context = new (NotNull, allocateCell<ModuleLoadingContext>(vm)) ModuleLoadingContext(vm, vm.moduleLoadingContextStructure.get(), WTF::move(requestCopy), WTF::move(scriptFetcher), flags, referrerAsyncOrder, importerAsyncContext);
context->finishCreation(vm);
return context;
}
JSModuleLoader::ModuleReferrer ModuleLoadingContext::referrer() const
{
JSValue ref = m_referrer.get();
if (auto* module = dynamicDowncast<CyclicModuleRecord>(ref))
return module;
if (auto* exec = dynamicDowncast<ProgramExecutable>(ref))
return exec;
return uncheckedDowncast<JSGlobalObject>(ref);
}
template<typename Visitor>
void ModuleLoadingContext::visitChildrenImpl(JSCell* cell, Visitor& visitor)
{
auto* thisObject = uncheckedDowncast<ModuleLoadingContext>(cell);
ASSERT_GC_OBJECT_INHERITS(thisObject, info());
Base::visitChildren(thisObject, visitor);
visitor.append(thisObject->m_payload);
visitor.append(thisObject->m_entry);
visitor.append(thisObject->m_referrer);
visitor.append(thisObject->m_module);
#if USE(BUN_JSC_ADDITIONS)
visitor.append(thisObject->m_importerAsyncContext);
#endif
}
DEFINE_VISIT_CHILDREN(ModuleLoadingContext);
} // namespace JSC