| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #if V8_TARGET_ARCH_PPC | 5 #if V8_TARGET_ARCH_PPC |
| 6 | 6 |
| 7 #include "src/ic/call-optimization.h" | 7 #include "src/ic/call-optimization.h" |
| 8 #include "src/ic/handler-compiler.h" | 8 #include "src/ic/handler-compiler.h" |
| 9 #include "src/ic/ic.h" | 9 #include "src/ic/ic.h" |
| 10 #include "src/isolate-inl.h" | 10 #include "src/isolate-inl.h" |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 } else { | 286 } else { |
| 287 __ LoadP(data, | 287 __ LoadP(data, |
| 288 FieldMemOperand(callee, JSFunction::kSharedFunctionInfoOffset)); | 288 FieldMemOperand(callee, JSFunction::kSharedFunctionInfoOffset)); |
| 289 __ LoadP(data, | 289 __ LoadP(data, |
| 290 FieldMemOperand(data, SharedFunctionInfo::kFunctionDataOffset)); | 290 FieldMemOperand(data, SharedFunctionInfo::kFunctionDataOffset)); |
| 291 __ LoadP(data, | 291 __ LoadP(data, |
| 292 FieldMemOperand(data, FunctionTemplateInfo::kCallCodeOffset)); | 292 FieldMemOperand(data, FunctionTemplateInfo::kCallCodeOffset)); |
| 293 __ LoadP(data, FieldMemOperand(data, CallHandlerInfo::kDataOffset)); | 293 __ LoadP(data, FieldMemOperand(data, CallHandlerInfo::kDataOffset)); |
| 294 } | 294 } |
| 295 | 295 |
| 296 if (api_call_info->fast_handler()->IsCode()) { |
| 297 // Just tail call into the fast handler if present. |
| 298 __ Jump(handle(Code::cast(api_call_info->fast_handler())), |
| 299 RelocInfo::CODE_TARGET); |
| 300 return; |
| 301 } |
| 302 |
| 296 // Put api_function_address in place. | 303 // Put api_function_address in place. |
| 297 Address function_address = v8::ToCData<Address>(api_call_info->callback()); | 304 Address function_address = v8::ToCData<Address>(api_call_info->callback()); |
| 298 ApiFunction fun(function_address); | 305 ApiFunction fun(function_address); |
| 299 ExternalReference::Type type = ExternalReference::DIRECT_API_CALL; | 306 ExternalReference::Type type = ExternalReference::DIRECT_API_CALL; |
| 300 ExternalReference ref = ExternalReference(&fun, type, masm->isolate()); | 307 ExternalReference ref = ExternalReference(&fun, type, masm->isolate()); |
| 301 __ mov(api_function_address, Operand(ref)); | 308 __ mov(api_function_address, Operand(ref)); |
| 302 | 309 |
| 303 // Jump to stub. | 310 // Jump to stub. |
| 304 CallApiAccessorStub stub(isolate, is_store, call_data_undefined); | 311 CallApiAccessorStub stub(isolate, is_store, call_data_undefined); |
| 305 __ TailCallStub(&stub); | 312 __ TailCallStub(&stub); |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 // Return the generated code. | 788 // Return the generated code. |
| 782 return GetCode(kind(), Code::NORMAL, name); | 789 return GetCode(kind(), Code::NORMAL, name); |
| 783 } | 790 } |
| 784 | 791 |
| 785 | 792 |
| 786 #undef __ | 793 #undef __ |
| 787 } // namespace internal | 794 } // namespace internal |
| 788 } // namespace v8 | 795 } // namespace v8 |
| 789 | 796 |
| 790 #endif // V8_TARGET_ARCH_ARM | 797 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |