2 writes to _nextConstantIndex
ILCompiler.Compiler (2)
IL\RvaIntrinsicPatternAnalyzer.cs (2)
121
_nextConstantIndex
= (_nextConstantIndex + 1) % MaxInitializeArrayArguments;
136
_nextConstantIndex
= 0;
3 references to _nextConstantIndex
ILCompiler.Compiler (3)
IL\RvaIntrinsicPatternAnalyzer.cs (3)
120
_recentConstants[
_nextConstantIndex
] = value;
121
_nextConstantIndex = (
_nextConstantIndex
+ 1) % MaxInitializeArrayArguments;
141
int firstConstantIndex = _recentConstantCount == MaxInitializeArrayArguments ?
_nextConstantIndex
: 0;