.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.
 
 
 
 

136 lines
4.0 KiB

// Copyright (c) 2014 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;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ICSharpCode.NRefactory.TypeSystem;
using ICSharpCode.Decompiler.Disassembler;
namespace ICSharpCode.Decompiler.IL
{
public abstract class CallInstruction : ILInstruction
{
public static readonly SlotInfo ArgumentSlot = new SlotInfo("Argument", canInlineInto: true, isCollection: true);
public static CallInstruction Create(OpCode opCode, IMethod method)
{
switch (opCode) {
case OpCode.Call:
return new Call(method);
case OpCode.CallVirt:
return new CallVirt(method);
case OpCode.NewObj:
return new NewObj(method);
default:
throw new ArgumentException("Not a valid call opcode");
}
}
public readonly InstructionCollection<ILInstruction> Arguments;
public readonly IMethod Method;
/// <summary>
/// Gets/Sets whether the call has the 'tail.' prefix.
/// </summary>
public bool IsTail;
/// <summary>
/// Gets/Sets the type specified in the 'constrained.' prefix.
/// Returns null if no 'constrained.' prefix exists for this call.
/// </summary>
public IType ConstrainedTo;
protected CallInstruction(OpCode opCode, IMethod method) : base(opCode)
{
Debug.Assert(method != null);
this.Method = method;
this.Arguments = new InstructionCollection<ILInstruction>(this, 0);
}
public sealed override ILInstruction Clone()
{
var clone = Create(this.OpCode, this.Method);
clone.Arguments.AddRange(this.Arguments.Select(arg => arg.Clone()));
clone.ILRange = this.ILRange;
clone.IsTail = this.IsTail;
clone.ConstrainedTo = this.ConstrainedTo;
return clone;
}
public override StackType ResultType {
get {
if (OpCode == OpCode.NewObj)
return Method.DeclaringType.GetStackType();
else
return Method.ReturnType.GetStackType();
}
}
protected sealed override int GetChildCount()
{
return Arguments.Count;
}
protected sealed override ILInstruction GetChild(int index)
{
return Arguments[index];
}
protected sealed override void SetChild(int index, ILInstruction value)
{
Arguments[index] = value;
}
protected override SlotInfo GetChildSlot(int index)
{
return ArgumentSlot;
}
protected override InstructionFlags ComputeFlags()
{
var flags = InstructionFlags.MayThrow | InstructionFlags.SideEffect;
foreach (var op in Arguments)
flags |= op.Flags;
return flags;
}
public override void WriteTo(ITextOutput output)
{
if (ConstrainedTo != null) {
output.Write("constrained.");
ConstrainedTo.WriteTo(output, ILNameSyntax.ShortTypeName);
}
if (IsTail)
output.Write("tail.");
output.Write(OpCode);
output.Write(' ');
Method.WriteTo(output);
output.Write('(');
for (int i = 0; i < Arguments.Count; i++) {
if (i > 0)
output.Write(", ");
Arguments[i].WriteTo(output);
}
output.Write(')');
}
}
}