1 // Copyright 2020 the V8 project authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "src/logging/tracing-flags.h" 6 7 namespace v8 { 8 namespace internal { 9 10 std::atomic_uint TracingFlags::runtime_stats{0}; 11 std::atomic_uint TracingFlags::gc{0}; 12 std::atomic_uint TracingFlags::gc_stats{0}; 13 std::atomic_uint TracingFlags::ic_stats{0}; 14 std::atomic_uint TracingFlags::zone_stats{0}; 15 16 } // namespace internal 17 } // namespace v8 18