// Copyright 2007-2008 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. #ifndef V8_DIAGNOSTICS_DISASM_H_ #define V8_DIAGNOSTICS_DISASM_H_ #include "src/base/vector.h" namespace disasm { // Interface and default implementation for converting addresses and // register-numbers to text. The default implementation is machine // specific. class V8_EXPORT_PRIVATE NameConverter { … }; // A generic Disassembler interface class Disassembler { … }; } // namespace disasm #endif // V8_DIAGNOSTICS_DISASM_H_