chromium/v8/src/maglev/maglev-pipeline-statistics.cc

// Copyright 2023 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/maglev/maglev-pipeline-statistics.h"

#include "src/compiler/zone-stats.h"
#include "src/objects/js-function-inl.h"
#include "src/objects/shared-function-info.h"

namespace v8 {
namespace internal {
namespace maglev {

constexpr char MaglevPipelineStatistics::kTraceCategory[];

MaglevPipelineStatistics::MaglevPipelineStatistics(
    maglev::MaglevCompilationInfo* info,
    std::shared_ptr<CompilationStatistics> compilation_stats,
    compiler::ZoneStats* zone_stats)
    :{}

MaglevPipelineStatistics::~MaglevPipelineStatistics() {}

void MaglevPipelineStatistics::BeginPhaseKind(const char* name) {}

void MaglevPipelineStatistics::EndPhaseKind() {}

void MaglevPipelineStatistics::BeginPhase(const char* name) {}

void MaglevPipelineStatistics::EndPhase() {}

}  // namespace maglev
}  // namespace internal
}  // namespace v8