LLVM  8.0.1
IMSFFile.h
Go to the documentation of this file.
1 //===- IMSFFile.h - Abstract base class for an MSF file ---------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef LLVM_DEBUGINFO_MSF_IMSFFILE_H
11 #define LLVM_DEBUGINFO_MSF_IMSFFILE_H
12 
13 #include "llvm/ADT/ArrayRef.h"
14 #include "llvm/Support/Endian.h"
15 #include "llvm/Support/Error.h"
16 #include <cstdint>
17 
18 namespace llvm {
19 namespace msf {
20 
21 class IMSFFile {
22 public:
23  virtual ~IMSFFile() = default;
24 
25  virtual uint32_t getBlockSize() const = 0;
26  virtual uint32_t getBlockCount() const = 0;
27 
28  virtual uint32_t getNumStreams() const = 0;
29  virtual uint32_t getStreamByteSize(uint32_t StreamIndex) const = 0;
31  getStreamBlockList(uint32_t StreamIndex) const = 0;
32 
34  uint32_t NumBytes) const = 0;
35  virtual Error setBlockData(uint32_t BlockIndex, uint32_t Offset,
36  ArrayRef<uint8_t> Data) const = 0;
37 };
38 
39 } // end namespace msf
40 } // end namespace llvm
41 
42 #endif // LLVM_DEBUGINFO_MSF_IMSFFILE_H
virtual uint32_t getNumStreams() const =0
This class represents lattice values for constants.
Definition: AllocatorList.h:24
virtual Error setBlockData(uint32_t BlockIndex, uint32_t Offset, ArrayRef< uint8_t > Data) const =0
Tagged union holding either a T or a Error.
Definition: CachePruning.h:23
virtual uint32_t getBlockSize() const =0
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory)...
Definition: APInt.h:33
virtual uint32_t getStreamByteSize(uint32_t StreamIndex) const =0
virtual ~IMSFFile()=default
virtual uint32_t getBlockCount() const =0
virtual Expected< ArrayRef< uint8_t > > getBlockData(uint32_t BlockIndex, uint32_t NumBytes) const =0
virtual ArrayRef< support::ulittle32_t > getStreamBlockList(uint32_t StreamIndex) const =0
Lightweight error class with error context and mandatory checking.
Definition: Error.h:158