LLVM 19.0.0git
SymbolDumpDelegate.h
Go to the documentation of this file.
1//===-- SymbolDumpDelegate.h ------------------------------------*- C++ -*-===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_DEBUGINFO_CODEVIEW_SYMBOLDUMPDELEGATE_H
10#define LLVM_DEBUGINFO_CODEVIEW_SYMBOLDUMPDELEGATE_H
11
12#include "llvm/ADT/ArrayRef.h"
13#include "llvm/ADT/StringRef.h"
15#include <cstdint>
16
17namespace llvm {
18namespace codeview {
19
21public:
22 ~SymbolDumpDelegate() override = default;
23
24 virtual void printRelocatedField(StringRef Label, uint32_t RelocOffset,
26 StringRef *RelocSym = nullptr) = 0;
29};
30
31} // end namespace codeview
32} // end namespace llvm
33
34#endif // LLVM_DEBUGINFO_CODEVIEW_SYMBOLDUMPDELEGATE_H
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
~SymbolDumpDelegate() override=default
virtual void printBinaryBlockWithRelocs(StringRef Label, ArrayRef< uint8_t > Block)=0
virtual void printRelocatedField(StringRef Label, uint32_t RelocOffset, uint32_t Offset, StringRef *RelocSym=nullptr)=0
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:456