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); 247if (_bits == null) 250return _bits[(int)CompilationUnitIndex.RESERVEDForHasMultipleInexactCompilationUnits]; 258if (_bits == null) 261return _bits[(int)CompilationUnitIndex.RESERVEDForHasMultipleCompilationUnits]; 267if (other._bits == null) 275_bits[(int)CompilationUnitIndex.RESERVEDForHasMultipleCompilationUnits] = true; 276_bits[(int)CompilationUnitIndex.RESERVEDForHasMultipleInexactCompilationUnits] = true; 280if (other._bits.Length > _bits.Length) 281_bits.Length = other._bits.Length; 283if (other._bits.Length < _bits.Length) 285for (int i = 0; i < other._bits.Length; i++) 287if (other._bits[i]) 288_bits[i] = true; 293_bits.Or(other._bits); 298for (int i = (int)CompilationUnitIndex.First; i < _bits.Length; i++) 300if (_bits[i]) 310_bits[(int)CompilationUnitIndex.RESERVEDForHasMultipleCompilationUnits] = true; 315_bits[(int)CompilationUnitIndex.RESERVEDForHasMultipleInexactCompilationUnits] = true;