9 references to InstructionEncoder
ILAssembler (1)
EntityRegistry.cs (1)
1302public InstructionEncoder MethodBody { get; } = new(new BlobBuilder(), new ControlFlowBuilder());
ILCompiler.Compiler (7)
Compiler\MstatObjectDumper.cs (7)
33private readonly InstructionEncoder _types = new InstructionEncoder(new BlobBuilder()); 34private readonly InstructionEncoder _fieldRvas = new InstructionEncoder(new BlobBuilder()); 35private readonly InstructionEncoder _frozenObjects = new InstructionEncoder(new BlobBuilder()); 36private readonly InstructionEncoder _manifestResources = new InstructionEncoder(new BlobBuilder()); 165var methods = new InstructionEncoder(new BlobBuilder()); 176var blobs = new InstructionEncoder(new BlobBuilder()); 183var deduplicatedMethods = new InstructionEncoder(new BlobBuilder());
System.Reflection.Emit (1)
System\Reflection\Emit\ILGeneratorImpl.cs (1)
44_il = new InstructionEncoder(_builder, _cfBuilder);