#include "src/heap/factory.h"
#include "src/heap/heap-inl.h"
#include "src/objects/js-generator-inl.h"
namespace v8 {
namespace internal {
RUNTIME_FUNCTION(Runtime_AsyncFunctionAwait) {
UNREACHABLE();
}
RUNTIME_FUNCTION(Runtime_AsyncFunctionEnter) {
UNREACHABLE();
}
RUNTIME_FUNCTION(Runtime_AsyncFunctionReject) {
UNREACHABLE();
}
RUNTIME_FUNCTION(Runtime_AsyncFunctionResolve) {
UNREACHABLE();
}
RUNTIME_FUNCTION(Runtime_CreateJSGeneratorObject) {
HandleScope scope(isolate);
DCHECK_EQ(2, args.length());
DirectHandle<JSFunction> function = args.at<JSFunction>(0);
DirectHandle<JSAny> receiver = args.at<JSAny>(1);
CHECK_IMPLIES(IsAsyncFunction(function->shared()->kind()),
IsAsyncGeneratorFunction(function->shared()->kind()));
CHECK(IsResumableFunction(function->shared()->kind()));
DCHECK(function->shared()->HasBytecodeArray());
int length;
{
Tagged<BytecodeArray> bytecode =
function->shared()->GetBytecodeArray(isolate);
length = bytecode->parameter_count_without_receiver() +
bytecode->register_count();
}
DirectHandle<FixedArray> parameters_and_registers =
isolate->factory()->NewFixedArray(length);
DirectHandle<JSGeneratorObject> generator =
isolate->factory()->NewJSGeneratorObject(function);
DisallowGarbageCollection no_gc;
Tagged<JSGeneratorObject> raw_generator = *generator;
raw_generator->set_function(*function);
raw_generator->set_context(isolate->context());
raw_generator->set_receiver(*receiver);
raw_generator->set_parameters_and_registers(*parameters_and_registers);
raw_generator->set_resume_mode(JSGeneratorObject::ResumeMode::kNext);
raw_generator->set_continuation(JSGeneratorObject::kGeneratorExecuting);
if (IsJSAsyncGeneratorObject(*raw_generator)) {
Cast<JSAsyncGeneratorObject>(raw_generator)->set_is_awaiting(0);
}
return raw_generator;
}
RUNTIME_FUNCTION(Runtime_GeneratorClose) {
UNREACHABLE();
}
RUNTIME_FUNCTION(Runtime_GeneratorGetFunction) {
HandleScope scope(isolate);
DCHECK_EQ(1, args.length());
DirectHandle<JSGeneratorObject> generator = args.at<JSGeneratorObject>(0);
return generator->function();
}
RUNTIME_FUNCTION(Runtime_AsyncGeneratorAwait) {
UNREACHABLE();
}
RUNTIME_FUNCTION(Runtime_AsyncGeneratorResolve) {
UNREACHABLE();
}
RUNTIME_FUNCTION(Runtime_AsyncGeneratorReject) {
UNREACHABLE();
}
RUNTIME_FUNCTION(Runtime_AsyncGeneratorYieldWithAwait) {
UNREACHABLE();
}
RUNTIME_FUNCTION(Runtime_GeneratorGetResumeMode) {
UNREACHABLE();
}
}
}