2 writes to _instructions
ILCompiler.TypeSystem (2)
parent\parent\Common\TypeSystem\IL\Stubs\ILEmitter.cs (2)
40_instructions = Array.Empty<byte>(); 79Array.Resize(ref _instructions, 2 * _instructions.Length + 10);
9 references to _instructions
ILCompiler.TypeSystem (9)
parent\parent\Common\TypeSystem\IL\Stubs\ILEmitter.cs (9)
53if (_length == _instructions.Length) 55_instructions[_length++] = b; 60if (_length + sizeof(ushort) > _instructions.Length) 63BinaryPrimitives.WriteUInt16LittleEndian(_instructions.AsSpan(_length, sizeof(ushort)), value); 69if (_length + sizeof(int) > _instructions.Length) 72BinaryPrimitives.WriteInt32LittleEndian(_instructions.AsSpan(_length, sizeof(int)), value); 79Array.Resize(ref _instructions, 2 * _instructions.Length + 10); 482Span<byte> offsetSpan = _instructions.AsSpan(patch.Offset, sizeof(int)); 781Array.Copy(ilCodeStream._instructions, 0, ilInstructions, copiedLength, ilCodeStream._length);