mirror of https://github.com/icsharpcode/ILSpy.git
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.
213 lines
6.9 KiB
213 lines
6.9 KiB
// Copyright (c) 2017 Daniel Grunwald |
|
// |
|
// 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.Linq; |
|
|
|
using ICSharpCode.Decompiler.TypeSystem; |
|
|
|
namespace ICSharpCode.Decompiler.IL.Transforms |
|
{ |
|
public class EarlyExpressionTransforms : ILVisitor, IILTransform |
|
{ |
|
ILTransformContext context; |
|
|
|
public void Run(ILFunction function, ILTransformContext context) |
|
{ |
|
this.context = context; |
|
Default(function); |
|
} |
|
|
|
protected override void Default(ILInstruction inst) |
|
{ |
|
foreach (var child in inst.Children) |
|
{ |
|
child.AcceptVisitor(this); |
|
} |
|
} |
|
|
|
protected internal override void VisitComp(Comp inst) |
|
{ |
|
base.VisitComp(inst); |
|
FixComparisonKindLdNull(inst, context); |
|
} |
|
|
|
internal static void FixComparisonKindLdNull(Comp inst, ILTransformContext context) |
|
{ |
|
if (inst.IsLifted) |
|
{ |
|
return; |
|
} |
|
if (inst.Left.ResultType == StackType.O && inst.Right.ResultType == StackType.O) |
|
{ |
|
if (inst.Kind == ComparisonKind.GreaterThan || inst.Kind == ComparisonKind.LessThan) |
|
{ |
|
context.Step($"comp(left {inst.Kind.GetToken()} right) => comp(left != right)", inst); |
|
inst.Kind = ComparisonKind.Inequality; |
|
} |
|
else if (inst.Kind == ComparisonKind.GreaterThanOrEqual || inst.Kind == ComparisonKind.LessThanOrEqual) |
|
{ |
|
context.Step($"comp(left {inst.Kind.GetToken()} right) => comp(left == right)", inst); |
|
inst.Kind = ComparisonKind.Equality; |
|
} |
|
} |
|
|
|
if (inst.Right.MatchLdNull() && inst.Left.MatchBox(out var arg, out var type) && type.Kind == TypeKind.TypeParameter) |
|
{ |
|
if (inst.Kind == ComparisonKind.Equality) |
|
{ |
|
context.Step("comp(box T(..) == ldnull) -> comp(.. == ldnull)", inst); |
|
inst.Left = arg; |
|
} |
|
if (inst.Kind == ComparisonKind.Inequality) |
|
{ |
|
context.Step("comp(box T(..) != ldnull) -> comp(.. != ldnull)", inst); |
|
inst.Left = arg; |
|
} |
|
} |
|
} |
|
|
|
protected internal override void VisitStObj(StObj inst) |
|
{ |
|
base.VisitStObj(inst); |
|
StObjToStLoc(inst, context); |
|
} |
|
|
|
// This transform is required because ILInlining only works with stloc/ldloc |
|
internal static bool StObjToStLoc(StObj inst, ILTransformContext context) |
|
{ |
|
if (inst.Target.MatchLdLoca(out ILVariable v) |
|
&& TypeUtils.IsCompatibleTypeForMemoryAccess(v.Type, inst.Type) |
|
&& inst.UnalignedPrefix == 0 |
|
&& !inst.IsVolatile) |
|
{ |
|
context.Step($"stobj(ldloca {v.Name}, ...) => stloc {v.Name}(...)", inst); |
|
ILInstruction replacement = new StLoc(v, inst.Value).WithILRange(inst); |
|
if (v.StackType == StackType.Unknown && inst.Type.Kind != TypeKind.Unknown |
|
&& inst.SlotInfo != Block.InstructionSlot) |
|
{ |
|
replacement = new Conv(replacement, inst.Type.ToPrimitiveType(), |
|
checkForOverflow: false, Sign.None); |
|
} |
|
inst.ReplaceWith(replacement); |
|
return true; |
|
} |
|
return false; |
|
} |
|
|
|
protected internal override void VisitLdObj(LdObj inst) |
|
{ |
|
base.VisitLdObj(inst); |
|
AddressOfLdLocToLdLoca(inst, context); |
|
LdObjToLdLoc(inst, context); |
|
} |
|
|
|
internal static bool LdObjToLdLoc(LdObj inst, ILTransformContext context) |
|
{ |
|
if (inst.Target.MatchLdLoca(out ILVariable v) |
|
&& TypeUtils.IsCompatibleTypeForMemoryAccess(v.Type, inst.Type) |
|
&& inst.UnalignedPrefix == 0 |
|
&& !inst.IsVolatile) |
|
{ |
|
context.Step($"ldobj(ldloca {v.Name}) => ldloc {v.Name}", inst); |
|
ILInstruction replacement = new LdLoc(v).WithILRange(inst); |
|
if (v.StackType == StackType.Unknown && inst.Type.Kind != TypeKind.Unknown) |
|
{ |
|
replacement = new Conv(replacement, inst.Type.ToPrimitiveType(), |
|
checkForOverflow: false, Sign.None); |
|
} |
|
inst.ReplaceWith(replacement); |
|
return true; |
|
} |
|
return false; |
|
} |
|
|
|
internal static void AddressOfLdLocToLdLoca(LdObj inst, ILTransformContext context) |
|
{ |
|
// ldobj(...(addressof(ldloc V))) where ... can be zero or more ldflda instructions |
|
// => |
|
// ldobj(...(ldloca V)) |
|
var temp = inst.Target; |
|
var range = temp.ILRanges; |
|
while (temp.MatchLdFlda(out var ldfldaTarget, out _)) |
|
{ |
|
temp = ldfldaTarget; |
|
range = range.Concat(temp.ILRanges); |
|
} |
|
if (temp.MatchAddressOf(out var addressOfTarget, out _) && addressOfTarget.MatchLdLoc(out var v)) |
|
{ |
|
context.Step($"ldobj(...(addressof(ldloca {v.Name}))) => ldobj(...(ldloca {v.Name}))", inst); |
|
var replacement = new LdLoca(v).WithILRange(addressOfTarget); |
|
foreach (var r in range) |
|
{ |
|
replacement = replacement.WithILRange(r); |
|
} |
|
temp.ReplaceWith(replacement); |
|
} |
|
} |
|
|
|
protected internal override void VisitNewObj(NewObj inst) |
|
{ |
|
if (TransformDecimalCtorToConstant(inst, out LdcDecimal decimalConstant)) |
|
{ |
|
context.Step("TransformDecimalCtorToConstant", inst); |
|
inst.ReplaceWith(decimalConstant); |
|
return; |
|
} |
|
|
|
base.VisitNewObj(inst); |
|
} |
|
|
|
bool TransformDecimalCtorToConstant(NewObj inst, out LdcDecimal result) |
|
{ |
|
IType t = inst.Method.DeclaringType; |
|
result = null; |
|
if (!t.IsKnownType(KnownTypeCode.Decimal)) |
|
return false; |
|
var args = inst.Arguments; |
|
if (args.Count == 1) |
|
{ |
|
long val; |
|
if (args[0].MatchLdcI(out val)) |
|
{ |
|
var paramType = inst.Method.Parameters[0].Type.GetDefinition()?.KnownTypeCode; |
|
result = paramType switch { |
|
KnownTypeCode.Int32 => new LdcDecimal(new decimal(unchecked((int)val))), |
|
KnownTypeCode.UInt32 => new LdcDecimal(new decimal(unchecked((uint)val))), |
|
KnownTypeCode.Int64 => new LdcDecimal(new decimal(val)), |
|
KnownTypeCode.UInt64 => new LdcDecimal(new decimal(unchecked((ulong)val))), |
|
_ => null |
|
}; |
|
return result is not null; |
|
} |
|
} |
|
else if (args.Count == 5) |
|
{ |
|
int lo, mid, hi, isNegative, scale; |
|
if (args[0].MatchLdcI4(out lo) && args[1].MatchLdcI4(out mid) && |
|
args[2].MatchLdcI4(out hi) && args[3].MatchLdcI4(out isNegative) && |
|
args[4].MatchLdcI4(out scale) && unchecked((byte)scale) <= 28) |
|
{ |
|
result = new LdcDecimal(new decimal(lo, mid, hi, isNegative != 0, unchecked((byte)scale))); |
|
return true; |
|
} |
|
} |
|
return false; |
|
} |
|
|
|
} |
|
}
|
|
|