1 //===-- SymbolDumpDelegate.h ------------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_DEBUGINFO_CODEVIEW_SYMBOLDUMPDELEGATE_H
10 #define LLVM_DEBUGINFO_CODEVIEW_SYMBOLDUMPDELEGATE_H
12 #include "llvm/ADT/ArrayRef.h"
13 #include "llvm/ADT/StringRef.h"
14 #include "llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h"
20 class SymbolDumpDelegate
: public SymbolVisitorDelegate
{
22 ~SymbolDumpDelegate() override
= default;
24 virtual void printRelocatedField(StringRef Label
, uint32_t RelocOffset
,
26 StringRef
*RelocSym
= nullptr) = 0;
27 virtual void printBinaryBlockWithRelocs(StringRef Label
,
28 ArrayRef
<uint8_t> Block
) = 0;
31 } // end namespace codeview
32 } // end namespace llvm
34 #endif // LLVM_DEBUGINFO_CODEVIEW_SYMBOLDUMPDELEGATE_H