1 //===- NativeLineNumber.h - Native line number implementation ---*- 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_NATIVE_NATIVELINENUMBER_H
10 #define LLVM_DEBUGINFO_PDB_NATIVE_NATIVELINENUMBER_H
11 
12 #include "llvm/DebugInfo/CodeView/Line.h"
13 #include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
14 #include "llvm/DebugInfo/PDB/Native/NativeSession.h"
15 
16 namespace llvm {
17 namespace pdb {
18 class NativeLineNumber : public IPDBLineNumber {
19 public:
20   explicit NativeLineNumber(const NativeSession &Session,
21                             const codeview::LineInfo Line,
22                             uint32_t ColumnNumber, uint32_t Length,
23                             uint32_t Section, uint32_t Offset,
24                             uint32_t SrcFileId, uint32_t CompilandId);
25 
26   uint32_t getLineNumber() const override;
27   uint32_t getLineNumberEnd() const override;
28   uint32_t getColumnNumber() const override;
29   uint32_t getColumnNumberEnd() const override;
30   uint32_t getAddressSection() const override;
31   uint32_t getAddressOffset() const override;
32   uint32_t getRelativeVirtualAddress() const override;
33   uint64_t getVirtualAddress() const override;
34   uint32_t getLength() const override;
35   uint32_t getSourceFileId() const override;
36   uint32_t getCompilandId() const override;
37   bool isStatement() const override;
38 
39 private:
40   const NativeSession &Session;
41   const codeview::LineInfo Line;
42   uint32_t ColumnNumber;
43   uint32_t Section;
44   uint32_t Offset;
45   uint32_t Length;
46   uint32_t SrcFileId;
47   uint32_t CompilandId;
48 };
49 } // namespace pdb
50 } // namespace llvm
51 #endif
52