aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/IntermediateRepresentation/Instruction.cs
blob: 4c4ecb8f2d576f5cf1a42286c3f51650d961b7f7 (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
73
74
75
76
77
78
79
namespace ARMeilleure.IntermediateRepresentation
{
    enum Instruction
    {
        Add,
        BitwiseAnd,
        BitwiseExclusiveOr,
        BitwiseNot,
        BitwiseOr,
        Branch,
        BranchIfFalse,
        BranchIfTrue,
        ByteSwap,
        Call,
        CompareAndSwap128,
        CompareEqual,
        CompareGreater,
        CompareGreaterOrEqual,
        CompareGreaterOrEqualUI,
        CompareGreaterUI,
        CompareLess,
        CompareLessOrEqual,
        CompareLessOrEqualUI,
        CompareLessUI,
        CompareNotEqual,
        ConditionalSelect,
        ConvertI64ToI32,
        ConvertToFP,
        ConvertToFPUI,
        Copy,
        CountLeadingZeros,
        Divide,
        DivideUI,
        Load,
        Load16,
        Load8,
        LoadArgument,
        Multiply,
        Multiply64HighSI,
        Multiply64HighUI,
        Negate,
        Return,
        RotateRight,
        ShiftLeft,
        ShiftRightSI,
        ShiftRightUI,
        SignExtend16,
        SignExtend32,
        SignExtend8,
        StackAlloc,
        Store,
        Store16,
        Store8,
        Subtract,
        VectorCreateScalar,
        VectorExtract,
        VectorExtract16,
        VectorExtract8,
        VectorInsert,
        VectorInsert16,
        VectorInsert8,
        VectorOne,
        VectorZero,
        VectorZeroUpper64,
        VectorZeroUpper96,
        ZeroExtend16,
        ZeroExtend32,
        ZeroExtend8,

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