chromium/v8/src/compiler/backend/x64/unwinding-info-writer-x64.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/compiler/backend/x64/unwinding-info-writer-x64.h"
#include "src/compiler/backend/instruction.h"

namespace v8 {
namespace internal {
namespace compiler {

void UnwindingInfoWriter::BeginInstructionBlock(int pc_offset,
                                                const InstructionBlock* block) {}

void UnwindingInfoWriter::EndInstructionBlock(const InstructionBlock* block) {}

void UnwindingInfoWriter::MarkFrameConstructed(int pc_base) {}

void UnwindingInfoWriter::MarkFrameDeconstructed(int pc_base) {}

}  // namespace compiler
}  // namespace internal
}  // namespace v8