1 write to _bits
ILCompiler.ReadyToRun (1)
Compiler\ReadyToRunCompilationModuleGroupBase.cs (1)
239
_bits
= new BitArray(((int)compilationIndex) + 1);
23 references to _bits
ILCompiler.ReadyToRun (23)
Compiler\ReadyToRunCompilationModuleGroupBase.cs (23)
240
_bits
.Set((int)compilationIndex, true);
247
if (
_bits
== null)
250
return
_bits
[(int)CompilationUnitIndex.RESERVEDForHasMultipleInexactCompilationUnits];
258
if (
_bits
== null)
261
return
_bits
[(int)CompilationUnitIndex.RESERVEDForHasMultipleCompilationUnits];
267
if (other.
_bits
== null)
275
_bits
[(int)CompilationUnitIndex.RESERVEDForHasMultipleCompilationUnits] = true;
276
_bits
[(int)CompilationUnitIndex.RESERVEDForHasMultipleInexactCompilationUnits] = true;
280
if (other.
_bits
.Length >
_bits
.Length)
281
_bits
.Length = other.
_bits
.Length;
283
if (other.
_bits
.Length <
_bits
.Length)
285
for (int i = 0; i < other.
_bits
.Length; i++)
287
if (other.
_bits
[i])
288
_bits
[i] = true;
293
_bits
.Or(other.
_bits
);
298
for (int i = (int)CompilationUnitIndex.First; i <
_bits
.Length; i++)
300
if (
_bits
[i])
310
_bits
[(int)CompilationUnitIndex.RESERVEDForHasMultipleCompilationUnits] = true;
315
_bits
[(int)CompilationUnitIndex.RESERVEDForHasMultipleInexactCompilationUnits] = true;