Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: src/mark-compact.cc

Issue 12213012: Split AccessorInfo into DeclaredAccessorInfo and ExecutableAccessorInfo (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed most feedback Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/log.cc ('k') | src/objects.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 3771 matching lines...) Expand 10 before | Expand all | Expand 10 after
4072 while (buffer != NULL) { 4073 while (buffer != NULL) {
4073 SlotsBuffer* next_buffer = buffer->next(); 4074 SlotsBuffer* next_buffer = buffer->next();
4074 DeallocateBuffer(buffer); 4075 DeallocateBuffer(buffer);
4075 buffer = next_buffer; 4076 buffer = next_buffer;
4076 } 4077 }
4077 *buffer_address = NULL; 4078 *buffer_address = NULL;
4078 } 4079 }
4079 4080
4080 4081
4081 } } // namespace v8::internal 4082 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/log.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698