Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

86 lines
3.3 KiB
C#

//
// ExpressionDecoderAdapter.cs
//
// Authors:
// Alexander Chebaturkin (chebaturkin@gmail.com)
//
// Copyright (C) 2012 Alexander Chebaturkin
//
// 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 Mono.CodeContracts.Static.AST;
using Mono.CodeContracts.Static.AST.Visitors;
using Mono.CodeContracts.Static.Analysis.HeapAnalysis;
using Mono.CodeContracts.Static.ControlFlow;
namespace Mono.CodeContracts.Static.Analysis.ExpressionAnalysis {
struct ExpressionDecoderAdapter<SymbolicValue, Data, Result, Visitor>
: IExpressionILVisitor<APC, SymbolicValue, SymbolicValue, Data, Result>
where SymbolicValue : IEquatable<SymbolicValue>
where Visitor : ISymbolicExpressionVisitor<LabeledSymbol<APC, SymbolicValue>, LabeledSymbol<APC, SymbolicValue>, SymbolicValue, Data, Result> {
private readonly Visitor visitor;
public ExpressionDecoderAdapter (Visitor visitor)
{
this.visitor = visitor;
}
#region Implementation of IExpressionILVisitor<APC,Type,SymbolicValue,SymbolicValue,Data,Result>
public Result Binary (APC pc, BinaryOperator op, SymbolicValue dest, SymbolicValue operand1, SymbolicValue operand2, Data data)
{
return this.visitor.Binary (Unrefine (pc, dest), op, dest, Unrefine (pc, operand1), Unrefine (pc, operand2), data);
}
public Result Isinst (APC pc, TypeNode type, SymbolicValue dest, SymbolicValue obj, Data data)
{
return this.visitor.Isinst (Unrefine (pc, dest), type, dest, Unrefine (pc, obj), data);
}
public Result LoadNull (APC pc, SymbolicValue dest, Data polarity)
{
return this.visitor.LoadNull (Unrefine (pc, dest), dest, polarity);
}
public Result LoadConst (APC pc, TypeNode type, object constant, SymbolicValue dest, Data data)
{
return this.visitor.LoadConst (Unrefine (pc, dest), type, constant, dest, data);
}
public Result Sizeof (APC pc, TypeNode type, SymbolicValue dest, Data data)
{
return this.visitor.Sizeof (Unrefine (pc, dest), type, dest, data);
}
public Result Unary (APC pc, UnaryOperator op, bool unsigned, SymbolicValue dest, SymbolicValue source, Data data)
{
return this.visitor.Unary (Unrefine (pc, dest), op, unsigned, dest, Unrefine (pc, source), data);
}
private LabeledSymbol<APC, SymbolicValue> Unrefine (APC pc, SymbolicValue dest)
{
return new LabeledSymbol<APC, SymbolicValue> (pc, dest);
}
#endregion
}
}