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

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

Issue 90643003: Experimental implementation: Exposing SIMD instructions into JavaScript Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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/macros.py ('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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 case TYPE_FEEDBACK_INFO_TYPE: 295 case TYPE_FEEDBACK_INFO_TYPE:
296 object->Iterate(this); 296 object->Iterate(this);
297 break; 297 break;
298 case DECLARED_ACCESSOR_INFO_TYPE: 298 case DECLARED_ACCESSOR_INFO_TYPE:
299 case EXECUTABLE_ACCESSOR_INFO_TYPE: 299 case EXECUTABLE_ACCESSOR_INFO_TYPE:
300 case BYTE_ARRAY_TYPE: 300 case BYTE_ARRAY_TYPE:
301 case CALL_HANDLER_INFO_TYPE: 301 case CALL_HANDLER_INFO_TYPE:
302 case CODE_TYPE: 302 case CODE_TYPE:
303 case FIXED_DOUBLE_ARRAY_TYPE: 303 case FIXED_DOUBLE_ARRAY_TYPE:
304 case HEAP_NUMBER_TYPE: 304 case HEAP_NUMBER_TYPE:
305 case FLOAT32x4_TYPE:
306 case INT32x4_TYPE:
305 case INTERCEPTOR_INFO_TYPE: 307 case INTERCEPTOR_INFO_TYPE:
306 case ODDBALL_TYPE: 308 case ODDBALL_TYPE:
307 case SCRIPT_TYPE: 309 case SCRIPT_TYPE:
308 case SHARED_FUNCTION_INFO_TYPE: 310 case SHARED_FUNCTION_INFO_TYPE:
309 break; 311 break;
310 default: 312 default:
311 UNREACHABLE(); 313 UNREACHABLE();
312 } 314 }
313 } 315 }
314 } 316 }
(...skipping 4050 matching lines...) Expand 10 before | Expand all | Expand 10 after
4365 while (buffer != NULL) { 4367 while (buffer != NULL) {
4366 SlotsBuffer* next_buffer = buffer->next(); 4368 SlotsBuffer* next_buffer = buffer->next();
4367 DeallocateBuffer(buffer); 4369 DeallocateBuffer(buffer);
4368 buffer = next_buffer; 4370 buffer = next_buffer;
4369 } 4371 }
4370 *buffer_address = NULL; 4372 *buffer_address = NULL;
4371 } 4373 }
4372 4374
4373 4375
4374 } } // namespace v8::internal 4376 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/macros.py ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698