Rizin
unix-like reverse engineering framework and cli tools
mipsasm.c File Reference
#include <rz_types.h>
#include <rz_util.h>

Go to the source code of this file.

Functions

static int mips_r (ut8 *b, int op, int rs, int rt, int rd, int sa, int fun)
 
static int mips_i (ut8 *b, int op, int rs, int rt, int imm, int is_branch)
 
static int mips_j (ut8 *b, int op, int addr)
 
static int getreg (const char *p)
 
RZ_IPI int mips_assemble (const char *str, ut64 pc, ut8 *out)
 

Variables

static const char *const regs [33]
 
struct {
   const char *   name
 
   int   type
 
   int   args
 
   int   n
 
   int   x
 
ops []
 

Function Documentation

◆ getreg()

static int getreg ( const char *  p)
static

Definition at line 122 of file mipsasm.c.

122  {
123  int n;
124  if (RZ_STR_ISEMPTY(p)) {
125  RZ_LOG_ERROR("assembler: mips: invalid assembly (missing an argument).\n");
126  return -1;
127  }
128  /* check if it's a register */
129  for (n = 0; regs[n]; n++) {
130  if (!strcmp(p, regs[n])) {
131  return n;
132  }
133  }
134  /* try to convert it into a number */
135  if (p[0] == '-') {
136  n = (int)rz_num_get(NULL, &p[1]);
137  n = -n;
138  } else {
139  n = (int)rz_num_get(NULL, p);
140  }
141  if (n != 0 || p[0] == '0') {
142  return n;
143  }
144  RZ_LOG_ERROR("assembler: mips: invalid reg name (%s) at pos %d.\n", p, n);
145  return -1;
146 }
#define NULL
Definition: cris-opc.c:27
void * p
Definition: libc.cpp:67
static const char *const regs[33]
Definition: mipsasm.c:7
int n
Definition: mipsasm.c:19
#define RZ_LOG_ERROR(fmtstr,...)
Definition: rz_log.h:58
RZ_API ut64 rz_num_get(RzNum *num, const char *str)
Definition: unum.c:172
#define RZ_STR_ISEMPTY(x)
Definition: rz_str.h:67
static int
Definition: sfsocketcall.h:114

References int, n, NULL, p, regs, RZ_LOG_ERROR, rz_num_get(), and RZ_STR_ISEMPTY.

Referenced by mips_assemble().

◆ mips_assemble()

RZ_IPI int mips_assemble ( const char *  str,
ut64  pc,
ut8 out 
)

Definition at line 148 of file mipsasm.c.

148  {
149  int i, hasp;
150  char w0[32], w1[32], w2[32], w3[32];
151  char *s = strdup(str);
152  if (!s) {
153  return -1;
154  }
155 
156  rz_str_replace_char(s, ',', ' ');
157  hasp = rz_str_replace_char(s, '(', ' ');
158  rz_str_replace_char(s, ')', ' ');
159 
160  *out = 0;
161  *w0 = 0;
162  *w1 = 0;
163  *w2 = 0;
164  *w3 = 0;
165 
166  if (!strncmp(s, "jalr", 4) && !strchr(s, ',')) {
167  char opstr[32];
168  const char *arg = strchr(s, ' ');
169  if (arg) {
170  snprintf(opstr, sizeof(opstr), "jalr ra ra %s", arg + 1);
171  free(s);
172  s = strdup(opstr);
173  if (!s) {
174  return -1;
175  }
176  }
177  }
178 
179  sscanf(s, "%31s", w0);
180  if (*w0) {
181  for (i = 0; ops[i].name; i++) {
182  if (!strcmp(ops[i].name, w0)) {
183  switch (ops[i].args) {
184  case 3: sscanf(s, "%31s %31s %31s %31s", w0, w1, w2, w3); break;
185  case -3: sscanf(s, "%31s %31s %31s %31s", w0, w1, w2, w3); break;
186  case 2: sscanf(s, "%31s %31s %31s", w0, w1, w2); break;
187  case -2: sscanf(s, "%31s %31s %31s", w0, w1, w2); break;
188  case 1: sscanf(s, "%31s %31s", w0, w1); break;
189  case -1: sscanf(s, "%31s %31s", w0, w1); break;
190  case 0: sscanf(s, "%31s", w0); break;
191  }
192  if (hasp) {
193  char tmp[32];
194  strcpy(tmp, w2);
195  strcpy(w2, w3);
196  strcpy(w3, tmp);
197  }
198  switch (ops[i].type) {
199  case 'R': {
200  // reg order diff per instruction 'group' - ordered to number of likelyhood to call (add > mfhi)
201  int op = 0, rs = 0, rt = 0, rd = 0, sa = 0, fn = 0;
202  bool invalid = false;
203  switch (ops[i].args) {
204  case 3:
205  rs = getreg(w2);
206  rt = getreg(w3);
207  rd = getreg(w1);
208  fn = ops[i].n;
209  break;
210  case -3:
211  if (ops[i].n > -1) {
212  rt = getreg(w2);
213  rd = getreg(w1);
214  sa = getreg(w3);
215  fn = ops[i].n;
216  } else {
217  rs = getreg(w3);
218  rt = getreg(w2);
219  rd = getreg(w1);
220  fn = (-1 * ops[i].n);
221  }
222  break;
223  case 2:
224  rs = getreg(w1);
225  rt = getreg(w2);
226  fn = ops[i].n;
227  break;
228  case 1:
229  rs = getreg(w1);
230  fn = ops[i].n;
231  break;
232  case -2:
233  rs = getreg(w2);
234  rd = getreg(w1);
235  fn = ops[i].n;
236  break;
237  case -1:
238  rd = getreg(w1);
239  fn = ops[i].n;
240  break;
241  case 0:
242  fn = ops[i].n;
243  break;
244  default:
245  invalid = true;
246  break;
247  }
248  if (!invalid) {
249  free(s);
250  return mips_r(out, op, rs, rt, rd, sa, fn);
251  }
252  break;
253  }
254  case 'I':
255  case 'B': {
256  bool invalid = false;
257  int op = 0, rs = 0, rt = 0, imm = 0, is_branch = ops[i].type == 'B';
258  switch (ops[i].args) {
259  case 2:
260  op = ops[i].n;
261  rt = getreg(w1);
262  imm = getreg(w2);
263  break;
264  case 3:
265  op = ops[i].n;
266  rs = getreg(w2);
267  rt = getreg(w1);
268  imm = getreg(w3);
269  break;
270  case -2:
271  if (ops[i].n > 0) {
272  op = ops[i].n;
273  rs = getreg(w1);
274  imm = getreg(w2);
275  } else {
276  op = (-1 * ops[i].n);
277  rs = getreg(w1);
278  rt = ops[i].x;
279  imm = getreg(w2);
280  }
281  break;
282  case -1:
283  if (ops[i].n > 0) {
284  op = ops[i].n;
285  imm = getreg(w1);
286  } else {
287  op = (-1 * ops[i].n);
288  rt = ops[i].x;
289  imm = getreg(w1);
290  }
291  break;
292  default:
293  invalid = true;
294  break;
295  }
296  if (!invalid) {
297  free(s);
298  return mips_i(out, op, rs, rt, imm, is_branch);
299  }
300  break;
301  }
302  case 'J':
303  if (ops[i].args == 1) {
304  free(s);
305  return mips_j(out, ops[i].n, getreg(w1));
306  }
307  break;
308  case 'N': // nop
309  memset(out, 0, 4);
310  free(s);
311  return 4;
312  }
313  free(s);
314  return -1;
315  }
316  }
317  }
318  free(s);
319  return -1;
320 }
#define rs()
#define rd()
#define imm
lzma_index ** i
Definition: index.h:629
static int opstr(RzAsm *a, ut8 *data, const Opcode *op)
Definition: asm_x86_nz.c:4054
const lzma_allocator const uint8_t size_t uint8_t * out
Definition: block.h:528
RZ_API void Ht_() free(HtName_(Ht) *ht)
Definition: ht_inc.c:130
snprintf
Definition: kernel.h:364
return memset(p, 0, total)
static const char struct stat static buf struct stat static buf static idle const char static path static fd const char static len const void static prot const char struct module static image struct kernel_sym static table unsigned char static buf static fsuid unsigned struct dirent unsigned static count const struct iovec static count static pid const void static len static flags const struct sched_param static p static pid static policy struct timespec static tp static suid unsigned fn
Definition: sflib.h:186
return strdup("=SP r13\n" "=LR r14\n" "=PC r15\n" "=A0 r0\n" "=A1 r1\n" "=A2 r2\n" "=A3 r3\n" "=ZF zf\n" "=SF nf\n" "=OF vf\n" "=CF cf\n" "=SN or0\n" "gpr lr .32 56 0\n" "gpr pc .32 60 0\n" "gpr cpsr .32 64 0 ____tfiae_________________qvczn\n" "gpr or0 .32 68 0\n" "gpr tf .1 64.5 0 thumb\n" "gpr ef .1 64.9 0 endian\n" "gpr jf .1 64.24 0 java\n" "gpr qf .1 64.27 0 sticky_overflow\n" "gpr vf .1 64.28 0 overflow\n" "gpr cf .1 64.29 0 carry\n" "gpr zf .1 64.30 0 zero\n" "gpr nf .1 64.31 0 negative\n" "gpr itc .4 64.10 0 if_then_count\n" "gpr gef .4 64.16 0 great_or_equal\n" "gpr r0 .32 0 0\n" "gpr r1 .32 4 0\n" "gpr r2 .32 8 0\n" "gpr r3 .32 12 0\n" "gpr r4 .32 16 0\n" "gpr r5 .32 20 0\n" "gpr r6 .32 24 0\n" "gpr r7 .32 28 0\n" "gpr r8 .32 32 0\n" "gpr r9 .32 36 0\n" "gpr r10 .32 40 0\n" "gpr r11 .32 44 0\n" "gpr r12 .32 48 0\n" "gpr r13 .32 52 0\n" "gpr r14 .32 56 0\n" "gpr r15 .32 60 0\n" "gpr r16 .32 64 0\n" "gpr r17 .32 68 0\n")
static int mips_r(ut8 *b, int op, int rs, int rt, int rd, int sa, int fun)
Definition: mipsasm.c:80
int args
Definition: mipsasm.c:18
static struct @104 ops[]
static int getreg(const char *p)
Definition: mipsasm.c:122
static int mips_j(ut8 *b, int op, int addr)
Definition: mipsasm.c:113
int type
Definition: mipsasm.c:17
static int mips_i(ut8 *b, int op, int rs, int rt, int imm, int is_branch)
Definition: mipsasm.c:94
def is_branch(insn)
static RzSocket * s
Definition: rtr.c:28
RZ_API int rz_str_replace_char(char *s, int a, int b)
Definition: str.c:169
Definition: z80asm.h:102
Definition: dis.c:32

References args, fn, free(), getreg(), i, imm, objdump-m68k::is_branch(), memset(), mips_i(), mips_j(), mips_r(), n, ops, opstr(), out, rd, rs, rz_str_replace_char(), s, snprintf, cmd_descs_generate::str, strdup(), autogen_x86imm::tmp, type, w0, w1, w2, and w3.

Referenced by assemble().

◆ mips_i()

static int mips_i ( ut8 b,
int  op,
int  rs,
int  rt,
int  imm,
int  is_branch 
)
static

Definition at line 94 of file mipsasm.c.

94  {
95  if (rs < 0 || rt < 0) {
96  return -1;
97  }
98  if (is_branch) {
99  if (imm > 4) {
100  imm /= 4;
101  imm--;
102  } else {
103  imm = 0;
104  }
105  }
106  b[3] = ((op << 2) & 0xfc) | ((rs >> 3) & 3);
107  b[2] = (rs << 5) | (rt);
108  b[1] = (imm >> 8) & 0xff;
109  b[0] = imm & 0xff;
110  return 4;
111 }
#define b(i)
Definition: sha256.c:42

References b, imm, objdump-m68k::is_branch(), and rs.

Referenced by mips_assemble().

◆ mips_j()

static int mips_j ( ut8 b,
int  op,
int  addr 
)
static

Definition at line 113 of file mipsasm.c.

113  {
114  addr /= 4;
115  b[3] = ((op << 2) & 0xfc) | ((addr >> 24) & 3);
116  b[2] = (addr >> 16) & 0xff;
117  b[1] = (addr >> 8) & 0xff;
118  b[0] = addr & 0xff;
119  return 4;
120 }
static int addr
Definition: z80asm.c:58

References addr, and b.

Referenced by mips_assemble().

◆ mips_r()

static int mips_r ( ut8 b,
int  op,
int  rs,
int  rt,
int  rd,
int  sa,
int  fun 
)
static

Definition at line 80 of file mipsasm.c.

80  {
81  //^this will keep the below mips_r fuctions working
82  // diff instructions use a diff arg order (add is rd, rs, rt - sll is rd, rt, sa - sllv is rd, rt, rs
83  // static int mips_r (ut8 *b, int op, int rd, int rs, int rt, int sa, int fun) {
84  if (rs < 0 || rt < 0 || rd < 0 || sa < 0) {
85  return -1;
86  }
87  b[3] = ((op << 2) & 0xfc) | ((rs >> 3) & 3); // 2
88  b[2] = (rs << 5) | (rt & 0x1f); // 1
89  b[1] = ((rd << 3) & 0xff) | (sa >> 2); // 0
90  b[0] = (fun & 0x3f) | ((sa & 3) << 6);
91  return 4;
92 }

References b, rd, and rs.

Referenced by mips_assemble().

Variable Documentation

◆ args

int args

Definition at line 18 of file mipsasm.c.

Referenced by analysis_pic_midrange_extract_args(), analysis_pic_midrange_op(), aprintf(), arg_n(), args_parse(), args_preprocessing(), argv_call_cb(), autocompleteFilename(), call_cd(), cmd_agraph_edge(), cmd_agraph_node(), cmd_print_format(), cmd_print_gadget(), concat(), cplus_demangle_fill_extended_operator(), cplus_demangle_type(), cpp_macro_add(), crc_read(), d_expression_1(), d_index_template_argument(), d_make_extended_operator(), DEFINE_HANDLE_TS_FCN_AND_SYMBOL(), encode_instruction(), function_list_print_to_table(), get_args_offset(), get_help(), get_insn_args(), handle_substitution_args(), INST_HANDLER(), is_arg(), is_group_of_args(), is_handled_args(), iter_offsets_common(), libdemangle_handler_objc(), macro_call(), make_program_args(), match_prefix_f(), mips_assemble(), parse_args(), parse_environment(), parse_function(), parse_function_args_and_vars(), parse_real(), parseOpcode(), print_message(), print_mips16_insn_arg(), print_runner(), printf(), processNode(), qnxr_run(), read_file(), replace(), riscv_op(), run_rz_test(), rz_analysis_cc_set(), rz_analysis_function_args(), rz_analysis_function_derive_args(), rz_assert_log(), rz_cmd_call_parsed_args(), rz_cmd_get_help(), rz_cmd_get_help_json(), rz_cmd_macro_add(), rz_cmd_macro_cmd_args(), rz_cmd_parsed_args_new(), rz_cmd_parsed_args_newargs(), rz_cmd_parsed_args_setargs(), rz_cmd_search(), rz_core_file_reopen(), rz_core_file_reopen_debug(), rz_core_notify_begin(), rz_core_notify_done(), rz_core_notify_error(), rz_core_rtr_gdb_run(), rz_core_syscall(), rz_core_visual_define(), rz_debug_native_frames(), rz_il_handler_let(), rz_il_op_new_seqn(), rz_log(), rz_remote_add_handler(), rz_remote_del_handler(), rz_remote_handler(), rz_remote_open_handler(), rz_remote_rap_bg_handler(), rz_remote_rap_handler(), rz_remote_send_handler(), rz_reopen_debug_handler(), rz_str_argv(), rz_subprocess_start(), rz_test_check_jq_available(), rz_test_check_json_test(), rz_test_run_asm_test(), rz_type_format_data_internal(), rz_type_format_struct_size(), rz_vlog(), show_syscall(), subprocess_runner(), substitute(), substitute_args(), system_exec(), thumb_selector(), uv__format_fallback_error(), uv__random_sysctl(), uv__recvmmsg(), uv__sendmmsg(), uv_exepath(), VALIDATOR_EFFECT(), VALIDATOR_PURE(), vreplace(), windbg_open(), window_read(), zip_source_seek(), zip_source_seek_compute_offset(), and zip_source_seek_write().

◆ n

int n

Definition at line 19 of file mipsasm.c.

Referenced by __check_panel_type(), __cons_pal_update_event(), __getUtf8Length(), __getUtf8Length2(), __insert_panel(), __malloc0(), __nth_nibble(), __op_refs(), __print_hexdump_cb(), __print_stack_cb(), __read(), __renew_filter(), __write(), _getopt_internal_r(), _pointer_table(), _write_asm(), _zip_read(), _zip_register_source(), _zip_write(), add_fi(), add_sorted(), adjust_size(), adler32_z(), agraph_get_title(), agraph_node_free(), agraph_print_edges_simple(), agraph_print_node(), agraph_print_node_dot(), agraph_print_node_gml(), agraph_print_nodes(), agraph_set_layout(), agraph_toggle_mini(), agraph_update_seek(), Aindexof(), analop(), analysis_op(), arg(), arg_n(), arm_assemble(), asciiart_backtrace(), assemble(), assign_layers(), autocomplete_breakpoints(), autocomplete_evals(), autocomplete_flags(), autocomplete_functions(), autocomplete_macro(), autocomplete_process_path(), autocomplete_sdb(), autocompleteFilename(), avr_il_update_indirect_address_reg(), backedge_info(), backtrace_vars(), bdot(), bin_class_print_rizin(), block_load_cb(), BMK_loadFiles(), bochs_wait(), bootimg_header_load(), branch(), bsr32(), buf_format(), buf_sparse_resize(), buffer_putalign(), buffer_read(), buffer_write(), build_tree(), bythirds(), calcNegOffset(), cat(), cb_scrcolumns(), cb_scrrows(), cdb_alloc(), cdb_make_finish(), check_changes(), check_mingw(), check_msvcseh(), chmd_fast_find(), cin_get_num(), classdump_c(), clean_line(), cleanup(), clusterAddSlot(), clusterCommand(), clusterCountNonFailingSlaves(), clusterDelSlot(), clusterLoadConfig(), clusterNodeClearSlotBit(), clusterNodeGetSlotBit(), clusterNodeIsInGossipSection(), clusterNodeSetSlotBit(), clusterProcessPacket(), clusterRedirectClient(), clusterSetGossipEntry(), clusterSetMaster(), clusterSetNodeAsMaster(), clusterStartHandshake(), clz32(), cmd_aea(), cmd_descriptor_init(), cmd_print_pv(), cmd_pxr(), cmd_seek_opcode(), compare_zip(), compress_read(), compute_classes(), construct(), consume_r(), consume_s7_r(), consume_u1_r(), consume_u32_r(), consume_u7_r(), contains(), copy_data(), copy_source(), core_cmp_bits(), crc_read(), create(), create_big(), create_layers(), cs_winkernel_calloc(), ctz32(), d_clone_suffix(), decodeULEB128(), decrypt_header(), DEFINE_HANDLE_TS_FCN_AND_SYMBOL(), deflateSetDictionary(), delete_dup_edges(), dem_list_get_n(), detect_data_type(), dfs_node(), disassemble(), Display64BitsSize(), do_debug_trace_calls(), do_read(), dot_trace_create_node(), dot_trace_discover_child(), dot_trace_traverse(), drx_enable(), drx_get(), drx_set(), ds_atabs_option(), ds_print_data_type(), ds_print_ptr(), ds_show_flags(), ef_compare(), emit_branch(), emit_string(), encode_addr16(), encode_addr32(), encode_const_pool16(), encode_st16(), encodeBitMasksWithSize(), encodeImm9(), enough(), eon(), esil_poke_n(), esil_repeat(), exception(), expand_heap(), fcnjoin(), fib(), file_looks_utf8(), fill_window(), filter_import(), find_e_opts(), find_near_of(), gzfilebuf::flushbuf(), fnmatch(), fold_asm_trace(), foreach_pairs(), format_output(), format_type_to_base(), free_array(), free_nodes_kv(), freeClusterNode(), fs__sendfile(), function_load_cb(), gb_custom_daa(), gen_bitlen(), gen_codes(), get_arg(), get_ascii_interned_object(), get_ascii_object(), get_cf_offset(), get_float_object(), get_interned_object(), get_list_object(), get_long_object(), get_right_dummy(), get_set_object(), get_short_ascii_interned_object(), get_short_ascii_object(), get_sibling(), get_small_tuple_object(), get_string_object(), get_stringref_object(), get_sym_code_type(), get_tuple_object(), get_unicode_object(), getarg(), getarg2(), getNodeByQuery(), getnum(), getref(), getreg(), go_string(), gotoWord(), gz_avail(), gz_read(), gz_skip(), gz_write(), gz_zero(), gzgets(), gzheader(), gzlog_open(), gzseek64(), hardware_threads_set(), HEAP_EXPORT(), inet_pton6(), init_block(), init_fi(), is_fi_present(), is_mm_register(), is_near(), is_near_h(), is_number(), is_pointer(), is_special_char(), is_st_register(), is_xmm_register(), isFunctionFlag(), iterator_descend(), layer_sweep(), le_get_symbols_at(), libdemangle_handler_swift(), LLVMFuzzerTestOneInput(), ls_del_n(), ls_insert(), lsop(), LZ4_calloc(), MACH0_(), mach_headerfields(), main(), malloc(), match(), md5_stream(), mem(), mini_RzANode_print(), mips_assemble(), move_current_node(), mpc_and(), mpc_ast_build(), mpc_calloc(), mpc_cleanup(), mpc_count(), mpc_err_count(), mpc_err_or(), mpc_malloc(), mpc_optimise_unretained(), mpc_or(), mpc_parse_fold(), mpc_realloc(), mpca_and(), mpca_count(), mpca_or(), mpca_stmt_afold(), mpca_stmt_fold(), mpcaf_fold_regex(), mpcaf_grammar_and(), mpcaf_grammar_or(), mpcaf_grammar_repeat(), mpcf_all_free(), mpcf_fold_ast(), mpcf_fst(), mpcf_fst_free(), mpcf_input_fst_free(), mpcf_input_nth_free(), mpcf_input_snd_free(), mpcf_input_state_ast(), mpcf_input_strfold(), mpcf_input_trd_free(), mpcf_maths(), mpcf_nth_free(), mpcf_null(), mpcf_re_and(), mpcf_re_or(), mpcf_re_repeat(), mpcf_snd(), mpcf_snd_free(), mpcf_state_ast(), mpcf_strfold(), mpcf_trd(), mpcf_trd_free(), my_log2(), mycmp(), mymemread(), mymemwrite(), n_oper_to_addr(), Nadd(), Naddi(), Nand(), nch(), Ndiv(), Nexp(), Ngt(), Nlt(), Nmod(), Nmul(), Nneg(), node_free(), node_new(), normal_RzANode_print(), Norr(), Nrol(), Nror(), Nset(), Nsetf(), Nshl(), Nshr(), Nsub(), Nsubi(), num_callback(), numpos(), Nxor(), objc_name_toc(), parse(), parser__better_version_exists(), pids_sons_of_r(), pj_kN(), pj_kn(), pj_N(), pj_n(), pkware_decrypt(), pkware_encrypt(), place_dummies(), popRN(), pretrim(), print_flag_orig_name(), print_insn_aarch64(), print_insn_args(), print_insn_xtensa(), print_search_progress(), print_trampolines(), qnxr_read_registers(), qsort(), quick_sort(), rax(), rcc_context(), read_file(), read_times(), reader(), realloc(), reglsop(), regsize32(), regsize64(), regsluop(), round_up_to_mib(), rz_analysis_cc_arg(), rz_analysis_cc_set(), rz_analysis_data(), rz_analysis_data_new(), rz_analysis_fcn_count(), rz_analysis_function_all_opcode_stat_handler(), rz_analysis_function_set_label(), rz_analysis_noreturn_drop(), rz_analysis_rtti_msvc_demangle_class_name(), rz_analysis_syscall_show_handler(), rz_analysis_var_get_constraints_readable(), rz_analysis_var_global_get_constraints_readable(), rz_asm_mnemonics_byname(), rz_asm_pseudo_intN(), rz_asn1_stringify_oid(), rz_base91_decode(), rz_base91_encode(), rz_big_from_hexstr(), rz_big_from_int(), rz_big_new(), rz_bin_mz_get_main_vaddr(), rz_bin_pe_get_exports(), rz_bin_wasm_get_function_name(), rz_block_decrease_handler(), rz_block_increase_handler(), rz_block_max_handler(), rz_buf_append_ut16(), rz_buf_append_ut32(), rz_buf_append_ut64(), rz_buf_fread(), rz_buf_fread_at(), rz_buf_fwrite(), rz_buf_fwrite_at(), rz_cmd_alias(), rz_cmd_debug_continue_mapped_io_handler(), rz_cmd_debug_step_cond_handler(), rz_cmd_help(), rz_cmd_kuery(), rz_cmd_print(), rz_cmd_print_gadget_move_handler(), rz_cmd_search(), rz_coff_symbol_name(), rz_config_node_clone(), rz_config_node_free(), rz_config_readonly(), rz_cons_drop(), rz_cons_newline(), rz_cons_pal_show_gs(), rz_cons_pal_show_rgb(), rz_cons_rgb_parse(), rz_core_analysis_address(), rz_core_analysis_graph_to(), rz_core_analysis_hasrefs_to_depth(), rz_core_analysis_propagate_noreturn(), rz_core_asm_bwdisassemble(), rz_core_asm_plugins_print(), rz_core_autocomplete(), rz_core_bin_apply_symbols(), rz_core_cmd_foreach3(), rz_core_cmd_subst_i(), rz_core_config_init(), rz_core_meta_string_add(), rz_core_print_dump(), rz_core_print_dump_str(), rz_core_print_examine(), rz_core_rtr_add(), rz_core_seek_opcode(), rz_core_seek_opcode_forward(), rz_core_serve(), rz_core_syscall_as_string(), rz_core_visual_analysis(), rz_core_visual_cmd(), rz_core_visual_define(), rz_core_visual_view_rop(), rz_core_write_duplicate_at(), rz_debug_bochs_breakpoint(), rz_debug_bochs_reg_read(), rz_debug_continue_until_optype(), rz_debug_drx_handler(), rz_debug_reg_sync(), rz_flag_item_clone(), rz_flag_relocate(), rz_graph_add_node(), rz_graph_all_neighbours(), rz_graph_del_node(), rz_graph_dfs(), rz_graph_dfs_node(), rz_graph_dfs_node_reverse(), rz_graph_get_neighbours(), rz_graph_innodes(), rz_graph_node_free(), rz_graph_node_split_forward(), rz_graph_nth_neighbour(), rz_heap_chunks_list(), rz_heap_tcache_content(), rz_hex_bin_truncate(), rz_hex_from_c_array(), rz_hex_from_py_array(), rz_id_storage_set(), rz_il_op_new_seqn(), rz_il_step_evaluate_handler(), rz_il_step_handler(), rz_line_hist_get(), rz_list_del_n(), rz_list_get_n(), rz_list_insert(), rz_list_iter_get_next_data(), rz_list_set_n(), rz_main_rz_gg(), rz_num_as_string(), rz_num_calc(), rz_num_conditional(), rz_num_dup(), rz_num_get_name(), rz_num_tail(), rz_num_tailff(), rz_oids_odelete(), rz_parse_immtrim(), rz_print_hexdump_bits_handler(), rz_print_hexdump_hex_common_handler(), rz_print_hexdump_hexl_common_handler(), rz_print_hexdump_signed_integer_common_handler(), rz_print_hexdump_str(), rz_print_hexpair(), rz_punycode_decode(), rz_punycode_encode(), rz_range_get_n(), rz_reg_arena_set_bytes(), rz_reg_cond_to_string(), rz_reg_get_name_by_type(), rz_resolve_jemalloc(), rz_run_parseline(), rz_seek_blocksize_backward_handler(), rz_seek_blocksize_forward_handler(), rz_seek_padded_handler(), rz_skiplist_get_n(), rz_skiplist_purge(), rz_skiplist_to_list(), rz_spaces_get(), rz_spaces_unset(), rz_stack_new(), rz_stack_newf(), rz_str_ansi_chrn(), rz_str_ansi_trim(), rz_str_array_join(), rz_str_binstr2bin(), rz_str_fmtargs(), rz_str_ncasecmp(), rz_str_nlen(), rz_str_nlen_w(), rz_str_split_duplist_n(), rz_str_split_duplist_n_regex(), rz_str_split_list(), rz_str_split_list_regex(), rz_str_uri_decode(), rz_strpool_ansi_chop(), rz_strpool_get_i(), rz_subprocess_stdout_read(), rz_syscmd_ls(), rz_table_column_nth(), rz_table_tojson(), rz_tree_bfs(), rz_tree_node_free(), rz_type_db_enum_get_bitfield(), rz_type_format_struct_size(), rz_type_list_noreturn_handler(), scan_tree(), sdb_alen(), sdb_alen_ignore_empty(), sdb_array_add_sorted_num(), sdb_array_delete(), sdb_array_get(), sdb_array_get_num(), sdb_array_indexof(), sdb_array_prepend_num(), sdb_array_push_num(), sdb_array_remove(), sdb_array_remove_num(), sdb_fmt(), sdb_fmt_array_num(), sdb_fmt_free(), sdb_fmt_tobin(), sdb_fmt_tostr(), sdb_itoa(), sdb_itoca(), sdb_num_dec(), sdb_num_inc(), sdb_num_max(), sdb_num_min(), sdb_querys(), seek_to_node(), send_tree(), set_layout(), set_plugin_configs(), gzfilebuf::setbuf(), setprintmode(), sh_il_muls(), sh_il_mulu(), sh_op_get_param_movl(), shifted_reg64_append(), showfile(), skip(), slide_hash(), space_node_free(), ssa_get(), str_split_list_common(), str_split_list_common_regex(), strdupn(), strncmp_skip_color_codes(), strncpy_with_color_codes(), strstr2(), subtypeString(), subvar(), swapfunc(), syscallNumber(), syscalls_dump(), test(), test_file(), test_locate(), tiny_RzANode_print(), tr_static_init(), trace_traverse_pre(), tree_dfs_node(), trim(), ts_parser__better_version_exists(), ts_parser__breakdown_top_of_stack(), ts_parser__condense_stack(), ts_parser__recover(), ts_query_cursor__advance(), ts_subtree__print_dot_graph(), ts_subtree__write_char_to_string(), ts_subtree_balance(), ts_subtree_compare(), ts_subtree_edit(), typeString(), unset_plugins_config(), update_asmcpu_options(), update_depth(), update_node_dimension(), update_seek(), use_stdin(), user_edge_cb(), user_node_cb(), ut64join(), UTIL_getTotalFileSize(), uv__fs_scandir(), uv__fs_sendfile_emul(), uv__idna_toascii_label(), uv__pollfds_maybe_resize(), uv__process_child_init(), uv__random_getrandom(), uv__random_readpath(), uv__random_sysctl(), uv__slurp(), uv__strndup(), uv__strscpy(), uv__write(), uv__write_int(), uv__write_req_update(), uv__writev(), uv_exepath(), uv_resident_set_memory(), valgroup_regcb(), verify_ldpsw(), vle_snprint(), walk_namespace(), wasm_dis(), window_read(), winzip_aes_decrypt(), wordpos(), write_nuls(), write_random(), write_text(), writer(), x2nmodp(), xnu_get_vmmap_entries_for_pid(), xtensa_isa_free(), xtensa_isa_init(), xtensa_regfile_lookup(), xtensa_regfile_lookup_shortname(), xtensa_si_op(), zip64local_putValue(), zip64local_putValue_inmemory(), zip_file_extra_fields_count(), zip_file_extra_fields_count_by_id(), zip_fread(), zip_get_num_entries(), and zip_source_read().

◆ name

const char* name

Definition at line 16 of file mipsasm.c.

◆ 

struct { ... } ops[]

Referenced by mips_assemble().

◆ regs

const char* const regs[33]
static
Initial value:
= {
"zero", "at", "v0", "v1", "a0", "a1", "a2", "a3",
"t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7",
"s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
"t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra",
}

Definition at line 7 of file mipsasm.c.

Referenced by getreg().

◆ type

int type

Definition at line 17 of file mipsasm.c.

Referenced by __check_panel_type(), __foreach(), __getname(), __getoffset(), __reg_read(), __resource_type_str(), _cb_hit(), _createKDNetPacket(), _decrypt(), _encrypt(), _parse_resource_directory(), _resource_type_str(), _server_handle_z(), aarch64_get_operand_desc(), aarch64_get_operand_name(), aarch64_match_operands_constraint(), aarch64_opcode_decode(), add_token(), addVar(), analBars(), analop(), analysis_pop(), analysis_push(), anop(), anop_esil(), arc_aux_reg_name(), arc_opcode_lookup_suffix(), arm_assemble(), asm_token_create(), autocmplt_cmd_arg_reg_filter(), base_type_to_format_no_unfold(), base_type_to_format_unfold(), bin_pe_init_sections(), binsym(), bs_option(), bsd_desc_list(), bsd_reg_write(), bytecode_snprint(), c_parser_callable_type_store(), c_parser_get_primitive_type(), c_parser_get_typedef(), c_parser_new_callable(), c_parser_new_callable_argument(), c_parser_new_enum_naked_type(), c_parser_new_naked_callable(), c_parser_new_primitive_type(), c_parser_new_structure_naked_type(), c_parser_new_typedef(), c_parser_new_typedef_naked_type(), c_parser_new_union_naked_type(), c_parser_new_unspecified_naked_type(), c_parser_type_wrap_to_array(), c_parser_type_wrap_to_pointer(), callable_ptr_unwrap(), check_base_type_typeclass(), check_format_type(), check_type_typeclass(), classdump_cpp(), clusterBuildMessageHdr(), clusterGetMessageTypeString(), clusterProcessPacket(), clusterSendMessage(), clusterSendPing(), cmd_address_info(), cmd_print_pv(), cmd_regs_sync(), collect_nodes_at(), collect_nodes_in(), collect_nodes_intersect(), const_by_name(), const_by_value(), capstone::copy_ctypes(), core_analysis_followptr(), core_perform_auto_analysis(), count_omf_multi_record_type(), count_omf_record_type(), create_cmd_desc(), create_initterm_syms(), create_json(), create_rztype(), cs_option(), d_count_templates_scopes(), d_demangle_callback(), d_encoding(), d_expr_primary(), d_expression_1(), d_local_name(), d_make_builtin_type(), d_make_comp(), d_operator_name(), d_parmlist(), d_print_comp_inner(), d_print_conversion(), define_data_ntimes(), del(), delta_for_access(), demangle_class_object(), demangle_type(), diffrow(), do_analysis_search(), ds_print_data_type(), emit_get_var(), emit_mathop(), ensure_addr_hint_record(), entries_initfini_print(), eval_pure(), export_typelink_cb(), extract_arg(), fcnIn(), file_ascmagic(), file_delmagic(), fill_autocmplt_data(), filter_kexts(), filter_reg_items(), find_node_at(), find_node_in(), free_all_omf_records(), free_tpi_rbtree(), free_tpi_type(), function_argument_type_derive(), gb_add_cardtype(), gb_anop(), gb_get_gbtype(), gdb_to_rz_profile(), get_AR_regs_class2(), get_arm_hwbp_values(), get_base_type_typeclass(), get_bits_mips_common(), get_cbs(), get_format_type(), get_ivar_list_t(), get_jmp_target_imm_op_index(), get_map_type(), get_msg_type(), get_name(), get_next_omf_record_type(), get_object(), get_offset(), get_relocs(), get_simple_type_kind(), get_simple_type_mode(), get_struct_type(), get_sym_code_type(), get_tpitype_basetype(), get_type(), get_type_data(), get_type_typeclass(), get_typedef_type(), getref(), getshift(), global_var_load_cb(), handle_stack_canary(), handle_var_stack_access(), has_type_descriptor(), hex_disasm_with_templates(), hint_node_print(), hit(), ihex_parse(), import_from_name(), inflate_table(), inflate_table9(), insn_to_op(), insn_to_str(), is_arg_type(), is_fnqual_component_type(), is_identifier(), is_parsable_type(), is_reg_shift(), is_string_with_zeroes(), is_type_descriptor_defined(), is_valid_omf_type(), is_valid_xref(), isFlag(), isValidSymbol(), item_matches_filter(), kd_send_ctrl_packet(), kd_send_data_packet(), lh5801_decode(), libdemangle_handler_objc(), linux_desc_list(), linux_reg_read(), linux_reg_write(), list_vars(), lookup_register(), luac_add_symbol(), lzh_read_lens(), LZMA_API(), lzma_check_finish(), lzma_check_init(), lzma_check_update(), mcopy(), mcs96_len(), mem(), meta_load_cb(), meta_set(), mips_assemble(), myregwrite(), needWord(), new_buffer(), newEntry(), op0_memimmhandle(), op1_memimmhandle(), op_fillval(), op_stackidx(), opcode_new(), opcode_set(), operand_general_constraint_met_p(), parse_abstract_origin(), parse_enum(), parse_enum_type(), parse_enumerate(), parse_format(), parse_function_args_and_vars(), parse_microsoft_rtti_mangled_name(), parse_reg_name(), parse_regular_type(), parse_simple_type(), parse_struct_member(), parse_structure(), parse_tpi_stream(), parse_tpi_types(), parse_type(), parse_type_abstract_declarator_node(), parse_type_arglist(), parse_type_array(), parse_type_declarator_node(), parse_type_fieldlist(), parse_type_mfunction(), parse_type_modifier(), parse_type_pointer(), parse_type_procedure(), parse_typedef(), parse_types(), parse_union(), parse_union_member(), parser__reductions_after_sequence(), parser__skip_preceding_trees_callback(), parseReg(), pdb_types_print_json(), pdb_types_print_standard(), pj_begin(), print_debug_map_line(), print_fcn_arg(), print_hint_h_format(), print_insn_aarch64(), print_meta_list(), print_mips16_insn_arg(), print_source_info(), process_constructors(), processNode(), propagate_return_type(), propagate_types_among_used_variables(), puff(), pure_type_name(), pyc_is_object(), rcc_internal_mathop(), rcc_next(), read_at(), reg_name_for_access(), reloc_cmp(), reloc_target_cmp(), remove_bp(), restoreCommand(), retype_callee_arg(), rizin_fortune_file(), rtti_itanium_type_info_new(), rz_analysis_create_function(), rz_analysis_data_new(), rz_analysis_data_new_string(), rz_analysis_dwarf_integrate_functions(), rz_analysis_esil_set_op(), rz_analysis_esil_trapstr(), rz_analysis_extract_rarg(), rz_analysis_fcn_format_sig(), rz_analysis_fcntype_tostring(), rz_analysis_function_create_handler(), rz_analysis_function_set_var(), rz_analysis_get_delta_jmptbl_info(), rz_analysis_get_fcn_in(), rz_analysis_get_fcn_in_bounds(), rz_analysis_get_jmptbl_info(), rz_analysis_global_variable_add_handler(), rz_analysis_global_variable_retype_handler(), rz_analysis_hint_set_optype_handler(), rz_analysis_hint_set_type(), rz_analysis_optype_to_string(), rz_analysis_type_set_link(), rz_analysis_var_count(), rz_analysis_var_global_set_type(), rz_analysis_var_set_type(), rz_analysis_xref_new(), rz_analysis_xrefs_set(), rz_analysis_xrefs_type_tostring(), rz_asm_get_offset(), rz_axml_decode(), rz_base_type_as_format(), rz_base_type_is_floating(), rz_base_type_is_integral(), rz_base_type_is_integral_signed(), rz_base_type_is_integral_unsigned(), rz_base_type_is_num(), rz_base_type_typeclass(), rz_bin_demangle(), rz_bin_dex_resolve_field_by_idx(), rz_bin_elf_get_segment_with_type(), rz_bin_elf_is_executable(), rz_bin_elf_section_type_to_string(), rz_bin_object_set_items(), rz_bin_pdb_get_type_by_index(), rz_bin_pdb_get_type_name(), rz_bin_pdb_get_type_val(), rz_bin_section_type_to_string(), rz_bin_wasm_get_types(), rz_cmd_get_help_json(), rz_core_analysis_function_signature(), rz_core_analysis_get_comments(), rz_core_analysis_hasrefs_to_depth(), rz_core_analysis_optype_colorfor(), rz_core_autocomplete_add(), rz_core_base_type_as_c(), rz_core_bin_apply_entry(), rz_core_bin_apply_sections(), rz_core_clippy(), rz_core_meta_print(), rz_core_meta_print_list_all(), rz_core_meta_print_list_in_function(), rz_core_seek_next(), rz_core_seek_prev(), rz_core_types_link(), rz_core_types_link_print(), rz_core_visual_analysis(), rz_debug_continue_until_optype(), rz_debug_desc_new(), rz_debug_gdb_reg_read(), rz_debug_gdb_reg_write(), rz_debug_qnx_reg_read(), rz_debug_qnx_reg_write(), rz_debug_reason_to_string(), rz_debug_reg_sync(), rz_diff_opcodes_new(), rz_diff_parse_arguments(), rz_eval_type_handler(), rz_event_hook(), rz_event_send(), rz_heap_blocks_list(), rz_heap_debug_block_win(), rz_il_effect_label_new(), rz_il_evaluate_bitv(), rz_il_evaluate_bool(), rz_il_evaluate_pure(), rz_il_evaluate_val(), rz_il_handler_add(), rz_il_handler_append(), rz_il_handler_bitv(), rz_il_handler_bool_and(), rz_il_handler_bool_false(), rz_il_handler_bool_inv(), rz_il_handler_bool_or(), rz_il_handler_bool_true(), rz_il_handler_bool_xor(), rz_il_handler_cast(), rz_il_handler_div(), rz_il_handler_eq(), rz_il_handler_is_zero(), rz_il_handler_ite(), rz_il_handler_let(), rz_il_handler_load(), rz_il_handler_loadw(), rz_il_handler_logical_and(), rz_il_handler_logical_not(), rz_il_handler_logical_or(), rz_il_handler_logical_xor(), rz_il_handler_lsb(), rz_il_handler_mod(), rz_il_handler_msb(), rz_il_handler_mul(), rz_il_handler_neg(), rz_il_handler_pure_unimplemented(), rz_il_handler_sdiv(), rz_il_handler_shiftl(), rz_il_handler_shiftr(), rz_il_handler_sle(), rz_il_handler_smod(), rz_il_handler_sub(), rz_il_handler_ule(), rz_il_handler_var(), rz_il_reg_binding_exactly(), rz_il_validate_effect(), rz_il_value_new(), rz_lang_define(), rz_lib_add_handler(), rz_lib_del_handler(), rz_lib_get_handler(), rz_meta_del(), rz_meta_get_all_in(), rz_meta_get_all_intersect(), rz_meta_get_at(), rz_meta_get_in(), rz_meta_get_size(), rz_meta_get_string(), rz_meta_set(), rz_meta_set_string(), rz_meta_set_with_subtype(), rz_meta_type_to_string(), RZ_PACKED(), rz_parse_pdb_types(), rz_pkcs7_parse_spcinfo(), rz_project_load(), rz_rap_packet(), rz_reg_arena_zero(), rz_reg_arenas_write_hex_handler(), rz_reg_cond(), rz_reg_cond_bits(), rz_reg_cond_bits_set(), rz_reg_get(), rz_reg_get_at(), rz_reg_get_bytes(), rz_reg_get_list(), rz_reg_get_name_idx(), rz_reg_next_diff(), rz_reg_regset_get(), rz_reg_set_bytes(), rz_scan_strings(), rz_scan_strings_raw(), rz_serialize_analysis_var_load(), rz_sys_info(), rz_sysreg_get(), rz_table_add_column(), rz_type_array_of_base_type(), rz_type_array_of_type(), rz_type_as_format(), rz_type_as_format_pair(), rz_type_as_pretty_string(), rz_type_as_string(), rz_type_atomic_is_const(), rz_type_atomic_is_void(), rz_type_base_type_free(), rz_type_base_type_new(), rz_type_callable_arg_new(), rz_type_callable_ptr_as_string(), rz_type_clone(), rz_type_db_base_type_as_pretty_string(), rz_type_db_base_type_as_string(), rz_type_db_delete_base_type(), rz_type_db_get_bitsize(), rz_type_db_save_base_type(), rz_type_declaration_as_string(), rz_type_define_handler(), rz_type_format_data_internal(), rz_type_free(), rz_type_func_new(), rz_type_func_ret_set(), rz_type_get_base_type(), rz_type_handler(), rz_type_identifier(), rz_type_identifier_declaration_as_string(), rz_type_identifier_of_base_type(), rz_type_integral_set_sign(), rz_type_is_atomic(), rz_type_is_callable(), rz_type_is_callable_ptr(), rz_type_is_callable_ptr_nested(), rz_type_is_char_ptr(), rz_type_is_char_ptr_nested(), rz_type_is_default(), rz_type_is_floating(), rz_type_is_identifier(), rz_type_is_integral(), rz_type_is_integral_signed(), rz_type_is_integral_unsigned(), rz_type_is_num(), rz_type_is_strictly_atomic(), rz_type_is_void_ptr(), rz_type_is_void_ptr_nested(), rz_type_path_new(), rz_type_pointer_is_const(), rz_type_pointer_of_base_type(), rz_type_pointer_of_type(), rz_type_typeclass(), rz_types_define(), rz_w32_add_winmsg_breakpoint(), save_atomic_type(), save_enum(), save_struct(), save_typedef(), save_typelink(), save_union(), sdb_querys(), sdb_save_base_type(), section_type_to_string(), seek_to_end_of_token(), set_access_info(), set_base_type_typeclass(), set_bp(), set_new_xref(), set_opdir(), set_src_dst(), shift(), shift_type_name(), stackop2str(), store_xref_cb(), structured_member_walker(), thumb_getshift(), ts_parser__recover(), type_as_pretty_string(), type_decl_as_pretty_string(), type_format_print(), type_format_print_hexstring(), type_format_print_value(), type_format_print_variable(), type_is_atomic_ptr(), type_is_atomic_ptr_nested(), type_match(), type_to_format(), type_to_format_pair(), type_to_identifier(), type_to_string(), typelinks_load_sdb(), types_xrefs(), types_xrefs_all(), types_xrefs_function(), types_xrefs_graph(), types_xrefs_summary(), unset_addr_hint_record(), uv__fs_get_dirent_type(), uv__handle_type(), uv__hrtime(), uv__print_handles(), uv__signal_control_handler(), uv__socket(), uv__stream_init(), uv_cpu_info(), uv_guess_handle(), uv_handle_size(), uv_handle_type_name(), uv_req_size(), uv_req_type_name(), uv_stream_init(), uv_tty_init(), valPrint(), var_type_clone_or_default_type(), var_type_set(), var_type_set_resolve_overlaps(), var_type_set_str(), variable_set_type(), vector_data_type_name(), w32_list_heaps_blocks(), w32_reg_read(), w32_reg_write(), windbg_breakpoint(), windbg_reg_profile(), winkd_get_process_at(), winkd_get_thread_at(), winkd_wait_packet(), xnu_reg_read(), xnu_reg_write(), xref_type2cmd(), xrefs_load_cb(), xrefs_set(), z80_op_size(), z80Disass(), z80OpLength(), zip_error_strerror(), and zip_error_to_str().

◆ x

int x

Definition at line 20 of file mipsasm.c.

Referenced by __check_if_mouse_x_illegal(), __check_if_mouse_x_on_edge(), __check_if_mouse_y_on_edge(), __create_almighty(), __drag_and_resize(), __get_panel_idx_in_pos(), __handle_mouse(), __handle_mouse_on_menu(), __handle_mouse_on_panel(), __handle_mouse_on_top(), __handle_mouse_on_X(), __menu_panel_print(), __read(), __refs(), __set_geometry(), __set_pos(), __update_edge_x(), __update_help_contents(), __update_panel_contents(), _first(), _next(), abs64(), affine(), apply_line_style(), apply_sbox(), apply_sbox_inv(), arg(), avr_il_adc(), avr_il_add(), avr_il_adiw(), avr_il_and(), avr_il_andi(), avr_il_asr(), avr_il_check_carry_flag_addition(), avr_il_check_carry_flag_subtraction(), avr_il_check_half_carry_flag_addition(), avr_il_check_half_carry_flag_subtraction(), avr_il_check_negative_flag_local(), avr_il_check_negative_flag_reg(), avr_il_check_two_complement_overflow_flag_addition(), avr_il_check_two_complement_overflow_flag_subtraction(), avr_il_check_zero_flag_reg(), avr_il_com(), avr_il_cp(), avr_il_cpc(), avr_il_cpi(), avr_il_dec(), avr_il_eicall(), avr_il_eijmp(), avr_il_elpm(), avr_il_eor(), avr_il_fmul(), avr_il_fmuls(), avr_il_fmulsu(), avr_il_icall(), avr_il_in(), avr_il_inc(), avr_il_lac(), avr_il_las(), avr_il_lat(), avr_il_lsl(), avr_il_lsr(), avr_il_movw(), avr_il_mul(), avr_il_muls(), avr_il_mulsu(), avr_il_neg(), avr_il_or(), avr_il_ori(), avr_il_pop(), avr_il_push(), avr_il_ret(), avr_il_rol(), avr_il_ror(), avr_il_sbc(), avr_il_sbci(), avr_il_sbiw(), avr_il_sub(), avr_il_subi(), avr_il_swap(), avr_il_xch(), avr_subtract_if(), bin_index(), bin_index_up(), bound_iter(), bv_unsigned_cmp(), cabd_read_headers(), cdb_alloc_free(), cdb_init(), cdb_make_finish(), chmd_read_headers(), clr_max_rows(), cmd_descriptor_init(), cmd_print_gadget(), cmd_pxb_k(), compare_opcodes(), compute_index(), compute_log(), countLeadingOnes(), countLeadingZeros(), countTrailingOnes(), countTrailingZeros(), create_output_name(), debug_gdb_write_at(), debug_qnx_read_at(), debug_qnx_write_at(), delete_element(), disassemble(), doIndent(), draw_horizontal_line(), draw_vertical_line(), ds_print_asmop_payload(), dumb_ctzll(), errnoconvert(), find_insertpoint(), findyz(), first_set(), gdbr_write_registers(), get_ins_bits(), get_num(), get_word_from_canvas(), get_word_from_canvas_for_menu(), getbin(), go_uvariant(), hexdump(), hidden_op(), hud_filter(), il_opdmp_add(), il_opdmp_bool_and(), il_opdmp_bool_inv(), il_opdmp_bool_or(), il_opdmp_bool_xor(), il_opdmp_div(), il_opdmp_eq(), il_opdmp_ite(), il_opdmp_logand(), il_opdmp_logor(), il_opdmp_logxor(), il_opdmp_mod(), il_opdmp_mul(), il_opdmp_sdiv(), il_opdmp_seq(), il_opdmp_shiftl(), il_opdmp_shiftr(), il_opdmp_sle(), il_opdmp_smod(), il_opdmp_sub(), il_opdmp_ule(), invert(), is_near(), is_near_h(), is_op(), is_var(), isUIntN(), low_sign_extend(), low_sign_unext(), lua_load_int(), lua_load_integer(), lua_load_number(), lua_parse_szint(), lzxd_read_lens(), main(), malloc(), mini_RzANode_print(), mpc_apply_to(), mpc_calloc(), mpc_check_with(), mpc_check_withf(), mpc_err_add_expected(), mpc_err_contains_expected(), mpc_err_count(), mpc_err_delete(), mpc_err_delete_internal(), mpc_err_export(), mpc_err_fail(), mpc_err_file(), mpc_err_many1(), mpc_err_merge(), mpc_err_new(), mpc_err_or(), mpc_err_print(), mpc_err_print_to(), mpc_err_repeat(), mpc_err_string(), mpc_input_any(), mpc_input_char(), mpc_input_noneof(), mpc_input_oneof(), mpc_input_range(), mpc_input_satisfy(), mpc_input_string(), mpc_lift_val(), mpc_nparse(), mpc_parse(), mpc_parse_apply(), mpc_parse_apply_to(), mpc_parse_dtor(), mpc_parse_file(), mpc_parse_input(), mpc_parse_pipe(), mpc_soft_delete(), mpca_grammar_find_parser(), mpca_stmt_list_apply_to(), mpca_stmt_list_delete(), mpcaf_grammar_char(), mpcaf_grammar_id(), mpcaf_grammar_string(), mpcf_dtor_null(), mpcf_escape(), mpcf_escape_char_raw(), mpcf_escape_new(), mpcf_escape_regex(), mpcf_escape_string_raw(), mpcf_float(), mpcf_free(), mpcf_hex(), mpcf_input_free(), mpcf_input_nth_free(), mpcf_int(), mpcf_nth_free(), mpcf_oct(), mpcf_re_escape(), mpcf_re_range(), mpcf_strtrim(), mpcf_strtriml(), mpcf_strtrimr(), mpcf_unescape(), mpcf_unescape_char_raw(), mpcf_unescape_new(), mpcf_unescape_regex(), mpcf_unescape_string_raw(), nextword(), normal_RzANode_print(), openfile(), operator<(), operator<<(), operator>(), opex(), opex64(), overlaps_with_token(), pack_hex(), parseOperands(), prot2perm(), rd_ldbcdehla(), read(), read_string(), red(), resolve_syscalls(), reverse_lt_8bits(), rotl(), rotr(), rsp_sign_extend(), rz_analysis_cc_exist(), rz_bin_file_xtr_load_buffer(), rz_bv_add(), rz_bv_and(), rz_bv_cmp(), rz_bv_div(), rz_bv_eq(), rz_bv_hash(), rz_bv_is_zero_vector(), rz_bv_mod(), rz_bv_mul(), rz_bv_or(), rz_bv_sdiv(), rz_bv_sle(), rz_bv_smod(), rz_bv_sub(), rz_bv_to_ut16(), rz_bv_to_ut32(), rz_bv_to_ut64(), rz_bv_to_ut8(), rz_bv_ule(), rz_bv_xor(), rz_cf_value_dict_parse(), rz_cmd_help(), rz_cmd_print_gadget_add_handler(), rz_cmd_print_gadget_move_handler(), rz_cons_arrow_to_hjkl(), rz_cons_canvas_box(), rz_cons_canvas_fill(), rz_cons_canvas_gotoxy(), rz_cons_canvas_line(), rz_cons_canvas_line_back_edge(), rz_cons_canvas_line_diagonal(), rz_cons_canvas_line_square(), rz_cons_canvas_line_square_defined(), rz_cons_canvas_to_string(), rz_cons_get_click(), rz_cons_gotoxy(), rz_cons_rainbow_get(), rz_cons_rgb_parse(), rz_cons_set_click(), rz_cons_set_interactive(), rz_cons_strcat_at(), rz_core_serve(), rz_core_visual_bit_editor(), rz_core_visual_cmd(), rz_core_visual_esil(), rz_core_visual_showcursor(), rz_debug_bochs_reg_read(), rz_debug_bochs_wait(), rz_diff_myers_distance(), rz_hash_cfg_randomart(), rz_il_handler_add(), rz_il_handler_bool_and(), rz_il_handler_bool_inv(), rz_il_handler_bool_or(), rz_il_handler_bool_xor(), rz_il_handler_div(), rz_il_handler_eq(), rz_il_handler_logical_and(), rz_il_handler_logical_or(), rz_il_handler_logical_xor(), rz_il_handler_mod(), rz_il_handler_mul(), rz_il_handler_sdiv(), rz_il_handler_sle(), rz_il_handler_smod(), rz_il_handler_sub(), rz_il_handler_ule(), rz_il_op_effect_free(), rz_il_op_new_add(), rz_il_op_new_bool_and(), rz_il_op_new_bool_inv(), rz_il_op_new_bool_or(), rz_il_op_new_bool_xor(), rz_il_op_new_div(), rz_il_op_new_eq(), rz_il_op_new_ite(), rz_il_op_new_log_and(), rz_il_op_new_log_or(), rz_il_op_new_log_xor(), rz_il_op_new_mod(), rz_il_op_new_mul(), rz_il_op_new_sdiv(), rz_il_op_new_seq(), rz_il_op_new_set(), rz_il_op_new_sge(), rz_il_op_new_sgt(), rz_il_op_new_shiftl(), rz_il_op_new_shiftr(), rz_il_op_new_shiftr_arith(), rz_il_op_new_sle(), rz_il_op_new_slt(), rz_il_op_new_smod(), rz_il_op_new_sub(), rz_il_op_new_uge(), rz_il_op_new_ugt(), rz_il_op_new_ule(), rz_il_op_new_ult(), rz_il_op_pure_dup(), rz_il_op_pure_free(), rz_itv_include(), rz_itv_intersect(), rz_itv_overlap(), rz_load_panels_layout(), rz_mem_protect(), rz_num_get(), RZ_PACKED(), rz_parity_update(), rz_pvector_contains(), rz_pvector_insert(), rz_pvector_push(), rz_pvector_push_front(), rz_pvector_remove_data(), rz_rbtree_find(), rz_rbtree_free(), rz_rbtree_lower_bound(), rz_rbtree_upper_bound(), rz_skiplist_find(), rz_skiplist_find_geq(), rz_skiplist_find_leq(), rz_skiplist_get_geq(), rz_skiplist_get_leq(), rz_skiplist_insert(), rz_skiplist_purge(), rz_socket_listen(), rz_str_ansi_crop(), rz_str_appendch(), rz_str_crop(), rz_str_isXutf8(), rz_str_str_xy(), rz_strpool_slice(), rz_vector_insert(), rz_vector_push(), rz_vector_push_front(), sdb_array_insert(), sdb_text_load(), set_src_dst(), sh_il_is_add_carry(), sh_il_is_add_overflow(), sh_il_is_sub_borrow(), sh_il_is_sub_underflow(), sh_op_compare(), showcursor(), sign_extend(), sign_unext(), smaddl(), smulh(), smull(), symbol_method_sort_by_addr(), unz64local_getLong(), unz64local_getLong64(), unz64local_getShort(), update_graph_sizes(), update_seek(), ut64_to_hex(), uv__idna_toascii_label(), uv__io_poll(), uv_tty_make_real_coord(), uv_tty_move_caret(), uv_tty_write_bufs(), VALIDATOR_PURE(), write(), xtime(), XXH_swap32(), XXH_swap64(), yxml_attrname(), yxml_attrstart(), yxml_attrvalend(), yxml_dataattr(), yxml_datacd1(), yxml_datacd2(), yxml_datacontent(), yxml_datapi1(), yxml_datapi2(), yxml_elemclose(), yxml_elemcloseend(), yxml_elemname(), yxml_elemstart(), yxml_eof(), yxml_init(), yxml_parse(), yxml_piabort(), yxml_piname(), yxml_pinameend(), yxml_pistart(), yxml_pivalend(), yxml_popstack(), yxml_pushstack(), yxml_pushstackc(), yxml_ref(), yxml_refattrval(), yxml_refcontent(), yxml_refend(), yxml_refstart(), yxml_selfclose(), yxml_symlen(), zag(), zig_zag(), zip64local_getLong(), zip64local_getLong64(), zip64local_getShort(), zip64local_putValue(), zip64local_putValue_inmemory(), and zstringlen::zstringlen().