LLVM
20.0.0git
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
y
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
l
m
o
p
q
r
s
t
u
w
x
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
lib
DebugInfo
PDB
PDBInterfaceAnchors.cpp
Go to the documentation of this file.
1
//===- PDBInterfaceAnchors.h - defines class anchor functions ---*- 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
// Class anchors are necessary per the LLVM Coding style guide, to ensure that
9
// the vtable is only generated in this object file, and not in every object
10
// file that includes the corresponding header.
11
//===----------------------------------------------------------------------===//
12
13
#include "
llvm/DebugInfo/PDB/IPDBDataStream.h
"
14
#include "
llvm/DebugInfo/PDB/IPDBFrameData.h
"
15
#include "
llvm/DebugInfo/PDB/IPDBInjectedSource.h
"
16
#include "
llvm/DebugInfo/PDB/IPDBLineNumber.h
"
17
#include "
llvm/DebugInfo/PDB/IPDBRawSymbol.h
"
18
#include "
llvm/DebugInfo/PDB/IPDBSectionContrib.h
"
19
#include "
llvm/DebugInfo/PDB/IPDBSession.h
"
20
#include "
llvm/DebugInfo/PDB/IPDBTable.h
"
21
22
using namespace
llvm
;
23
using namespace
llvm::pdb
;
24
25
IPDBSession::~IPDBSession
() =
default
;
26
27
IPDBDataStream::~IPDBDataStream
() =
default
;
28
29
IPDBRawSymbol::~IPDBRawSymbol
() =
default
;
30
31
IPDBLineNumber::~IPDBLineNumber
() =
default
;
32
33
IPDBTable::~IPDBTable
() =
default
;
34
35
IPDBInjectedSource::~IPDBInjectedSource
() =
default
;
36
37
IPDBSectionContrib::~IPDBSectionContrib
() =
default
;
38
39
IPDBFrameData::~IPDBFrameData
() =
default
;
IPDBDataStream.h
IPDBFrameData.h
IPDBInjectedSource.h
IPDBLineNumber.h
IPDBRawSymbol.h
IPDBSectionContrib.h
IPDBSession.h
IPDBTable.h
llvm::pdb::IPDBDataStream::~IPDBDataStream
virtual ~IPDBDataStream()
llvm::pdb::IPDBFrameData::~IPDBFrameData
virtual ~IPDBFrameData()
llvm::pdb::IPDBInjectedSource::~IPDBInjectedSource
virtual ~IPDBInjectedSource()
llvm::pdb::IPDBLineNumber::~IPDBLineNumber
virtual ~IPDBLineNumber()
llvm::pdb::IPDBRawSymbol::~IPDBRawSymbol
virtual ~IPDBRawSymbol()
llvm::pdb::IPDBSectionContrib::~IPDBSectionContrib
virtual ~IPDBSectionContrib()
llvm::pdb::IPDBSession::~IPDBSession
virtual ~IPDBSession()
llvm::pdb::IPDBTable::~IPDBTable
virtual ~IPDBTable()
llvm::pdb
Definition:
LVCodeViewReader.h:44
llvm
This is an optimization pass for GlobalISel generic memory operations.
Definition:
AddressRanges.h:18
Generated on Thu Apr 3 2025 01:21:01 for LLVM by
1.9.6