Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:43:45

0001 //===- IPDBFrameData.h - base interface for frame data ----------*- C++ -*-===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006 //
0007 //===----------------------------------------------------------------------===//
0008 
0009 #ifndef LLVM_DEBUGINFO_PDB_IPDBFRAMEDATA_H
0010 #define LLVM_DEBUGINFO_PDB_IPDBFRAMEDATA_H
0011 
0012 #include <cstdint>
0013 #include <string>
0014 
0015 namespace llvm {
0016 namespace pdb {
0017 
0018 /// IPDBFrameData defines an interface used to represent a frame data of some
0019 /// code block.
0020 class IPDBFrameData {
0021 public:
0022   virtual ~IPDBFrameData();
0023 
0024   virtual uint32_t getAddressOffset() const = 0;
0025   virtual uint32_t getAddressSection() const = 0;
0026   virtual uint32_t getLengthBlock() const = 0;
0027   virtual std::string getProgram() const = 0;
0028   virtual uint32_t getRelativeVirtualAddress() const = 0;
0029   virtual uint64_t getVirtualAddress() const = 0;
0030 };
0031 
0032 } // namespace pdb
0033 } // namespace llvm
0034 
0035 #endif