Rizin
unix-like reverse engineering framework and cli tools
opcode_38.c
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: 2020 FXTi <zjxiang1998@gmail.com>
2 // SPDX-License-Identifier: LGPL-3.0-only
3 
4 #include "opcode.h"
5 
7  pyc_opcodes *ret = opcode_37();
8  if (!ret) {
9  return NULL;
10  }
11 
12  ret->version_sig = (void *(*)())opcode_38;
13 
14  // These are removed since 3.7...
15  rm_op(.op_obj = ret->opcodes, .op_name = "BREAK_LOOP", .op_code = 80);
16  rm_op(.op_obj = ret->opcodes, .op_name = "CONTINUE_LOOP", .op_code = 119);
17  rm_op(.op_obj = ret->opcodes, .op_name = "SETUP_LOOP", .op_code = 120);
18  rm_op(.op_obj = ret->opcodes, .op_name = "SETUP_EXCEPT", .op_code = 121);
19 
20  // These are new since Python 3.7
21 
22  // OP NAME OPCODE POP PUSH
23  // --------------------------------------------
24  def_op(.op_obj = ret->opcodes, .op_name = "ROT_FOUR", .op_code = 6, .pop = 4, .push = 4);
25  def_op(.op_obj = ret->opcodes, .op_name = "BEGIN_FINALLY", .op_code = 53, .pop = 0, .push = 1);
26  def_op(.op_obj = ret->opcodes, .op_name = "END_ASYNC_FOR", .op_code = 54, .pop = 7, .push = 0); // POP is 0, when not 7
27  def_op(.op_obj = ret->opcodes, .op_name = "END_FINALLY", .op_code = 88, .pop = 1, .push = 0); // POP is 6, when not 1
28  jrel_op(.op_obj = ret->opcodes, .op_name = "CALL_FINALLY", .op_code = 162, .pop = 0, .push = 1);
29  nargs_op(.op_obj = ret->opcodes, .op_name = "POP_FINALLY", .op_code = 163, .pop = 0, .push = 0); // PUSH/POP vary
30 
32  add_arg_fmt(ret, "CALL_FUNCTION_KW", format_CALL_FUNCTION_KW_36);
33  add_arg_fmt(ret, "CALL_FUNCTION_EX", format_CALL_FUNCTION_EX_36);
34  add_arg_fmt(ret, "MAKE_FUNCTION", format_MAKE_FUNCTION_arg_36);
35  add_arg_fmt(ret, "FORMAT_VALUE", format_value_flags_36);
36  add_arg_fmt(ret, "EXTENDED_ARG", format_extended_arg_36);
37 
38  return ret;
39 }
#define NULL
Definition: cris-opc.c:27
RZ_API void rz_list_purge(RZ_NONNULL RzList *list)
Empties the list without freeing the list pointer.
Definition: list.c:120
void add_arg_fmt(pyc_opcodes *ret, char *op_name, const char *(*formatter)(ut32 oparg))
Definition: opcode.c:234
pyc_opcodes * opcode_38(void)
Definition: opcode_38.c:6
#define nargs_op(...)
Definition: opcode.h:171
pyc_opcodes * opcode_37(void)
Definition: opcode_37.c:6
const char * format_MAKE_FUNCTION_arg_36(ut32 oparg)
const char * format_CALL_FUNCTION_KW_36(ut32 oparg)
const char * format_extended_arg_36(ut32 oparg)
#define jrel_op(...)
Definition: opcode.h:168
#define def_op(...)
Definition: opcode.h:127
#define rm_op(...)
Definition: opcode.h:175
const char * format_CALL_FUNCTION_EX_36(ut32 oparg)
const char * format_value_flags_36(ut32 oparg)
char * op_name
Definition: opcode.h:38
void *(* version_sig)()
Definition: opcode.h:49
pyc_opcode_object * opcodes
Definition: opcode.h:51
RzList * opcode_arg_fmt
Definition: opcode.h:50