aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Translation/ILLabel.cs
blob: 17a31783df8760c1257ed16072273a050e8d24e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System.Reflection.Emit;

namespace ChocolArm64.Translation
{
    class ILLabel : IILEmit
    {
        private bool _hasLabel;

        private Label _label;

        public void Emit(ILMethodBuilder context)
        {
            context.Generator.MarkLabel(GetLabel(context));
        }

        public Label GetLabel(ILMethodBuilder context)
        {
            if (!_hasLabel)
            {
                _label = context.Generator.DefineLabel();

                _hasLabel = true;
            }

            return _label;
        }
    }
}