Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.

README.md

FastExpressionCompiler

logo

latest release Windows buildlicense
Targets .NET Standard 2.0 and .NET 4.5
NuGet packages:

  • FastExpressionCompiler NuGet Badgefuget.org package api diff
  • FastExpressionCompiler.LightExpression NuGet Badgefuget.org package last version

Originally is a part of the DryIoc, so check it out ;-)

The problem

ExpressionTree compilation is used by the wide variety of tools, e.g. IoC/DI containers, Serializers, OO Mappers. But Expression.Compile() is just slow. Moreover the compiled delegate may be slower than the manually created delegate because of the reasons:

TL;DR;

Expression.Compile creates a DynamicMethod and associates it with an anonymous assembly to run it in a sand-boxed environment. This makes it safe for a dynamic method to be emitted and executed by partially trusted code but adds some run-time overhead.

See also a deep dive to Delegate internals.

The solution

The FastExpressionCompiler .CompileFast() extension method is 10-40x times faster than .Compile().
The compiled delegate may be in some cases a lot faster than the one produced by .Compile().

Note: The actual performance may vary depending on the multiple factors: platform, how complex is expression, does it have a closure, does it contain nested lambdas, etc.

In addition, the memory consumption taken by the compilation will be much smaller (check the Allocated column in the benchmarks below).

Difference between FastExpressionCompiler and FastExpressionCompiler.LightExpression

FastExpressionCompiler

  • Provides the CompileFast extension methods for the System.Linq.Expressions.LambdaExpression.

FastExpressionCompiler.LightExpression

  • Provides the CompileFast extension methods for FastExpressionCompiler.LightExpression.LambdaExpression.
  • Provides the drop-in Expression replacement with the faster construction and less memory at the cost of less validation.
  • Includes its own ExpressionVisitor.
  • ToExpression method to convert back to the System Expression.
  • ToCSharpString() method to output the compile-able C# code represented by expression.
  • ToExpressionString() method to output the expression construction C# code, so given the expression object you'll get e.g. Expression.Lambda(Expression.New(...)).

Some users

Marten, Rebus, StructureMap, Lamar, ExpressionToCodeLib, NServiceBus

Considering: Moq, LINQ to DB, Apex.Serialization

How to use

Install from the NuGet and add the using FastExpressionCompiler; and replace the call to the .Compile() with the .CompileFast() extension method.

Note: CompileFast has an optional parameter bool ifFastFailedReturnNull = false to disable fallback to Compile.

Examples

Hoisted lambda expression (created by the C# Compiler):

var a = new A(); var b = new B();
Expression<Func<X>> expr = () => new X(a, b);

var getX = expr.CompileFast();
var x = getX();

Manually composed lambda expression:

var a = new A();
var bParamExpr = Expression.Parameter(typeof(B), "b");
var expr = Expression.Lambda(
    Expression.New(typeof(X).GetTypeInfo().DeclaredConstructors.First(),
        Expression.Constant(a, typeof(A)), bParamExpr),
    bParamExpr);

var getX = expr.CompileFast();
var x = getX(new B());

Note: You may simplify Expression usage and enable faster refactoring with the C# using static statement:

using static System.Linq.Expressions.Expression;
// or
// using static FastExpressionCompiler.LightExpression.Expression;

var a = new A();
var bParamExpr = Parameter(typeof(B), "b");
var expr = Lambda(
    New(typeof(X).GetTypeInfo().DeclaredConstructors.First(), Constant(a, typeof(A)), bParamExpr),
    bParamExpr);

var x = expr.CompileFast()(new B());

Benchmarks

BenchmarkDotNet=v0.12.1, OS=Windows 10.0.19041.572 (2004/?/20H1)
Intel Core i7-8565U CPU 1.80GHz (Whiskey Lake), 1 CPU, 8 logical and 4 physical cores
.NET Core SDK=3.1.403
  [Host]     : .NET Core 3.1.9 (CoreCLR 4.700.20.47201, CoreFX 4.700.20.47203), X64 RyuJIT
  DefaultJob : .NET Core 3.1.9 (CoreCLR 4.700.20.47201, CoreFX 4.700.20.47203), X64 RyuJIT

Hoisted expression with the constructor and two arguments in closure

var a = new A();
var b = new B();
Expression<Func<X>> e = () => new X(a, b);

Compiling expression:

Method Mean Error StdDev Ratio RatioSD Gen 0 Gen 1 Gen 2 Allocated
Compile 233.935 us 1.2937 us 1.1468 us 47.06 0.97 0.9766 0.4883 - 4.35 KB
CompileFast 4.995 us 0.0994 us 0.1184 us 1.00 0.00 0.3815 0.1907 0.0305 1.57 KB

Invoking the compiled delegate (comparing to the direct constructor call):

Method Mean Error StdDev Ratio Gen 0 Gen 1 Gen 2 Allocated
DirectConstructorCall 5.781 ns 0.1115 ns 0.1043 ns 0.51 0.0076 - - 32 B
CompiledLambda 12.581 ns 0.1318 ns 0.1169 ns 1.11 0.0076 - - 32 B
FastCompiledLambda 11.338 ns 0.1075 ns 0.1005 ns 1.00 0.0076 - - 32 B

Hoisted expression with the static method and two nested lambdas and two arguments in closure

var a = new A();
var b = new B();
Expression<Func<X>> getXExpr = () => CreateX((aa, bb) => new X(aa, bb), new Lazy<A>(() => a), b);

Compiling expression:

Method Mean Error StdDev Ratio RatioSD Gen 0 Gen 1 Gen 2 Allocated
Compile 460.63 us 5.937 us 5.263 us 27.47 0.67 2.4414 0.9766 - 11.65 KB
CompileFast 16.77 us 0.324 us 0.485 us 1.00 0.00 1.1902 0.5493 0.0916 4.86 KB

Invoking compiled delegate comparing to direct method call:

Method Mean Error StdDev Ratio RatioSD Gen 0 Gen 1 Gen 2 Allocated
DirectMethodCall 53.90 ns 0.982 ns 0.918 ns 1.06 0.02 0.0401 - - 168 B
Invoke_Compiled 1,452.80 ns 16.283 ns 15.232 ns 28.44 0.37 0.0629 - - 264 B
Invoke_CompiledFast 51.11 ns 0.935 ns 0.829 ns 1.00 0.00 0.0249 - - 104 B

Manually composed expression with parameters and closure

var a = new A();
var bParamExpr = Expression.Parameter(typeof(B), "b");
var expr = Expression.Lambda(
    Expression.New(typeof(X).GetTypeInfo().DeclaredConstructors.First(),
        Expression.Constant(a, typeof(A)), bParamExpr),
    bParamExpr);

Compiling expression:

Method Mean Error StdDev Ratio RatioSD Gen 0 Gen 1 Gen 2 Allocated
Compile 153.405 us 3.0500 us 5.8762 us 32.77 2.25 0.9766 0.4883 - 4.59 KB
CompileFast 4.716 us 0.0925 us 0.0820 us 1.02 0.03 0.3510 0.1755 0.0305 1.46 KB
CompileFast_LightExpression 4.611 us 0.0898 us 0.0840 us 1.00 0.00 0.3433 0.1678 0.0305 1.42 KB

Invoking the compiled delegate compared to the normal delegate and the direct call:

Method Mean Error StdDev Ratio RatioSD Gen 0 Gen 1 Gen 2 Allocated
DirectLambdaCall 11.07 ns 0.183 ns 0.171 ns 1.02 0.02 0.0076 - - 32 B
CompiledLambda 12.31 ns 0.101 ns 0.090 ns 1.13 0.01 0.0076 - - 32 B
FastCompiledLambda 10.80 ns 0.146 ns 0.137 ns 1.00 0.01 0.0076 - - 32 B
FastCompiledLambda_LightExpression 10.86 ns 0.109 ns 0.096 ns 1.00 0.00 0.0076 - - 32 B

FEC.LightExpression.Expression vs Expression

FastExpressionCompiler.LightExpression.Expression is the lightweight version of System.Linq.Expressions.Expression. It is designed to be a drop-in replacement for the System Expression - just install the FastExpressionCompiler.LightExpression package instead of FastExpressionCompiler and replace the usings

using System.Linq.Expressions;
using static System.Linq.Expressions.Expression;

with

using static FastExpressionCompiler.LightExpression.Expression;
namespace FastExpressionCompiler.LightExpression.UnitTests

You may look at it as a bare-bone wrapper for the computation operation node which helps you to compose the computation tree (without messing with the IL emit directly). It won't validate operations compatibility for the tree the way System.Linq.Expression does it, and partially why it is so slow. Hopefully you are checking the expression arguments yourself and not waiting for the Expression exceptions to blow-up.

Sample expression

Creating the expression:

Method Mean Error StdDev Ratio RatioSD Gen 0 Gen 1 Gen 2 Allocated
CreateExpression 2,805.2 ns 55.57 ns 107.06 ns 4.76 0.32 0.3090 - - 1304 B
CreateLightExpression 578.5 ns 6.39 ns 5.98 ns 1.00 0.00 0.1678 - - 704 B

Creating and compiling:

Method Mean Error StdDev Ratio RatioSD Gen 0 Gen 1 Gen 2 Allocated
CreateExpression_and_Compile 241.97 us 2.007 us 1.877 us 17.77 0.20 1.7090 0.7324 - 7.01 KB
CreateExpression_and_CompileFast 17.30 us 0.207 us 0.173 us 1.27 0.02 1.7395 0.8545 0.0305 7.19 KB
CreateLightExpression_and_CompileFast 13.61 us 0.158 us 0.140 us 1.00 0.00 1.6174 0.7935 0.0305 6.64 KB

How it works

The idea is to provide the fast compilation for the supported expression types, and fallback to the system Expression.Compile() for the not supported types:

V3 does not support yet:

  • Quote
  • Dynamic
  • RuntimeVariables
  • DebugInfo
  • ListInit
  • MemberInit with the MemberMemberBinding and the ListMemberBinding binding types
  • NewArrayInit multi-dimensional array initializer is not supported yet

The compilation is done by traversing the expression nodes and emitting the IL. The code is tuned for the performance and the minimal memory consumption.

The expression is traversed twice:

  • 1st round is to collect the constants and nested lambdas into the closure objects.
  • 2nd round is to emit the IL code and create the delegate using the DynamicMethod.

If visitor finds the not supported expression node or the error condition, the compilation is aborted, and null is returned enabling the fallback to System .Compile().

Additional optimizations

  1. Using FastExpressionCompiler.LightExpression.Expression instead of System.Linq.Expressions.Expression for the faster expression creation.
  2. Using .TryCompileWithPreCreatedClosure and .TryCompileWithoutClosure methods when you know the expression at hand and may skip the first traversing round, e.g. for the "static" expression which does not contain the bound constants. Note: You cannot skip the 1st round if the expression contains the Block, Try, or Goto expressions.

Bitten Ice Pop icon icon by Icons8

You can’t perform that action at this time.