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

Side by Side Diff: src/hydrogen-instructions.cc

Issue 7187007: Merge arguments branch to bleeding edge (second try). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Undelete external-array test. Created 9 years, 6 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/hydrogen.cc ('k') | src/ia32/code-stubs-ia32.cc » ('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 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 1371 matching lines...) Expand 10 before | Expand all | Expand 10 after
1382 break; 1382 break;
1383 case JSObject::EXTERNAL_DOUBLE_ELEMENTS: 1383 case JSObject::EXTERNAL_DOUBLE_ELEMENTS:
1384 stream->Add("double"); 1384 stream->Add("double");
1385 break; 1385 break;
1386 case JSObject::EXTERNAL_PIXEL_ELEMENTS: 1386 case JSObject::EXTERNAL_PIXEL_ELEMENTS:
1387 stream->Add("pixel"); 1387 stream->Add("pixel");
1388 break; 1388 break;
1389 case JSObject::FAST_ELEMENTS: 1389 case JSObject::FAST_ELEMENTS:
1390 case JSObject::FAST_DOUBLE_ELEMENTS: 1390 case JSObject::FAST_DOUBLE_ELEMENTS:
1391 case JSObject::DICTIONARY_ELEMENTS: 1391 case JSObject::DICTIONARY_ELEMENTS:
1392 case JSObject::NON_STRICT_ARGUMENTS_ELEMENTS:
1392 UNREACHABLE(); 1393 UNREACHABLE();
1393 break; 1394 break;
1394 } 1395 }
1395 stream->Add("["); 1396 stream->Add("[");
1396 key()->PrintNameTo(stream); 1397 key()->PrintNameTo(stream);
1397 stream->Add("]"); 1398 stream->Add("]");
1398 } 1399 }
1399 1400
1400 1401
1401 void HStoreNamedGeneric::PrintDataTo(StringStream* stream) { 1402 void HStoreNamedGeneric::PrintDataTo(StringStream* stream) {
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
1467 break; 1468 break;
1468 case JSObject::EXTERNAL_DOUBLE_ELEMENTS: 1469 case JSObject::EXTERNAL_DOUBLE_ELEMENTS:
1469 stream->Add("double"); 1470 stream->Add("double");
1470 break; 1471 break;
1471 case JSObject::EXTERNAL_PIXEL_ELEMENTS: 1472 case JSObject::EXTERNAL_PIXEL_ELEMENTS:
1472 stream->Add("pixel"); 1473 stream->Add("pixel");
1473 break; 1474 break;
1474 case JSObject::FAST_ELEMENTS: 1475 case JSObject::FAST_ELEMENTS:
1475 case JSObject::FAST_DOUBLE_ELEMENTS: 1476 case JSObject::FAST_DOUBLE_ELEMENTS:
1476 case JSObject::DICTIONARY_ELEMENTS: 1477 case JSObject::DICTIONARY_ELEMENTS:
1478 case JSObject::NON_STRICT_ARGUMENTS_ELEMENTS:
1477 UNREACHABLE(); 1479 UNREACHABLE();
1478 break; 1480 break;
1479 } 1481 }
1480 stream->Add("["); 1482 stream->Add("[");
1481 key()->PrintNameTo(stream); 1483 key()->PrintNameTo(stream);
1482 stream->Add("] = "); 1484 stream->Add("] = ");
1483 value()->PrintNameTo(stream); 1485 value()->PrintNameTo(stream);
1484 } 1486 }
1485 1487
1486 1488
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
1800 1802
1801 1803
1802 void HCheckPrototypeMaps::Verify() { 1804 void HCheckPrototypeMaps::Verify() {
1803 HInstruction::Verify(); 1805 HInstruction::Verify();
1804 ASSERT(HasNoUses()); 1806 ASSERT(HasNoUses());
1805 } 1807 }
1806 1808
1807 #endif 1809 #endif
1808 1810
1809 } } // namespace v8::internal 1811 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/hydrogen.cc ('k') | src/ia32/code-stubs-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698