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 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 } | 418 } |
419 } | 419 } |
420 #endif | 420 #endif |
421 | 421 |
422 // Update the shared function info with the compiled code. | 422 // Update the shared function info with the compiled code. |
423 shared->set_code(*code); | 423 shared->set_code(*code); |
424 | 424 |
425 // Set the expected number of properties for instances. | 425 // Set the expected number of properties for instances. |
426 SetExpectedNofPropertiesFromEstimate(shared, lit->expected_property_count()); | 426 SetExpectedNofPropertiesFromEstimate(shared, lit->expected_property_count()); |
427 | 427 |
428 // Set the optimication hints after performing lazy compilation, as these are | |
429 // not set when the function is set up as a lazily compiled function. | |
430 shared->SetThisPropertyAssignmentsInfo( | |
431 lit->has_only_this_property_assignments(), | |
432 lit->has_only_simple_this_property_assignments(), | |
433 *lit->this_property_assignments()); | |
434 | |
435 // Check the function has compiled code. | 428 // Check the function has compiled code. |
436 ASSERT(shared->is_compiled()); | 429 ASSERT(shared->is_compiled()); |
437 return true; | 430 return true; |
438 } | 431 } |
439 | 432 |
440 | 433 |
441 } } // namespace v8::internal | 434 } } // namespace v8::internal |
OLD | NEW |