Index: src/ia32/stub-cache-ia32.cc |
diff --git a/src/ia32/stub-cache-ia32.cc b/src/ia32/stub-cache-ia32.cc |
index 6de9a410d13deb15902d7f26823c10fe987e64c0..f96ef5cefc3a7fc865de3cb80c99036828f2a455 100644 |
--- a/src/ia32/stub-cache-ia32.cc |
+++ b/src/ia32/stub-cache-ia32.cc |
@@ -3155,6 +3155,37 @@ MaybeObject* KeyedLoadStubCompiler::CompileLoadSpecialized(JSObject* receiver) { |
} |
+MaybeObject* KeyedLoadStubCompiler::CompileLoadPixelArray(JSObject* receiver) { |
+ // ----------- S t a t e ------------- |
+ // -- eax : key |
+ // -- edx : receiver |
+ // -- esp[0] : return address |
+ // ----------------------------------- |
+ Label miss; |
+ |
+ // Check that the map matches. |
+ __ CheckMap(edx, Handle<Map>(receiver->map()), &miss, false); |
+ |
+ GenerateFastPixelArrayLoad(masm(), |
+ edx, |
+ eax, |
+ ecx, |
+ ebx, |
+ eax, |
+ &miss, |
+ &miss, |
+ &miss); |
+ |
+ // Handle load cache miss. |
+ __ bind(&miss); |
+ Handle<Code> ic(Builtins::builtin(Builtins::KeyedLoadIC_Miss)); |
+ __ jmp(ic, RelocInfo::CODE_TARGET); |
+ |
+ // Return the generated code. |
+ return GetCode(NORMAL, NULL); |
+} |
+ |
+ |
// Specialized stub for constructing objects from functions which only have only |
// simple assignments of the form this.x = ...; in their body. |
MaybeObject* ConstructStubCompiler::CompileConstructStub(JSFunction* function) { |