Ejemplo n.º 1
0
        internal void Mark(InstructionList instructions)
        {
            //ContractUtils.Requires(_targetIndex == UnknownIndex && _stackDepth == UnknownDepth && _continuationStackDepth == UnknownDepth);

            _stackDepth = instructions.CurrentStackDepth;
            _continuationStackDepth = instructions.CurrentContinuationsDepth;
            _targetIndex = instructions.Count;

            if (_forwardBranchFixups != null)
            {
                foreach (var branchIndex in _forwardBranchFixups)
                {
                    FixupBranch(instructions, branchIndex);
                }
                _forwardBranchFixups = null;
            }
        }
Ejemplo n.º 2
0
        internal void AddBranch(InstructionList instructions, int branchIndex)
        {
            Debug.Assert(((_targetIndex == UnknownIndex) == (_stackDepth == UnknownDepth)));
            Debug.Assert(((_targetIndex == UnknownIndex) == (_continuationStackDepth == UnknownDepth)));

            if (_targetIndex == UnknownIndex)
            {
                if (_forwardBranchFixups == null)
                {
                    _forwardBranchFixups = new List<int>();
                }
                _forwardBranchFixups.Add(branchIndex);
            }
            else
            {
                FixupBranch(instructions, branchIndex);
            }
        }
Ejemplo n.º 3
0
        internal void Box(ParameterExpression variable, InstructionList instructions)
        {
            var scope = _variables[variable];

            LocalVariable local = scope.Variable;
            Debug.Assert(!local.IsBoxed && !local.InClosure);
            _variables[variable].Variable.IsBoxed = true;

            int curChild = 0;
            for (int i = scope.Start; i < scope.Stop && i < instructions.Count; i++)
            {
                if (scope.ChildScopes != null && scope.ChildScopes[curChild].Start == i)
                {
                    // skip boxing in the child scope
                    var child = scope.ChildScopes[curChild];
                    i = child.Stop;

                    curChild++;
                    continue;
                }

                instructions.SwitchToBoxed(local.Index, i);
            }
        }
Ejemplo n.º 4
0
 public DebugView(InstructionList list)
 {
     _list = list;
 }
Ejemplo n.º 5
0
 public DebugView(InstructionList list)
 {
     ContractUtils.RequiresNotNull(list, nameof(list));
     _list = list;
 }
Ejemplo n.º 6
0
 internal void FixupBranch(InstructionList instructions, int branchIndex)
 {
     Debug.Assert(TargetIndex != UnknownIndex);
     instructions.FixupBranch(branchIndex, TargetIndex - branchIndex);
 }
Ejemplo n.º 7
0
 public Instruction BoxIfIndexMatches(int index)
 {
     return((index == _index) ? InstructionList.LoadLocalBoxed(index) : null);
 }
Ejemplo n.º 8
0
 public Instruction BoxIfIndexMatches(int index)
 {
     return((index == _index) ? InstructionList.InitImmutableRefBox(index) : null);
 }
Ejemplo n.º 9
0
 internal void FixupBranch(InstructionList instructions, int branchIndex)
 {
     Debug.Assert(_targetIndex != UnknownIndex);
     instructions.FixupBranch(branchIndex, _targetIndex - branchIndex);
 }
Ejemplo n.º 10
0
 public Instruction BoxIfIndexMatches(int index)
 {
     return(index == Index?InstructionList.ParameterBox(index) : null);
 }
Ejemplo n.º 11
0
 public Instruction BoxIfIndexMatches(int index)
 {
     return(index == Index?InstructionList.StoreLocalBoxed(index) : null);
 }
Ejemplo n.º 12
0
 public DebugView(InstructionList list)
 {
     ArgumentNullException.ThrowIfNull(list);
     _list = list;
 }
Ejemplo n.º 13
0
 public Instruction?BoxIfIndexMatches(int index)
 {
     return(index == Index?InstructionList.AssignLocalBoxed(index) : null);
 }
Ejemplo n.º 14
0
 public DebugView(InstructionList list)
 {
     _list = list;
 }