Home
last modified time | relevance | path

Searched refs:opcode_list (Results 1 – 25 of 67) sorted by relevance

123

/dports/games/scummvm-tools/scummvm-tools-2.5.0/engines/grim/luac/
H A Drebase.cpp114 p += INFO(func, p, &opcode_list[i]); in rec_bytecode()
115 while (opcode_list[i++].op != ENDCODE); in rec_bytecode()
124 Opcode &op = opcode_list[i]; in rec_bytecode()
162 Opcode &op = opcode_list[i]; in rec_bytecode()
182 Opcode &op = opcode_list[i]; in rec_bytecode()
238 newsize += opcode_list[i].size; in rec_bytecode()
248 code[0] = (byte)opcode_list[0].arg; in rec_bytecode()
249 if (opcode_list[1].op == VARARGS) in rec_bytecode()
252 code[1] = (byte)opcode_list[1].arg; in rec_bytecode()
256 Opcode &op = opcode_list[i]; in rec_bytecode()
[all …]
/dports/finance/py-pycoin/pycoin-0.91.20210515/pycoin/vm/
H A DScriptTools.py11 def __init__(self, opcode_list, IntStreamer, scriptStreamer): argument
15 self.opcode_to_int = dict(o for o in opcode_list)
16 self.int_to_opcode = dict(reversed(o) for o in opcode_list)
74 def opcode_list(self, script): member in ScriptTools
88 return ' '.join(self.opcode_list(script))
/dports/audio/csound/csound-6.15.0/Top/
H A Dcsdebug.c30 void csoundDebugFreeOpcodeList(CSOUND *csound, debug_opcode_t *opcode_list);
300 debug_opcode_t *opcode_list = csound->Malloc(csound, sizeof(debug_opcode_t)); in csoundDebugGetCurrentOpcodeList() local
301 strNcpy(opcode_list->opname, op->optext->t.opcod, 16); in csoundDebugGetCurrentOpcodeList()
303 opcode_list->line = op->optext->t.linenum; in csoundDebugGetCurrentOpcodeList()
304 return opcode_list; in csoundDebugGetCurrentOpcodeList()
307 void csoundDebugFreeOpcodeList(CSOUND *csound, debug_opcode_t *opcode_list) in csoundDebugFreeOpcodeList() argument
309 csound->Free(csound, opcode_list); in csoundDebugFreeOpcodeList()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/mlir/utils/spirv/
H A Dgen_spirv_dialect.py329 opcode_list = [
332 opcode_list = split_list_into_sublists(opcode_list, 6)
333 opcode_list = [
334 '{:6}'.format('') + ', '.join(sublist) for sublist in opcode_list
336 opcode_list = ',\n'.join(opcode_list)
342 name='Opcode', lst=opcode_list)
/dports/games/libretro-pcsx_rearmed/pcsx_rearmed-c2d67cd/deps/lightrec/
H A Drecompiler.c267 block->opcode_list); in lightrec_recompiler_run_first_pass()
268 block->opcode_list = NULL; in lightrec_recompiler_run_first_pass()
292 lightrec_free_opcode_list(block->state, block->opcode_list); in lightrec_recompiler_run_first_pass()
293 block->opcode_list = NULL; in lightrec_recompiler_run_first_pass()
H A Doptimizer.c499 meta->next = block->opcode_list; in lightrec_add_meta()
500 block->opcode_list = meta; in lightrec_add_meta()
515 struct opcode *list = block->opcode_list; in lightrec_transform_ops()
607 for (list = block->opcode_list, prev = NULL; list->next; in lightrec_switch_delay_slots()
690 for (op = block->opcode_list, next = op->next; next; in lightrec_detect_impossible_branches()
705 if (op == block->opcode_list) { in lightrec_detect_impossible_branches()
726 for (list = block->opcode_list; list; list = list->next) { in lightrec_local_branches()
747 for (target = block->opcode_list, prev = NULL; in lightrec_local_branches()
819 struct opcode *list = block->opcode_list; in lightrec_early_unload()
871 for (list = block->opcode_list; list; list = list->next) { in lightrec_flag_stores()
[all …]
/dports/games/kodi-addon-game.libretro.beetle-psx/game.libretro.beetle-psx-0.9.44.22-Matrix/depends/common/beetle-psx/deps/lightrec/
H A Drecompiler.c267 block->opcode_list); in lightrec_recompiler_run_first_pass()
268 block->opcode_list = NULL; in lightrec_recompiler_run_first_pass()
292 lightrec_free_opcode_list(block->state, block->opcode_list); in lightrec_recompiler_run_first_pass()
293 block->opcode_list = NULL; in lightrec_recompiler_run_first_pass()
H A Doptimizer.c499 meta->next = block->opcode_list; in lightrec_add_meta()
500 block->opcode_list = meta; in lightrec_add_meta()
515 struct opcode *list = block->opcode_list; in lightrec_transform_ops()
607 for (list = block->opcode_list, prev = NULL; list->next; in lightrec_switch_delay_slots()
690 for (op = block->opcode_list, next = op->next; next; in lightrec_detect_impossible_branches()
705 if (op == block->opcode_list) { in lightrec_detect_impossible_branches()
726 for (list = block->opcode_list; list; list = list->next) { in lightrec_local_branches()
747 for (target = block->opcode_list, prev = NULL; in lightrec_local_branches()
819 struct opcode *list = block->opcode_list; in lightrec_early_unload()
871 for (list = block->opcode_list; list; list = list->next) { in lightrec_flag_stores()
[all …]
/dports/games/kodi-addon-game.libretro.pcsx-rearmed/game.libretro.pcsx-rearmed-22.0.0.19-Matrix/depends/common/pcsx-rearmed/deps/lightrec/
H A Drecompiler.c267 block->opcode_list); in lightrec_recompiler_run_first_pass()
268 block->opcode_list = NULL; in lightrec_recompiler_run_first_pass()
292 lightrec_free_opcode_list(block->state, block->opcode_list); in lightrec_recompiler_run_first_pass()
293 block->opcode_list = NULL; in lightrec_recompiler_run_first_pass()
H A Doptimizer.c499 meta->next = block->opcode_list; in lightrec_add_meta()
500 block->opcode_list = meta; in lightrec_add_meta()
515 struct opcode *list = block->opcode_list; in lightrec_transform_ops()
607 for (list = block->opcode_list, prev = NULL; list->next; in lightrec_switch_delay_slots()
690 for (op = block->opcode_list, next = op->next; next; in lightrec_detect_impossible_branches()
705 if (op == block->opcode_list) { in lightrec_detect_impossible_branches()
726 for (list = block->opcode_list; list; list = list->next) { in lightrec_local_branches()
747 for (target = block->opcode_list, prev = NULL; in lightrec_local_branches()
819 struct opcode *list = block->opcode_list; in lightrec_early_unload()
871 for (list = block->opcode_list; list; list = list->next) { in lightrec_flag_stores()
[all …]
/dports/games/libretro-beetle_psx/beetle-psx-libretro-3ec155d/deps/lightrec/
H A Drecompiler.c267 block->opcode_list); in lightrec_recompiler_run_first_pass()
268 block->opcode_list = NULL; in lightrec_recompiler_run_first_pass()
292 lightrec_free_opcode_list(block->state, block->opcode_list); in lightrec_recompiler_run_first_pass()
293 block->opcode_list = NULL; in lightrec_recompiler_run_first_pass()
H A Doptimizer.c499 meta->next = block->opcode_list; in lightrec_add_meta()
500 block->opcode_list = meta; in lightrec_add_meta()
515 struct opcode *list = block->opcode_list; in lightrec_transform_ops()
607 for (list = block->opcode_list, prev = NULL; list->next; in lightrec_switch_delay_slots()
690 for (op = block->opcode_list, next = op->next; next; in lightrec_detect_impossible_branches()
705 if (op == block->opcode_list) { in lightrec_detect_impossible_branches()
726 for (list = block->opcode_list; list; list = list->next) { in lightrec_local_branches()
747 for (target = block->opcode_list, prev = NULL; in lightrec_local_branches()
819 struct opcode *list = block->opcode_list; in lightrec_early_unload()
871 for (list = block->opcode_list; list; list = list->next) { in lightrec_flag_stores()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/utils/spirv/
H A Dgen_spirv_dialect.py428 opcode_list = [
431 opcode_list = split_list_into_sublists(opcode_list)
432 opcode_list = [
433 '{:6}'.format('') + ', '.join(sublist) for sublist in opcode_list
435 opcode_list = ',\n'.join(opcode_list)
439 ' ]>;'.format(name='Opcode', lst=opcode_list)
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/utils/spirv/
H A Dgen_spirv_dialect.py428 opcode_list = [
431 opcode_list = split_list_into_sublists(opcode_list)
432 opcode_list = [
433 '{:6}'.format('') + ', '.join(sublist) for sublist in opcode_list
435 opcode_list = ',\n'.join(opcode_list)
439 ' ]>;'.format(name='Opcode', lst=opcode_list)
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/utils/spirv/
H A Dgen_spirv_dialect.py428 opcode_list = [
431 opcode_list = split_list_into_sublists(opcode_list)
432 opcode_list = [
433 '{:6}'.format('') + ', '.join(sublist) for sublist in opcode_list
435 opcode_list = ',\n'.join(opcode_list)
439 ' ]>;'.format(name='Opcode', lst=opcode_list)
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/utils/spirv/
H A Dgen_spirv_dialect.py428 opcode_list = [
431 opcode_list = split_list_into_sublists(opcode_list)
432 opcode_list = [
433 '{:6}'.format('') + ', '.join(sublist) for sublist in opcode_list
435 opcode_list = ',\n'.join(opcode_list)
439 ' ]>;'.format(name='Opcode', lst=opcode_list)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/mlir/utils/spirv/
H A Dgen_spirv_dialect.py428 opcode_list = [
431 opcode_list = split_list_into_sublists(opcode_list)
432 opcode_list = [
433 '{:6}'.format('') + ', '.join(sublist) for sublist in opcode_list
435 opcode_list = ',\n'.join(opcode_list)
439 ' ]>;'.format(name='Opcode', lst=opcode_list)
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/utils/spirv/
H A Dgen_spirv_dialect.py428 opcode_list = [
431 opcode_list = split_list_into_sublists(opcode_list)
432 opcode_list = [
433 '{:6}'.format('') + ', '.join(sublist) for sublist in opcode_list
435 opcode_list = ',\n'.join(opcode_list)
439 ' ]>;'.format(name='Opcode', lst=opcode_list)
/dports/devel/llvm12/llvm-project-12.0.1.src/mlir/utils/spirv/
H A Dgen_spirv_dialect.py428 opcode_list = [
431 opcode_list = split_list_into_sublists(opcode_list)
432 opcode_list = [
433 '{:6}'.format('') + ', '.join(sublist) for sublist in opcode_list
435 opcode_list = ',\n'.join(opcode_list)
439 ' ]>;'.format(name='Opcode', lst=opcode_list)
/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/utils/spirv/
H A Dgen_spirv_dialect.py428 opcode_list = [
431 opcode_list = split_list_into_sublists(opcode_list)
432 opcode_list = [
433 '{:6}'.format('') + ', '.join(sublist) for sublist in opcode_list
435 opcode_list = ',\n'.join(opcode_list)
439 ' ]>;'.format(name='Opcode', lst=opcode_list)
/dports/devel/orc/orc-0.4.31/orc/
H A Dorcopcodes.c126 (*list) = opcode_list;
140 opcode_list = realloc(opcode_list, sizeof(OrcOpcode) * n_opcodes_alloc);
143 opcode = opcode_list + n_opcodes;
/dports/net-mgmt/collectd5/collectd-5.12.0/src/
H A Ddns.c65 static counter_list_t *opcode_list; variable
183 counter_list_add(&opcode_list, dns->opcode, 1); in dns_child_callback()
369 for (ptr = opcode_list, len = 0; (ptr != NULL) && (len < T_MAX); in dns_read()
/dports/emulators/vice/vice-3.5/src/monitor/
H A Dasm6502.c57 static const asm_opcode_info_t opcode_list[] = { variable
333 return opcode_list + p0; in asm_opcode_info_get()
H A Dasm65816.c96 static const asm_opcode_info_t opcode_list[] = { variable
372 return opcode_list + p0; in asm_opcode_info_get()
H A DasmR65C02.c84 static const asm_opcode_info_t opcode_list[] = { variable
360 return opcode_list + p0; in asm_opcode_info_get()

123