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)
30
InstructionName + "(" +
_index
+ ")" :
31
InstructionName + "(" + cookie + ": " +
_index
+ ")";
49
frame.Data[frame.StackIndex++] = frame.Data[
_index
];
55
return (index ==
_index
) ? InstructionList.LoadLocalBoxed(index) : null;
71
var box = (IStrongBox)frame.Data[
_index
]!;
89
IStrongBox box = frame.Closure![
_index
];
107
IStrongBox box = frame.Closure![
_index
];
130
frame.Data[
_index
] = frame.Peek();
136
return (index ==
_index
) ? InstructionList.AssignLocalBoxed(index) : null;
152
frame.Data[
_index
] = frame.Pop();
158
return (index ==
_index
) ? InstructionList.StoreLocalBoxed(index) : null;
175
var box = (IStrongBox)frame.Data[
_index
]!;
193
var box = (IStrongBox)frame.Data[
_index
]!;
212
IStrongBox box = frame.Closure![
_index
];
254
frame.Data[
_index
] = null;
260
return (index ==
_index
) ? InstructionList.InitImmutableRefBox(index) : null;
279
frame.Data[
_index
] = _defaultValue;
285
return (index ==
_index
) ? new ImmutableBox(index, _defaultValue) : null;
305
frame.Data[
_index
] = new StrongBox<object>(_defaultValue);
322
frame.Data[
_index
] = new StrongBox<object>();
338
frame.Data[
_index
] = new StrongBox<object?>(frame.Data[
_index
]);
360
if (index ==
_index
)
388
frame.Data[
_index
] = _type.IsNullableType() ?
403
return (index ==
_index
) ? new MutableBox(index, _type) : null;
439
frame.Data[
_index
] = new StrongBox<object?>(value);