1 write to _il
System.Reflection.Emit (1)
System\Reflection\Emit\ILGeneratorImpl.cs (1)
44
_il
= new InstructionEncoder(_builder, _cfBuilder);
23 references to _il
System.Reflection.Emit (23)
System\Reflection\Emit\ILGeneratorImpl.cs (23)
45
_scope = new Scope(
_il
.Offset, parent: null);
51
internal InstructionEncoder Instructions =>
_il
;
84
public override int ILOffset =>
_il
.Offset;
238
Scope newScope = new Scope(
_il
.Offset, _currentScope);
255
LabelHandle metadataLabel =
_il
.DefineLabel();
289
_il
.OpCode((ILOpCode)opcode.Value);
411
_il
.CodeBuilder.WriteInt64(arg);
418
_il
.Token(_moduleBuilder.GetStringMetadataToken(str));
470
(member, new BlobWriter(
_il
.CodeBuilder.ReserveBytes(sizeof(int)))));
474
_il
.Token(MetadataTokens.GetToken(handle));
512
_il
.Branch((ILOpCode)opcode.Value, labelInfo._metaLabel);
531
SwitchInstructionEncoder switchEncoder =
_il
.Switch(labels.Length);
556
_il
.LoadLocalAddress(tempVal);
560
_il
.LoadLocal(tempVal);
564
_il
.StoreLocal(tempVal);
587
_il
.Token(_moduleBuilder.GetSignatureMetadataToken(signature));
710
_il
.Token(_moduleBuilder.GetSignatureToken(callingConvention, returnType, parameterTypes, optionalParameterTypes));
718
_il
.Token(_moduleBuilder.GetSignatureToken(unmanagedCallConv, returnType, parameterTypes));
778
_currentScope._endOffset =
_il
.Offset;
791
_il
.MarkLabel(labelInfo._metaLabel);
792
labelInfo._position =
_il
.Offset;
831
sequencePoints.Add(new SequencePoint(
_il
.Offset, startLine, startColumn, endLine, endColumn));
835
sequencePoints = new List<SequencePoint> { new SequencePoint(
_il
.Offset, startLine, startColumn, endLine, endColumn) };