| Index: src/ppc/code-stubs-ppc.cc
|
| diff --git a/src/ppc/code-stubs-ppc.cc b/src/ppc/code-stubs-ppc.cc
|
| index d89bbd1e9620ef245b79418ac47f5619a3fca9a3..54c611dcd937be718ad6a82c5594070ff6c8c428 100644
|
| --- a/src/ppc/code-stubs-ppc.cc
|
| +++ b/src/ppc/code-stubs-ppc.cc
|
| @@ -1547,29 +1547,6 @@ void LoadIndexedStringStub::Generate(MacroAssembler* masm) {
|
| }
|
|
|
|
|
| -void LoadIndexedInterceptorStub::Generate(MacroAssembler* masm) {
|
| - // Return address is in lr.
|
| - Label slow;
|
| -
|
| - Register receiver = LoadDescriptor::ReceiverRegister();
|
| - Register key = LoadDescriptor::NameRegister();
|
| -
|
| - // Check that the key is an array index, that is Uint32.
|
| - __ TestIfPositiveSmi(key, r0);
|
| - __ bne(&slow, cr0);
|
| -
|
| - // Everything is fine, call runtime.
|
| - __ Push(receiver, key); // Receiver, key.
|
| -
|
| - // Perform tail call to the entry.
|
| - __ TailCallRuntime(Runtime::kLoadElementWithInterceptor);
|
| -
|
| - __ bind(&slow);
|
| - PropertyAccessCompiler::TailCallBuiltin(
|
| - masm, PropertyAccessCompiler::MissBuiltin(Code::KEYED_LOAD_IC));
|
| -}
|
| -
|
| -
|
| void RegExpExecStub::Generate(MacroAssembler* masm) {
|
| // Just jump directly to runtime if native RegExp is not selected at compile
|
| // time or if regexp entry in generated code is turned off runtime switch or
|
|
|