blob: 2a7edb9bf9e62115f5711b21c25626d03eb4a154 [file] [log] [blame]
// Copyright 2018 The Fuchsia 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 SRC_DEVELOPER_DEBUG_ZXDB_CONSOLE_FORMAT_REGISTER_ARM64_H_
#define SRC_DEVELOPER_DEBUG_ZXDB_CONSOLE_FORMAT_REGISTER_ARM64_H_
#include "src/developer/debug/ipc/records.h"
namespace zxdb {
class Err;
class OutputBuffer;
class Register;
struct FormatRegisterOptions;
// Processed is true if the register belongs to the X64 family, and the output
// was processed by this function.
// |err| should be checked for errors if the result was processed.
bool FormatCategoryARM64(const FormatRegisterOptions&, debug_ipc::RegisterCategory::Type category,
const std::vector<Register>& registers, OutputBuffer* out, Err* err);
} // namespace zxdb
#endif // SRC_DEVELOPER_DEBUG_ZXDB_CONSOLE_FORMAT_REGISTER_ARM64_H_