Skip to content

Commit 0fe7ffb

Browse files
committed
[llvm-advisor] Add parser foundation for optimization analysis
- implement data models and yaml parsing for remarks
1 parent 33955fc commit 0fe7ffb

File tree

5 files changed

+1441
-0
lines changed

5 files changed

+1441
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from .yaml_parser import OptimizationRecordParser
2+
from .models import OptimizationRemark, CompilationUnit, Project, RemarkType, DebugLocation, RemarkArgument
3+
from .analyzer import RemarkAnalyzer
4+
5+
__all__ = [
6+
'OptimizationRecordParser',
7+
'OptimizationRemark',
8+
'CompilationUnit',
9+
'Project',
10+
'RemarkType',
11+
'DebugLocation',
12+
'RemarkArgument',
13+
'RemarkAnalyzer'
14+
]

0 commit comments

Comments
 (0)