19 references to InstructionOffset
Mono.Cecil (9)
Mono.Cecil.Cil\SequencePoint.cs (1)
63
this.offset = new
InstructionOffset
(offset);
Mono.Cecil.Cil\Symbols.cs (4)
557
this.catch_handler = new
InstructionOffset
(catchHandler);
569
this.catch_handler = new
InstructionOffset
(-1);
590
this.start = new
InstructionOffset
(start);
591
this.end = new
InstructionOffset
(end);
Mono.Cecil\AssemblyReader.cs (4)
2943
start = new
InstructionOffset
((int) record.Col4),
2944
end = new
InstructionOffset
((int) (record.Col4 + record.Col5)),
3216
yields.Add (new
InstructionOffset
(signature.ReadInt32 ()));
3217
resumes.Add (new
InstructionOffset
(signature.ReadInt32 ()));
Mono.Cecil.Mdb (4)
Mono.Cecil.Mdb\MdbReader.cs (4)
142
Start = new
InstructionOffset
(0),
143
End = new
InstructionOffset
(info.code_size),
151
scope.Start = new
InstructionOffset
(block.StartOffset);
152
scope.End = new
InstructionOffset
(block.EndOffset);
Mono.Cecil.Pdb (6)
Mono.Cecil.Pdb\NativePdbReader.cs (6)
112
: new ScopeDebugInformation { Start = new
InstructionOffset
(0), End = new
InstructionOffset
((int) function.length) };
139
async_debug_info.Yields.Add (new
InstructionOffset
((int) synchronization_point.SynchronizeOffset));
140
async_debug_info.Resumes.Add (new
InstructionOffset
((int) synchronization_point.ContinuationOffset));
166
parent.Start = new
InstructionOffset
((int) scope.offset);
167
parent.End = new
InstructionOffset
((int) (scope.offset + scope.length));