[dlr] Handle more expressions in interpreter
authorMarek Safar <marek.safar@gmail.com>
Sun, 26 Jan 2014 10:34:00 +0000 (11:34 +0100)
committerMarek Safar <marek.safar@gmail.com>
Sun, 26 Jan 2014 10:35:09 +0000 (11:35 +0100)
commitf2eab9919dd6ab4548675197e4a7eaffd9816a6a
treed5318770896b3c3847405e1c395c2d9dea6b12aa
parent280f85db70b76e0f80605c9574a3bb3e17101a99
[dlr] Handle more expressions in interpreter
48 files changed:
mcs/class/Mono.Dynamic.Interpreter/Mono.Dynamic.Interpreter.dll.sources
mcs/class/System.Core/Makefile
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Add.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_AndAlso.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Bind.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Call.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Coalesce.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Convert.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Equal.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_GreaterThan.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_GreaterThanOrEqual.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Invoke.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Lambda.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_LessThan.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_LessThanOrEqual.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_ListBind.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_ListInit.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_MemberBind.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_MemberInit.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Negate.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Not.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_OrElse.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Power.cs
mcs/class/System.Core/Test/System.Linq.Expressions/ExpressionTest_Quote.cs
mcs/class/System.Core/Test/System.Linq/EnumerableAsQueryableTest.cs
mcs/class/System.Core/Test/System.Runtime.CompilerServices/DynamicAttributeTest.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/AddInstruction.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/AndInstruction.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/ControlFlowInstructions.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/EqualInstruction.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/GreaterThanInstruction.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/GreaterThanOrEqualInstruction.cs [new file with mode: 0644]
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/InstructionFactory.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/InstructionList.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/LessThanInstruction.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/LessThanOrEqualInstruction.cs [new file with mode: 0644]
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/MulInstruction.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/NegateInstruction.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/NotEqualInstruction.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/NotInstruction.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/OrInstruction.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/ShlInstruction.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/ShrInstruction.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/StackOperations.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/SubInstruction.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/TypeOperations.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/Instructions/XorInstruction.cs
mcs/class/dlr/Runtime/Microsoft.Dynamic/Interpreter/LightCompiler.cs