LLVM 19.0.0git
DIAFrameData.h
Go to the documentation of this file.
1//===- DIAFrameData.h - DIA Impl. of IPDBFrameData ---------------- 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_PDB_DIA_DIAFRAMEDATA_H
10#define LLVM_DEBUGINFO_PDB_DIA_DIAFRAMEDATA_H
11
12#include "DIASupport.h"
14
15namespace llvm {
16namespace pdb {
17
18class DIASession;
19
21public:
22 explicit DIAFrameData(CComPtr<IDiaFrameData> DiaFrameData);
23
24 uint32_t getAddressOffset() const override;
25 uint32_t getAddressSection() const override;
26 uint32_t getLengthBlock() const override;
27 std::string getProgram() const override;
28 uint32_t getRelativeVirtualAddress() const override;
29 uint64_t getVirtualAddress() const override;
30
31private:
32 CComPtr<IDiaFrameData> FrameData;
33};
34
35} // namespace pdb
36} // namespace llvm
37
38#endif
uint32_t getAddressOffset() const override
uint64_t getVirtualAddress() const override
uint32_t getLengthBlock() const override
uint32_t getAddressSection() const override
std::string getProgram() const override
uint32_t getRelativeVirtualAddress() const override
IPDBFrameData defines an interface used to represent a frame data of some code block.
Definition: IPDBFrameData.h:20
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18