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

Side by Side Diff: src/full-codegen/full-codegen.cc

Issue 1668103002: Type Feedback Vector lives in the closure (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Created 4 years, 10 months 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
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/full-codegen/full-codegen.h" 5 #include "src/full-codegen/full-codegen.h"
6 6
7 #include "src/ast/ast.h" 7 #include "src/ast/ast.h"
8 #include "src/ast/ast-numbering.h" 8 #include "src/ast/ast-numbering.h"
9 #include "src/ast/prettyprinter.h" 9 #include "src/ast/prettyprinter.h"
10 #include "src/ast/scopeinfo.h" 10 #include "src/ast/scopeinfo.h"
(...skipping 11 matching lines...) Expand all
22 namespace internal { 22 namespace internal {
23 23
24 #define __ ACCESS_MASM(masm()) 24 #define __ ACCESS_MASM(masm())
25 25
26 bool FullCodeGenerator::MakeCode(CompilationInfo* info) { 26 bool FullCodeGenerator::MakeCode(CompilationInfo* info) {
27 Isolate* isolate = info->isolate(); 27 Isolate* isolate = info->isolate();
28 28
29 TimerEventScope<TimerEventCompileFullCode> timer(info->isolate()); 29 TimerEventScope<TimerEventCompileFullCode> timer(info->isolate());
30 30
31 // Ensure that the feedback vector is large enough. 31 // Ensure that the feedback vector is large enough.
32 info->EnsureFeedbackVector(); 32 info->EnsureFeedbackMetadata();
33 33
34 Handle<Script> script = info->script(); 34 Handle<Script> script = info->script();
35 if (!script->IsUndefined() && !script->source()->IsUndefined()) { 35 if (!script->IsUndefined() && !script->source()->IsUndefined()) {
36 int len = String::cast(script->source())->length(); 36 int len = String::cast(script->source())->length();
37 isolate->counters()->total_full_codegen_source_size()->Increment(len); 37 isolate->counters()->total_full_codegen_source_size()->Increment(len);
38 } 38 }
39 CodeGenerator::MakeCodePrologue(info, "full"); 39 CodeGenerator::MakeCodePrologue(info, "full");
40 const int kInitialBufferSize = 4 * KB; 40 const int kInitialBufferSize = 4 * KB;
41 MacroAssembler masm(info->isolate(), NULL, kInitialBufferSize, 41 MacroAssembler masm(info->isolate(), NULL, kInitialBufferSize,
42 CodeObjectRequired::kYes); 42 CodeObjectRequired::kYes);
(...skipping 1659 matching lines...) Expand 10 before | Expand all | Expand 10 after
1702 return var->mode() == CONST_LEGACY || var->scope()->is_nonlinear() || 1702 return var->mode() == CONST_LEGACY || var->scope()->is_nonlinear() ||
1703 var->initializer_position() >= proxy->position(); 1703 var->initializer_position() >= proxy->position();
1704 } 1704 }
1705 1705
1706 1706
1707 #undef __ 1707 #undef __
1708 1708
1709 1709
1710 } // namespace internal 1710 } // namespace internal
1711 } // namespace v8 1711 } // namespace v8
OLDNEW
« no previous file with comments | « src/full-codegen/arm64/full-codegen-arm64.cc ('k') | src/full-codegen/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698