1 write to _bits
ILCompiler.ReadyToRun (1)
Compiler\ReadyToRunCompilationModuleGroupBase.cs (1)
219
_bits
= new BitArray(((int)compilationIndex) + 1);
23 references to _bits
ILCompiler.ReadyToRun (23)
Compiler\ReadyToRunCompilationModuleGroupBase.cs (23)
220
_bits
.Set((int)compilationIndex, true);
227
if (
_bits
== null)
230
return
_bits
[(int)CompilationUnitIndex.RESERVEDForHasMultipleInexactCompilationUnits];
238
if (
_bits
== null)
241
return
_bits
[(int)CompilationUnitIndex.RESERVEDForHasMultipleCompilationUnits];
247
if (other.
_bits
== null)
255
_bits
[(int)CompilationUnitIndex.RESERVEDForHasMultipleCompilationUnits] = true;
256
_bits
[(int)CompilationUnitIndex.RESERVEDForHasMultipleInexactCompilationUnits] = true;
260
if (other.
_bits
.Length >
_bits
.Length)
261
_bits
.Length = other.
_bits
.Length;
263
if (other.
_bits
.Length <
_bits
.Length)
265
for (int i = 0; i < other.
_bits
.Length; i++)
267
if (other.
_bits
[i])
268
_bits
[i] = true;
273
_bits
.Or(other.
_bits
);
278
for (int i = (int)CompilationUnitIndex.First; i <
_bits
.Length; i++)
280
if (
_bits
[i])
290
_bits
[(int)CompilationUnitIndex.RESERVEDForHasMultipleCompilationUnits] = true;
295
_bits
[(int)CompilationUnitIndex.RESERVEDForHasMultipleInexactCompilationUnits] = true;