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

Side by Side Diff: src/hydrogen.cc

Issue 480543002: Parse 'super' keyword. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Patch for review Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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/hydrogen.h" 5 #include "src/hydrogen.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "src/v8.h" 9 #include "src/v8.h"
10 10
(...skipping 11165 matching lines...) Expand 10 before | Expand all | Expand 10 after
11176 11176
11177 void HOptimizedGraphBuilder::VisitThisFunction(ThisFunction* expr) { 11177 void HOptimizedGraphBuilder::VisitThisFunction(ThisFunction* expr) {
11178 DCHECK(!HasStackOverflow()); 11178 DCHECK(!HasStackOverflow());
11179 DCHECK(current_block() != NULL); 11179 DCHECK(current_block() != NULL);
11180 DCHECK(current_block()->HasPredecessor()); 11180 DCHECK(current_block()->HasPredecessor());
11181 HInstruction* instr = BuildThisFunction(); 11181 HInstruction* instr = BuildThisFunction();
11182 return ast_context()->ReturnInstruction(instr, expr->id()); 11182 return ast_context()->ReturnInstruction(instr, expr->id());
11183 } 11183 }
11184 11184
11185 11185
11186 void HOptimizedGraphBuilder::VisitSuperReference(SuperReference* expr) {
11187 UNREACHABLE();
11188 }
11189
11190
11186 void HOptimizedGraphBuilder::VisitDeclarations( 11191 void HOptimizedGraphBuilder::VisitDeclarations(
11187 ZoneList<Declaration*>* declarations) { 11192 ZoneList<Declaration*>* declarations) {
11188 DCHECK(globals_.is_empty()); 11193 DCHECK(globals_.is_empty());
11189 AstVisitor::VisitDeclarations(declarations); 11194 AstVisitor::VisitDeclarations(declarations);
11190 if (!globals_.is_empty()) { 11195 if (!globals_.is_empty()) {
11191 Handle<FixedArray> array = 11196 Handle<FixedArray> array =
11192 isolate()->factory()->NewFixedArray(globals_.length(), TENURED); 11197 isolate()->factory()->NewFixedArray(globals_.length(), TENURED);
11193 for (int i = 0; i < globals_.length(); ++i) array->set(i, *globals_.at(i)); 11198 for (int i = 0; i < globals_.length(); ++i) array->set(i, *globals_.at(i));
11194 int flags = DeclareGlobalsEvalFlag::encode(current_info()->is_eval()) | 11199 int flags = DeclareGlobalsEvalFlag::encode(current_info()->is_eval()) |
11195 DeclareGlobalsNativeFlag::encode(current_info()->is_native()) | 11200 DeclareGlobalsNativeFlag::encode(current_info()->is_native()) |
(...skipping 1285 matching lines...) Expand 10 before | Expand all | Expand 10 after
12481 if (ShouldProduceTraceOutput()) { 12486 if (ShouldProduceTraceOutput()) {
12482 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); 12487 isolate()->GetHTracer()->TraceHydrogen(name(), graph_);
12483 } 12488 }
12484 12489
12485 #ifdef DEBUG 12490 #ifdef DEBUG
12486 graph_->Verify(false); // No full verify. 12491 graph_->Verify(false); // No full verify.
12487 #endif 12492 #endif
12488 } 12493 }
12489 12494
12490 } } // namespace v8::internal 12495 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698