| Index: src/api-arguments-inl.h
|
| diff --git a/src/api-arguments-inl.h b/src/api-arguments-inl.h
|
| index 67830860fe3901bbaa82eea92a58a1d8fd92280e..89ac7de9466a7fc1cfe7e985ad1a6e615db494d4 100644
|
| --- a/src/api-arguments-inl.h
|
| +++ b/src/api-arguments-inl.h
|
| @@ -20,7 +20,6 @@
|
| Handle<Name> name) { \
|
| Isolate* isolate = this->isolate(); \
|
| RuntimeCallTimerScope timer(isolate, &RuntimeCallStats::Function); \
|
| - TRACE_RUNTIME_CALL(#Function); \
|
| VMState<EXTERNAL> state(isolate); \
|
| ExternalCallbackScope call_scope(isolate, FUNCTION_ADDR(f)); \
|
| PropertyCallbackInfo<ApiReturn> info(begin()); \
|
| @@ -45,7 +44,6 @@
|
| uint32_t index) { \
|
| Isolate* isolate = this->isolate(); \
|
| RuntimeCallTimerScope timer(isolate, &RuntimeCallStats::Function); \
|
| - TRACE_RUNTIME_CALL(#Function); \
|
| VMState<EXTERNAL> state(isolate); \
|
| ExternalCallbackScope call_scope(isolate, FUNCTION_ADDR(f)); \
|
| PropertyCallbackInfo<ApiReturn> info(begin()); \
|
| @@ -66,7 +64,6 @@
|
| Isolate* isolate = this->isolate();
|
| RuntimeCallTimerScope timer(
|
| isolate, &RuntimeCallStats::GenericNamedPropertySetterCallback);
|
| - TRACE_RUNTIME_CALL("GenericNamedPropertySetterCallback");
|
| VMState<EXTERNAL> state(isolate);
|
| ExternalCallbackScope call_scope(isolate, FUNCTION_ADDR(f));
|
| PropertyCallbackInfo<v8::Value> info(begin());
|
| @@ -82,7 +79,6 @@
|
| Isolate* isolate = this->isolate();
|
| RuntimeCallTimerScope timer(isolate,
|
| &RuntimeCallStats::IndexedPropertySetterCallback);
|
| - TRACE_RUNTIME_CALL("IndexedPropertySetterCallback");
|
| VMState<EXTERNAL> state(isolate);
|
| ExternalCallbackScope call_scope(isolate, FUNCTION_ADDR(f));
|
| PropertyCallbackInfo<v8::Value> info(begin());
|
| @@ -97,7 +93,6 @@
|
| Isolate* isolate = this->isolate();
|
| RuntimeCallTimerScope timer(isolate,
|
| &RuntimeCallStats::AccessorNameSetterCallback);
|
| - TRACE_RUNTIME_CALL("AccessorNameSetterCallback");
|
| VMState<EXTERNAL> state(isolate);
|
| ExternalCallbackScope call_scope(isolate, FUNCTION_ADDR(f));
|
| PropertyCallbackInfo<void> info(begin());
|
|
|