OLD | NEW |
| 1 |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 2 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 3 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 4 // modification, are permitted provided that the following conditions are |
4 // met: | 5 // met: |
5 // | 6 // |
6 // * Redistributions of source code must retain the above copyright | 7 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 8 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 9 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 10 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 11 // disclaimer in the documentation and/or other materials provided |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 | 45 |
45 void Deoptimizer::DeoptimizeFunctionWithPreparedFunctionList( | 46 void Deoptimizer::DeoptimizeFunctionWithPreparedFunctionList( |
46 JSFunction* function) { | 47 JSFunction* function) { |
47 Isolate* isolate = function->GetIsolate(); | 48 Isolate* isolate = function->GetIsolate(); |
48 HandleScope scope(isolate); | 49 HandleScope scope(isolate); |
49 AssertNoAllocation no_allocation; | 50 AssertNoAllocation no_allocation; |
50 | 51 |
51 ASSERT(function->IsOptimized()); | 52 ASSERT(function->IsOptimized()); |
52 ASSERT(function->FunctionsInFunctionListShareSameCode()); | 53 ASSERT(function->FunctionsInFunctionListShareSameCode()); |
53 | 54 |
54 // The optimized code is going to be patched, so we cannot use it | |
55 // any more. Play safe and reset the whole cache. | |
56 function->shared()->ClearOptimizedCodeMap("deoptimized function"); | |
57 | |
58 // Get the optimized code. | 55 // Get the optimized code. |
59 Code* code = function->code(); | 56 Code* code = function->code(); |
60 Address code_start_address = code->instruction_start(); | 57 Address code_start_address = code->instruction_start(); |
61 | 58 |
| 59 // The optimized code is going to be patched, so we cannot use it any more. |
| 60 function->shared()->EvictFromOptimizedCodeMap(code, "deoptimized function"); |
| 61 |
62 // Invalidate the relocation information, as it will become invalid by the | 62 // Invalidate the relocation information, as it will become invalid by the |
63 // code patching below, and is not needed any more. | 63 // code patching below, and is not needed any more. |
64 code->InvalidateRelocation(); | 64 code->InvalidateRelocation(); |
65 | 65 |
66 // For each LLazyBailout instruction insert a call to the corresponding | 66 // For each LLazyBailout instruction insert a call to the corresponding |
67 // deoptimization entry. | 67 // deoptimization entry. |
68 DeoptimizationInputData* deopt_data = | 68 DeoptimizationInputData* deopt_data = |
69 DeoptimizationInputData::cast(code->deoptimization_data()); | 69 DeoptimizationInputData::cast(code->deoptimization_data()); |
70 #ifdef DEBUG | 70 #ifdef DEBUG |
71 Address prev_call_address = NULL; | 71 Address prev_call_address = NULL; |
(...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
833 } | 833 } |
834 | 834 |
835 ASSERT_EQ(masm()->SizeOfCodeGeneratedSince(&table_start), | 835 ASSERT_EQ(masm()->SizeOfCodeGeneratedSince(&table_start), |
836 count() * table_entry_size_); | 836 count() * table_entry_size_); |
837 } | 837 } |
838 | 838 |
839 #undef __ | 839 #undef __ |
840 | 840 |
841 | 841 |
842 } } // namespace v8::internal | 842 } } // namespace v8::internal |
OLD | NEW |