Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Read support MODI Streams and typical associated Symbol Records #412

Merged
merged 42 commits into from
Feb 15, 2023
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
557d91e
Add modi stream models.
Washi1337 Feb 2, 2023
9165e2d
Add PdbModule.
Washi1337 Feb 2, 2023
a03c509
Add SerializedPdbModule.
Washi1337 Feb 2, 2023
957ed70
Add S_OBJNAME symbol read support.
Washi1337 Feb 2, 2023
7d0d26f
Add S_COMPILE2 and S_COMPILE3 read support.
Washi1337 Feb 2, 2023
4e1efa2
Add PdbModule tests.
Washi1337 Feb 3, 2023
5b4d554
BUGFIX: Off-by-one error in CompileAttributes enum.
Washi1337 Feb 3, 2023
3fbe7ce
Extract TpiStreamCache helper class.
Washi1337 Feb 3, 2023
2eaede0
Extract generic TryGetLeafRecord.
Washi1337 Feb 3, 2023
4f076ee
Add read support for LF_STRING_ID, LF_SUBSTR_LIST, LF_BUILDINFO, S_BU…
Washi1337 Feb 3, 2023
8ed4f00
Add read support for S_LOCAL.
Washi1337 Feb 4, 2023
39858dd
Add read support for S_DEFRANGE_REGISTER_REL.
Washi1337 Feb 4, 2023
3ec9eb6
Add read support for S_DEFRANGE_FRAMEPOINTER[_FULLSCOPE].
Washi1337 Feb 4, 2023
d80c675
Add read support for S_REGREL32.
Washi1337 Feb 4, 2023
c3ebbbe
Add read support for S_FRAMEPROC.
Washi1337 Feb 4, 2023
dc95b6f
Add read support for S_UNAMESPACE.
Washi1337 Feb 10, 2023
3d8994e
Add read support S_BPREL32. Rename RelativeRegister to RegisterRelative.
Washi1337 Feb 10, 2023
30b691c
Add read support for S_CALLSITEINFO.
Washi1337 Feb 10, 2023
6c7ec13
Add read support for LF_FUNC_ID, S_CALLERS and S_CALLEES.
Washi1337 Feb 10, 2023
7e97353
Add read support for S_ENVBLOCK.
Washi1337 Feb 10, 2023
15a77af
Extract ICodeViewSymbol, ICodeViewSymbolProvider, IScopeCodeViewSymbol.
Washi1337 Feb 11, 2023
7c26b11
Add read support for S_GPROC32, S_GPROC32_ID, S_LPROC32 and S_LPROC32…
Washi1337 Feb 11, 2023
2434937
Extract SymbolStreamReader class to remove code duplication.
Washi1337 Feb 11, 2023
99cb155
Nest symbols into procedure symbols when possible.
Washi1337 Feb 11, 2023
a3b907d
Add read support for S_THUNK32.
Washi1337 Feb 11, 2023
28c8bac
Add read support S_GDATA32, S_LDATA32. Add missing xmldocs.
Washi1337 Feb 11, 2023
daec1aa
Remove S_END entries from symbol lists.
Washi1337 Feb 11, 2023
1e64abb
Add read support S_COFFGROUP.
Washi1337 Feb 12, 2023
e938ba5
Add read support for S_DEFRANGE_REGISTER.
Washi1337 Feb 12, 2023
11fcc6f
Add read support for S_FILESTATIC.
Washi1337 Feb 12, 2023
a5ebe86
Add read support for S_FRAMECOOKIE.
Washi1337 Feb 12, 2023
d09c911
Add read support for S_INLINESITE.
Washi1337 Feb 12, 2023
f898516
Add read support for S_LABEL32.
Washi1337 Feb 12, 2023
da8973b
Add read support for S_REGISTER.
Washi1337 Feb 12, 2023
63f4fbe
Add read support S_SECTION.
Washi1337 Feb 12, 2023
9546e45
Add helper ToString methods.
Washi1337 Feb 12, 2023
2bab60b
Extract ICodeViewLeaf, ITpiLeaf, IIpiLeaf. Rename XXXIdLeaf to XXXIde…
Washi1337 Feb 15, 2023
2243883
Fix casing for some code view leaf kinds.
Washi1337 Feb 15, 2023
39025b9
Improve readability in lookahead of symbol stream reader.
Washi1337 Feb 15, 2023
8420b2b
Rename ID leaf tests to adhere to new naming scheme.
Washi1337 Feb 15, 2023
2e1aaed
Let DataSymbol implement IVariableSymbol. Replace redundant xmldoc wi…
Washi1337 Feb 15, 2023
8f49471
Fix nullability for DataSymbol.Name
Washi1337 Feb 15, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Rename ID leaf tests to adhere to new naming scheme.
Washi1337 committed Feb 15, 2023
commit 8420b2bf2a7a4b574495d4876bc52a7ac86238e6
Original file line number Diff line number Diff line change
@@ -3,11 +3,11 @@

namespace AsmResolver.Symbols.Pdb.Tests.Leaves;

public class FunctionIdLeafTest : IClassFixture<MockPdbFixture>
public class FunctionIdentifierTest : IClassFixture<MockPdbFixture>
{
private readonly MockPdbFixture _fixture;

public FunctionIdLeafTest(MockPdbFixture fixture)
public FunctionIdentifierTest(MockPdbFixture fixture)
{
_fixture = fixture;
}
Original file line number Diff line number Diff line change
@@ -4,11 +4,11 @@

namespace AsmResolver.Symbols.Pdb.Tests.Leaves;

public class StringIdInfoTest : IClassFixture<MockPdbFixture>
public class StringIdentifierTest : IClassFixture<MockPdbFixture>
{
private readonly MockPdbFixture _fixture;

public StringIdInfoTest(MockPdbFixture fixture)
public StringIdentifierTest(MockPdbFixture fixture)
{
_fixture = fixture;
}