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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 store_.Forget(); // Control may transfer here via 'continue'. | 316 store_.Forget(); // Control may transfer here via 'continue'. |
317 RECURSE(Visit(stmt->next())); | 317 RECURSE(Visit(stmt->next())); |
318 } | 318 } |
319 store_.Forget(); // Control may transfer here via termination or 'break'. | 319 store_.Forget(); // Control may transfer here via termination or 'break'. |
320 } | 320 } |
321 | 321 |
322 | 322 |
323 void AstTyper::VisitForInStatement(ForInStatement* stmt) { | 323 void AstTyper::VisitForInStatement(ForInStatement* stmt) { |
324 // Collect type feedback. | 324 // Collect type feedback. |
325 stmt->set_for_in_type(static_cast<ForInStatement::ForInType>( | 325 stmt->set_for_in_type(static_cast<ForInStatement::ForInType>( |
326 oracle()->ForInType(stmt->ForInFeedbackId()))); | 326 oracle()->ForInType(stmt->ForInFeedbackSlot()))); |
327 | 327 |
328 RECURSE(Visit(stmt->enumerable())); | 328 RECURSE(Visit(stmt->enumerable())); |
329 store_.Forget(); // Control may transfer here via looping or 'continue'. | 329 store_.Forget(); // Control may transfer here via looping or 'continue'. |
330 ObserveTypesAtOsrEntry(stmt); | 330 ObserveTypesAtOsrEntry(stmt); |
331 RECURSE(Visit(stmt->body())); | 331 RECURSE(Visit(stmt->body())); |
332 store_.Forget(); // Control may transfer here via 'break'. | 332 store_.Forget(); // Control may transfer here via 'break'. |
333 } | 333 } |
334 | 334 |
335 | 335 |
336 void AstTyper::VisitForOfStatement(ForOfStatement* stmt) { | 336 void AstTyper::VisitForOfStatement(ForOfStatement* stmt) { |
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
791 void AstTyper::VisitModuleUrl(ModuleUrl* module) { | 791 void AstTyper::VisitModuleUrl(ModuleUrl* module) { |
792 } | 792 } |
793 | 793 |
794 | 794 |
795 void AstTyper::VisitModuleStatement(ModuleStatement* stmt) { | 795 void AstTyper::VisitModuleStatement(ModuleStatement* stmt) { |
796 RECURSE(Visit(stmt->body())); | 796 RECURSE(Visit(stmt->body())); |
797 } | 797 } |
798 | 798 |
799 | 799 |
800 } } // namespace v8::internal | 800 } } // namespace v8::internal |
OLD | NEW |