OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/parsing/parser.h" | 5 #include "src/parsing/parser.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 | 8 |
9 #include "src/api.h" | 9 #include "src/api.h" |
10 #include "src/ast/ast-expression-rewriter.h" | 10 #include "src/ast/ast-expression-rewriter.h" |
(...skipping 3006 matching lines...) Loading... |
3017 if (formals.has_rest) arity--; | 3017 if (formals.has_rest) arity--; |
3018 | 3018 |
3019 // Eager or lazy parse? | 3019 // Eager or lazy parse? |
3020 // If is_lazily_parsed, we'll parse lazily. We'll call SkipLazyFunctionBody, | 3020 // If is_lazily_parsed, we'll parse lazily. We'll call SkipLazyFunctionBody, |
3021 // which may decide to abort lazy parsing if it suspects that wasn't a good | 3021 // which may decide to abort lazy parsing if it suspects that wasn't a good |
3022 // idea. If so (in which case the parser is expected to have backtracked), | 3022 // idea. If so (in which case the parser is expected to have backtracked), |
3023 // or if we didn't try to lazy parse in the first place, we'll have to parse | 3023 // or if we didn't try to lazy parse in the first place, we'll have to parse |
3024 // eagerly. | 3024 // eagerly. |
3025 if (is_lazily_parsed) { | 3025 if (is_lazily_parsed) { |
3026 Scanner::BookmarkScope bookmark(scanner()); | 3026 Scanner::BookmarkScope bookmark(scanner()); |
3027 bool may_abort = bookmark.Set(); | 3027 bookmark.Set(); |
3028 LazyParsingResult result = | 3028 LazyParsingResult result = |
3029 SkipLazyFunctionBody(&materialized_literal_count, | 3029 SkipLazyFunctionBody(&materialized_literal_count, |
3030 &expected_property_count, may_abort, CHECK_OK); | 3030 &expected_property_count, true, CHECK_OK); |
3031 | 3031 |
3032 materialized_literal_count += formals.materialized_literals_count + | 3032 materialized_literal_count += formals.materialized_literals_count + |
3033 function_state.materialized_literal_count(); | 3033 function_state.materialized_literal_count(); |
3034 | 3034 |
3035 if (result == kLazyParsingAborted) { | 3035 if (result == kLazyParsingAborted) { |
3036 bookmark.Reset(); | 3036 bookmark.Reset(); |
3037 // Trigger eager (re-)parsing, just below this block. | 3037 // Trigger eager (re-)parsing, just below this block. |
3038 is_lazily_parsed = false; | 3038 is_lazily_parsed = false; |
3039 | 3039 |
3040 // This is probably an initialization function. Inform the compiler it | 3040 // This is probably an initialization function. Inform the compiler it |
(...skipping 2756 matching lines...) Loading... |
5797 node->Print(Isolate::Current()); | 5797 node->Print(Isolate::Current()); |
5798 } | 5798 } |
5799 #endif // DEBUG | 5799 #endif // DEBUG |
5800 | 5800 |
5801 #undef CHECK_OK | 5801 #undef CHECK_OK |
5802 #undef CHECK_OK_VOID | 5802 #undef CHECK_OK_VOID |
5803 #undef CHECK_FAILED | 5803 #undef CHECK_FAILED |
5804 | 5804 |
5805 } // namespace internal | 5805 } // namespace internal |
5806 } // namespace v8 | 5806 } // namespace v8 |
OLD | NEW |