Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

opcode.h 5.0 KB

You have to be logged in to leave a comment. Sign In
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
  1. /* Auto-generated by Tools/scripts/generate_opcode_h.py */
  2. #ifndef Py_OPCODE_H
  3. #define Py_OPCODE_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. /* Instruction opcodes for compiled code */
  8. #define POP_TOP 1
  9. #define ROT_TWO 2
  10. #define ROT_THREE 3
  11. #define DUP_TOP 4
  12. #define DUP_TOP_TWO 5
  13. #define NOP 9
  14. #define UNARY_POSITIVE 10
  15. #define UNARY_NEGATIVE 11
  16. #define UNARY_NOT 12
  17. #define UNARY_INVERT 15
  18. #define BINARY_MATRIX_MULTIPLY 16
  19. #define INPLACE_MATRIX_MULTIPLY 17
  20. #define BINARY_POWER 19
  21. #define BINARY_MULTIPLY 20
  22. #define BINARY_MODULO 22
  23. #define BINARY_ADD 23
  24. #define BINARY_SUBTRACT 24
  25. #define BINARY_SUBSCR 25
  26. #define BINARY_FLOOR_DIVIDE 26
  27. #define BINARY_TRUE_DIVIDE 27
  28. #define INPLACE_FLOOR_DIVIDE 28
  29. #define INPLACE_TRUE_DIVIDE 29
  30. #define GET_AITER 50
  31. #define GET_ANEXT 51
  32. #define BEFORE_ASYNC_WITH 52
  33. #define INPLACE_ADD 55
  34. #define INPLACE_SUBTRACT 56
  35. #define INPLACE_MULTIPLY 57
  36. #define INPLACE_MODULO 59
  37. #define STORE_SUBSCR 60
  38. #define DELETE_SUBSCR 61
  39. #define BINARY_LSHIFT 62
  40. #define BINARY_RSHIFT 63
  41. #define BINARY_AND 64
  42. #define BINARY_XOR 65
  43. #define BINARY_OR 66
  44. #define INPLACE_POWER 67
  45. #define GET_ITER 68
  46. #define GET_YIELD_FROM_ITER 69
  47. #define PRINT_EXPR 70
  48. #define LOAD_BUILD_CLASS 71
  49. #define YIELD_FROM 72
  50. #define GET_AWAITABLE 73
  51. #define INPLACE_LSHIFT 75
  52. #define INPLACE_RSHIFT 76
  53. #define INPLACE_AND 77
  54. #define INPLACE_XOR 78
  55. #define INPLACE_OR 79
  56. #define BREAK_LOOP 80
  57. #define WITH_CLEANUP_START 81
  58. #define WITH_CLEANUP_FINISH 82
  59. #define RETURN_VALUE 83
  60. #define IMPORT_STAR 84
  61. #define SETUP_ANNOTATIONS 85
  62. #define YIELD_VALUE 86
  63. #define POP_BLOCK 87
  64. #define END_FINALLY 88
  65. #define POP_EXCEPT 89
  66. #define HAVE_ARGUMENT 90
  67. #define STORE_NAME 90
  68. #define DELETE_NAME 91
  69. #define UNPACK_SEQUENCE 92
  70. #define FOR_ITER 93
  71. #define UNPACK_EX 94
  72. #define STORE_ATTR 95
  73. #define DELETE_ATTR 96
  74. #define STORE_GLOBAL 97
  75. #define DELETE_GLOBAL 98
  76. #define LOAD_CONST 100
  77. #define LOAD_NAME 101
  78. #define BUILD_TUPLE 102
  79. #define BUILD_LIST 103
  80. #define BUILD_SET 104
  81. #define BUILD_MAP 105
  82. #define LOAD_ATTR 106
  83. #define COMPARE_OP 107
  84. #define IMPORT_NAME 108
  85. #define IMPORT_FROM 109
  86. #define JUMP_FORWARD 110
  87. #define JUMP_IF_FALSE_OR_POP 111
  88. #define JUMP_IF_TRUE_OR_POP 112
  89. #define JUMP_ABSOLUTE 113
  90. #define POP_JUMP_IF_FALSE 114
  91. #define POP_JUMP_IF_TRUE 115
  92. #define LOAD_GLOBAL 116
  93. #define CONTINUE_LOOP 119
  94. #define SETUP_LOOP 120
  95. #define SETUP_EXCEPT 121
  96. #define SETUP_FINALLY 122
  97. #define LOAD_FAST 124
  98. #define STORE_FAST 125
  99. #define DELETE_FAST 126
  100. #define RAISE_VARARGS 130
  101. #define CALL_FUNCTION 131
  102. #define MAKE_FUNCTION 132
  103. #define BUILD_SLICE 133
  104. #define LOAD_CLOSURE 135
  105. #define LOAD_DEREF 136
  106. #define STORE_DEREF 137
  107. #define DELETE_DEREF 138
  108. #define CALL_FUNCTION_KW 141
  109. #define CALL_FUNCTION_EX 142
  110. #define SETUP_WITH 143
  111. #define EXTENDED_ARG 144
  112. #define LIST_APPEND 145
  113. #define SET_ADD 146
  114. #define MAP_ADD 147
  115. #define LOAD_CLASSDEREF 148
  116. #define BUILD_LIST_UNPACK 149
  117. #define BUILD_MAP_UNPACK 150
  118. #define BUILD_MAP_UNPACK_WITH_CALL 151
  119. #define BUILD_TUPLE_UNPACK 152
  120. #define BUILD_SET_UNPACK 153
  121. #define SETUP_ASYNC_WITH 154
  122. #define FORMAT_VALUE 155
  123. #define BUILD_CONST_KEY_MAP 156
  124. #define BUILD_STRING 157
  125. #define BUILD_TUPLE_UNPACK_WITH_CALL 158
  126. #define LOAD_METHOD 160
  127. #define CALL_METHOD 161
  128. /* EXCEPT_HANDLER is a special, implicit block type which is created when
  129. entering an except handler. It is not an opcode but we define it here
  130. as we want it to be available to both frameobject.c and ceval.c, while
  131. remaining private.*/
  132. #define EXCEPT_HANDLER 257
  133. enum cmp_op {PyCmp_LT=Py_LT, PyCmp_LE=Py_LE, PyCmp_EQ=Py_EQ, PyCmp_NE=Py_NE,
  134. PyCmp_GT=Py_GT, PyCmp_GE=Py_GE, PyCmp_IN, PyCmp_NOT_IN,
  135. PyCmp_IS, PyCmp_IS_NOT, PyCmp_EXC_MATCH, PyCmp_BAD};
  136. #define HAS_ARG(op) ((op) >= HAVE_ARGUMENT)
  137. #ifdef __cplusplus
  138. }
  139. #endif
  140. #endif /* !Py_OPCODE_H */
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...