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; } }
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); } }
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); } }
public DebugView(InstructionList list) { _list = list; }
public DebugView(InstructionList list) { ContractUtils.RequiresNotNull(list, nameof(list)); _list = list; }
internal void FixupBranch(InstructionList instructions, int branchIndex) { Debug.Assert(TargetIndex != UnknownIndex); instructions.FixupBranch(branchIndex, TargetIndex - branchIndex); }
public Instruction BoxIfIndexMatches(int index) { return((index == _index) ? InstructionList.LoadLocalBoxed(index) : null); }
public Instruction BoxIfIndexMatches(int index) { return((index == _index) ? InstructionList.InitImmutableRefBox(index) : null); }
internal void FixupBranch(InstructionList instructions, int branchIndex) { Debug.Assert(_targetIndex != UnknownIndex); instructions.FixupBranch(branchIndex, _targetIndex - branchIndex); }
public Instruction BoxIfIndexMatches(int index) { return(index == Index?InstructionList.ParameterBox(index) : null); }
public Instruction BoxIfIndexMatches(int index) { return(index == Index?InstructionList.StoreLocalBoxed(index) : null); }
public DebugView(InstructionList list) { ArgumentNullException.ThrowIfNull(list); _list = list; }
public Instruction?BoxIfIndexMatches(int index) { return(index == Index?InstructionList.AssignLocalBoxed(index) : null); }