Rizin
unix-like reverse engineering framework and cli tools
opcode_22.c File Reference
#include "opcode.h"

Go to the source code of this file.

Functions

pyc_opcodesopcode_22 (void)
 

Function Documentation

◆ opcode_22()

pyc_opcodes* opcode_22 ( void  )

Definition at line 6 of file opcode_22.c.

6  {
7  pyc_opcodes *ret = opcode_2x();
8  if (!ret) {
9  return NULL;
10  }
11 
12  ret->version_sig = (void *(*)())opcode_22;
13 
14  // 2.2 Bytecodes not in 2.3
15  def_op(.op_obj = ret->opcodes, .op_name = "FOR_LOOP", .op_code = 114);
16  def_op(.op_obj = ret->opcodes, .op_name = "SET_LINENO", .op_code = 127, .pop = 0, .push = 0);
17 
19  add_arg_fmt(ret, "EXTENDED_ARG", format_extended_arg);
20 
21  return ret;
22 }
#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_22(void)
Definition: opcode_22.c:6
const char * format_extended_arg(ut32 oparg)
Definition: opcode_arg_fmt.c:6
pyc_opcodes * opcode_2x(void)
Definition: opcode_2x.c:6
#define def_op(...)
Definition: opcode.h:127
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

References add_arg_fmt(), def_op, format_extended_arg(), NULL, pyc_opcode_object::op_name, opcode_22(), opcode_2x(), pyc_opcodes::opcode_arg_fmt, pyc_opcodes::opcodes, rz_list_purge(), and pyc_opcodes::version_sig.

Referenced by opcode_21(), and opcode_22().