| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 | 443 |
| 444 // We don't know anything about the result type. | 444 // We don't know anything about the result type. |
| 445 } | 445 } |
| 446 | 446 |
| 447 | 447 |
| 448 void AstTyper::VisitCall(Call* expr) { | 448 void AstTyper::VisitCall(Call* expr) { |
| 449 // Collect type feedback. | 449 // Collect type feedback. |
| 450 Expression* callee = expr->expression(); | 450 Expression* callee = expr->expression(); |
| 451 Property* prop = callee->AsProperty(); | 451 Property* prop = callee->AsProperty(); |
| 452 if (prop != NULL) { | 452 if (prop != NULL) { |
| 453 if (prop->key()->IsPropertyName()) | 453 expr->RecordTypeFeedback(oracle(), CALL_AS_METHOD); |
| 454 expr->RecordTypeFeedback(oracle(), CALL_AS_METHOD); | |
| 455 } else { | 454 } else { |
| 456 expr->RecordTypeFeedback(oracle(), CALL_AS_FUNCTION); | 455 expr->RecordTypeFeedback(oracle(), CALL_AS_FUNCTION); |
| 457 } | 456 } |
| 458 | 457 |
| 459 RECURSE(Visit(expr->expression())); | 458 RECURSE(Visit(expr->expression())); |
| 460 ZoneList<Expression*>* args = expr->arguments(); | 459 ZoneList<Expression*>* args = expr->arguments(); |
| 461 for (int i = 0; i < args->length(); ++i) { | 460 for (int i = 0; i < args->length(); ++i) { |
| 462 Expression* arg = args->at(i); | 461 Expression* arg = args->at(i); |
| 463 RECURSE(Visit(arg)); | 462 RECURSE(Visit(arg)); |
| 464 } | 463 } |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 void AstTyper::VisitModuleUrl(ModuleUrl* module) { | 709 void AstTyper::VisitModuleUrl(ModuleUrl* module) { |
| 711 } | 710 } |
| 712 | 711 |
| 713 | 712 |
| 714 void AstTyper::VisitModuleStatement(ModuleStatement* stmt) { | 713 void AstTyper::VisitModuleStatement(ModuleStatement* stmt) { |
| 715 RECURSE(Visit(stmt->body())); | 714 RECURSE(Visit(stmt->body())); |
| 716 } | 715 } |
| 717 | 716 |
| 718 | 717 |
| 719 } } // namespace v8::internal | 718 } } // namespace v8::internal |
| OLD | NEW |