Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: src/parsing/parser.cc

Issue 2578433002: Revert of Store SharedFunctionInfos of a Script in a FixedArray indexed by their ID (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/parsing/parse-info.cc ('k') | src/runtime/runtime.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 791 matching lines...) Expand 10 before | Expand all | Expand 10 after
802 802
803 if (ok) { 803 if (ok) {
804 RewriteDestructuringAssignments(); 804 RewriteDestructuringAssignments();
805 int parameter_count = parsing_module_ ? 1 : 0; 805 int parameter_count = parsing_module_ ? 1 : 0;
806 result = factory()->NewScriptOrEvalFunctionLiteral( 806 result = factory()->NewScriptOrEvalFunctionLiteral(
807 scope, body, function_state.materialized_literal_count(), 807 scope, body, function_state.materialized_literal_count(),
808 function_state.expected_property_count(), parameter_count); 808 function_state.expected_property_count(), parameter_count);
809 } 809 }
810 } 810 }
811 811
812 info->set_max_function_literal_id(GetLastFunctionLiteralId());
813
814 // Make sure the target stack is empty. 812 // Make sure the target stack is empty.
815 DCHECK(target_stack_ == NULL); 813 DCHECK(target_stack_ == NULL);
816 814
817 return result; 815 return result;
818 } 816 }
819 817
820 FunctionLiteral* Parser::ParseFunction(Isolate* isolate, ParseInfo* info) { 818 FunctionLiteral* Parser::ParseFunction(Isolate* isolate, ParseInfo* info) {
821 // It's OK to use the Isolate & counters here, since this function is only 819 // It's OK to use the Isolate & counters here, since this function is only
822 // called in the main thread. 820 // called in the main thread.
823 DCHECK(parsing_on_main_thread_); 821 DCHECK(parsing_on_main_thread_);
(...skipping 4621 matching lines...) Expand 10 before | Expand all | Expand 10 after
5445 5443
5446 return final_loop; 5444 return final_loop;
5447 } 5445 }
5448 5446
5449 #undef CHECK_OK 5447 #undef CHECK_OK
5450 #undef CHECK_OK_VOID 5448 #undef CHECK_OK_VOID
5451 #undef CHECK_FAILED 5449 #undef CHECK_FAILED
5452 5450
5453 } // namespace internal 5451 } // namespace internal
5454 } // namespace v8 5452 } // namespace v8
OLDNEW
« no previous file with comments | « src/parsing/parse-info.cc ('k') | src/runtime/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698