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

Side by Side Diff: src/cfg.cc

Issue 245042: Remove CallEval as a subclass of the Call AST node type. We were not... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 2 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
« no previous file with comments | « src/ast.cc ('k') | src/ia32/codegen-ia32.cc » ('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 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 391
392 value_ = destination_; 392 value_ = destination_;
393 } 393 }
394 394
395 395
396 void ExpressionCfgBuilder::VisitCall(Call* expr) { 396 void ExpressionCfgBuilder::VisitCall(Call* expr) {
397 BAILOUT("Call"); 397 BAILOUT("Call");
398 } 398 }
399 399
400 400
401 void ExpressionCfgBuilder::VisitCallEval(CallEval* expr) {
402 BAILOUT("CallEval");
403 }
404
405
406 void ExpressionCfgBuilder::VisitCallNew(CallNew* expr) { 401 void ExpressionCfgBuilder::VisitCallNew(CallNew* expr) {
407 BAILOUT("CallNew"); 402 BAILOUT("CallNew");
408 } 403 }
409 404
410 405
411 void ExpressionCfgBuilder::VisitCallRuntime(CallRuntime* expr) { 406 void ExpressionCfgBuilder::VisitCallRuntime(CallRuntime* expr) {
412 BAILOUT("CallRuntime"); 407 BAILOUT("CallRuntime");
413 } 408 }
414 409
415 410
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 void ExitNode::Print() { 749 void ExitNode::Print() {
755 if (!is_marked_) { 750 if (!is_marked_) {
756 is_marked_ = true; 751 is_marked_ = true;
757 PrintF("L%d:\nExit\n\n", number()); 752 PrintF("L%d:\nExit\n\n", number());
758 } 753 }
759 } 754 }
760 755
761 #endif // DEBUG 756 #endif // DEBUG
762 757
763 } } // namespace v8::internal 758 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/ast.cc ('k') | src/ia32/codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698