From fc620e3dc38fe3343a2408f5244a6822186bf374 Mon Sep 17 00:00:00 2001 From: "plind44@gmail.com" Date: Wed, 11 Jun 2014 16:28:30 +0000 Subject: [PATCH] MIPS: Generate KeyedLoadGeneric with Hydrogen. Port r21774 (f0462b8) BUG= R=plind44@gmail.com Review URL: https://codereview.chromium.org/328173002 Patch from Balazs Kilvady . git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21775 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/mips/code-stubs-mips.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc index 771a5db..b03d855 100644 --- a/src/mips/code-stubs-mips.cc +++ b/src/mips/code-stubs-mips.cc @@ -119,6 +119,16 @@ void RegExpConstructResultStub::InitializeInterfaceDescriptor( } +void KeyedLoadGenericElementStub::InitializeInterfaceDescriptor( + CodeStubInterfaceDescriptor* descriptor) { + static Register registers[] = { a1, a0 }; + descriptor->register_param_count_ = 2; + descriptor->register_params_ = registers; + descriptor->deoptimization_handler_ = + Runtime::FunctionForId(Runtime::kKeyedGetProperty)->entry; +} + + void LoadFieldStub::InitializeInterfaceDescriptor( CodeStubInterfaceDescriptor* descriptor) { static Register registers[] = { a0 }; -- 2.7.4