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

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

Issue 1332873003: Implement sloppy-mode block-defined functions (Annex B 3.3) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: An extra test and comment fix Created 5 years, 3 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.h" 7 #include "src/ast.h"
8 #include "src/ast-numbering.h" 8 #include "src/ast-numbering.h"
9 #include "src/code-factory.h" 9 #include "src/code-factory.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 // TODO(rossberg) 443 // TODO(rossberg)
444 } 444 }
445 445
446 446
447 void FullCodeGenerator::VisitVariableProxy(VariableProxy* expr) { 447 void FullCodeGenerator::VisitVariableProxy(VariableProxy* expr) {
448 Comment cmnt(masm_, "[ VariableProxy"); 448 Comment cmnt(masm_, "[ VariableProxy");
449 EmitVariableLoad(expr); 449 EmitVariableLoad(expr);
450 } 450 }
451 451
452 452
453 void FullCodeGenerator::VisitDelegateStatement(DelegateStatement* declaration) {
454 Visit(declaration->statement());
455 }
456
457
453 int FullCodeGenerator::DeclareGlobalsFlags() { 458 int FullCodeGenerator::DeclareGlobalsFlags() {
454 DCHECK(DeclareGlobalsLanguageMode::is_valid(language_mode())); 459 DCHECK(DeclareGlobalsLanguageMode::is_valid(language_mode()));
455 return DeclareGlobalsEvalFlag::encode(is_eval()) | 460 return DeclareGlobalsEvalFlag::encode(is_eval()) |
456 DeclareGlobalsNativeFlag::encode(is_native()) | 461 DeclareGlobalsNativeFlag::encode(is_native()) |
457 DeclareGlobalsLanguageMode::encode(language_mode()); 462 DeclareGlobalsLanguageMode::encode(language_mode());
458 } 463 }
459 464
460 465
461 void FullCodeGenerator::EmitSubString(CallRuntime* expr) { 466 void FullCodeGenerator::EmitSubString(CallRuntime* expr) {
462 // Load the arguments on the stack and call the stub. 467 // Load the arguments on the stack and call the stub.
(...skipping 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after
1637 return var->mode() == CONST_LEGACY || var->scope()->is_nonlinear() || 1642 return var->mode() == CONST_LEGACY || var->scope()->is_nonlinear() ||
1638 var->initializer_position() >= proxy->position(); 1643 var->initializer_position() >= proxy->position();
1639 } 1644 }
1640 1645
1641 1646
1642 #undef __ 1647 #undef __
1643 1648
1644 1649
1645 } // namespace internal 1650 } // namespace internal
1646 } // namespace v8 1651 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698