| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 FIXED_ARRAY_TYPE, FixedArray::SizeFor(length), this); | 280 FIXED_ARRAY_TYPE, FixedArray::SizeFor(length), this); |
| 281 array->set_length(length); | 281 array->set_length(length); |
| 282 } | 282 } |
| 283 break; | 283 break; |
| 284 case JS_GLOBAL_PROPERTY_CELL_TYPE: | 284 case JS_GLOBAL_PROPERTY_CELL_TYPE: |
| 285 case JS_PROXY_TYPE: | 285 case JS_PROXY_TYPE: |
| 286 case JS_VALUE_TYPE: | 286 case JS_VALUE_TYPE: |
| 287 case TYPE_FEEDBACK_INFO_TYPE: | 287 case TYPE_FEEDBACK_INFO_TYPE: |
| 288 object->Iterate(this); | 288 object->Iterate(this); |
| 289 break; | 289 break; |
| 290 case ACCESSOR_INFO_TYPE: | 290 case DECLARED_ACCESSOR_INFO_TYPE: |
| 291 case EXECUTABLE_ACCESSOR_INFO_TYPE: |
| 291 case BYTE_ARRAY_TYPE: | 292 case BYTE_ARRAY_TYPE: |
| 292 case CALL_HANDLER_INFO_TYPE: | 293 case CALL_HANDLER_INFO_TYPE: |
| 293 case CODE_TYPE: | 294 case CODE_TYPE: |
| 294 case FIXED_DOUBLE_ARRAY_TYPE: | 295 case FIXED_DOUBLE_ARRAY_TYPE: |
| 295 case HEAP_NUMBER_TYPE: | 296 case HEAP_NUMBER_TYPE: |
| 296 case INTERCEPTOR_INFO_TYPE: | 297 case INTERCEPTOR_INFO_TYPE: |
| 297 case ODDBALL_TYPE: | 298 case ODDBALL_TYPE: |
| 298 case SCRIPT_TYPE: | 299 case SCRIPT_TYPE: |
| 299 case SHARED_FUNCTION_INFO_TYPE: | 300 case SHARED_FUNCTION_INFO_TYPE: |
| 300 break; | 301 break; |
| (...skipping 3766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4067 while (buffer != NULL) { | 4068 while (buffer != NULL) { |
| 4068 SlotsBuffer* next_buffer = buffer->next(); | 4069 SlotsBuffer* next_buffer = buffer->next(); |
| 4069 DeallocateBuffer(buffer); | 4070 DeallocateBuffer(buffer); |
| 4070 buffer = next_buffer; | 4071 buffer = next_buffer; |
| 4071 } | 4072 } |
| 4072 *buffer_address = NULL; | 4073 *buffer_address = NULL; |
| 4073 } | 4074 } |
| 4074 | 4075 |
| 4075 | 4076 |
| 4076 } } // namespace v8::internal | 4077 } } // namespace v8::internal |
| OLD | NEW |