/third_party/node/deps/v8/src/parsing/ |
H A D | preparser-logger.h | 19 void LogFunction(int end, int num_parameters, int function_length, in LogFunction() argument 23 function_length_ = function_length; in LogFunction() 29 int function_length() const { return function_length_; } in function_length() function in v8::internal::final
|
H A D | preparse-data.h | 121 int function_length, int num_inner_functions); 299 int* function_length, int* num_inner_functions, bool* uses_super_property,
|
H A D | preparse-data.cc | 232 DeclarationScope* function_scope, int function_length, in SetSkippableFunction() 237 builder_->function_length_ = function_length; in SetSkippableFunction() 588 int* function_length, int* num_inner_functions, bool* uses_super_property, in GetDataForSkippableFunction() 607 *function_length = *num_parameters; in GetDataForSkippableFunction() 609 *function_length = scope_data_->ReadVarint32(); in GetDataForSkippableFunction() 231 SetSkippableFunction( DeclarationScope* function_scope, int function_length, int num_inner_functions) SetSkippableFunction() argument 586 GetDataForSkippableFunction( Zone* zone, int start_position, int* end_position, int* num_parameters, int* function_length, int* num_inner_functions, bool* uses_super_property, LanguageMode* language_mode) GetDataForSkippableFunction() argument
|
H A D | preparser.cc | 338 function_scope, formals.function_length, in ParseFunctionLiteral() 375 formals->function_length, GetLastFunctionLiteralId()); in ParseStatementListAndLogFunction()
|
H A D | parser.cc | 2729 int function_length = -1; in ParseFunctionLiteral() local 2758 &num_parameters, &function_length, &produced_preparse_data); in ParseFunctionLiteral() 2766 &num_parameters, &function_length, &has_duplicate_parameters, in ParseFunctionLiteral() 2809 function_length, duplicate_parameters, function_syntax_kind, in ParseFunctionLiteral() 2830 int* function_length, in SkipFunction() 2856 num_parameters, function_length, &num_inner_functions, in SkipFunction() 2925 *function_length = logger->function_length(); in SkipFunction() 3033 DeclarationScope* function_scope, int* num_parameters, int* function_length, in ParseFunction() 3101 *function_length in ParseFunction() 2827 SkipFunction(const AstRawString* function_name, FunctionKind kind, FunctionSyntaxKind function_syntax_kind, DeclarationScope* function_scope, int* num_parameters, int* function_length, ProducedPreparseData** produced_preparse_data) SkipFunction() argument 3030 ParseFunction( ScopedPtrList<Statement>* body, const AstRawString* function_name, int pos, FunctionKind kind, FunctionSyntaxKind function_syntax_kind, DeclarationScope* function_scope, int* num_parameters, int* function_length, bool* has_duplicate_parameters, int* expected_property_count, int* suspend_count, ZonePtrList<const AstRawString>* arguments_for_wrapped_function) ParseFunction() argument [all...] |
H A D | preparse-data-impl.h | 156 int* function_length, int* num_inner_functions, bool* uses_super_property,
|
H A D | parser.h | 449 int* function_length, 461 int* function_length, bool* has_duplicate_parameters,
|
H A D | preparser.h | 680 int parameter_count, int function_length, in NewFunctionLiteral() 1010 int* num_parameters, int* function_length, in SkipFunction() 677 NewFunctionLiteral( const PreParserIdentifier& name, Scope* scope, const PreParserScopedStatementList& body, int expected_property_count, int parameter_count, int function_length, FunctionLiteral::ParameterFlag has_duplicate_parameters, FunctionSyntaxKind function_syntax_kind, FunctionLiteral::EagerCompileHint eager_compile_hint, int position, bool has_braces, int function_literal_id, ProducedPreparseData* produced_preparse_data = nullptr) NewFunctionLiteral() argument 1007 SkipFunction(const AstRawString* name, FunctionKind kind, FunctionSyntaxKind function_syntax_kind, DeclarationScope* function_scope, int* num_parameters, int* function_length, ProducedPreparseData** produced_preparse_data) SkipFunction() argument
|
H A D | parser-base.h | 71 if (!is_optional && !is_rest && function_length == arity) { in UpdateArityAndFunctionLength() 72 ++function_length; in UpdateArityAndFunctionLength() 80 int function_length = 0; member 4642 formal_parameters.function_length, in ParseArrowFunctionLiteral()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | accessors.h | 43 V(_, function_length, FunctionLength, kHasNoSideEffect, \
|
/third_party/node/deps/v8/src/ast/ |
H A D | ast.h | 2196 int function_length() { return function_length_; } in function_length() function in v8::internal::final 2311 int function_length, FunctionSyntaxKind function_syntax_kind, in FunctionLiteral() 2319 function_length_(function_length), in FunctionLiteral() 3225 int parameter_count, int function_length, in NewFunctionLiteral() 3234 parameter_count, function_length, function_syntax_kind, in NewFunctionLiteral() 2307 FunctionLiteral(Zone* zone, const AstConsString* name, AstValueFactory* ast_value_factory, DeclarationScope* scope, const ScopedPtrList<Statement>& body, int expected_property_count, int parameter_count, int function_length, FunctionSyntaxKind function_syntax_kind, ParameterFlag has_duplicate_parameters, EagerCompileHint eager_compile_hint, int position, bool has_braces, int function_literal_id, ProducedPreparseData* produced_preparse_data = nullptr) FunctionLiteral() argument 3222 NewFunctionLiteral( const AstRawString* name, DeclarationScope* scope, const ScopedPtrList<Statement>& body, int expected_property_count, int parameter_count, int function_length, FunctionLiteral::ParameterFlag has_duplicate_parameters, FunctionSyntaxKind function_syntax_kind, FunctionLiteral::EagerCompileHint eager_compile_hint, int position, bool has_braces, int function_literal_id, ProducedPreparseData* produced_preparse_data = nullptr) NewFunctionLiteral() argument
|
/third_party/node/deps/v8/src/objects/ |
H A D | shared-function-info.cc | 531 shared_info->set_length(lit->function_length()); in InitFromFunctionLiteral()
|