| OLD | NEW |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 #include "src/api-arguments.h" | 5 #include "src/api-arguments.h" |
| 6 | 6 |
| 7 #include "src/tracing/trace-event.h" | 7 #include "src/tracing/trace-event.h" |
| 8 #include "src/vm-state-inl.h" | 8 #include "src/vm-state-inl.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| 11 namespace internal { | 11 namespace internal { |
| 12 | 12 |
| 13 Handle<Object> FunctionCallbackArguments::Call(FunctionCallback f) { | 13 Handle<Object> FunctionCallbackArguments::Call(FunctionCallback f) { |
| 14 Isolate* isolate = this->isolate(); | 14 Isolate* isolate = this->isolate(); |
| 15 RuntimeCallTimerScope timer(isolate, &RuntimeCallStats::FunctionCallback); | 15 RuntimeCallTimerScope timer(isolate, &RuntimeCallStats::FunctionCallback); |
| 16 TRACE_RUNTIME_CALL("FunctionCallback"); | |
| 17 VMState<EXTERNAL> state(isolate); | 16 VMState<EXTERNAL> state(isolate); |
| 18 ExternalCallbackScope call_scope(isolate, FUNCTION_ADDR(f)); | 17 ExternalCallbackScope call_scope(isolate, FUNCTION_ADDR(f)); |
| 19 FunctionCallbackInfo<v8::Value> info(begin(), argv_, argc_); | 18 FunctionCallbackInfo<v8::Value> info(begin(), argv_, argc_); |
| 20 f(info); | 19 f(info); |
| 21 return GetReturnValue<Object>(isolate); | 20 return GetReturnValue<Object>(isolate); |
| 22 } | 21 } |
| 23 | 22 |
| 24 Handle<JSObject> PropertyCallbackArguments::Call( | 23 Handle<JSObject> PropertyCallbackArguments::Call( |
| 25 IndexedPropertyEnumeratorCallback f) { | 24 IndexedPropertyEnumeratorCallback f) { |
| 26 Isolate* isolate = this->isolate(); | 25 Isolate* isolate = this->isolate(); |
| 27 RuntimeCallTimerScope timer(isolate, &RuntimeCallStats::PropertyCallback); | 26 RuntimeCallTimerScope timer(isolate, &RuntimeCallStats::PropertyCallback); |
| 28 TRACE_RUNTIME_CALL("PropertyCallback"); | |
| 29 VMState<EXTERNAL> state(isolate); | 27 VMState<EXTERNAL> state(isolate); |
| 30 ExternalCallbackScope call_scope(isolate, FUNCTION_ADDR(f)); | 28 ExternalCallbackScope call_scope(isolate, FUNCTION_ADDR(f)); |
| 31 PropertyCallbackInfo<v8::Array> info(begin()); | 29 PropertyCallbackInfo<v8::Array> info(begin()); |
| 32 f(info); | 30 f(info); |
| 33 return GetReturnValue<JSObject>(isolate); | 31 return GetReturnValue<JSObject>(isolate); |
| 34 } | 32 } |
| 35 | 33 |
| 36 } // namespace internal | 34 } // namespace internal |
| 37 } // namespace v8 | 35 } // namespace v8 |
| OLD | NEW |