Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index db4d9b5a0cb544bb43f51a088e57eb69eef520d7..7b8f506d4690720b936adeb50d7debfce0811b88 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -9453,12 +9453,6 @@ Handle<Map> Map::TransitionToDataProperty(Handle<Map> map, Handle<Name> name, |
*map, map->is_prototype_map() |
? &RuntimeCallStats::PrototypeMap_TransitionToDataProperty |
: &RuntimeCallStats::Map_TransitionToDataProperty); |
- TRACE_EVENT_RUNTIME_CALL_STATS_TRACING_SCOPED( |
- map->GetIsolate(), |
- (map->is_prototype_map() |
- ? &tracing::TraceEventStatsTable:: |
- PrototypeMap_TransitionToDataProperty |
- : &tracing::TraceEventStatsTable::Map_TransitionToDataProperty)) |
DCHECK(name->IsUniqueName()); |
DCHECK(!map->is_dictionary_map()); |
@@ -9545,12 +9539,6 @@ Handle<Map> Map::TransitionToAccessorProperty(Isolate* isolate, Handle<Map> map, |
map->is_prototype_map() |
? &RuntimeCallStats::PrototypeMap_TransitionToAccessorProperty |
: &RuntimeCallStats::Map_TransitionToAccessorProperty); |
- TRACE_EVENT_RUNTIME_CALL_STATS_TRACING_SCOPED( |
- isolate, |
- (map->is_prototype_map() |
- ? &tracing::TraceEventStatsTable:: |
- PrototypeMap_TransitionToAccessorProperty |
- : &tracing::TraceEventStatsTable::Map_TransitionToAccessorProperty)); |
// At least one of the accessors needs to be a new value. |
DCHECK(!getter->IsNull(isolate) || !setter->IsNull(isolate)); |
@@ -12501,8 +12489,6 @@ Handle<Cell> Map::GetOrCreatePrototypeChainValidityCell(Handle<Map> map, |
void Map::SetPrototype(Handle<Map> map, Handle<Object> prototype, |
PrototypeOptimizationMode proto_mode) { |
RuntimeCallTimerScope stats_scope(*map, &RuntimeCallStats::Map_SetPrototype); |
- TRACE_EVENT_RUNTIME_CALL_STATS_TRACING_SCOPED( |
- map->GetIsolate(), &tracing::TraceEventStatsTable::Map_SetPrototype); |
bool is_hidden = false; |
if (prototype->IsJSObject()) { |