Advertisement
Guest User

Untitled

a guest
Feb 25th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.17 KB | None | 0 0
  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.  
  8.  
  9. /* Instruction opcodes for compiled code */
  10. #define POP_TOP 1
  11. #define ROT_TWO 2
  12. #define ROT_THREE 3
  13. #define DUP_TOP 4
  14. #define DUP_TOP_TWO 5
  15. #define ROT_FOUR 6
  16. #define NOP 9
  17. #define UNARY_POSITIVE 10
  18. #define UNARY_NEGATIVE 11
  19. #define UNARY_NOT 12
  20. #define UNARY_INVERT 15
  21. #define BINARY_MATRIX_MULTIPLY 16
  22. #define INPLACE_MATRIX_MULTIPLY 17
  23. #define BINARY_POWER 19
  24. #define BINARY_MULTIPLY 20
  25. #define BINARY_MODULO 22
  26. #define BINARY_ADD 23
  27. #define BINARY_SUBTRACT 24
  28. #define BINARY_SUBSCR 25
  29. #define BINARY_FLOOR_DIVIDE 26
  30. #define BINARY_TRUE_DIVIDE 27
  31. #define INPLACE_FLOOR_DIVIDE 28
  32. #define INPLACE_TRUE_DIVIDE 29
  33. #define GET_AITER 50
  34. #define GET_ANEXT 51
  35. #define BEFORE_ASYNC_WITH 52
  36. #define BEGIN_FINALLY 53
  37. #define INPLACE_ADD 55
  38. #define INPLACE_SUBTRACT 56
  39. #define INPLACE_MULTIPLY 57
  40. #define INPLACE_MODULO 59
  41. #define STORE_SUBSCR 60
  42. #define DELETE_SUBSCR 61
  43. #define BINARY_LSHIFT 62
  44. #define BINARY_RSHIFT 63
  45. #define BINARY_AND 64
  46. #define BINARY_XOR 65
  47. #define BINARY_OR 66
  48. #define INPLACE_POWER 67
  49. #define GET_ITER 68
  50. #define GET_YIELD_FROM_ITER 69
  51. #define PRINT_EXPR 70
  52. #define LOAD_BUILD_CLASS 71
  53. #define YIELD_FROM 72
  54. #define GET_AWAITABLE 73
  55. #define INPLACE_LSHIFT 75
  56. #define INPLACE_RSHIFT 76
  57. #define INPLACE_AND 77
  58. #define INPLACE_XOR 78
  59. #define INPLACE_OR 79
  60. #define WITH_CLEANUP_START 81
  61. #define WITH_CLEANUP_FINISH 82
  62. #define RETURN_VALUE 83
  63. #define IMPORT_STAR 84
  64. #define SETUP_ANNOTATIONS 85
  65. #define YIELD_VALUE 86
  66. #define POP_BLOCK 87
  67. #define END_FINALLY 88
  68. #define POP_EXCEPT 89
  69. #define HAVE_ARGUMENT 90
  70. #define STORE_NAME 90
  71. #define DELETE_NAME 91
  72. #define UNPACK_SEQUENCE 92
  73. #define FOR_ITER 93
  74. #define UNPACK_EX 94
  75. #define STORE_ATTR 95
  76. #define DELETE_ATTR 96
  77. #define STORE_GLOBAL 97
  78. #define DELETE_GLOBAL 98
  79. #define LOAD_CONST 100
  80. #define LOAD_NAME 101
  81. #define BUILD_TUPLE 102
  82. #define BUILD_LIST 103
  83. #define BUILD_SET 104
  84. #define BUILD_MAP 105
  85. #define LOAD_ATTR 106
  86. #define COMPARE_OP 107
  87. #define IMPORT_NAME 108
  88. #define IMPORT_FROM 109
  89. #define JUMP_FORWARD 110
  90. #define JUMP_IF_FALSE_OR_POP 111
  91. #define JUMP_IF_TRUE_OR_POP 112
  92. #define JUMP_ABSOLUTE 113
  93. #define POP_JUMP_IF_FALSE 114
  94. #define POP_JUMP_IF_TRUE 115
  95. #define LOAD_GLOBAL 116
  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. #define CALL_FINALLY 162
  129. #define POP_FINALLY 163
  130. #define CALL_UNARY_FUNCTIONS 200
  131.  
  132. /* EXCEPT_HANDLER is a special, implicit block type which is created when
  133. entering an except handler. It is not an opcode but we define it here
  134. as we want it to be available to both frameobject.c and ceval.c, while
  135. remaining private.*/
  136. #define EXCEPT_HANDLER 257
  137.  
  138.  
  139. enum cmp_op {PyCmp_LT=Py_LT, PyCmp_LE=Py_LE, PyCmp_EQ=Py_EQ, PyCmp_NE=Py_NE,
  140. PyCmp_GT=Py_GT, PyCmp_GE=Py_GE, PyCmp_IN, PyCmp_NOT_IN,
  141. PyCmp_IS, PyCmp_IS_NOT, PyCmp_EXC_MATCH, PyCmp_BAD};
  142.  
  143. #define HAS_ARG(op) ((op) >= HAVE_ARGUMENT)
  144.  
  145. #ifdef __cplusplus
  146. }
  147. #endif
  148. #endif /* !Py_OPCODE_H */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement