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

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

Issue 10274008: Fix mistakes in r11472 (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 7 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 | « no previous file | src/x64/stub-cache-x64.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 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 3626 matching lines...) Expand 10 before | Expand all | Expand 10 after
3637 __ SmiUntag(ecx); 3637 __ SmiUntag(ecx);
3638 __ mov_b(Operand(edi, ecx, times_1, 0), ebx); 3638 __ mov_b(Operand(edi, ecx, times_1, 0), ebx);
3639 break; 3639 break;
3640 case EXTERNAL_SHORT_ELEMENTS: 3640 case EXTERNAL_SHORT_ELEMENTS:
3641 case EXTERNAL_UNSIGNED_SHORT_ELEMENTS: 3641 case EXTERNAL_UNSIGNED_SHORT_ELEMENTS:
3642 __ mov_w(Operand(edi, ecx, times_1, 0), ebx); 3642 __ mov_w(Operand(edi, ecx, times_1, 0), ebx);
3643 break; 3643 break;
3644 case EXTERNAL_INT_ELEMENTS: 3644 case EXTERNAL_INT_ELEMENTS:
3645 case EXTERNAL_UNSIGNED_INT_ELEMENTS: 3645 case EXTERNAL_UNSIGNED_INT_ELEMENTS:
3646 __ mov(Operand(edi, ecx, times_2, 0), ebx); 3646 __ mov(Operand(edi, ecx, times_2, 0), ebx);
3647 break;
3647 default: 3648 default:
3648 UNREACHABLE(); 3649 UNREACHABLE();
3649 break; 3650 break;
3650 } 3651 }
3651 } 3652 }
3652 __ ret(0); // Return original value. 3653 __ ret(0); // Return original value.
3653 } 3654 }
3654 } 3655 }
3655 } 3656 }
3656 3657
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
4066 __ jmp(ic_slow, RelocInfo::CODE_TARGET); 4067 __ jmp(ic_slow, RelocInfo::CODE_TARGET);
4067 } 4068 }
4068 } 4069 }
4069 4070
4070 4071
4071 #undef __ 4072 #undef __
4072 4073
4073 } } // namespace v8::internal 4074 } } // namespace v8::internal
4074 4075
4075 #endif // V8_TARGET_ARCH_IA32 4076 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « no previous file | src/x64/stub-cache-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698