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