chromium/v8/src/diagnostics/x64/eh-frame-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/diagnostics/eh-frame.h"
#include "src/zone/zone-containers.h"

namespace v8 {
namespace internal {

static const int kRaxDwarfCode =;
static const int kRbpDwarfCode =;
static const int kRspDwarfCode =;
static const int kRipDwarfCode =;

const int EhFrameConstants::kCodeAlignmentFactor =;
const int EhFrameConstants::kDataAlignmentFactor =;

void EhFrameWriter::WriteReturnAddressRegisterCode() {}

void EhFrameWriter::WriteInitialStateInCie() {}

// static
int EhFrameWriter::RegisterToDwarfCode(Register name) {}

#ifdef ENABLE_DISASSEMBLER

// static
const char* EhFrameDisassembler::DwarfRegisterCodeToString(int code) {}

#endif

}  // namespace internal
}  // namespace v8