2018-10-31 02:43:02 +01:00
|
|
|
using System.Reflection.Emit;
|
|
|
|
|
|
|
|
namespace ChocolArm64.Translation
|
|
|
|
{
|
|
|
|
class ILLabel : IILEmit
|
|
|
|
{
|
|
|
|
private bool _hasLabel;
|
|
|
|
|
|
|
|
private Label _lbl;
|
|
|
|
|
2018-12-11 01:58:52 +01:00
|
|
|
public void Emit(ILMethodBuilder context)
|
2018-10-31 02:43:02 +01:00
|
|
|
{
|
|
|
|
context.Generator.MarkLabel(GetLabel(context));
|
|
|
|
}
|
|
|
|
|
2018-12-11 01:58:52 +01:00
|
|
|
public Label GetLabel(ILMethodBuilder context)
|
2018-10-31 02:43:02 +01:00
|
|
|
{
|
|
|
|
if (!_hasLabel)
|
|
|
|
{
|
|
|
|
_lbl = context.Generator.DefineLabel();
|
|
|
|
|
|
|
|
_hasLabel = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _lbl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|