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

Unified Diff: src/arm/ic-arm.cc

Issue 6323002: Add custom typed ICs for pixel array loads. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/builtins.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm/ic-arm.cc
===================================================================
--- src/arm/ic-arm.cc (revision 6456)
+++ src/arm/ic-arm.cc (working copy)
@@ -1374,6 +1374,55 @@
}
+void KeyedLoadIC::GeneratePixelArray(MacroAssembler* masm) {
+ // ---------- S t a t e --------------
+ // -- lr : return address
+ // -- r0 : key
+ // -- r1 : receiver
+ // -----------------------------------
+
+ // Register usage.
+ Register key = r0;
+ Register receiver = r1;
+ Register elements = r2;
+ Register elements_map = r3;
+ Register index = r4;
+ Register scratch1 = r5;
+ Register scratch2 = r6;
+
+ Label slow;
+
+ // Verify that it's safe to access the receiver's elements.
+ GenerateKeyedLoadReceiverCheck(
+ masm, receiver, scratch1, scratch2,
+ Map::kHasIndexedInterceptor, &slow);
+
+ // Verify that the receiver has pixel array elements.
+ __ ldr(elements, FieldMemOperand(receiver, JSObject::kElementsOffset));
+ __ LoadRoot(scratch1, Heap::kPixelArrayMapRootIndex);
+ __ ldr(elements_map, FieldMemOperand(elements, JSObject::kMapOffset));
+ __ cmp(elements_map, scratch1);
+ __ b(ne, &slow);
+
+ // Key must be a smi that is in the range of the pixel array.
+ __ BranchOnNotSmi(key, &slow);
Søren Thygesen Gjesse 2011/01/26 21:35:17 This has changed to JumpIfNotSmi.
danno 2011/01/28 10:32:08 Done.
+ __ ldr(scratch1, FieldMemOperand(elements, PixelArray::kLengthOffset));
+ __ mov(index, Operand(key, ASR, kSmiTagSize)); // Untag index
Søren Thygesen Gjesse 2011/01/26 21:35:17 There is a SmiUntag instruction in the macro assem
danno 2011/01/28 10:32:08 Done.
+ __ cmp(index, scratch1);
+ __ b(hs, &slow);
+
+ // Perform the indexed load and tag the result as a smi.
+ __ ldr(scratch1,
+ FieldMemOperand(elements, PixelArray::kExternalPointerOffset));
+ __ ldrb(scratch2, MemOperand(scratch1, index));
+ __ mov(r0, Operand(scratch2, LSL, kSmiTagSize)); // Tag result as smi.
Søren Thygesen Gjesse 2011/01/26 21:35:17 There is also a SmiTag which takes two registers,
danno 2011/01/28 10:32:08 Done.
+ __ Ret();
+
+ __ bind(&slow);
+ GenerateMiss(masm);
+}
+
+
void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) {
// ---------- S t a t e --------------
// -- r0 : value
« no previous file with comments | « no previous file | src/builtins.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698