OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |