#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 { … }
}
}