// 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 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 Arguments; public readonly IMethod Method; protected CallInstruction(OpCode opCode, IMethod method) : base(opCode) { Debug.Assert(method != null); this.Method = method; this.Arguments = new InstructionCollection(this, 0); } public override StackType ResultType { get { if (OpCode == OpCode.NewObj) return Method.DeclaringType.GetStackType(); else return Method.ReturnType.GetStackType(); } } protected override int GetChildCount() { return Arguments.Count; } protected override ILInstruction GetChild(int index) { return Arguments[index]; } protected override void SetChild(int index, ILInstruction value) { Arguments[index] = value; } protected override InstructionFlags ComputeFlags() { var flags = InstructionFlags.MayThrow | InstructionFlags.SideEffect; foreach (var op in Arguments) flags |= op.Flags; return flags; } /// /// Gets/Sets whether the call has the 'tail.' prefix. /// public bool IsTail; /// /// Gets/Sets the type specified in the 'constrained.' prefix. /// Returns null if no 'constrained.' prefix exists for this call. /// public IType ConstrainedTo; 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(')'); } internal override ILInstruction Inline(InstructionFlags flagsBefore, IInlineContext context) { InstructionFlags operandFlags = InstructionFlags.None; for (int i = 0; i < Arguments.Count - 1; i++) { operandFlags |= Arguments[i].Flags; } flagsBefore |= operandFlags & ~(InstructionFlags.MayPeek | InstructionFlags.MayPop); for (int i = Arguments.Count - 1; i >= 0; i--) { Arguments[i] = Arguments[i].Inline(flagsBefore, context); } return this; } internal override void TransformStackIntoVariables(TransformStackIntoVariablesState state) { for (int i = 0; i < Arguments.Count; i++) { Arguments[i].TransformStackIntoVariables(state); } } } }