OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 887 matching lines...) Loading... |
898 impl_->isolate()->handle_scope_data(); | 898 impl_->isolate()->handle_scope_data(); |
899 data->next = prev_next_; | 899 data->next = prev_next_; |
900 data->limit = prev_limit_; | 900 data->limit = prev_limit_; |
901 #ifdef DEBUG | 901 #ifdef DEBUG |
902 handles_detached_ = true; | 902 handles_detached_ = true; |
903 #endif | 903 #endif |
904 return deferred; | 904 return deferred; |
905 } | 905 } |
906 | 906 |
907 | 907 |
| 908 void AddWeakObjectToCodeDependency(Heap* heap, |
| 909 Handle<Object> object, |
| 910 Handle<Code> code) { |
| 911 if (!heap->weak_object_to_code()->IsHashTable()) { |
| 912 heap->set_weak_object_to_code( |
| 913 *heap->isolate()->factory()->NewWeakHashTable(16)); |
| 914 } |
| 915 Handle<DependentCode> dep(heap->LookupWeakObjectToCodeDependency(*object)); |
| 916 dep = DependentCode::Insert(dep, DependentCode::kWeaklyEmbeddedGroup, code); |
| 917 CALL_HEAP_FUNCTION_VOID(heap->isolate(), |
| 918 heap->AddWeakObjectToCodeDependency(*object, *dep)); |
| 919 } |
| 920 |
| 921 |
908 } } // namespace v8::internal | 922 } } // namespace v8::internal |
OLD | NEW |