chromium/v8/src/profiler/symbolizer.cc

// Copyright 2020 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/profiler/symbolizer.h"

#include "src/execution/vm-state.h"
#include "src/profiler/profile-generator.h"
#include "src/profiler/profiler-stats.h"
#include "src/profiler/tick-sample.h"

namespace v8 {
namespace internal {

Symbolizer::Symbolizer(InstructionStreamMap* instruction_stream_map)
    :{}

CodeEntry* Symbolizer::FindEntry(Address address,
                                 Address* out_instruction_start) {}

namespace {

CodeEntry* EntryForVMState(StateTag tag) {}

}  // namespace

Symbolizer::SymbolizedSample Symbolizer::SymbolizeTickSample(
    const TickSample& sample) {}

}  // namespace internal
}  // namespace v8