chromium/v8/src/ic/ic-stats.cc

// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/ic/ic-stats.h"

#include "src/init/v8.h"
#include "src/logging/counters.h"
#include "src/objects/objects-inl.h"
#include "src/tracing/trace-event.h"
#include "src/tracing/traced-value.h"

namespace v8 {
namespace internal {

base::LazyInstance<ICStats>::type ICStats::instance_ =
    LAZY_INSTANCE_INITIALIZER;

ICStats::ICStats() :{}

void ICStats::Begin() {}

void ICStats::End() {}

void ICStats::Reset() {}

void ICStats::Dump() {}

const char* ICStats::GetOrCacheScriptName(Tagged<Script> script) {}

const char* ICStats::GetOrCacheFunctionName(IsolateForSandbox isolate,
                                            Tagged<JSFunction> function) {}

ICInfo::ICInfo()
    :{}

void ICInfo::Reset() {}

void ICInfo::AppendToTracedValue(v8::tracing::TracedValue* value) const {}

}  // namespace internal
}  // namespace v8