aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/IntermediateRepresentation/Instruction.cs
blob: 9bae8d1fba9d8f640e281b04270f761c015d85c1 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
namespace ARMeilleure.IntermediateRepresentation
{
    enum Instruction : ushort
    {
        Add,
        BitwiseAnd,
        BitwiseExclusiveOr,
        BitwiseNot,
        BitwiseOr,
        BranchIf,
        ByteSwap,
        Call,
        Compare,
        CompareAndSwap,
        CompareAndSwap16,
        CompareAndSwap8,
        ConditionalSelect,
        ConvertI64ToI32,
        ConvertToFP,
        ConvertToFPUI,
        Copy,
        CountLeadingZeros,
        Divide,
        DivideUI,
        Load,
        Load16,
        Load8,
        LoadArgument,
        MemoryBarrier,
        Multiply,
        Multiply64HighSI,
        Multiply64HighUI,
        Negate,
        Return,
        RotateRight,
        ShiftLeft,
        ShiftRightSI,
        ShiftRightUI,
        SignExtend16,
        SignExtend32,
        SignExtend8,
        StackAlloc,
        Store,
        Store16,
        Store8,
        Subtract,
        Tailcall,
        VectorCreateScalar,
        VectorExtract,
        VectorExtract16,
        VectorExtract8,
        VectorInsert,
        VectorInsert16,
        VectorInsert8,
        VectorOne,
        VectorZero,
        VectorZeroUpper64,
        VectorZeroUpper96,
        ZeroExtend16,
        ZeroExtend32,
        ZeroExtend8,

        Clobber,
        Extended,
        Fill,
        LoadFromContext,
        Phi,
        Spill,
        SpillArg,
        StoreToContext,
    }
}