1 write to _index
System.Linq.Expressions (1)
System\Linq\Expressions\Interpreter\LocalAccess.cs (1)
24_index = index;
26 references to _index
System.Linq.Expressions (26)
System\Linq\Expressions\Interpreter\LocalAccess.cs (26)
30InstructionName + "(" + _index + ")" : 31InstructionName + "(" + cookie + ": " + _index + ")"; 49frame.Data[frame.StackIndex++] = frame.Data[_index]; 55return (index == _index) ? InstructionList.LoadLocalBoxed(index) : null; 71var box = (IStrongBox)frame.Data[_index]!; 89IStrongBox box = frame.Closure![_index]; 107IStrongBox box = frame.Closure![_index]; 130frame.Data[_index] = frame.Peek(); 136return (index == _index) ? InstructionList.AssignLocalBoxed(index) : null; 152frame.Data[_index] = frame.Pop(); 158return (index == _index) ? InstructionList.StoreLocalBoxed(index) : null; 175var box = (IStrongBox)frame.Data[_index]!; 193var box = (IStrongBox)frame.Data[_index]!; 212IStrongBox box = frame.Closure![_index]; 254frame.Data[_index] = null; 260return (index == _index) ? InstructionList.InitImmutableRefBox(index) : null; 279frame.Data[_index] = _defaultValue; 285return (index == _index) ? new ImmutableBox(index, _defaultValue) : null; 305frame.Data[_index] = new StrongBox<object>(_defaultValue); 322frame.Data[_index] = new StrongBox<object>(); 338frame.Data[_index] = new StrongBox<object?>(frame.Data[_index]); 360if (index == _index) 388frame.Data[_index] = _type.IsNullableType() ? 403return (index == _index) ? new MutableBox(index, _type) : null; 439frame.Data[_index] = new StrongBox<object?>(value);