| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 case JS_CONTEXT_EXTENSION_OBJECT_TYPE: | 156 case JS_CONTEXT_EXTENSION_OBJECT_TYPE: |
| 157 case JS_GENERATOR_OBJECT_TYPE: | 157 case JS_GENERATOR_OBJECT_TYPE: |
| 158 case JS_MODULE_TYPE: | 158 case JS_MODULE_TYPE: |
| 159 case JS_VALUE_TYPE: | 159 case JS_VALUE_TYPE: |
| 160 case JS_DATE_TYPE: | 160 case JS_DATE_TYPE: |
| 161 case JS_ARRAY_TYPE: | 161 case JS_ARRAY_TYPE: |
| 162 case JS_GLOBAL_PROXY_TYPE: | 162 case JS_GLOBAL_PROXY_TYPE: |
| 163 case JS_GLOBAL_OBJECT_TYPE: | 163 case JS_GLOBAL_OBJECT_TYPE: |
| 164 case JS_BUILTINS_OBJECT_TYPE: | 164 case JS_BUILTINS_OBJECT_TYPE: |
| 165 case JS_MESSAGE_OBJECT_TYPE: | 165 case JS_MESSAGE_OBJECT_TYPE: |
| 166 case JS_SET_ITERATOR_TYPE: | |
| 167 case JS_MAP_ITERATOR_TYPE: | |
| 168 return GetVisitorIdForSize(kVisitJSObject, | 166 return GetVisitorIdForSize(kVisitJSObject, |
| 169 kVisitJSObjectGeneric, | 167 kVisitJSObjectGeneric, |
| 170 instance_size); | 168 instance_size); |
| 171 | 169 |
| 172 case JS_FUNCTION_TYPE: | 170 case JS_FUNCTION_TYPE: |
| 173 return kVisitJSFunction; | 171 return kVisitJSFunction; |
| 174 | 172 |
| 175 case HEAP_NUMBER_TYPE: | 173 case HEAP_NUMBER_TYPE: |
| 176 #define EXTERNAL_ARRAY_CASE(Type, type, TYPE, ctype, size) \ | 174 #define EXTERNAL_ARRAY_CASE(Type, type, TYPE, ctype, size) \ |
| 177 case EXTERNAL_##TYPE##_ARRAY_TYPE: | 175 case EXTERNAL_##TYPE##_ARRAY_TYPE: |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 | 482 |
| 485 | 483 |
| 486 template Object* VisitWeakList<JSArrayBuffer>( | 484 template Object* VisitWeakList<JSArrayBuffer>( |
| 487 Heap* heap, Object* list, WeakObjectRetainer* retainer, bool record_slots); | 485 Heap* heap, Object* list, WeakObjectRetainer* retainer, bool record_slots); |
| 488 | 486 |
| 489 | 487 |
| 490 template Object* VisitWeakList<AllocationSite>( | 488 template Object* VisitWeakList<AllocationSite>( |
| 491 Heap* heap, Object* list, WeakObjectRetainer* retainer, bool record_slots); | 489 Heap* heap, Object* list, WeakObjectRetainer* retainer, bool record_slots); |
| 492 | 490 |
| 493 } } // namespace v8::internal | 491 } } // namespace v8::internal |
| OLD | NEW |