.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

235 lines
8.1 KiB

// Copyright (c) 2020 Siegfried Pammer
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
using System;
using System.Collections.Generic;
using System.Linq;
using ICSharpCode.Decompiler.TypeSystem;
using ICSharpCode.Decompiler.Util;
namespace ICSharpCode.Decompiler.IL.Transforms
{
/// <summary>
///
/// </summary>
class DeconstructionTransform : IStatementTransform
{
StatementTransformContext context;
readonly Dictionary<ILVariable, int> deconstructionResultsLookup = new Dictionary<ILVariable, int>();
/*
stloc tuple(call MakeIntIntTuple(ldloc this))
----
stloc myInt(call op_Implicit(ldfld Item2(ldloca tuple)))
stloc a(ldfld Item1(ldloca tuple))
stloc b(ldloc myInt)
==>
deconstruct {
init:
<empty>
deconstruct:
match.deconstruct(temp = ldloca tuple) {
match(result0 = deconstruct.result 0(temp)),
match(result1 = deconstruct.result 1(temp))
}
conversions: {
stloc conv2(call op_Implicit(ldloc result1))
}
assignments: {
stloc a(ldloc result0)
stloc b(ldloc conv2)
}
}
* */
void IStatementTransform.Run(Block block, int pos, StatementTransformContext context)
{
if (!context.Settings.Deconstruction)
return;
try {
this.context = context;
this.deconstructionResultsLookup.Clear();
if (TransformDeconstruction(block, pos))
return;
if (InlineDeconstructionInitializer(block, pos))
return;
} finally {
this.context = null;
this.deconstructionResultsLookup.Clear();
}
}
/// <summary>
/// stloc v(lhs)
/// expr(..., deconstruct { ... }, ...)
/// =>
/// expr(..., deconstruct { init: stloc v(lhs) ... }, ...)
/// </summary>
bool InlineDeconstructionInitializer(Block block, int pos)
{
if (!block.Instructions[pos].MatchStLoc(out var v, out var value))
return false;
if (!(v.IsSingleDefinition && v.LoadCount == 1))
return false;
if (pos + 1 >= block.Instructions.Count)
return false;
var result = ILInlining.FindLoadInNext(block.Instructions[pos + 1], v, value, InliningOptions.FindDeconstruction);
if (result.Type != ILInlining.FindResultType.Deconstruction)
return false;
var deconstruction = (DeconstructInstruction)result.LoadInst;
if (!v.LoadInstructions[0].IsDescendantOf(deconstruction.Assignments))
return false;
if (deconstruction.Init.Count > 0) {
var a = deconstruction.Init[0].Variable.LoadInstructions.Single();
var b = v.LoadInstructions.Single();
if (!b.IsBefore(a))
return false;
}
context.Step("InlineDeconstructionInitializer", block.Instructions[pos]);
deconstruction.Init.Insert(0, (StLoc)block.Instructions[pos]);
block.Instructions.RemoveAt(pos);
v.Kind = VariableKind.DeconstructionInitTemporary;
return true;
}
bool TransformDeconstruction(Block block, int pos)
{
int startPos = pos;
if (!MatchDeconstruction(block, ref pos, out var deconstructMethod, out var rootTestedOperand, out var deconstructionResults))
return false;
if (!MatchConversion(block, ref pos))
return false;
if (!MatchAssignments(block, ref pos, out var assignments))
return false;
context.Step("Deconstruction", block.Instructions[startPos]);
DeconstructInstruction replacement = new DeconstructInstruction();
IType deconstructedType;
if (deconstructMethod.IsStatic) {
deconstructedType = deconstructMethod.Parameters[0].Type;
} else {
deconstructedType = deconstructMethod.DeclaringType;
}
var rootTempVariable = context.Function.RegisterVariable(VariableKind.PatternLocal, deconstructedType);
replacement.Pattern = new MatchInstruction(rootTempVariable, deconstructMethod, rootTestedOperand) {
IsDeconstructCall = true
};
int index = 0;
foreach (var result in deconstructionResults) {
result.Kind = VariableKind.PatternLocal;
replacement.Pattern.SubPatterns.Add(new MatchInstruction(result, new DeconstructResultInstruction(index, result.StackType, new LdLoc(rootTempVariable))));
index++;
}
replacement.Conversions = new Block(BlockKind.DeconstructionConversions);
TransformAssignments(replacement, assignments);
block.Instructions[startPos] = replacement;
block.Instructions.RemoveRange(startPos + 1, pos - startPos - 1);
return true;
}
bool MatchDeconstruction(Block block, ref int pos, out IMethod deconstructMethod,
out ILInstruction testedOperand, out List<ILVariable> deconstructionResults)
{
testedOperand = null;
deconstructMethod = null;
deconstructionResults = null;
// TODO nested deconstruction / tuple deconstruction
if (!(block.Instructions[pos] is CallInstruction call))
return false;
if (!MatchInstruction.IsDeconstructMethod(call.Method))
return false;
if (call.Method.IsStatic == call is CallVirt)
return false;
if (call.Arguments.Count < 3)
return false;
deconstructionResults = new List<ILVariable>();
for (int i = 1; i < call.Arguments.Count; i++) {
if (!call.Arguments[i].MatchLdLoca(out var v))
return false;
// TODO v.LoadCount may be 2 if the deconstruction is assigned to a tuple variable
// or 0? because of discards
if (!(v.StoreCount == 0 && v.AddressCount == 1 && v.LoadCount == 1))
return false;
deconstructionResultsLookup.Add(v, i - 1);
deconstructionResults.Add(v);
}
testedOperand = call.Arguments[0];
deconstructMethod = call.Method;
pos++;
return true;
}
bool MatchConversion(Block block, ref int pos)
{
// TODO
return true;
}
bool MatchAssignments(Block block, ref int pos, out List<ILInstruction> assignments)
{
assignments = new List<ILInstruction>();
int expectedIndex = 0;
while (MatchAssignment(block.Instructions.ElementAtOrDefault(pos), out var resultVariable)) {
if (!deconstructionResultsLookup.TryGetValue(resultVariable, out int index))
return false;
if (index != expectedIndex)
return false;
assignments.Add(block.Instructions[pos]);
pos++;
expectedIndex++;
}
return assignments.Count > 0;
}
bool MatchAssignment(ILInstruction inst, out ILVariable resultVariable)
{
resultVariable = null;
if (inst.MatchStLoc(out var v, out var value)
&& value is Block block && block.MatchInlineAssignBlock(out var call, out var valueInst)) {
if (!DeconstructInstruction.IsAssignment(call, out _))
return false;
if (!(v.IsSingleDefinition && v.LoadCount == 0))
return false;
} else if (DeconstructInstruction.IsAssignment(inst, out valueInst)) {
// OK - use the assignment as is
} else {
return false;
}
if (!valueInst.MatchLdLoc(out resultVariable))
return false;
return true;
}
void TransformAssignments(DeconstructInstruction replacement, List<ILInstruction> assignments)
{
replacement.Assignments = new Block(BlockKind.DeconstructionAssignments);
foreach (var assignment in assignments) {
var transformed = assignment;
if (transformed.MatchStLoc(out _, out var value)
&& value is Block block
&& block.MatchInlineAssignBlock(out var call, out value)) {
call.Arguments[call.Arguments.Count - 1] = value;
transformed = call;
}
replacement.Assignments.Instructions.Add(transformed);
}
}
}
}