#include "src/api/api-inl.h"
#include "src/builtins/builtins-utils-inl.h"
#include "src/builtins/builtins.h"
#include "src/codegen/code-factory.h"
#include "src/codegen/compiler.h"
#include "src/logging/counters.h"
#include "src/numbers/conversions.h"
#include "src/objects/api-callbacks.h"
#include "src/objects/lookup.h"
#include "src/objects/objects-inl.h"
#include "src/strings/string-builder-inl.h"
namespace v8 {
namespace internal {
namespace {
MaybeDirectHandle<Object> CreateDynamicFunction(Isolate* isolate,
BuiltinArguments args,
const char* token) {
DCHECK_LE(1, args.length());
int const argc = args.length() - 1;
DirectHandle<JSFunction> target = args.target();
DirectHandle<JSObject> target_global_proxy(target->global_proxy(), isolate);
if (!Builtins::AllowDynamicFunction(isolate, target, target_global_proxy)) {
isolate->CountUsage(v8::Isolate::kFunctionConstructorReturnedUndefined);
HandleScopeImplementer* impl = isolate->handle_scope_implementer();
SaveAndSwitchContext save(isolate,
impl->LastEnteredContext()->native_context());
THROW_NEW_ERROR(isolate, NewTypeError(MessageTemplate::kNoAccess));
}
DirectHandle<String> source;
int parameters_end_pos = kNoSourcePosition;
{
IncrementalStringBuilder builder(isolate);
builder.AppendCharacter('(');
builder.AppendCString(token);
builder.AppendCStringLiteral(" anonymous(");
if (argc > 1) {
for (int i = 1; i < argc; ++i) {
if (i > 1) builder.AppendCharacter(',');
DirectHandle<String> param;
ASSIGN_RETURN_ON_EXCEPTION(isolate, param,
Object::ToString(isolate, args.at(i)));
param = String::Flatten(isolate, param);
builder.AppendString(param);
}
}
builder.AppendCharacter('\n');
parameters_end_pos = builder.Length();
builder.AppendCStringLiteral(") {\n");
if (argc > 0) {
DirectHandle<String> body;
ASSIGN_RETURN_ON_EXCEPTION(isolate, body,
Object::ToString(isolate, args.at(argc)));
builder.AppendString(body);
}
builder.AppendCStringLiteral("\n})");
ASSIGN_RETURN_ON_EXCEPTION(isolate, source, builder.Finish());
}
bool is_code_like = true;
for (int i = 0; i < argc; ++i) {
if (!Object::IsCodeLike(*args.at(i + 1), isolate)) {
is_code_like = false;
break;
}
}
DirectHandle<JSFunction> function;
{
ASSIGN_RETURN_ON_EXCEPTION(
isolate, function,
Compiler::GetFunctionFromString(
isolate, direct_handle(target->native_context(), isolate),
indirect_handle(source, isolate), parameters_end_pos,
is_code_like));
DirectHandle<Object> result;
ASSIGN_RETURN_ON_EXCEPTION(
isolate, result,
Execution::Call(isolate, function, target_global_proxy, {}));
function = Cast<JSFunction>(result);
function->shared()->set_name_should_print_as_anonymous(true);
}
DirectHandle<Object> unchecked_new_target = args.new_target();
if (!IsUndefined(*unchecked_new_target, isolate) &&
!unchecked_new_target.is_identical_to(target)) {
DirectHandle<JSReceiver> new_target =
Cast<JSReceiver>(unchecked_new_target);
DirectHandle<Map> initial_map;
ASSIGN_RETURN_ON_EXCEPTION(
isolate, initial_map,
JSFunction::GetDerivedMap(isolate, target, new_target));
DirectHandle<SharedFunctionInfo> shared_info(function->shared(), isolate);
DirectHandle<Map> map =
Map::AsLanguageMode(isolate, initial_map, shared_info);
DirectHandle<Context> context(function->context(), isolate);
function = Factory::JSFunctionBuilder{isolate, shared_info, context}
.set_map(map)
.set_allocation_type(AllocationType::kYoung)
.Build();
}
return function;
}
}
BUILTIN(FunctionConstructor) {
HandleScope scope(isolate);
DirectHandle<Object> result;
ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
isolate, result, CreateDynamicFunction(isolate, args, "function"));
return *result;
}
BUILTIN(GeneratorFunctionConstructor) {
HandleScope scope(isolate);
RETURN_RESULT_OR_FAILURE(isolate,
CreateDynamicFunction(isolate, args, "function*"));
}
BUILTIN(AsyncFunctionConstructor) {
HandleScope scope(isolate);
DirectHandle<Object> maybe_func;
ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
isolate, maybe_func,
CreateDynamicFunction(isolate, args, "async function"));
if (!IsJSFunction(*maybe_func)) return *maybe_func;
auto func = Cast<JSFunction>(maybe_func);
DirectHandle<Script> script(Cast<Script>(func->shared()->script()), isolate);
int position = Script::GetEvalPosition(isolate, script);
USE(position);
return *func;
}
BUILTIN(AsyncGeneratorFunctionConstructor) {
HandleScope scope(isolate);
DirectHandle<Object> maybe_func;
ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
isolate, maybe_func,
CreateDynamicFunction(isolate, args, "async function*"));
if (!IsJSFunction(*maybe_func)) return *maybe_func;
auto func = Cast<JSFunction>(maybe_func);
DirectHandle<Script> script(Cast<Script>(func->shared()->script()), isolate);
int position = Script::GetEvalPosition(isolate, script);
USE(position);
return *func;
}
namespace {
enum class ProtoSource {
kNormalFunction,
kUseTargetPrototype,
};
Tagged<Object> DoFunctionBind(Isolate* isolate, BuiltinArguments args,
ProtoSource proto_source) {
HandleScope scope(isolate);
DCHECK_LE(1, args.length());
if (!IsCallable(*args.receiver())) {
THROW_NEW_ERROR_RETURN_FAILURE(
isolate, NewTypeError(MessageTemplate::kFunctionBind));
}
DirectHandle<JSReceiver> target = args.at<JSReceiver>(0);
DirectHandle<JSAny> this_arg = isolate->factory()->undefined_value();
DirectHandleVector<Object> argv(isolate, std::max(0, args.length() - 2));
if (args.length() > 1) {
this_arg = args.at<JSAny>(1);
for (int i = 2; i < args.length(); ++i) {
argv[i - 2] = args.at(i);
}
}
DirectHandle<JSPrototype> proto;
if (proto_source == ProtoSource::kUseTargetPrototype) {
ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
isolate, proto, JSReceiver::GetPrototype(isolate, target));
} else if (proto_source == ProtoSource::kNormalFunction) {
DirectHandle<NativeContext> native_context(
isolate->global_object()->native_context(), isolate);
auto function_proto = native_context->function_prototype();
proto = direct_handle(function_proto, isolate);
} else {
UNREACHABLE();
}
DirectHandle<JSBoundFunction> function;
ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
isolate, function,
isolate->factory()->NewJSBoundFunction(
target, this_arg, {argv.data(), argv.size()}, proto));
Maybe<bool> result =
JSFunctionOrBoundFunctionOrWrappedFunction::CopyNameAndLength(
isolate, function, target, isolate->factory()->bound__string(),
static_cast<int>(argv.size()));
if (result.IsNothing()) {
DCHECK(isolate->has_exception());
return ReadOnlyRoots(isolate).exception();
}
return *function;
}
}
BUILTIN(FunctionPrototypeBind) {
return DoFunctionBind(isolate, args, ProtoSource::kUseTargetPrototype);
}
#if V8_ENABLE_WEBASSEMBLY
BUILTIN(WebAssemblyFunctionPrototypeBind) {
return DoFunctionBind(isolate, args, ProtoSource::kNormalFunction);
}
#endif
BUILTIN(FunctionPrototypeToString) {
HandleScope scope(isolate);
DirectHandle<Object> receiver = args.receiver();
if (IsJSBoundFunction(*receiver)) {
return *JSBoundFunction::ToString(isolate, Cast<JSBoundFunction>(receiver));
}
if (IsJSFunction(*receiver)) {
return *JSFunction::ToString(isolate, Cast<JSFunction>(receiver));
}
if (IsJSReceiver(*receiver) &&
Cast<JSReceiver>(*receiver)->map()->is_callable()) {
return ReadOnlyRoots(isolate).function_native_code_string();
}
THROW_NEW_ERROR_RETURN_FAILURE(
isolate, NewTypeError(MessageTemplate::kNotGeneric,
isolate->factory()->NewStringFromAsciiChecked(
"Function.prototype.toString"),
isolate->factory()->Function_string()));
}
#ifndef V8_FUNCTION_ARGUMENTS_CALLER_ARE_OWN_PROPS
namespace {
bool IsSloppyNormalJSFunction(Tagged<Object> receiver) {
if (!IsJSFunction(receiver)) return false;
Tagged<JSFunction> function = Cast<JSFunction>(receiver);
return function->shared()->IsSloppyNormalJSFunction();
}
}
BUILTIN(FunctionPrototypeLegacyArgumentsGetter) {
HandleScope scope(isolate);
DirectHandle<Object> receiver = args.receiver();
if (!IsSloppyNormalJSFunction(*receiver)) {
THROW_NEW_ERROR_RETURN_FAILURE(
isolate, NewTypeError(MessageTemplate::kStrictPoisonPill));
}
isolate->CountUsage(v8::Isolate::kFunctionPrototypeArguments);
return *Accessors::GetLegacyFunctionArguments(isolate,
Cast<JSFunction>(receiver));
}
BUILTIN(FunctionPrototypeLegacyArgumentsSetter) {
HandleScope scope(isolate);
if (!IsSloppyNormalJSFunction(*args.receiver())) {
THROW_NEW_ERROR_RETURN_FAILURE(
isolate, NewTypeError(MessageTemplate::kStrictPoisonPill));
}
isolate->CountUsage(v8::Isolate::kFunctionPrototypeArguments);
return ReadOnlyRoots(isolate).undefined_value();
}
BUILTIN(FunctionPrototypeLegacyCallerGetter) {
HandleScope scope(isolate);
DirectHandle<Object> receiver = args.receiver();
if (!IsSloppyNormalJSFunction(*receiver)) {
THROW_NEW_ERROR_RETURN_FAILURE(
isolate, NewTypeError(MessageTemplate::kStrictPoisonPill));
}
isolate->CountUsage(v8::Isolate::kFunctionPrototypeCaller);
return *Accessors::GetLegacyFunctionCaller(isolate,
Cast<JSFunction>(receiver));
}
BUILTIN(FunctionPrototypeLegacyCallerSetter) {
HandleScope scope(isolate);
if (!IsSloppyNormalJSFunction(*args.receiver())) {
THROW_NEW_ERROR_RETURN_FAILURE(
isolate, NewTypeError(MessageTemplate::kStrictPoisonPill));
}
isolate->CountUsage(v8::Isolate::kFunctionPrototypeCaller);
return ReadOnlyRoots(isolate).undefined_value();
}
#endif
}
}