| Index: src/runtime/runtime-scopes.cc
|
| diff --git a/src/runtime/runtime-scopes.cc b/src/runtime/runtime-scopes.cc
|
| index 6dae7dd609d9b4801b163ca28daf916875bc0fc9..d28efcf74f1cf95d8230eb9108d7c733b41581fd 100644
|
| --- a/src/runtime/runtime-scopes.cc
|
| +++ b/src/runtime/runtime-scopes.cc
|
| @@ -613,10 +613,15 @@
|
| HandleScope scope(isolate);
|
| DCHECK_EQ(3, args.length());
|
| CONVERT_ARG_HANDLE_CHECKED(SharedFunctionInfo, shared, 0);
|
| + CONVERT_ARG_HANDLE_CHECKED(TypeFeedbackVector, vector, 1);
|
| + CONVERT_SMI_ARG_CHECKED(index, 2);
|
| Handle<Context> context(isolate->context(), isolate);
|
| + FeedbackVectorSlot slot = TypeFeedbackVector::ToSlot(index);
|
| + Handle<LiteralsArray> literals(LiteralsArray::cast(vector->Get(slot)),
|
| + isolate);
|
| Handle<JSFunction> function =
|
| - isolate->factory()->NewFunctionFromSharedFunctionInfo(shared, context,
|
| - NOT_TENURED);
|
| + isolate->factory()->NewFunctionFromSharedFunctionInfo(
|
| + shared, context, literals, NOT_TENURED);
|
| return *function;
|
| }
|
|
|
| @@ -625,12 +630,17 @@
|
| HandleScope scope(isolate);
|
| DCHECK_EQ(3, args.length());
|
| CONVERT_ARG_HANDLE_CHECKED(SharedFunctionInfo, shared, 0);
|
| + CONVERT_ARG_HANDLE_CHECKED(TypeFeedbackVector, vector, 1);
|
| + CONVERT_SMI_ARG_CHECKED(index, 2);
|
| Handle<Context> context(isolate->context(), isolate);
|
| + FeedbackVectorSlot slot = TypeFeedbackVector::ToSlot(index);
|
| + Handle<LiteralsArray> literals(LiteralsArray::cast(vector->Get(slot)),
|
| + isolate);
|
| // The caller ensures that we pretenure closures that are assigned
|
| // directly to properties.
|
| Handle<JSFunction> function =
|
| isolate->factory()->NewFunctionFromSharedFunctionInfo(shared, context,
|
| - TENURED);
|
| + literals, TENURED);
|
| return *function;
|
| }
|
|
|
|
|