22 references to InstructionOffset
Mono.Cecil (22)
Mono.Cecil.Cil\CodeReader.cs (8)
406
async_method.catch_handler = new
InstructionOffset
(GetInstruction (async_method.catch_handler.Offset));
410
async_method.yields [i] = new
InstructionOffset
(GetInstruction (async_method.yields [i].Offset));
414
async_method.resumes [i] = new
InstructionOffset
(GetInstruction (async_method.resumes [i].Offset));
423
scope.start = new
InstructionOffset
(GetInstruction (scope.start.Offset));
428
: new
InstructionOffset
(end_instruction);
440
sequence_point.offset = new
InstructionOffset
(instruction);
454
scope.Start = new
InstructionOffset
(start_instruction);
458
? new
InstructionOffset
(end_instruction)
Mono.Cecil.Cil\MethodBody.cs (8)
429
result = new
InstructionOffset
(existing_instruction);
442
return new
InstructionOffset
(cache_instruction);
452
return new
InstructionOffset
(i == 0 ? items [0] : items [i - 1]);
455
return new
InstructionOffset
(items [i]);
458
return new
InstructionOffset
(i == 0 ? items [0] : items [i - 1]);
477
return new
InstructionOffset
(i == 0 ? items [0] : items [i - 1]);
482
return new
InstructionOffset
(cache_instruction);
485
return new
InstructionOffset
(i == 0 ? items [0] : items [i - 1]);
Mono.Cecil.Cil\SequencePoint.cs (1)
72
this.offset = new
InstructionOffset
(instruction);
Mono.Cecil.Cil\Symbols.cs (5)
168
this.start = new
InstructionOffset
(start);
171
this.end = new
InstructionOffset
(end);
563
this.catch_handler = new
InstructionOffset
(catchHandler);
596
this.start = new
InstructionOffset
(start);
597
this.end = end != null ? new
InstructionOffset
(end) : new InstructionOffset ();