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

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

Issue 360023003: Revert "Replace HeapNumber as doublebox with an explicit MutableHeapNumber." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 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/json-stringifier.h ('k') | src/mips/macro-assembler-mips.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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/base/atomicops.h" 7 #include "src/base/atomicops.h"
8 #include "src/code-stubs.h" 8 #include "src/code-stubs.h"
9 #include "src/compilation-cache.h" 9 #include "src/compilation-cache.h"
10 #include "src/cpu-profiler.h" 10 #include "src/cpu-profiler.h"
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 case TYPE_FEEDBACK_INFO_TYPE: 285 case TYPE_FEEDBACK_INFO_TYPE:
286 object->Iterate(this); 286 object->Iterate(this);
287 break; 287 break;
288 case DECLARED_ACCESSOR_INFO_TYPE: 288 case DECLARED_ACCESSOR_INFO_TYPE:
289 case EXECUTABLE_ACCESSOR_INFO_TYPE: 289 case EXECUTABLE_ACCESSOR_INFO_TYPE:
290 case BYTE_ARRAY_TYPE: 290 case BYTE_ARRAY_TYPE:
291 case CALL_HANDLER_INFO_TYPE: 291 case CALL_HANDLER_INFO_TYPE:
292 case CODE_TYPE: 292 case CODE_TYPE:
293 case FIXED_DOUBLE_ARRAY_TYPE: 293 case FIXED_DOUBLE_ARRAY_TYPE:
294 case HEAP_NUMBER_TYPE: 294 case HEAP_NUMBER_TYPE:
295 case MUTABLE_HEAP_NUMBER_TYPE:
296 case INTERCEPTOR_INFO_TYPE: 295 case INTERCEPTOR_INFO_TYPE:
297 case ODDBALL_TYPE: 296 case ODDBALL_TYPE:
298 case SCRIPT_TYPE: 297 case SCRIPT_TYPE:
299 case SHARED_FUNCTION_INFO_TYPE: 298 case SHARED_FUNCTION_INFO_TYPE:
300 break; 299 break;
301 default: 300 default:
302 UNREACHABLE(); 301 UNREACHABLE();
303 } 302 }
304 } 303 }
305 } 304 }
(...skipping 4183 matching lines...) Expand 10 before | Expand all | Expand 10 after
4489 while (buffer != NULL) { 4488 while (buffer != NULL) {
4490 SlotsBuffer* next_buffer = buffer->next(); 4489 SlotsBuffer* next_buffer = buffer->next();
4491 DeallocateBuffer(buffer); 4490 DeallocateBuffer(buffer);
4492 buffer = next_buffer; 4491 buffer = next_buffer;
4493 } 4492 }
4494 *buffer_address = NULL; 4493 *buffer_address = NULL;
4495 } 4494 }
4496 4495
4497 4496
4498 } } // namespace v8::internal 4497 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/json-stringifier.h ('k') | src/mips/macro-assembler-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698