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

Side by Side Diff: src/mips/stub-cache-mips.cc

Issue 7901016: Basic support for tracking smi-only arrays on ia32. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: ready to land Created 9 years, 3 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
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 3453 matching lines...) Expand 10 before | Expand all | Expand 10 after
3464 return true; 3464 return true;
3465 3465
3466 case EXTERNAL_UNSIGNED_BYTE_ELEMENTS: 3466 case EXTERNAL_UNSIGNED_BYTE_ELEMENTS:
3467 case EXTERNAL_UNSIGNED_SHORT_ELEMENTS: 3467 case EXTERNAL_UNSIGNED_SHORT_ELEMENTS:
3468 case EXTERNAL_UNSIGNED_INT_ELEMENTS: 3468 case EXTERNAL_UNSIGNED_INT_ELEMENTS:
3469 case EXTERNAL_PIXEL_ELEMENTS: 3469 case EXTERNAL_PIXEL_ELEMENTS:
3470 return false; 3470 return false;
3471 3471
3472 case EXTERNAL_FLOAT_ELEMENTS: 3472 case EXTERNAL_FLOAT_ELEMENTS:
3473 case EXTERNAL_DOUBLE_ELEMENTS: 3473 case EXTERNAL_DOUBLE_ELEMENTS:
3474 case FAST_SMI_ELEMENTS:
3474 case FAST_ELEMENTS: 3475 case FAST_ELEMENTS:
3475 case FAST_DOUBLE_ELEMENTS: 3476 case FAST_DOUBLE_ELEMENTS:
3476 case DICTIONARY_ELEMENTS: 3477 case DICTIONARY_ELEMENTS:
3477 case NON_STRICT_ARGUMENTS_ELEMENTS: 3478 case NON_STRICT_ARGUMENTS_ELEMENTS:
3478 UNREACHABLE(); 3479 UNREACHABLE();
3479 return false; 3480 return false;
3480 } 3481 }
3481 return false; 3482 return false;
3482 } 3483 }
3483 3484
(...skipping 1017 matching lines...) Expand 10 before | Expand all | Expand 10 after
4501 masm->isolate()->builtins()->KeyedStoreIC_MissForceGeneric(); 4502 masm->isolate()->builtins()->KeyedStoreIC_MissForceGeneric();
4502 __ Jump(ic, RelocInfo::CODE_TARGET); 4503 __ Jump(ic, RelocInfo::CODE_TARGET);
4503 } 4504 }
4504 4505
4505 4506
4506 #undef __ 4507 #undef __
4507 4508
4508 } } // namespace v8::internal 4509 } } // namespace v8::internal
4509 4510
4510 #endif // V8_TARGET_ARCH_MIPS 4511 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« src/bootstrapper.cc ('K') | « src/mips/macro-assembler-mips.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698