ILSourceParser 1.3.0
dotnet add package ILSourceParser --version 1.3.0
NuGet\Install-Package ILSourceParser -Version 1.3.0
<PackageReference Include="ILSourceParser" Version="1.3.0" />
paket add ILSourceParser --version 1.3.0
#r "nuget: ILSourceParser, 1.3.0"
// Install ILSourceParser as a Cake Addin #addin nuget:?package=ILSourceParser&version=1.3.0 // Install ILSourceParser as a Cake Tool #tool nuget:?package=ILSourceParser&version=1.3.0
ILSourceParser
This library for .NET provides functionality to parse IL source code. If you're not aware, Microsoft Intermediate Language (IL or CIL, formerly known as MSIL) is what the .NET application typically consists of. C#, Visual Basic, F#, and other well-known official .NET languages compile to IL bytecode. However, IL actually has its syntax as well. ILSourceParser parses the IL syntax into syntax nodes, making it easier to analyze IL.
ILSourceParser aims to be the comprehensive parser for Microsoft Intermediate Language for .NET. Supports:
- Leading and trailing trivia
- Detecting line/column where a syntax error occurs
- Source file specification
- Asynchronous parsing
- Parsing the following types:
- Method parameters:
- [out], [opt] and [in] prefixes
- Marshalling (IL
marshal()
function) - Optional parameter names
- Method Locals:
- Supports
.locals
and.locals init
directives in methods
- Supports
- Type parsing:
- Optional assembly reference, such as
[System.Runtime]
- Generic type references
- Generic parameter references like
!T
or !!T` - Nested generic type references (e.g. generic type reference passed to parameter of generic type passed to parameter of generic type and so on)
- Optional assembly reference, such as
- Attributes:
- Custom attributes
- Anonymous custom attributes (e.g. with byte data omitted)
- Comments:
- Inline and multiline comments
- Directives:
- Most if not all IL directives are supported, such as
.assembly
,.property
,.file
,.file alignment
,.hash algorithm
,.permissionset
,.imagebase
,.event
,.custom
,.pack
,.size
,.field
,.module
,.line
, and more
- Most if not all IL directives are supported, such as
- And more
- Method parameters:
This library does not rely on any existing project and is not a port from another language, so there could be some issues with this library. If you encounter one, please create a new issue post about it!
The known issue is that ILSourceParser might not be the fastest thing in the world, because it took nearly 1 second to analyze a 200-line of code IL file. Maybe it just needs some additional JIT warming, although there could be a different reason - parsing IL is generally harder than parsing C#, mostly because IL has almost 300 instructions, and we have to do over 300 checks when parsing method body to parse one instruction.
Example
var syntaxTree = ILSyntaxTree.ParseText(@".assembly MyAssembly { }");
var root = syntaxTree.GetRoot();
foreach (SyntaxNode node in root.DescendantNodes)
{
// do something with node
}
A more complex example here:
using ILSourceParser;
using ILSourceParser.Syntax;
using ILSourceParser.Syntax.Instructions;
using Sprache;
string input = @".assembly MyAssembly
{
.ver 1:2:3:4
}
.assembly extern System.Runtime
{
}
.assembly extern System.Console
{
}
// My Cool Application !
.imagebase 0x00400000
.line 123
.class public sequential auto ansi beforefieldinit MyValueType extends [System.Runtime]System.ValueType
{
.field private static initonly string s_myString
.method public static hidebysig void .cctor() cil managed
{
ldstr ""Hello, World!""
stsfld string MyValueType::s_myString
}
.method public static void PrintText() cil managed
{
.maxstack 8
ldsfld string MyValueType::s_myString
call void [System.Console]System.Console::WriteLine(string)
ret
}
}";
var syntaxRoot = ILSyntaxTree.ParseText(input).GetRoot();
foreach (var descendant in syntaxRoot.DescendantNodes)
{
switch (descendant)
{
case AssemblyDeclarationSyntax asm:
Console.WriteLine($"Assembly {asm.AssemblyName}, is external: {asm.IsExtern}");
break;
case BaseCommentSyntax comment:
if (comment is InlineCommentSyntax inline)
{
Console.WriteLine($"Inline comment, text: {inline.CommentText}");
}
else if (comment is MultilineCommentSyntax multiline)
{
Console.WriteLine($"Multiline comment, text: {multiline.CommentText}");
}
break;
case ImageBaseDirectiveSyntax imageBase:
Console.WriteLine($"Image base {imageBase.ImageBase}");
break;
case LineDirectiveSyntax line:
Console.WriteLine($"Line {line.Line}");
break;
case ClassDeclarationSyntax @class:
string flags = string.Join(", ", @class.Flags);
Console.WriteLine($"Class named {@class.Name}; flags: {flags}");
break;
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- Sprache (>= 2.3.1)
- System.Text.RegularExpressions (>= 4.3.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
1. Add support for parsing `.corflags` and `.stackreserve` assembler directives in root declarations
2. Minor XML documentation changes
3. Minor README changes