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

105 lines
3.5 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.Diagnostics;
using ICSharpCode.Decompiler.Disassembler;
using ICSharpCode.Decompiler.TypeSystem;
namespace ICSharpCode.Decompiler.IL
{
public abstract partial class CallInstruction : ILInstruction
{
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 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;
/// <summary>
/// Gets whether the IL stack was empty at the point of this call.
/// (not counting the arguments/return value of the call itself)
/// </summary>
public bool ILStackWasEmpty;
protected CallInstruction(OpCode opCode, IMethod method) : base(opCode)
{
Debug.Assert(method != null);
this.Method = method;
this.Arguments = new InstructionCollection<ILInstruction>(this, 0);
}
public override StackType ResultType {
get {
if (OpCode == OpCode.NewObj)
return Method.DeclaringType.GetStackType();
else
return Method.ReturnType.GetStackType();
}
}
public override void WriteTo(ITextOutput output, ILAstWritingOptions options)
{
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, options);
}
output.Write(')');
}
protected internal sealed override bool PerformMatch(ILInstruction other, ref Patterns.Match match)
{
CallInstruction o = other as CallInstruction;
return o != null && this.OpCode == o.OpCode && this.Method.Equals(o.Method) && this.IsTail == o.IsTail
&& object.Equals(this.ConstrainedTo, o.ConstrainedTo)
&& Patterns.ListMatch.DoMatch(this.Arguments, o.Arguments, ref match);
}
}
}