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); 227if (_bits == null) 230return _bits[(int)CompilationUnitIndex.RESERVEDForHasMultipleInexactCompilationUnits]; 238if (_bits == null) 241return _bits[(int)CompilationUnitIndex.RESERVEDForHasMultipleCompilationUnits]; 247if (other._bits == null) 255_bits[(int)CompilationUnitIndex.RESERVEDForHasMultipleCompilationUnits] = true; 256_bits[(int)CompilationUnitIndex.RESERVEDForHasMultipleInexactCompilationUnits] = true; 260if (other._bits.Length > _bits.Length) 261_bits.Length = other._bits.Length; 263if (other._bits.Length < _bits.Length) 265for (int i = 0; i < other._bits.Length; i++) 267if (other._bits[i]) 268_bits[i] = true; 273_bits.Or(other._bits); 278for (int i = (int)CompilationUnitIndex.First; i < _bits.Length; i++) 280if (_bits[i]) 290_bits[(int)CompilationUnitIndex.RESERVEDForHasMultipleCompilationUnits] = true; 295_bits[(int)CompilationUnitIndex.RESERVEDForHasMultipleInexactCompilationUnits] = true;