1 /*
2  * Copyright (C) 2020 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include "src/trace_processor/tables/android_tables.h"
18 #include "src/trace_processor/tables/counter_tables.h"
19 #include "src/trace_processor/tables/flow_tables.h"
20 #include "src/trace_processor/tables/memory_tables.h"
21 #include "src/trace_processor/tables/metadata_tables.h"
22 #include "src/trace_processor/tables/profiler_tables.h"
23 #include "src/trace_processor/tables/slice_tables.h"
24 #include "src/trace_processor/tables/track_tables.h"
25 
26 namespace perfetto {
27 namespace trace_processor {
28 namespace macros_internal {
29 // macros_internal.h
30 MacroTable::~MacroTable() = default;
31 }  // namespace macros_internal
32 
33 namespace tables {
34 // android_tables.h
35 AndroidLogTable::~AndroidLogTable() = default;
36 
37 // counter_tables.h
38 CounterTable::~CounterTable() = default;
39 
40 // metadata_tables.h
41 RawTable::~RawTable() = default;
42 ArgTable::~ArgTable() = default;
43 MetadataTable::~MetadataTable() = default;
44 CpuTable::~CpuTable() = default;
45 CpuFreqTable::~CpuFreqTable() = default;
46 ThreadTable::~ThreadTable() = default;
47 ProcessTable::~ProcessTable() = default;
48 ClockSnapshotTable::~ClockSnapshotTable() = default;
49 
50 // profiler_tables.h
51 StackProfileMappingTable::~StackProfileMappingTable() = default;
52 StackProfileFrameTable::~StackProfileFrameTable() = default;
53 StackProfileCallsiteTable::~StackProfileCallsiteTable() = default;
54 StackSampleTable::~StackSampleTable() = default;
55 CpuProfileStackSampleTable::~CpuProfileStackSampleTable() = default;
56 PerfSampleTable::~PerfSampleTable() = default;
57 SymbolTable::~SymbolTable() = default;
58 HeapProfileAllocationTable::~HeapProfileAllocationTable() = default;
59 ExperimentalFlamegraphNodesTable::~ExperimentalFlamegraphNodesTable() = default;
60 HeapGraphObjectTable::~HeapGraphObjectTable() = default;
61 HeapGraphClassTable::~HeapGraphClassTable() = default;
62 HeapGraphReferenceTable::~HeapGraphReferenceTable() = default;
63 VulkanMemoryAllocationsTable::~VulkanMemoryAllocationsTable() = default;
64 PackageListTable::~PackageListTable() = default;
65 ProfilerSmapsTable::~ProfilerSmapsTable() = default;
66 GpuCounterGroupTable::~GpuCounterGroupTable() = default;
67 
68 // slice_tables.h
69 SliceTable::~SliceTable() = default;
70 FlowTable::~FlowTable() = default;
71 ThreadSliceTable::~ThreadSliceTable() = default;
72 InstantTable::~InstantTable() = default;
73 SchedSliceTable::~SchedSliceTable() = default;
74 GpuSliceTable::~GpuSliceTable() = default;
75 GraphicsFrameSliceTable::~GraphicsFrameSliceTable() = default;
76 DescribeSliceTable::~DescribeSliceTable() = default;
77 ThreadStateTable::~ThreadStateTable() = default;
78 ExpectedFrameTimelineSliceTable::~ExpectedFrameTimelineSliceTable() = default;
79 ActualFrameTimelineSliceTable::~ActualFrameTimelineSliceTable() = default;
80 
81 // track_tables.h
82 TrackTable::~TrackTable() = default;
83 ProcessTrackTable::~ProcessTrackTable() = default;
84 ThreadTrackTable::~ThreadTrackTable() = default;
85 GpuTrackTable::~GpuTrackTable() = default;
86 CounterTrackTable::~CounterTrackTable() = default;
87 ThreadCounterTrackTable::~ThreadCounterTrackTable() = default;
88 ProcessCounterTrackTable::~ProcessCounterTrackTable() = default;
89 CpuCounterTrackTable::~CpuCounterTrackTable() = default;
90 IrqCounterTrackTable::~IrqCounterTrackTable() = default;
91 SoftirqCounterTrackTable::~SoftirqCounterTrackTable() = default;
92 GpuCounterTrackTable::~GpuCounterTrackTable() = default;
93 PerfCounterTrackTable::~PerfCounterTrackTable() = default;
94 
95 // memory_tables.h
96 MemorySnapshotTable::~MemorySnapshotTable() = default;
97 ProcessMemorySnapshotTable::~ProcessMemorySnapshotTable() = default;
98 MemorySnapshotNodeTable::~MemorySnapshotNodeTable() = default;
99 MemorySnapshotEdgeTable::~MemorySnapshotEdgeTable() = default;
100 
101 }  // namespace tables
102 
103 }  // namespace trace_processor
104 }  // namespace perfetto
105