diff options
| author | Mike Pall <mike> | 2011-12-12 23:11:31 +0100 |
|---|---|---|
| committer | Mike Pall <mike> | 2011-12-12 23:11:49 +0100 |
| commit | 1b0d64600485c0fcf53b34c1cb263b720a27b5ea (patch) | |
| tree | 923efeaae65de8aaa13d732b37b0afc816d79a1a | |
| parent | 10474987bd58a2183d848cc7ef40aa2d4e9125ba (diff) | |
| download | luajit-1b0d64600485c0fcf53b34c1cb263b720a27b5ea.tar.gz luajit-1b0d64600485c0fcf53b34c1cb263b720a27b5ea.tar.bz2 luajit-1b0d64600485c0fcf53b34c1cb263b720a27b5ea.zip | |
FFI: Add callback support for PPC.
| -rw-r--r-- | src/buildvm_ppc.dasc | 92 | ||||
| -rw-r--r-- | src/buildvm_ppc.h | 2549 | ||||
| -rw-r--r-- | src/lj_ccallback.c | 58 | ||||
| -rw-r--r-- | src/lj_errmsg.h | 2 |
4 files changed, 1521 insertions, 1180 deletions
diff --git a/src/buildvm_ppc.dasc b/src/buildvm_ppc.dasc index 1cbf3a74..c26f3924 100644 --- a/src/buildvm_ppc.dasc +++ b/src/buildvm_ppc.dasc | |||
| @@ -98,11 +98,14 @@ | |||
| 98 | | | 98 | | |
| 99 | |.macro saveregs | 99 | |.macro saveregs |
| 100 | | stwu sp, -CFRAME_SPACE(sp) | 100 | | stwu sp, -CFRAME_SPACE(sp) |
| 101 | | save_ 14; save_ 15; save_ 16; save_ 17; save_ 18; save_ 19 | 101 | | save_ 14; save_ 15; save_ 16 |
| 102 | | mflr r0; mfcr r12 | 102 | | mflr r0 |
| 103 | | save_ 20; save_ 21; save_ 22; save_ 23; save_ 24; save_ 25 | 103 | | save_ 17; save_ 18; save_ 19; save_ 20; save_ 21; save_ 22 |
| 104 | | stw r0, SAVE_LR; stw r12, SAVE_CR | 104 | | stw r0, SAVE_LR |
| 105 | | save_ 23; save_ 24; save_ 25 | ||
| 106 | | mfcr r0 | ||
| 105 | | save_ 26; save_ 27; save_ 28; save_ 29; save_ 30; save_ 31 | 107 | | save_ 26; save_ 27; save_ 28; save_ 29; save_ 30; save_ 31 |
| 108 | | stw r0, SAVE_CR | ||
| 106 | |.endmacro | 109 | |.endmacro |
| 107 | | | 110 | | |
| 108 | |.macro restoreregs | 111 | |.macro restoreregs |
| @@ -610,21 +613,29 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 610 | | mr RB, BASE | 613 | | mr RB, BASE |
| 611 | | mr BASE, TMP2 // Restore caller BASE. | 614 | | mr BASE, TMP2 // Restore caller BASE. |
| 612 | | lwz LFUNC:TMP1, FRAME_FUNC(TMP2) | 615 | | lwz LFUNC:TMP1, FRAME_FUNC(TMP2) |
| 613 | | cmplwi TMP0, 0 | 616 | #if LJ_HASFFI |
| 617 | | cmplwi TMP0, 1 | ||
| 618 | #endif | ||
| 614 | | lwz PC, -16(RB) // Restore PC from [cont|PC]. | 619 | | lwz PC, -16(RB) // Restore PC from [cont|PC]. |
| 615 | | beq >1 | ||
| 616 | | subi TMP2, RD, 8 | 620 | | subi TMP2, RD, 8 |
| 617 | | lwz TMP1, LFUNC:TMP1->pc | 621 | | lwz TMP1, LFUNC:TMP1->pc |
| 618 | | stwx TISNIL, RA, TMP2 // Ensure one valid arg. | 622 | | stwx TISNIL, RA, TMP2 // Ensure one valid arg. |
| 623 | #if LJ_HASFFI | ||
| 624 | | ble >1 | ||
| 625 | #endif | ||
| 619 | | lwz KBASE, PC2PROTO(k)(TMP1) | 626 | | lwz KBASE, PC2PROTO(k)(TMP1) |
| 620 | | // BASE = base, RA = resultptr, RB = meta base | 627 | | // BASE = base, RA = resultptr, RB = meta base |
| 621 | | mtctr TMP0 | 628 | | mtctr TMP0 |
| 622 | | bctr // Jump to continuation. | 629 | | bctr // Jump to continuation. |
| 623 | | | 630 | | |
| 624 | |1: // Tail call from C function. | 631 | #if LJ_HASFFI |
| 632 | |1: | ||
| 633 | | beq ->cont_ffi_callback // cont = 1: return from FFI callback. | ||
| 634 | | // cont = 0: tailcall from C function. | ||
| 625 | | subi TMP1, RB, 16 | 635 | | subi TMP1, RB, 16 |
| 626 | | sub RC, TMP1, BASE | 636 | | sub RC, TMP1, BASE |
| 627 | | b ->vm_call_tail | 637 | | b ->vm_call_tail |
| 638 | #endif | ||
| 628 | | | 639 | | |
| 629 | |->cont_cat: // RA = resultptr, RB = meta base | 640 | |->cont_cat: // RA = resultptr, RB = meta base |
| 630 | | lwz INS, -4(PC) | 641 | | lwz INS, -4(PC) |
| @@ -2490,7 +2501,7 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 2490 | | lwz r0, 36(sp) | 2501 | | lwz r0, 36(sp) |
| 2491 | | fmul FARG1, FARG1, f15 | 2502 | | fmul FARG1, FARG1, f15 |
| 2492 | | mtlr r0 | 2503 | | mtlr r0 |
| 2493 | | fsub FARG1, f14, FARG1; | 2504 | | fsub FARG1, f14, FARG1 |
| 2494 | | lfd f14, 16(sp); lfd f15, 24(sp); addi sp, sp, 32; blr | 2505 | | lfd f14, 16(sp); lfd f15, 24(sp); addi sp, sp, 32; blr |
| 2495 | |1: | 2506 | |1: |
| 2496 | | b extern pow | 2507 | | b extern pow |
| @@ -2527,6 +2538,71 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 2527 | |//-- FFI helper functions ----------------------------------------------- | 2538 | |//-- FFI helper functions ----------------------------------------------- |
| 2528 | |//----------------------------------------------------------------------- | 2539 | |//----------------------------------------------------------------------- |
| 2529 | | | 2540 | | |
| 2541 | |// Handler for callback functions. Callback slot number in r11, g in r12. | ||
| 2542 | |->vm_ffi_callback: | ||
| 2543 | #if LJ_HASFFI | ||
| 2544 | |.type CTSTATE, CTState, PC | ||
| 2545 | | saveregs | ||
| 2546 | | lwz CTSTATE, GL:r12->ctype_state | ||
| 2547 | | addi DISPATCH, r12, GG_G2DISP | ||
| 2548 | | stw r11, CTSTATE->cb.slot | ||
| 2549 | | stw r3, CTSTATE->cb.gpr[0] | ||
| 2550 | | stfd f1, CTSTATE->cb.fpr[0] | ||
| 2551 | | stw r4, CTSTATE->cb.gpr[1] | ||
| 2552 | | stfd f2, CTSTATE->cb.fpr[1] | ||
| 2553 | | stw r5, CTSTATE->cb.gpr[2] | ||
| 2554 | | stfd f3, CTSTATE->cb.fpr[2] | ||
| 2555 | | stw r6, CTSTATE->cb.gpr[3] | ||
| 2556 | | stfd f4, CTSTATE->cb.fpr[3] | ||
| 2557 | | stw r7, CTSTATE->cb.gpr[4] | ||
| 2558 | | stfd f5, CTSTATE->cb.fpr[4] | ||
| 2559 | | stw r8, CTSTATE->cb.gpr[5] | ||
| 2560 | | stfd f6, CTSTATE->cb.fpr[5] | ||
| 2561 | | stw r9, CTSTATE->cb.gpr[6] | ||
| 2562 | | stfd f7, CTSTATE->cb.fpr[6] | ||
| 2563 | | stw r10, CTSTATE->cb.gpr[7] | ||
| 2564 | | stfd f8, CTSTATE->cb.fpr[7] | ||
| 2565 | | addi TMP0, sp, CFRAME_SPACE+8 | ||
| 2566 | | stw TMP0, CTSTATE->cb.stack | ||
| 2567 | | mr CARG1, CTSTATE | ||
| 2568 | | stw CTSTATE, SAVE_PC // Any value outside of bytecode is ok. | ||
| 2569 | | mr CARG2, sp | ||
| 2570 | | bl extern lj_ccallback_enter // (CTState *cts, void *cf) | ||
| 2571 | | // Returns lua_State *. | ||
| 2572 | | lwz BASE, L:CRET1->base | ||
| 2573 | | li TISNUM, LJ_TISNUM // Setup type comparison constants. | ||
| 2574 | | lwz RC, L:CRET1->top | ||
| 2575 | | lus TMP3, 0x59c0 // TOBIT = 2^52 + 2^51 (float). | ||
| 2576 | | li ZERO, 0 | ||
| 2577 | | mr L, CRET1 | ||
| 2578 | | stw TMP3, TMPD | ||
| 2579 | | lwz LFUNC:RB, FRAME_FUNC(BASE) | ||
| 2580 | | ori TMP3, TMP3, 0x0004 // TONUM = 2^52 + 2^51 + 2^31 (float). | ||
| 2581 | | li TISNIL, LJ_TNIL | ||
| 2582 | | li_vmstate INTERP | ||
| 2583 | | lfs TOBIT, TMPD | ||
| 2584 | | stw TMP3, TMPD | ||
| 2585 | | sub RC, RC, BASE | ||
| 2586 | | st_vmstate | ||
| 2587 | | lfs TONUM, TMPD | ||
| 2588 | | ins_callt | ||
| 2589 | #endif | ||
| 2590 | | | ||
| 2591 | |->cont_ffi_callback: // Return from FFI callback. | ||
| 2592 | #if LJ_HASFFI | ||
| 2593 | | lwz CTSTATE, DISPATCH_GL(ctype_state)(DISPATCH) | ||
| 2594 | | stw BASE, L->base | ||
| 2595 | | stw RB, L->top | ||
| 2596 | | stw L, CTSTATE->L | ||
| 2597 | | mr CARG1, CTSTATE | ||
| 2598 | | mr CARG2, RA | ||
| 2599 | | bl extern lj_ccallback_leave // (CTState *cts, TValue *o) | ||
| 2600 | | lwz CRET1, CTSTATE->cb.gpr[0] | ||
| 2601 | | lfd FARG1, CTSTATE->cb.fpr[0] | ||
| 2602 | | lwz CRET2, CTSTATE->cb.gpr[1] | ||
| 2603 | | b ->vm_leave_unw | ||
| 2604 | #endif | ||
| 2605 | | | ||
| 2530 | |->vm_ffi_call: // Call C function via FFI. | 2606 | |->vm_ffi_call: // Call C function via FFI. |
| 2531 | | // Caveat: needs special frame unwinding, see below. | 2607 | | // Caveat: needs special frame unwinding, see below. |
| 2532 | #if LJ_HASFFI | 2608 | #if LJ_HASFFI |
diff --git a/src/buildvm_ppc.h b/src/buildvm_ppc.h index 80d713c9..b42b5faa 100644 --- a/src/buildvm_ppc.h +++ b/src/buildvm_ppc.h | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #define DASM_SECTION_CODE_OP 0 | 12 | #define DASM_SECTION_CODE_OP 0 |
| 13 | #define DASM_SECTION_CODE_SUB 1 | 13 | #define DASM_SECTION_CODE_SUB 1 |
| 14 | #define DASM_MAXSECTION 2 | 14 | #define DASM_MAXSECTION 2 |
| 15 | static const unsigned int build_actionlist[7580] = { | 15 | static const unsigned int build_actionlist[7771] = { |
| 16 | 0x00010001, | 16 | 0x00010001, |
| 17 | 0x00060014, | 17 | 0x00060014, |
| 18 | 0x72000000, | 18 | 0x72000000, |
| @@ -287,6 +287,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 287 | 0x00098200, | 287 | 0x00098200, |
| 288 | 0xda010000, | 288 | 0xda010000, |
| 289 | 0x00098200, | 289 | 0x00098200, |
| 290 | 0x7c0802a6, | ||
| 290 | 0x92210000, | 291 | 0x92210000, |
| 291 | 0x00098200, | 292 | 0x00098200, |
| 292 | 0x00000000, | 293 | 0x00000000, |
| @@ -300,8 +301,6 @@ static const unsigned int build_actionlist[7580] = { | |||
| 300 | 0x00098200, | 301 | 0x00098200, |
| 301 | 0xda610000, | 302 | 0xda610000, |
| 302 | 0x00098200, | 303 | 0x00098200, |
| 303 | 0x7c0802a6, | ||
| 304 | 0x7d800026, | ||
| 305 | 0x92810000, | 304 | 0x92810000, |
| 306 | 0x00098200, | 305 | 0x00098200, |
| 307 | 0xda810000, | 306 | 0xda810000, |
| @@ -314,6 +313,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 314 | 0x00098200, | 313 | 0x00098200, |
| 315 | 0xdac10000, | 314 | 0xdac10000, |
| 316 | 0x00098200, | 315 | 0x00098200, |
| 316 | 0x90010114, | ||
| 317 | 0x92e10000, | 317 | 0x92e10000, |
| 318 | 0x00098200, | 318 | 0x00098200, |
| 319 | 0xdae10000, | 319 | 0xdae10000, |
| @@ -326,8 +326,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 326 | 0x00098200, | 326 | 0x00098200, |
| 327 | 0xdb210000, | 327 | 0xdb210000, |
| 328 | 0x00098200, | 328 | 0x00098200, |
| 329 | 0x90010114, | 329 | 0x7c000026, |
| 330 | 0x91810034, | ||
| 331 | 0x93410000, | 330 | 0x93410000, |
| 332 | 0x00098200, | 331 | 0x00098200, |
| 333 | 0xdb410000, | 332 | 0xdb410000, |
| @@ -353,6 +352,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 353 | 0x00098200, | 352 | 0x00098200, |
| 354 | 0xdbe10000, | 353 | 0xdbe10000, |
| 355 | 0x00098200, | 354 | 0x00098200, |
| 355 | 0x90010034, | ||
| 356 | 0x7c721b78, | 356 | 0x7c721b78, |
| 357 | 0x82320000, | 357 | 0x82320000, |
| 358 | 0x00098200, | 358 | 0x00098200, |
| @@ -424,6 +424,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 424 | 0x00098200, | 424 | 0x00098200, |
| 425 | 0xda010000, | 425 | 0xda010000, |
| 426 | 0x00098200, | 426 | 0x00098200, |
| 427 | 0x7c0802a6, | ||
| 427 | 0x92210000, | 428 | 0x92210000, |
| 428 | 0x00098200, | 429 | 0x00098200, |
| 429 | 0xda210000, | 430 | 0xda210000, |
| @@ -436,8 +437,6 @@ static const unsigned int build_actionlist[7580] = { | |||
| 436 | 0x00098200, | 437 | 0x00098200, |
| 437 | 0xda610000, | 438 | 0xda610000, |
| 438 | 0x00098200, | 439 | 0x00098200, |
| 439 | 0x7c0802a6, | ||
| 440 | 0x7d800026, | ||
| 441 | 0x92810000, | 440 | 0x92810000, |
| 442 | 0x00098200, | 441 | 0x00098200, |
| 443 | 0xda810000, | 442 | 0xda810000, |
| @@ -450,6 +449,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 450 | 0x00098200, | 449 | 0x00098200, |
| 451 | 0xdac10000, | 450 | 0xdac10000, |
| 452 | 0x00098200, | 451 | 0x00098200, |
| 452 | 0x90010114, | ||
| 453 | 0x92e10000, | 453 | 0x92e10000, |
| 454 | 0x00098200, | 454 | 0x00098200, |
| 455 | 0x00000000, | 455 | 0x00000000, |
| @@ -463,8 +463,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 463 | 0x00098200, | 463 | 0x00098200, |
| 464 | 0xdb210000, | 464 | 0xdb210000, |
| 465 | 0x00098200, | 465 | 0x00098200, |
| 466 | 0x90010114, | 466 | 0x7c000026, |
| 467 | 0x91810034, | ||
| 468 | 0x93410000, | 467 | 0x93410000, |
| 469 | 0x00098200, | 468 | 0x00098200, |
| 470 | 0xdb410000, | 469 | 0xdb410000, |
| @@ -489,6 +488,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 489 | 0x00098200, | 488 | 0x00098200, |
| 490 | 0xdbe10000, | 489 | 0xdbe10000, |
| 491 | 0x00098200, | 490 | 0x00098200, |
| 491 | 0x90010034, | ||
| 492 | 0x3a000000, | 492 | 0x3a000000, |
| 493 | 0x00098200, | 493 | 0x00098200, |
| 494 | 0x90c10030, | 494 | 0x90c10030, |
| @@ -509,6 +509,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 509 | 0x00098200, | 509 | 0x00098200, |
| 510 | 0xda010000, | 510 | 0xda010000, |
| 511 | 0x00098200, | 511 | 0x00098200, |
| 512 | 0x7c0802a6, | ||
| 512 | 0x92210000, | 513 | 0x92210000, |
| 513 | 0x00098200, | 514 | 0x00098200, |
| 514 | 0xda210000, | 515 | 0xda210000, |
| @@ -521,8 +522,6 @@ static const unsigned int build_actionlist[7580] = { | |||
| 521 | 0x00098200, | 522 | 0x00098200, |
| 522 | 0xda610000, | 523 | 0xda610000, |
| 523 | 0x00098200, | 524 | 0x00098200, |
| 524 | 0x7c0802a6, | ||
| 525 | 0x7d800026, | ||
| 526 | 0x92810000, | 525 | 0x92810000, |
| 527 | 0x00098200, | 526 | 0x00098200, |
| 528 | 0xda810000, | 527 | 0xda810000, |
| @@ -535,6 +534,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 535 | 0x00098200, | 534 | 0x00098200, |
| 536 | 0xdac10000, | 535 | 0xdac10000, |
| 537 | 0x00098200, | 536 | 0x00098200, |
| 537 | 0x90010114, | ||
| 538 | 0x92e10000, | 538 | 0x92e10000, |
| 539 | 0x00098200, | 539 | 0x00098200, |
| 540 | 0xdae10000, | 540 | 0xdae10000, |
| @@ -548,8 +548,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 548 | 0xdb210000, | 548 | 0xdb210000, |
| 549 | 0x00098200, | 549 | 0x00098200, |
| 550 | 0x00000000, | 550 | 0x00000000, |
| 551 | 0x90010114, | 551 | 0x7c000026, |
| 552 | 0x91810034, | ||
| 553 | 0x93410000, | 552 | 0x93410000, |
| 554 | 0x00098200, | 553 | 0x00098200, |
| 555 | 0xdb410000, | 554 | 0xdb410000, |
| @@ -574,6 +573,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 574 | 0x00098200, | 573 | 0x00098200, |
| 575 | 0xdbe10000, | 574 | 0xdbe10000, |
| 576 | 0x00098200, | 575 | 0x00098200, |
| 576 | 0x90010034, | ||
| 577 | 0x3a000000, | 577 | 0x3a000000, |
| 578 | 0x00098200, | 578 | 0x00098200, |
| 579 | 0x0006000b, | 579 | 0x0006000b, |
| @@ -650,6 +650,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 650 | 0x00098200, | 650 | 0x00098200, |
| 651 | 0xda010000, | 651 | 0xda010000, |
| 652 | 0x00098200, | 652 | 0x00098200, |
| 653 | 0x7c0802a6, | ||
| 653 | 0x92210000, | 654 | 0x92210000, |
| 654 | 0x00098200, | 655 | 0x00098200, |
| 655 | 0xda210000, | 656 | 0xda210000, |
| @@ -662,8 +663,6 @@ static const unsigned int build_actionlist[7580] = { | |||
| 662 | 0x00098200, | 663 | 0x00098200, |
| 663 | 0xda610000, | 664 | 0xda610000, |
| 664 | 0x00098200, | 665 | 0x00098200, |
| 665 | 0x7c0802a6, | ||
| 666 | 0x7d800026, | ||
| 667 | 0x92810000, | 666 | 0x92810000, |
| 668 | 0x00098200, | 667 | 0x00098200, |
| 669 | 0x00000000, | 668 | 0x00000000, |
| @@ -677,6 +676,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 677 | 0x00098200, | 676 | 0x00098200, |
| 678 | 0xdac10000, | 677 | 0xdac10000, |
| 679 | 0x00098200, | 678 | 0x00098200, |
| 679 | 0x90010114, | ||
| 680 | 0x92e10000, | 680 | 0x92e10000, |
| 681 | 0x00098200, | 681 | 0x00098200, |
| 682 | 0xdae10000, | 682 | 0xdae10000, |
| @@ -689,8 +689,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 689 | 0x00098200, | 689 | 0x00098200, |
| 690 | 0xdb210000, | 690 | 0xdb210000, |
| 691 | 0x00098200, | 691 | 0x00098200, |
| 692 | 0x90010114, | 692 | 0x7c000026, |
| 693 | 0x91810034, | ||
| 694 | 0x93410000, | 693 | 0x93410000, |
| 695 | 0x00098200, | 694 | 0x00098200, |
| 696 | 0xdb410000, | 695 | 0xdb410000, |
| @@ -716,6 +715,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 716 | 0x00000000, | 715 | 0x00000000, |
| 717 | 0xdbe10000, | 716 | 0xdbe10000, |
| 718 | 0x00098200, | 717 | 0x00098200, |
| 718 | 0x90010034, | ||
| 719 | 0x7c721b78, | 719 | 0x7c721b78, |
| 720 | 0x80030000, | 720 | 0x80030000, |
| 721 | 0x00098200, | 721 | 0x00098200, |
| @@ -750,24 +750,32 @@ static const unsigned int build_actionlist[7580] = { | |||
| 750 | 0x7dca7378, | 750 | 0x7dca7378, |
| 751 | 0x7d2e4b78, | 751 | 0x7d2e4b78, |
| 752 | 0x8109fffc, | 752 | 0x8109fffc, |
| 753 | 0x28000000, | 753 | 0x00000000, |
| 754 | 0x28000001, | ||
| 755 | 0x00000000, | ||
| 754 | 0x820afff0, | 756 | 0x820afff0, |
| 755 | 0x41820000, | ||
| 756 | 0x00050801, | ||
| 757 | 0x392cfff8, | 757 | 0x392cfff8, |
| 758 | 0x81080000, | 758 | 0x81080000, |
| 759 | 0x00098200, | 759 | 0x00098200, |
| 760 | 0x7ef4492e, | 760 | 0x7ef4492e, |
| 761 | 0x00000000, | ||
| 762 | 0x40810000, | ||
| 763 | 0x00050801, | ||
| 764 | 0x00000000, | ||
| 761 | 0x81e80000, | 765 | 0x81e80000, |
| 762 | 0x00098200, | 766 | 0x00098200, |
| 763 | 0x7c0903a6, | 767 | 0x7c0903a6, |
| 764 | 0x4e800420, | 768 | 0x4e800420, |
| 769 | 0x00000000, | ||
| 765 | 0x0006000b, | 770 | 0x0006000b, |
| 771 | 0x41820000, | ||
| 772 | 0x00050828, | ||
| 766 | 0x390afff0, | 773 | 0x390afff0, |
| 767 | 0x7d6e4050, | 774 | 0x7d6e4050, |
| 768 | 0x48000000, | 775 | 0x48000000, |
| 769 | 0x00050028, | 776 | 0x00050029, |
| 770 | 0x00060029, | 777 | 0x00000000, |
| 778 | 0x0006002a, | ||
| 771 | 0x80f0fffc, | 779 | 0x80f0fffc, |
| 772 | 0x388afff0, | 780 | 0x388afff0, |
| 773 | 0x54f55d78, | 781 | 0x54f55d78, |
| @@ -780,14 +788,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 780 | 0x54f4dd78, | 788 | 0x54f4dd78, |
| 781 | 0xd8040000, | 789 | 0xd8040000, |
| 782 | 0x40a20000, | 790 | 0x40a20000, |
| 783 | 0x0005082a, | 791 | 0x0005082b, |
| 784 | 0x7c0ea5ae, | 792 | 0x7c0ea5ae, |
| 785 | 0x48000000, | 793 | 0x48000000, |
| 786 | 0x0005002b, | 794 | 0x0005002c, |
| 787 | 0x0006002c, | 795 | 0x0006002d, |
| 788 | 0x38b10000, | 796 | 0x38b10000, |
| 789 | 0x00098200, | 797 | 0x00098200, |
| 790 | 0x00000000, | ||
| 791 | 0x38000000, | 798 | 0x38000000, |
| 792 | 0x00098200, | 799 | 0x00098200, |
| 793 | 0x54ea5d78, | 800 | 0x54ea5d78, |
| @@ -796,7 +803,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 796 | 0x90050000, | 803 | 0x90050000, |
| 797 | 0x48000000, | 804 | 0x48000000, |
| 798 | 0x00050001, | 805 | 0x00050001, |
| 799 | 0x0006002d, | 806 | 0x0006002e, |
| 800 | 0x38910000, | 807 | 0x38910000, |
| 801 | 0x00098200, | 808 | 0x00098200, |
| 802 | 0x38000000, | 809 | 0x38000000, |
| @@ -811,7 +818,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 811 | 0x91050000, | 818 | 0x91050000, |
| 812 | 0x48000000, | 819 | 0x48000000, |
| 813 | 0x00050001, | 820 | 0x00050001, |
| 814 | 0x0006002e, | 821 | 0x0006002f, |
| 815 | 0x00000000, | 822 | 0x00000000, |
| 816 | 0x9001000c, | 823 | 0x9001000c, |
| 817 | 0xc8010008, | 824 | 0xc8010008, |
| @@ -829,7 +836,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 829 | 0x00000000, | 836 | 0x00000000, |
| 830 | 0x48000000, | 837 | 0x48000000, |
| 831 | 0x00050001, | 838 | 0x00050001, |
| 832 | 0x0006002f, | 839 | 0x00060030, |
| 833 | 0x54ea5d78, | 840 | 0x54ea5d78, |
| 834 | 0x54eb9d78, | 841 | 0x54eb9d78, |
| 835 | 0x7c8e5214, | 842 | 0x7c8e5214, |
| @@ -867,7 +874,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 867 | 0x39600010, | 874 | 0x39600010, |
| 868 | 0x48000000, | 875 | 0x48000000, |
| 869 | 0x00050026, | 876 | 0x00050026, |
| 870 | 0x00060030, | 877 | 0x00060031, |
| 871 | 0x38b10000, | 878 | 0x38b10000, |
| 872 | 0x00098200, | 879 | 0x00098200, |
| 873 | 0x38000000, | 880 | 0x38000000, |
| @@ -878,7 +885,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 878 | 0x90050000, | 885 | 0x90050000, |
| 879 | 0x48000000, | 886 | 0x48000000, |
| 880 | 0x00050001, | 887 | 0x00050001, |
| 881 | 0x00060031, | 888 | 0x00060032, |
| 882 | 0x38910000, | 889 | 0x38910000, |
| 883 | 0x00098200, | 890 | 0x00098200, |
| 884 | 0x38000000, | 891 | 0x38000000, |
| @@ -893,7 +900,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 893 | 0x91050000, | 900 | 0x91050000, |
| 894 | 0x48000000, | 901 | 0x48000000, |
| 895 | 0x00050001, | 902 | 0x00050001, |
| 896 | 0x00060032, | 903 | 0x00060033, |
| 897 | 0x00000000, | 904 | 0x00000000, |
| 898 | 0x9001000c, | 905 | 0x9001000c, |
| 899 | 0xc8010008, | 906 | 0xc8010008, |
| @@ -911,7 +918,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 911 | 0x00000000, | 918 | 0x00000000, |
| 912 | 0x48000000, | 919 | 0x48000000, |
| 913 | 0x00050001, | 920 | 0x00050001, |
| 914 | 0x00060033, | 921 | 0x00060034, |
| 915 | 0x54ea5d78, | 922 | 0x54ea5d78, |
| 916 | 0x54eb9d78, | 923 | 0x54eb9d78, |
| 917 | 0x7c8e5214, | 924 | 0x7c8e5214, |
| @@ -950,7 +957,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 950 | 0xd80e0010, | 957 | 0xd80e0010, |
| 951 | 0x48000000, | 958 | 0x48000000, |
| 952 | 0x00050026, | 959 | 0x00050026, |
| 953 | 0x00060034, | 960 | 0x00060035, |
| 954 | 0x7e439378, | 961 | 0x7e439378, |
| 955 | 0x3a10fffc, | 962 | 0x3a10fffc, |
| 956 | 0x00000000, | 963 | 0x00000000, |
| @@ -972,7 +979,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 972 | 0x0006000d, | 979 | 0x0006000d, |
| 973 | 0x28030001, | 980 | 0x28030001, |
| 974 | 0x41810000, | 981 | 0x41810000, |
| 975 | 0x00050835, | 982 | 0x00050836, |
| 976 | 0x20630000, | 983 | 0x20630000, |
| 977 | 0x0006000e, | 984 | 0x0006000e, |
| 978 | 0x80f00000, | 985 | 0x80f00000, |
| @@ -982,7 +989,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 982 | 0x00098200, | 989 | 0x00098200, |
| 983 | 0x7d291838, | 990 | 0x7d291838, |
| 984 | 0x7e104a14, | 991 | 0x7e104a14, |
| 985 | 0x0006002b, | 992 | 0x0006002c, |
| 986 | 0x80f00000, | 993 | 0x80f00000, |
| 987 | 0x3a100004, | 994 | 0x3a100004, |
| 988 | 0x54e815ba, | 995 | 0x54e815ba, |
| @@ -993,14 +1000,14 @@ static const unsigned int build_actionlist[7580] = { | |||
| 993 | 0x54f4dd78, | 1000 | 0x54f4dd78, |
| 994 | 0x54eb9d78, | 1001 | 0x54eb9d78, |
| 995 | 0x4e800420, | 1002 | 0x4e800420, |
| 996 | 0x00060036, | 1003 | 0x00060037, |
| 997 | 0x80f0fffc, | 1004 | 0x80f0fffc, |
| 998 | 0xc8140000, | 1005 | 0xc8140000, |
| 999 | 0x54e8dd78, | 1006 | 0x54e8dd78, |
| 1000 | 0x7c0e45ae, | 1007 | 0x7c0e45ae, |
| 1001 | 0x48000000, | 1008 | 0x48000000, |
| 1002 | 0x0005002b, | 1009 | 0x0005002c, |
| 1003 | 0x00060037, | 1010 | 0x00060038, |
| 1004 | 0x80140000, | 1011 | 0x80140000, |
| 1005 | 0x20000000, | 1012 | 0x20000000, |
| 1006 | 0x00098200, | 1013 | 0x00098200, |
| @@ -1008,14 +1015,14 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1008 | 0x7c6318f8, | 1015 | 0x7c6318f8, |
| 1009 | 0x48000000, | 1016 | 0x48000000, |
| 1010 | 0x0005000e, | 1017 | 0x0005000e, |
| 1011 | 0x00060038, | 1018 | 0x00060039, |
| 1012 | 0x80140000, | 1019 | 0x80140000, |
| 1013 | 0x20000000, | 1020 | 0x20000000, |
| 1014 | 0x00098200, | 1021 | 0x00098200, |
| 1015 | 0x7c631910, | 1022 | 0x7c631910, |
| 1016 | 0x48000000, | 1023 | 0x48000000, |
| 1017 | 0x0005000e, | 1024 | 0x0005000e, |
| 1018 | 0x00060039, | 1025 | 0x0006003a, |
| 1019 | 0x3a10fffc, | 1026 | 0x3a10fffc, |
| 1020 | 0x91d20000, | 1027 | 0x91d20000, |
| 1021 | 0x00098200, | 1028 | 0x00098200, |
| @@ -1025,7 +1032,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1025 | 0x00030004, | 1032 | 0x00030004, |
| 1026 | 0x48000000, | 1033 | 0x48000000, |
| 1027 | 0x0005000d, | 1034 | 0x0005000d, |
| 1028 | 0x0006003a, | 1035 | 0x0006003b, |
| 1029 | 0x00000000, | 1036 | 0x00000000, |
| 1030 | 0x7ce43b78, | 1037 | 0x7ce43b78, |
| 1031 | 0x3a10fffc, | 1038 | 0x3a10fffc, |
| @@ -1038,37 +1045,37 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1038 | 0x48000000, | 1045 | 0x48000000, |
| 1039 | 0x0005000d, | 1046 | 0x0005000d, |
| 1040 | 0x00000000, | 1047 | 0x00000000, |
| 1041 | 0x0006003b, | 1048 | 0x0006003c, |
| 1042 | 0x7caf5a14, | 1049 | 0x7caf5a14, |
| 1043 | 0x7cce5214, | 1050 | 0x7cce5214, |
| 1044 | 0x48000000, | 1051 | 0x48000000, |
| 1045 | 0x00050001, | 1052 | 0x00050001, |
| 1046 | 0x0006003c, | 1053 | 0x0006003d, |
| 1047 | 0x00000000, | 1054 | 0x00000000, |
| 1048 | 0x7d655b78, | 1055 | 0x7d655b78, |
| 1049 | 0x7d465378, | 1056 | 0x7d465378, |
| 1050 | 0x48000000, | 1057 | 0x48000000, |
| 1051 | 0x00050001, | 1058 | 0x00050001, |
| 1052 | 0x00000000, | 1059 | 0x00000000, |
| 1053 | 0x0006003d, | 1060 | 0x0006003e, |
| 1054 | 0x7d856378, | 1061 | 0x7d856378, |
| 1055 | 0x7d866378, | 1062 | 0x7d866378, |
| 1056 | 0x48000000, | 1063 | 0x48000000, |
| 1057 | 0x00050001, | 1064 | 0x00050001, |
| 1058 | 0x0006003e, | 1065 | 0x0006003f, |
| 1059 | 0x7cae5214, | 1066 | 0x7cae5214, |
| 1060 | 0x7ccf5a14, | 1067 | 0x7ccf5a14, |
| 1061 | 0x48000000, | 1068 | 0x48000000, |
| 1062 | 0x00050001, | 1069 | 0x00050001, |
| 1063 | 0x0006003f, | 1070 | 0x00060040, |
| 1064 | 0x7cae5214, | 1071 | 0x7cae5214, |
| 1065 | 0x7cce5a14, | 1072 | 0x7cce5a14, |
| 1066 | 0x00000000, | 1073 | 0x00000000, |
| 1067 | 0x48000000, | 1074 | 0x48000000, |
| 1068 | 0x00050001, | 1075 | 0x00050001, |
| 1069 | 0x00000000, | 1076 | 0x00000000, |
| 1070 | 0x00060040, | ||
| 1071 | 0x00060041, | 1077 | 0x00060041, |
| 1078 | 0x00060042, | ||
| 1072 | 0x00000000, | 1079 | 0x00000000, |
| 1073 | 0x7d455378, | 1080 | 0x7d455378, |
| 1074 | 0x7d665b78, | 1081 | 0x7d665b78, |
| @@ -1084,8 +1091,8 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1084 | 0x00030006, | 1091 | 0x00030006, |
| 1085 | 0x28030000, | 1092 | 0x28030000, |
| 1086 | 0x41820000, | 1093 | 0x41820000, |
| 1087 | 0x0005082b, | 1094 | 0x0005082c, |
| 1088 | 0x00060035, | 1095 | 0x00060036, |
| 1089 | 0x7d0e1850, | 1096 | 0x7d0e1850, |
| 1090 | 0x9203fff0, | 1097 | 0x9203fff0, |
| 1091 | 0x7dc97378, | 1098 | 0x7dc97378, |
| @@ -1095,7 +1102,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1095 | 0x39600010, | 1102 | 0x39600010, |
| 1096 | 0x48000000, | 1103 | 0x48000000, |
| 1097 | 0x00050024, | 1104 | 0x00050024, |
| 1098 | 0x00060042, | 1105 | 0x00060043, |
| 1099 | 0x00000000, | 1106 | 0x00000000, |
| 1100 | 0x7c751b78, | 1107 | 0x7c751b78, |
| 1101 | 0x00000000, | 1108 | 0x00000000, |
| @@ -1109,13 +1116,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1109 | 0x00000000, | 1116 | 0x00000000, |
| 1110 | 0x28030000, | 1117 | 0x28030000, |
| 1111 | 0x40820000, | 1118 | 0x40820000, |
| 1112 | 0x00050835, | 1119 | 0x00050836, |
| 1113 | 0x7ea3ab78, | 1120 | 0x7ea3ab78, |
| 1114 | 0x48000000, | 1121 | 0x48000000, |
| 1115 | 0x00050043, | 1122 | 0x00050044, |
| 1116 | 0x00000000, | 1123 | 0x00000000, |
| 1117 | 0x48000000, | 1124 | 0x48000000, |
| 1118 | 0x00050035, | 1125 | 0x00050036, |
| 1119 | 0x00000000, | 1126 | 0x00000000, |
| 1120 | 0x00060025, | 1127 | 0x00060025, |
| 1121 | 0x7e439378, | 1128 | 0x7e439378, |
| @@ -1140,7 +1147,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1140 | 0x7e947214, | 1147 | 0x7e947214, |
| 1141 | 0x7c0903a6, | 1148 | 0x7c0903a6, |
| 1142 | 0x4e800420, | 1149 | 0x4e800420, |
| 1143 | 0x00060044, | 1150 | 0x00060045, |
| 1144 | 0x7e439378, | 1151 | 0x7e439378, |
| 1145 | 0x91d20000, | 1152 | 0x91d20000, |
| 1146 | 0x00098200, | 1153 | 0x00098200, |
| @@ -1154,8 +1161,8 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1154 | 0x39750008, | 1161 | 0x39750008, |
| 1155 | 0x8154fffc, | 1162 | 0x8154fffc, |
| 1156 | 0x48000000, | 1163 | 0x48000000, |
| 1157 | 0x00050045, | 1164 | 0x00050046, |
| 1158 | 0x00060046, | 1165 | 0x00060047, |
| 1159 | 0x7e439378, | 1166 | 0x7e439378, |
| 1160 | 0x91d20000, | 1167 | 0x91d20000, |
| 1161 | 0x00098200, | 1168 | 0x00098200, |
| @@ -1179,24 +1186,24 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1179 | 0x00000000, | 1186 | 0x00000000, |
| 1180 | 0x48000000, | 1187 | 0x48000000, |
| 1181 | 0x00070000, | 1188 | 0x00070000, |
| 1182 | 0x00060047, | 1189 | 0x00060048, |
| 1183 | 0x280b0008, | 1190 | 0x280b0008, |
| 1184 | 0x80ae0000, | 1191 | 0x80ae0000, |
| 1185 | 0x806e0004, | 1192 | 0x806e0004, |
| 1186 | 0x41800000, | 1193 | 0x41800000, |
| 1187 | 0x00050848, | 1194 | 0x00050849, |
| 1188 | 0x39000000, | 1195 | 0x39000000, |
| 1189 | 0x00098200, | 1196 | 0x00098200, |
| 1190 | 0x3a8efff8, | 1197 | 0x3a8efff8, |
| 1191 | 0x7c854040, | 1198 | 0x7c854040, |
| 1192 | 0x820efff8, | 1199 | 0x820efff8, |
| 1193 | 0x40840000, | 1200 | 0x40840000, |
| 1194 | 0x00050848, | 1201 | 0x00050849, |
| 1195 | 0x90b40000, | 1202 | 0x90b40000, |
| 1196 | 0x398b0008, | 1203 | 0x398b0008, |
| 1197 | 0x90740004, | 1204 | 0x90740004, |
| 1198 | 0x41820000, | 1205 | 0x41820000, |
| 1199 | 0x00050849, | 1206 | 0x0005084a, |
| 1200 | 0x39000008, | 1207 | 0x39000008, |
| 1201 | 0x396bfff8, | 1208 | 0x396bfff8, |
| 1202 | 0x0006000b, | 1209 | 0x0006000b, |
| @@ -1207,12 +1214,12 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1207 | 0x40a20000, | 1214 | 0x40a20000, |
| 1208 | 0x0005080b, | 1215 | 0x0005080b, |
| 1209 | 0x48000000, | 1216 | 0x48000000, |
| 1210 | 0x00050049, | 1217 | 0x0005004a, |
| 1211 | 0x0006004a, | 1218 | 0x0006004b, |
| 1212 | 0x280b0008, | 1219 | 0x280b0008, |
| 1213 | 0x806e0000, | 1220 | 0x806e0000, |
| 1214 | 0x41800000, | 1221 | 0x41800000, |
| 1215 | 0x00050848, | 1222 | 0x00050849, |
| 1216 | 0x7c161810, | 1223 | 0x7c161810, |
| 1217 | 0x7d231910, | 1224 | 0x7d231910, |
| 1218 | 0x7d280338, | 1225 | 0x7d280338, |
| @@ -1224,13 +1231,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1224 | 0x00098200, | 1231 | 0x00098200, |
| 1225 | 0x7c2944ae, | 1232 | 0x7c2944ae, |
| 1226 | 0x48000000, | 1233 | 0x48000000, |
| 1227 | 0x0005004b, | 1234 | 0x0005004c, |
| 1228 | 0x0006004c, | 1235 | 0x0006004d, |
| 1229 | 0x280b0008, | 1236 | 0x280b0008, |
| 1230 | 0x80ae0000, | 1237 | 0x80ae0000, |
| 1231 | 0x806e0004, | 1238 | 0x806e0004, |
| 1232 | 0x41800000, | 1239 | 0x41800000, |
| 1233 | 0x00050848, | 1240 | 0x00050849, |
| 1234 | 0x2c050000, | 1241 | 0x2c050000, |
| 1235 | 0x00098200, | 1242 | 0x00098200, |
| 1236 | 0x40820000, | 1243 | 0x40820000, |
| @@ -1246,7 +1253,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1246 | 0x81710000, | 1253 | 0x81710000, |
| 1247 | 0x00098200, | 1254 | 0x00098200, |
| 1248 | 0x41820000, | 1255 | 0x41820000, |
| 1249 | 0x0005084d, | 1256 | 0x0005084e, |
| 1250 | 0x80030000, | 1257 | 0x80030000, |
| 1251 | 0x00098200, | 1258 | 0x00098200, |
| 1252 | 0x38a00000, | 1259 | 0x38a00000, |
| @@ -1283,7 +1290,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1283 | 0x00098200, | 1290 | 0x00098200, |
| 1284 | 0x28090000, | 1291 | 0x28090000, |
| 1285 | 0x41820000, | 1292 | 0x41820000, |
| 1286 | 0x0005084d, | 1293 | 0x0005084e, |
| 1287 | 0x48000000, | 1294 | 0x48000000, |
| 1288 | 0x0005000d, | 1295 | 0x0005000d, |
| 1289 | 0x0006000f, | 1296 | 0x0006000f, |
| @@ -1291,11 +1298,11 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1291 | 0x2c040000, | 1298 | 0x2c040000, |
| 1292 | 0x00098200, | 1299 | 0x00098200, |
| 1293 | 0x41820000, | 1300 | 0x41820000, |
| 1294 | 0x0005084d, | 1301 | 0x0005084e, |
| 1295 | 0x7c852378, | 1302 | 0x7c852378, |
| 1296 | 0x7d034378, | 1303 | 0x7d034378, |
| 1297 | 0x48000000, | 1304 | 0x48000000, |
| 1298 | 0x0005004d, | 1305 | 0x0005004e, |
| 1299 | 0x00060010, | 1306 | 0x00060010, |
| 1300 | 0x2c050000, | 1307 | 0x2c050000, |
| 1301 | 0x00098200, | 1308 | 0x00098200, |
| @@ -1313,35 +1320,35 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1313 | 0x7c69402e, | 1320 | 0x7c69402e, |
| 1314 | 0x48000000, | 1321 | 0x48000000, |
| 1315 | 0x0005000c, | 1322 | 0x0005000c, |
| 1316 | 0x0006004e, | 1323 | 0x0006004f, |
| 1317 | 0x280b0010, | 1324 | 0x280b0010, |
| 1318 | 0x80ae0000, | 1325 | 0x80ae0000, |
| 1319 | 0x80ce0008, | 1326 | 0x80ce0008, |
| 1320 | 0x806e0004, | 1327 | 0x806e0004, |
| 1321 | 0x808e000c, | 1328 | 0x808e000c, |
| 1322 | 0x41800000, | 1329 | 0x41800000, |
| 1323 | 0x00050848, | 1330 | 0x00050849, |
| 1324 | 0x2c050000, | 1331 | 0x2c050000, |
| 1325 | 0x00098200, | 1332 | 0x00098200, |
| 1326 | 0x40820000, | 1333 | 0x40820000, |
| 1327 | 0x00050848, | 1334 | 0x00050849, |
| 1328 | 0x81030000, | 1335 | 0x81030000, |
| 1329 | 0x00098200, | 1336 | 0x00098200, |
| 1330 | 0x2c060000, | 1337 | 0x2c060000, |
| 1331 | 0x00098200, | 1338 | 0x00098200, |
| 1332 | 0x40820000, | 1339 | 0x40820000, |
| 1333 | 0x00050848, | 1340 | 0x00050849, |
| 1334 | 0x28080000, | 1341 | 0x28080000, |
| 1335 | 0x88c30000, | 1342 | 0x88c30000, |
| 1336 | 0x00098200, | 1343 | 0x00098200, |
| 1337 | 0x40820000, | 1344 | 0x40820000, |
| 1338 | 0x00050848, | 1345 | 0x00050849, |
| 1339 | 0x70c00000, | 1346 | 0x70c00000, |
| 1340 | 0x00090200, | 1347 | 0x00090200, |
| 1341 | 0x90830000, | 1348 | 0x90830000, |
| 1342 | 0x00098200, | 1349 | 0x00098200, |
| 1343 | 0x41820000, | 1350 | 0x41820000, |
| 1344 | 0x0005084d, | 1351 | 0x0005084e, |
| 1345 | 0x00000000, | 1352 | 0x00000000, |
| 1346 | 0x80110000, | 1353 | 0x80110000, |
| 1347 | 0x00098200, | 1354 | 0x00098200, |
| @@ -1353,45 +1360,45 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1353 | 0x90030000, | 1360 | 0x90030000, |
| 1354 | 0x00098200, | 1361 | 0x00098200, |
| 1355 | 0x48000000, | 1362 | 0x48000000, |
| 1356 | 0x0005004d, | 1363 | 0x0005004e, |
| 1357 | 0x0006004f, | 1364 | 0x00060050, |
| 1358 | 0x280b0008, | 1365 | 0x280b0008, |
| 1359 | 0x80ce0000, | 1366 | 0x80ce0000, |
| 1360 | 0x808e0004, | 1367 | 0x808e0004, |
| 1361 | 0x41800000, | 1368 | 0x41800000, |
| 1362 | 0x00050848, | 1369 | 0x00050849, |
| 1363 | 0x2c060000, | 1370 | 0x2c060000, |
| 1364 | 0x00098200, | 1371 | 0x00098200, |
| 1365 | 0x40820000, | 1372 | 0x40820000, |
| 1366 | 0x00050848, | 1373 | 0x00050849, |
| 1367 | 0x38ae0008, | 1374 | 0x38ae0008, |
| 1368 | 0x7e439378, | 1375 | 0x7e439378, |
| 1369 | 0x48000001, | 1376 | 0x48000001, |
| 1370 | 0x0003000a, | 1377 | 0x0003000a, |
| 1371 | 0xc8230000, | 1378 | 0xc8230000, |
| 1372 | 0x48000000, | 1379 | 0x48000000, |
| 1373 | 0x0005004b, | 1380 | 0x0005004c, |
| 1374 | 0x00060050, | 1381 | 0x00060051, |
| 1375 | 0x280b0008, | 1382 | 0x280b0008, |
| 1376 | 0x806e0000, | 1383 | 0x806e0000, |
| 1377 | 0xc82e0000, | 1384 | 0xc82e0000, |
| 1378 | 0x40820000, | 1385 | 0x40820000, |
| 1379 | 0x00050848, | 1386 | 0x00050849, |
| 1380 | 0x7c03b040, | 1387 | 0x7c03b040, |
| 1381 | 0x41810000, | 1388 | 0x41810000, |
| 1382 | 0x00050848, | 1389 | 0x00050849, |
| 1383 | 0x48000000, | 1390 | 0x48000000, |
| 1384 | 0x0005004b, | 1391 | 0x0005004c, |
| 1385 | 0x00060051, | 1392 | 0x00060052, |
| 1386 | 0x280b0008, | 1393 | 0x280b0008, |
| 1387 | 0x80ae0000, | 1394 | 0x80ae0000, |
| 1388 | 0x806e0004, | 1395 | 0x806e0004, |
| 1389 | 0x41800000, | 1396 | 0x41800000, |
| 1390 | 0x00050848, | 1397 | 0x00050849, |
| 1391 | 0x2c050000, | 1398 | 0x2c050000, |
| 1392 | 0x00098200, | 1399 | 0x00098200, |
| 1393 | 0x41820000, | 1400 | 0x41820000, |
| 1394 | 0x0005084d, | 1401 | 0x0005084e, |
| 1395 | 0x80110000, | 1402 | 0x80110000, |
| 1396 | 0x00098200, | 1403 | 0x00098200, |
| 1397 | 0x7c05b040, | 1404 | 0x7c05b040, |
| @@ -1401,7 +1408,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1401 | 0x4c413342, | 1408 | 0x4c413342, |
| 1402 | 0x92010020, | 1409 | 0x92010020, |
| 1403 | 0x41820000, | 1410 | 0x41820000, |
| 1404 | 0x00050848, | 1411 | 0x00050849, |
| 1405 | 0x00000000, | 1412 | 0x00000000, |
| 1406 | 0x80110000, | 1413 | 0x80110000, |
| 1407 | 0x00098200, | 1414 | 0x00098200, |
| @@ -1409,7 +1416,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1409 | 0x00098200, | 1416 | 0x00098200, |
| 1410 | 0x7c004040, | 1417 | 0x7c004040, |
| 1411 | 0x40800001, | 1418 | 0x40800001, |
| 1412 | 0x00050852, | 1419 | 0x00050853, |
| 1413 | 0x7e439378, | 1420 | 0x7e439378, |
| 1414 | 0x7dc47378, | 1421 | 0x7dc47378, |
| 1415 | 0x00000000, | 1422 | 0x00000000, |
| @@ -1422,19 +1429,19 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1422 | 0x38a00000, | 1429 | 0x38a00000, |
| 1423 | 0x00098200, | 1430 | 0x00098200, |
| 1424 | 0x48000000, | 1431 | 0x48000000, |
| 1425 | 0x0005004d, | 1432 | 0x0005004e, |
| 1426 | 0x00060053, | 1433 | 0x00060054, |
| 1427 | 0x280b0008, | 1434 | 0x280b0008, |
| 1428 | 0x806e0000, | 1435 | 0x806e0000, |
| 1429 | 0x808e0004, | 1436 | 0x808e0004, |
| 1430 | 0x41800000, | 1437 | 0x41800000, |
| 1431 | 0x00050848, | 1438 | 0x00050849, |
| 1432 | 0x7eee592e, | 1439 | 0x7eee592e, |
| 1433 | 0x2c030000, | 1440 | 0x2c030000, |
| 1434 | 0x00098200, | 1441 | 0x00098200, |
| 1435 | 0x820efff8, | 1442 | 0x820efff8, |
| 1436 | 0x40820000, | 1443 | 0x40820000, |
| 1437 | 0x00050848, | 1444 | 0x00050849, |
| 1438 | 0x91d20000, | 1445 | 0x91d20000, |
| 1439 | 0x00098200, | 1446 | 0x00098200, |
| 1440 | 0x7e439378, | 1447 | 0x7e439378, |
| @@ -1448,7 +1455,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1448 | 0x38a00000, | 1455 | 0x38a00000, |
| 1449 | 0x00098200, | 1456 | 0x00098200, |
| 1450 | 0x41820000, | 1457 | 0x41820000, |
| 1451 | 0x0005084d, | 1458 | 0x0005084e, |
| 1452 | 0xc80e0008, | 1459 | 0xc80e0008, |
| 1453 | 0x3a8efff8, | 1460 | 0x3a8efff8, |
| 1454 | 0xc82e0010, | 1461 | 0xc82e0010, |
| @@ -1457,18 +1464,18 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1457 | 0x00098200, | 1464 | 0x00098200, |
| 1458 | 0xd8340008, | 1465 | 0xd8340008, |
| 1459 | 0x48000000, | 1466 | 0x48000000, |
| 1460 | 0x00050049, | 1467 | 0x0005004a, |
| 1461 | 0x00060054, | 1468 | 0x00060055, |
| 1462 | 0x280b0008, | 1469 | 0x280b0008, |
| 1463 | 0x80ae0000, | 1470 | 0x80ae0000, |
| 1464 | 0x806e0004, | 1471 | 0x806e0004, |
| 1465 | 0x41800000, | 1472 | 0x41800000, |
| 1466 | 0x00050848, | 1473 | 0x00050849, |
| 1467 | 0x2c050000, | 1474 | 0x2c050000, |
| 1468 | 0x00098200, | 1475 | 0x00098200, |
| 1469 | 0x820efff8, | 1476 | 0x820efff8, |
| 1470 | 0x40820000, | 1477 | 0x40820000, |
| 1471 | 0x00050848, | 1478 | 0x00050849, |
| 1472 | 0x00000000, | 1479 | 0x00000000, |
| 1473 | 0x81230000, | 1480 | 0x81230000, |
| 1474 | 0x00098200, | 1481 | 0x00098200, |
| @@ -1477,7 +1484,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1477 | 0x28090000, | 1484 | 0x28090000, |
| 1478 | 0x3a8efff8, | 1485 | 0x3a8efff8, |
| 1479 | 0x40820000, | 1486 | 0x40820000, |
| 1480 | 0x00050848, | 1487 | 0x00050849, |
| 1481 | 0x00000000, | 1488 | 0x00000000, |
| 1482 | 0xc80a0000, | 1489 | 0xc80a0000, |
| 1483 | 0x00098200, | 1490 | 0x00098200, |
| @@ -1488,8 +1495,8 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1488 | 0x00098200, | 1495 | 0x00098200, |
| 1489 | 0xd8140000, | 1496 | 0xd8140000, |
| 1490 | 0x48000000, | 1497 | 0x48000000, |
| 1491 | 0x00050049, | 1498 | 0x0005004a, |
| 1492 | 0x00060055, | 1499 | 0x00060056, |
| 1493 | 0x280b0010, | 1500 | 0x280b0010, |
| 1494 | 0x80ae0000, | 1501 | 0x80ae0000, |
| 1495 | 0x806e0004, | 1502 | 0x806e0004, |
| @@ -1500,24 +1507,24 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1500 | 0xc84e0008, | 1507 | 0xc84e0008, |
| 1501 | 0x00000000, | 1508 | 0x00000000, |
| 1502 | 0x41800000, | 1509 | 0x41800000, |
| 1503 | 0x00050848, | 1510 | 0x00050849, |
| 1504 | 0x2c050000, | 1511 | 0x2c050000, |
| 1505 | 0x00098200, | 1512 | 0x00098200, |
| 1506 | 0x7c86b040, | 1513 | 0x7c86b040, |
| 1507 | 0x820efff8, | 1514 | 0x820efff8, |
| 1508 | 0x00000000, | 1515 | 0x00000000, |
| 1509 | 0x40820000, | 1516 | 0x40820000, |
| 1510 | 0x00050848, | 1517 | 0x00050849, |
| 1511 | 0x40860000, | 1518 | 0x40860000, |
| 1512 | 0x00050848, | 1519 | 0x00050849, |
| 1513 | 0x00000000, | 1520 | 0x00000000, |
| 1514 | 0x3c003ff0, | 1521 | 0x3c003ff0, |
| 1515 | 0x93010014, | 1522 | 0x93010014, |
| 1516 | 0x40820000, | 1523 | 0x40820000, |
| 1517 | 0x00050848, | 1524 | 0x00050849, |
| 1518 | 0x90010010, | 1525 | 0x90010010, |
| 1519 | 0x40840000, | 1526 | 0x40840000, |
| 1520 | 0x00050848, | 1527 | 0x00050849, |
| 1521 | 0xc8210010, | 1528 | 0xc8210010, |
| 1522 | 0xfc00101e, | 1529 | 0xfc00101e, |
| 1523 | 0xd8010010, | 1530 | 0xd8010010, |
| @@ -1553,12 +1560,12 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1553 | 0x39800000, | 1560 | 0x39800000, |
| 1554 | 0x00098200, | 1561 | 0x00098200, |
| 1555 | 0x41820000, | 1562 | 0x41820000, |
| 1556 | 0x00050849, | 1563 | 0x0005084a, |
| 1557 | 0x39800000, | 1564 | 0x39800000, |
| 1558 | 0x00098200, | 1565 | 0x00098200, |
| 1559 | 0xd8140008, | 1566 | 0xd8140008, |
| 1560 | 0x48000000, | 1567 | 0x48000000, |
| 1561 | 0x00050049, | 1568 | 0x0005004a, |
| 1562 | 0x0006000c, | 1569 | 0x0006000c, |
| 1563 | 0x80030000, | 1570 | 0x80030000, |
| 1564 | 0x00098200, | 1571 | 0x00098200, |
| @@ -1566,7 +1573,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1566 | 0x39800000, | 1573 | 0x39800000, |
| 1567 | 0x00098200, | 1574 | 0x00098200, |
| 1568 | 0x41820000, | 1575 | 0x41820000, |
| 1569 | 0x00050849, | 1576 | 0x0005084a, |
| 1570 | 0x7d244b78, | 1577 | 0x7d244b78, |
| 1571 | 0x48000001, | 1578 | 0x48000001, |
| 1572 | 0x0003000e, | 1579 | 0x0003000e, |
| @@ -1574,22 +1581,22 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1574 | 0x39800000, | 1581 | 0x39800000, |
| 1575 | 0x00098200, | 1582 | 0x00098200, |
| 1576 | 0x41820000, | 1583 | 0x41820000, |
| 1577 | 0x00050849, | 1584 | 0x0005084a, |
| 1578 | 0x81230000, | 1585 | 0x81230000, |
| 1579 | 0xc8030000, | 1586 | 0xc8030000, |
| 1580 | 0x48000000, | 1587 | 0x48000000, |
| 1581 | 0x0005000b, | 1588 | 0x0005000b, |
| 1582 | 0x00060056, | 1589 | 0x00060057, |
| 1583 | 0x280b0008, | 1590 | 0x280b0008, |
| 1584 | 0x80ae0000, | 1591 | 0x80ae0000, |
| 1585 | 0x806e0004, | 1592 | 0x806e0004, |
| 1586 | 0x41800000, | 1593 | 0x41800000, |
| 1587 | 0x00050848, | 1594 | 0x00050849, |
| 1588 | 0x2c050000, | 1595 | 0x2c050000, |
| 1589 | 0x00098200, | 1596 | 0x00098200, |
| 1590 | 0x820efff8, | 1597 | 0x820efff8, |
| 1591 | 0x40820000, | 1598 | 0x40820000, |
| 1592 | 0x00050848, | 1599 | 0x00050849, |
| 1593 | 0x00000000, | 1600 | 0x00000000, |
| 1594 | 0x81230000, | 1601 | 0x81230000, |
| 1595 | 0x00098200, | 1602 | 0x00098200, |
| @@ -1598,7 +1605,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1598 | 0x28090000, | 1605 | 0x28090000, |
| 1599 | 0x3a8efff8, | 1606 | 0x3a8efff8, |
| 1600 | 0x40820000, | 1607 | 0x40820000, |
| 1601 | 0x00050848, | 1608 | 0x00050849, |
| 1602 | 0x00000000, | 1609 | 0x00000000, |
| 1603 | 0xc80a0000, | 1610 | 0xc80a0000, |
| 1604 | 0x00098200, | 1611 | 0x00098200, |
| @@ -1613,13 +1620,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1613 | 0x00098200, | 1620 | 0x00098200, |
| 1614 | 0xd8140000, | 1621 | 0xd8140000, |
| 1615 | 0x48000000, | 1622 | 0x48000000, |
| 1616 | 0x00050049, | 1623 | 0x0005004a, |
| 1617 | 0x00060057, | 1624 | 0x00060058, |
| 1618 | 0x280b0008, | 1625 | 0x280b0008, |
| 1619 | 0x88d10000, | 1626 | 0x88d10000, |
| 1620 | 0x00098200, | 1627 | 0x00098200, |
| 1621 | 0x41800000, | 1628 | 0x41800000, |
| 1622 | 0x00050848, | 1629 | 0x00050849, |
| 1623 | 0x7dc97378, | 1630 | 0x7dc97378, |
| 1624 | 0x39ce0008, | 1631 | 0x39ce0008, |
| 1625 | 0x54c607fe, | 1632 | 0x54c607fe, |
| @@ -1629,21 +1636,21 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1629 | 0x00098200, | 1636 | 0x00098200, |
| 1630 | 0x48000000, | 1637 | 0x48000000, |
| 1631 | 0x00050024, | 1638 | 0x00050024, |
| 1632 | 0x00060058, | 1639 | 0x00060059, |
| 1633 | 0x280b0010, | 1640 | 0x280b0010, |
| 1634 | 0x80ce0008, | 1641 | 0x80ce0008, |
| 1635 | 0xc84e0008, | 1642 | 0xc84e0008, |
| 1636 | 0x80ae0000, | 1643 | 0x80ae0000, |
| 1637 | 0xc82e0000, | 1644 | 0xc82e0000, |
| 1638 | 0x41800000, | 1645 | 0x41800000, |
| 1639 | 0x00050848, | 1646 | 0x00050849, |
| 1640 | 0x89110000, | 1647 | 0x89110000, |
| 1641 | 0x00098200, | 1648 | 0x00098200, |
| 1642 | 0x7dc97378, | 1649 | 0x7dc97378, |
| 1643 | 0x2c060000, | 1650 | 0x2c060000, |
| 1644 | 0x00098200, | 1651 | 0x00098200, |
| 1645 | 0x40820000, | 1652 | 0x40820000, |
| 1646 | 0x00050848, | 1653 | 0x00050849, |
| 1647 | 0x39ce0010, | 1654 | 0x39ce0010, |
| 1648 | 0x550807fe, | 1655 | 0x550807fe, |
| 1649 | 0x000900ab, | 1656 | 0x000900ab, |
| @@ -1654,16 +1661,16 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1654 | 0x00098200, | 1661 | 0x00098200, |
| 1655 | 0x48000000, | 1662 | 0x48000000, |
| 1656 | 0x00050024, | 1663 | 0x00050024, |
| 1657 | 0x00060059, | 1664 | 0x0006005a, |
| 1658 | 0x280b0008, | 1665 | 0x280b0008, |
| 1659 | 0x80ae0000, | 1666 | 0x80ae0000, |
| 1660 | 0x806e0004, | 1667 | 0x806e0004, |
| 1661 | 0x41800000, | 1668 | 0x41800000, |
| 1662 | 0x00050848, | 1669 | 0x00050849, |
| 1663 | 0x2c050000, | 1670 | 0x2c050000, |
| 1664 | 0x00098200, | 1671 | 0x00098200, |
| 1665 | 0x40820000, | 1672 | 0x40820000, |
| 1666 | 0x00050848, | 1673 | 0x00050849, |
| 1667 | 0x88030000, | 1674 | 0x88030000, |
| 1668 | 0x00098200, | 1675 | 0x00098200, |
| 1669 | 0x81030000, | 1676 | 0x81030000, |
| @@ -1690,7 +1697,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1690 | 0x91d20000, | 1697 | 0x91d20000, |
| 1691 | 0x00098200, | 1698 | 0x00098200, |
| 1692 | 0x41980000, | 1699 | 0x41980000, |
| 1693 | 0x00050848, | 1700 | 0x00050849, |
| 1694 | 0x0006000b, | 1701 | 0x0006000b, |
| 1695 | 0x39ce0008, | 1702 | 0x39ce0008, |
| 1696 | 0x396bfff8, | 1703 | 0x396bfff8, |
| @@ -1792,7 +1799,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1792 | 0x38600000, | 1799 | 0x38600000, |
| 1793 | 0x48000000, | 1800 | 0x48000000, |
| 1794 | 0x0005000e, | 1801 | 0x0005000e, |
| 1795 | 0x0006005a, | 1802 | 0x0006005b, |
| 1796 | 0x00000000, | 1803 | 0x00000000, |
| 1797 | 0x806a0000, | 1804 | 0x806a0000, |
| 1798 | 0x00098200, | 1805 | 0x00098200, |
| @@ -1821,7 +1828,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1821 | 0x91d20000, | 1828 | 0x91d20000, |
| 1822 | 0x00098200, | 1829 | 0x00098200, |
| 1823 | 0x41980000, | 1830 | 0x41980000, |
| 1824 | 0x00050848, | 1831 | 0x00050849, |
| 1825 | 0x0006000b, | 1832 | 0x0006000b, |
| 1826 | 0x91230000, | 1833 | 0x91230000, |
| 1827 | 0x00098200, | 1834 | 0x00098200, |
| @@ -1906,7 +1913,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1906 | 0x38600000, | 1913 | 0x38600000, |
| 1907 | 0x48000000, | 1914 | 0x48000000, |
| 1908 | 0x0005000e, | 1915 | 0x0005000e, |
| 1909 | 0x0006005b, | 1916 | 0x0006005c, |
| 1910 | 0x80120000, | 1917 | 0x80120000, |
| 1911 | 0x00098200, | 1918 | 0x00098200, |
| 1912 | 0x00000000, | 1919 | 0x00000000, |
| @@ -1920,19 +1927,19 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1920 | 0x38600000, | 1927 | 0x38600000, |
| 1921 | 0x00098200, | 1928 | 0x00098200, |
| 1922 | 0x41820000, | 1929 | 0x41820000, |
| 1923 | 0x00050848, | 1930 | 0x00050849, |
| 1924 | 0x93120000, | 1931 | 0x93120000, |
| 1925 | 0x00098200, | 1932 | 0x00098200, |
| 1926 | 0x98720000, | 1933 | 0x98720000, |
| 1927 | 0x00098200, | 1934 | 0x00098200, |
| 1928 | 0x48000000, | 1935 | 0x48000000, |
| 1929 | 0x0005001a, | 1936 | 0x0005001a, |
| 1930 | 0x0006005c, | 1937 | 0x0006005d, |
| 1931 | 0x280b0008, | 1938 | 0x280b0008, |
| 1932 | 0x80ae0000, | 1939 | 0x80ae0000, |
| 1933 | 0x806e0004, | 1940 | 0x806e0004, |
| 1934 | 0x41800000, | 1941 | 0x41800000, |
| 1935 | 0x00050848, | 1942 | 0x00050849, |
| 1936 | 0x7c05b040, | 1943 | 0x7c05b040, |
| 1937 | 0x00000000, | 1944 | 0x00000000, |
| 1938 | 0x40820000, | 1945 | 0x40820000, |
| @@ -1942,32 +1949,32 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1942 | 0x7c684851, | 1949 | 0x7c684851, |
| 1943 | 0x41800000, | 1950 | 0x41800000, |
| 1944 | 0x00050801, | 1951 | 0x00050801, |
| 1945 | 0x0006005d, | 1952 | 0x0006005e, |
| 1946 | 0x820efff8, | 1953 | 0x820efff8, |
| 1947 | 0x3a8efff8, | 1954 | 0x3a8efff8, |
| 1948 | 0x92cefff8, | 1955 | 0x92cefff8, |
| 1949 | 0x906efffc, | 1956 | 0x906efffc, |
| 1950 | 0x48000000, | 1957 | 0x48000000, |
| 1951 | 0x0005005e, | 1958 | 0x0005005f, |
| 1952 | 0x0006000b, | 1959 | 0x0006000b, |
| 1953 | 0x3ca041e0, | 1960 | 0x3ca041e0, |
| 1954 | 0x38600000, | 1961 | 0x38600000, |
| 1955 | 0x48000000, | 1962 | 0x48000000, |
| 1956 | 0x0005004d, | 1963 | 0x0005004e, |
| 1957 | 0x0006000c, | 1964 | 0x0006000c, |
| 1958 | 0x00000000, | 1965 | 0x00000000, |
| 1959 | 0x40800000, | 1966 | 0x40800000, |
| 1960 | 0x00050848, | 1967 | 0x00050849, |
| 1961 | 0x54a5007e, | 1968 | 0x54a5007e, |
| 1962 | 0x0006004d, | 1969 | 0x0006004e, |
| 1963 | 0x820efff8, | 1970 | 0x820efff8, |
| 1964 | 0x90aefff8, | 1971 | 0x90aefff8, |
| 1965 | 0x3a8efff8, | 1972 | 0x3a8efff8, |
| 1966 | 0x906efffc, | 1973 | 0x906efffc, |
| 1967 | 0x0006005e, | 1974 | 0x0006005f, |
| 1968 | 0x39800000, | 1975 | 0x39800000, |
| 1969 | 0x00098200, | 1976 | 0x00098200, |
| 1970 | 0x00060049, | 1977 | 0x0006004a, |
| 1971 | 0x72000000, | 1978 | 0x72000000, |
| 1972 | 0x00090200, | 1979 | 0x00090200, |
| 1973 | 0x7d936378, | 1980 | 0x7d936378, |
| @@ -1998,18 +2005,18 @@ static const unsigned int build_actionlist[7580] = { | |||
| 1998 | 0x48000000, | 2005 | 0x48000000, |
| 1999 | 0x0005000f, | 2006 | 0x0005000f, |
| 2000 | 0x00000000, | 2007 | 0x00000000, |
| 2001 | 0x0006005f, | 2008 | 0x00060060, |
| 2002 | 0x280b0008, | 2009 | 0x280b0008, |
| 2003 | 0x80ae0000, | 2010 | 0x80ae0000, |
| 2004 | 0x806e0004, | 2011 | 0x806e0004, |
| 2005 | 0x41800000, | 2012 | 0x41800000, |
| 2006 | 0x00050848, | 2013 | 0x00050849, |
| 2007 | 0x7c05b040, | 2014 | 0x7c05b040, |
| 2008 | 0x41a20000, | 2015 | 0x41a20000, |
| 2009 | 0x0005084d, | 2016 | 0x0005084e, |
| 2010 | 0x54a9657e, | 2017 | 0x54a9657e, |
| 2011 | 0x40800000, | 2018 | 0x40800000, |
| 2012 | 0x00050848, | 2019 | 0x00050849, |
| 2013 | 0x3529fc01, | 2020 | 0x3529fc01, |
| 2014 | 0x2889001f, | 2021 | 0x2889001f, |
| 2015 | 0x2009001f, | 2022 | 0x2009001f, |
| @@ -2037,7 +2044,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2037 | 0x7c634a78, | 2044 | 0x7c634a78, |
| 2038 | 0x7c691850, | 2045 | 0x7c691850, |
| 2039 | 0x48000000, | 2046 | 0x48000000, |
| 2040 | 0x0005005d, | 2047 | 0x0005005e, |
| 2041 | 0x0006000d, | 2048 | 0x0006000d, |
| 2042 | 0x7d252a14, | 2049 | 0x7d252a14, |
| 2043 | 0x7ca8fe70, | 2050 | 0x7ca8fe70, |
| @@ -2046,7 +2053,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2046 | 0x21280000, | 2053 | 0x21280000, |
| 2047 | 0x7c631910, | 2054 | 0x7c631910, |
| 2048 | 0x48000000, | 2055 | 0x48000000, |
| 2049 | 0x0005005d, | 2056 | 0x0005005e, |
| 2050 | 0x0006000e, | 2057 | 0x0006000e, |
| 2051 | 0x6d088000, | 2058 | 0x6d088000, |
| 2052 | 0x7ca9fe70, | 2059 | 0x7ca9fe70, |
| @@ -2055,25 +2062,25 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2055 | 0x4c423202, | 2062 | 0x4c423202, |
| 2056 | 0x3c608000, | 2063 | 0x3c608000, |
| 2057 | 0x41a20000, | 2064 | 0x41a20000, |
| 2058 | 0x0005085d, | 2065 | 0x0005085e, |
| 2059 | 0x0006000f, | 2066 | 0x0006000f, |
| 2060 | 0xc82e0000, | 2067 | 0xc82e0000, |
| 2061 | 0x48000001, | 2068 | 0x48000001, |
| 2062 | 0x00030010, | 2069 | 0x00030010, |
| 2063 | 0x48000000, | 2070 | 0x48000000, |
| 2064 | 0x0005004b, | 2071 | 0x0005004c, |
| 2065 | 0x00060060, | 2072 | 0x00060061, |
| 2066 | 0x280b0008, | 2073 | 0x280b0008, |
| 2067 | 0x80ae0000, | 2074 | 0x80ae0000, |
| 2068 | 0x806e0004, | 2075 | 0x806e0004, |
| 2069 | 0x41800000, | 2076 | 0x41800000, |
| 2070 | 0x00050848, | 2077 | 0x00050849, |
| 2071 | 0x7c05b040, | 2078 | 0x7c05b040, |
| 2072 | 0x41a20000, | 2079 | 0x41a20000, |
| 2073 | 0x0005084d, | 2080 | 0x0005084e, |
| 2074 | 0x54a9657e, | 2081 | 0x54a9657e, |
| 2075 | 0x40800000, | 2082 | 0x40800000, |
| 2076 | 0x00050848, | 2083 | 0x00050849, |
| 2077 | 0x3529fc01, | 2084 | 0x3529fc01, |
| 2078 | 0x2889001f, | 2085 | 0x2889001f, |
| 2079 | 0x2009001f, | 2086 | 0x2009001f, |
| @@ -2102,14 +2109,14 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2102 | 0x7c634a78, | 2109 | 0x7c634a78, |
| 2103 | 0x7c691850, | 2110 | 0x7c691850, |
| 2104 | 0x40830000, | 2111 | 0x40830000, |
| 2105 | 0x0005085d, | 2112 | 0x0005085e, |
| 2106 | 0x7c000400, | 2113 | 0x7c000400, |
| 2107 | 0x40a10000, | 2114 | 0x40a10000, |
| 2108 | 0x0005085d, | 2115 | 0x0005085e, |
| 2109 | 0x3ca041e0, | 2116 | 0x3ca041e0, |
| 2110 | 0x38600000, | 2117 | 0x38600000, |
| 2111 | 0x48000000, | 2118 | 0x48000000, |
| 2112 | 0x0005004d, | 2119 | 0x0005004e, |
| 2113 | 0x0006000d, | 2120 | 0x0006000d, |
| 2114 | 0x7d252a14, | 2121 | 0x7d252a14, |
| 2115 | 0x7ca8fe70, | 2122 | 0x7ca8fe70, |
| @@ -2118,7 +2125,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2118 | 0x3128ffff, | 2125 | 0x3128ffff, |
| 2119 | 0x7c694110, | 2126 | 0x7c694110, |
| 2120 | 0x48000000, | 2127 | 0x48000000, |
| 2121 | 0x0005005d, | 2128 | 0x0005005e, |
| 2122 | 0x0006000e, | 2129 | 0x0006000e, |
| 2123 | 0x6d088000, | 2130 | 0x6d088000, |
| 2124 | 0x7ca9fe70, | 2131 | 0x7ca9fe70, |
| @@ -2126,213 +2133,213 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2126 | 0x4c423202, | 2133 | 0x4c423202, |
| 2127 | 0x3c608000, | 2134 | 0x3c608000, |
| 2128 | 0x41a20000, | 2135 | 0x41a20000, |
| 2129 | 0x0005085d, | 2136 | 0x0005085e, |
| 2130 | 0x0006000f, | 2137 | 0x0006000f, |
| 2131 | 0xc82e0000, | 2138 | 0xc82e0000, |
| 2132 | 0x48000001, | 2139 | 0x48000001, |
| 2133 | 0x00030011, | 2140 | 0x00030011, |
| 2134 | 0x48000000, | 2141 | 0x48000000, |
| 2135 | 0x0005004b, | 2142 | 0x0005004c, |
| 2136 | 0x00000000, | 2143 | 0x00000000, |
| 2137 | 0x0006005f, | 2144 | 0x00060060, |
| 2138 | 0x280b0008, | 2145 | 0x280b0008, |
| 2139 | 0x80ae0000, | 2146 | 0x80ae0000, |
| 2140 | 0xc82e0000, | 2147 | 0xc82e0000, |
| 2141 | 0x41800000, | 2148 | 0x41800000, |
| 2142 | 0x00050848, | 2149 | 0x00050849, |
| 2143 | 0x7c05b040, | 2150 | 0x7c05b040, |
| 2144 | 0x40800000, | 2151 | 0x40800000, |
| 2145 | 0x00050848, | 2152 | 0x00050849, |
| 2146 | 0x48000001, | 2153 | 0x48000001, |
| 2147 | 0x00030010, | 2154 | 0x00030010, |
| 2148 | 0x48000000, | 2155 | 0x48000000, |
| 2149 | 0x0005004b, | 2156 | 0x0005004c, |
| 2150 | 0x00060060, | 2157 | 0x00060061, |
| 2151 | 0x280b0008, | 2158 | 0x280b0008, |
| 2152 | 0x80ae0000, | 2159 | 0x80ae0000, |
| 2153 | 0xc82e0000, | 2160 | 0xc82e0000, |
| 2154 | 0x41800000, | 2161 | 0x41800000, |
| 2155 | 0x00050848, | 2162 | 0x00050849, |
| 2156 | 0x7c05b040, | 2163 | 0x7c05b040, |
| 2157 | 0x40800000, | 2164 | 0x40800000, |
| 2158 | 0x00050848, | 2165 | 0x00050849, |
| 2159 | 0x48000001, | 2166 | 0x48000001, |
| 2160 | 0x00030011, | 2167 | 0x00030011, |
| 2161 | 0x48000000, | 2168 | 0x48000000, |
| 2162 | 0x0005004b, | 2169 | 0x0005004c, |
| 2163 | 0x00000000, | 2170 | 0x00000000, |
| 2164 | 0x00060061, | 2171 | 0x00060062, |
| 2165 | 0x280b0008, | 2172 | 0x280b0008, |
| 2166 | 0x80ae0000, | 2173 | 0x80ae0000, |
| 2167 | 0xc82e0000, | 2174 | 0xc82e0000, |
| 2168 | 0x41800000, | 2175 | 0x41800000, |
| 2169 | 0x00050848, | 2176 | 0x00050849, |
| 2170 | 0x7c05b040, | 2177 | 0x7c05b040, |
| 2171 | 0x40800000, | 2178 | 0x40800000, |
| 2172 | 0x00050848, | 2179 | 0x00050849, |
| 2173 | 0x48000001, | 2180 | 0x48000001, |
| 2174 | 0x00030012, | 2181 | 0x00030012, |
| 2175 | 0x48000000, | 2182 | 0x48000000, |
| 2176 | 0x0005004b, | 2183 | 0x0005004c, |
| 2177 | 0x00060062, | 2184 | 0x00060063, |
| 2178 | 0x280b0008, | 2185 | 0x280b0008, |
| 2179 | 0x80ae0000, | 2186 | 0x80ae0000, |
| 2180 | 0xc82e0000, | 2187 | 0xc82e0000, |
| 2181 | 0x41800000, | 2188 | 0x41800000, |
| 2182 | 0x00050848, | 2189 | 0x00050849, |
| 2183 | 0x7c05b040, | 2190 | 0x7c05b040, |
| 2184 | 0x40800000, | 2191 | 0x40800000, |
| 2185 | 0x00050848, | 2192 | 0x00050849, |
| 2186 | 0x48000001, | 2193 | 0x48000001, |
| 2187 | 0x00030013, | 2194 | 0x00030013, |
| 2188 | 0x48000000, | 2195 | 0x48000000, |
| 2189 | 0x0005004b, | 2196 | 0x0005004c, |
| 2190 | 0x00060063, | 2197 | 0x00060064, |
| 2191 | 0x280b0008, | 2198 | 0x280b0008, |
| 2192 | 0x80ae0000, | 2199 | 0x80ae0000, |
| 2193 | 0xc82e0000, | 2200 | 0xc82e0000, |
| 2194 | 0x41800000, | 2201 | 0x41800000, |
| 2195 | 0x00050848, | 2202 | 0x00050849, |
| 2196 | 0x7c05b040, | 2203 | 0x7c05b040, |
| 2197 | 0x40800000, | 2204 | 0x40800000, |
| 2198 | 0x00050848, | 2205 | 0x00050849, |
| 2199 | 0x48000001, | 2206 | 0x48000001, |
| 2200 | 0x00030014, | 2207 | 0x00030014, |
| 2201 | 0x48000000, | 2208 | 0x48000000, |
| 2202 | 0x0005004b, | 2209 | 0x0005004c, |
| 2203 | 0x00060064, | 2210 | 0x00060065, |
| 2204 | 0x280b0008, | 2211 | 0x280b0008, |
| 2205 | 0x80ae0000, | 2212 | 0x80ae0000, |
| 2206 | 0xc82e0000, | 2213 | 0xc82e0000, |
| 2207 | 0x41800000, | 2214 | 0x41800000, |
| 2208 | 0x00050848, | 2215 | 0x00050849, |
| 2209 | 0x7c05b040, | 2216 | 0x7c05b040, |
| 2210 | 0x40800000, | 2217 | 0x40800000, |
| 2211 | 0x00050848, | 2218 | 0x00050849, |
| 2212 | 0x48000001, | 2219 | 0x48000001, |
| 2213 | 0x00030015, | 2220 | 0x00030015, |
| 2214 | 0x48000000, | 2221 | 0x48000000, |
| 2215 | 0x0005004b, | 2222 | 0x0005004c, |
| 2216 | 0x00060065, | 2223 | 0x00060066, |
| 2217 | 0x280b0008, | 2224 | 0x280b0008, |
| 2218 | 0x80ae0000, | 2225 | 0x80ae0000, |
| 2219 | 0xc82e0000, | 2226 | 0xc82e0000, |
| 2220 | 0x41800000, | 2227 | 0x41800000, |
| 2221 | 0x00050848, | 2228 | 0x00050849, |
| 2222 | 0x00000000, | 2229 | 0x00000000, |
| 2223 | 0x7c05b040, | 2230 | 0x7c05b040, |
| 2224 | 0x40800000, | 2231 | 0x40800000, |
| 2225 | 0x00050848, | 2232 | 0x00050849, |
| 2226 | 0x48000001, | 2233 | 0x48000001, |
| 2227 | 0x00030016, | 2234 | 0x00030016, |
| 2228 | 0x48000000, | 2235 | 0x48000000, |
| 2229 | 0x0005004b, | 2236 | 0x0005004c, |
| 2230 | 0x00060066, | 2237 | 0x00060067, |
| 2231 | 0x280b0008, | 2238 | 0x280b0008, |
| 2232 | 0x80ae0000, | 2239 | 0x80ae0000, |
| 2233 | 0xc82e0000, | 2240 | 0xc82e0000, |
| 2234 | 0x41800000, | 2241 | 0x41800000, |
| 2235 | 0x00050848, | 2242 | 0x00050849, |
| 2236 | 0x7c05b040, | 2243 | 0x7c05b040, |
| 2237 | 0x40800000, | 2244 | 0x40800000, |
| 2238 | 0x00050848, | 2245 | 0x00050849, |
| 2239 | 0x48000001, | 2246 | 0x48000001, |
| 2240 | 0x00030017, | 2247 | 0x00030017, |
| 2241 | 0x48000000, | 2248 | 0x48000000, |
| 2242 | 0x0005004b, | 2249 | 0x0005004c, |
| 2243 | 0x00060067, | 2250 | 0x00060068, |
| 2244 | 0x280b0008, | 2251 | 0x280b0008, |
| 2245 | 0x80ae0000, | 2252 | 0x80ae0000, |
| 2246 | 0xc82e0000, | 2253 | 0xc82e0000, |
| 2247 | 0x41800000, | 2254 | 0x41800000, |
| 2248 | 0x00050848, | 2255 | 0x00050849, |
| 2249 | 0x7c05b040, | 2256 | 0x7c05b040, |
| 2250 | 0x40800000, | 2257 | 0x40800000, |
| 2251 | 0x00050848, | 2258 | 0x00050849, |
| 2252 | 0x48000001, | 2259 | 0x48000001, |
| 2253 | 0x00030018, | 2260 | 0x00030018, |
| 2254 | 0x48000000, | 2261 | 0x48000000, |
| 2255 | 0x0005004b, | 2262 | 0x0005004c, |
| 2256 | 0x00060068, | 2263 | 0x00060069, |
| 2257 | 0x280b0008, | 2264 | 0x280b0008, |
| 2258 | 0x80ae0000, | 2265 | 0x80ae0000, |
| 2259 | 0xc82e0000, | 2266 | 0xc82e0000, |
| 2260 | 0x41800000, | 2267 | 0x41800000, |
| 2261 | 0x00050848, | 2268 | 0x00050849, |
| 2262 | 0x7c05b040, | 2269 | 0x7c05b040, |
| 2263 | 0x40800000, | 2270 | 0x40800000, |
| 2264 | 0x00050848, | 2271 | 0x00050849, |
| 2265 | 0x48000001, | 2272 | 0x48000001, |
| 2266 | 0x00030019, | 2273 | 0x00030019, |
| 2267 | 0x48000000, | 2274 | 0x48000000, |
| 2268 | 0x0005004b, | 2275 | 0x0005004c, |
| 2269 | 0x00060069, | 2276 | 0x0006006a, |
| 2270 | 0x280b0008, | 2277 | 0x280b0008, |
| 2271 | 0x80ae0000, | 2278 | 0x80ae0000, |
| 2272 | 0xc82e0000, | 2279 | 0xc82e0000, |
| 2273 | 0x41800000, | 2280 | 0x41800000, |
| 2274 | 0x00050848, | 2281 | 0x00050849, |
| 2275 | 0x7c05b040, | 2282 | 0x7c05b040, |
| 2276 | 0x40800000, | 2283 | 0x40800000, |
| 2277 | 0x00050848, | 2284 | 0x00050849, |
| 2278 | 0x48000001, | 2285 | 0x48000001, |
| 2279 | 0x0003001a, | 2286 | 0x0003001a, |
| 2280 | 0x00000000, | 2287 | 0x00000000, |
| 2281 | 0x48000000, | 2288 | 0x48000000, |
| 2282 | 0x0005004b, | 2289 | 0x0005004c, |
| 2283 | 0x0006006a, | 2290 | 0x0006006b, |
| 2284 | 0x280b0008, | 2291 | 0x280b0008, |
| 2285 | 0x80ae0000, | 2292 | 0x80ae0000, |
| 2286 | 0xc82e0000, | 2293 | 0xc82e0000, |
| 2287 | 0x41800000, | 2294 | 0x41800000, |
| 2288 | 0x00050848, | 2295 | 0x00050849, |
| 2289 | 0x7c05b040, | 2296 | 0x7c05b040, |
| 2290 | 0x40800000, | 2297 | 0x40800000, |
| 2291 | 0x00050848, | 2298 | 0x00050849, |
| 2292 | 0x48000001, | 2299 | 0x48000001, |
| 2293 | 0x0003001b, | 2300 | 0x0003001b, |
| 2294 | 0x48000000, | 2301 | 0x48000000, |
| 2295 | 0x0005004b, | 2302 | 0x0005004c, |
| 2296 | 0x0006006b, | 2303 | 0x0006006c, |
| 2297 | 0x280b0008, | 2304 | 0x280b0008, |
| 2298 | 0x80ae0000, | 2305 | 0x80ae0000, |
| 2299 | 0xc82e0000, | 2306 | 0xc82e0000, |
| 2300 | 0x41800000, | 2307 | 0x41800000, |
| 2301 | 0x00050848, | 2308 | 0x00050849, |
| 2302 | 0x7c05b040, | 2309 | 0x7c05b040, |
| 2303 | 0x40800000, | 2310 | 0x40800000, |
| 2304 | 0x00050848, | 2311 | 0x00050849, |
| 2305 | 0x48000001, | 2312 | 0x48000001, |
| 2306 | 0x0003001c, | 2313 | 0x0003001c, |
| 2307 | 0x48000000, | 2314 | 0x48000000, |
| 2308 | 0x0005004b, | 2315 | 0x0005004c, |
| 2309 | 0x0006006c, | 2316 | 0x0006006d, |
| 2310 | 0x280b0008, | 2317 | 0x280b0008, |
| 2311 | 0x80ae0000, | 2318 | 0x80ae0000, |
| 2312 | 0xc82e0000, | 2319 | 0xc82e0000, |
| 2313 | 0x41800000, | 2320 | 0x41800000, |
| 2314 | 0x00050848, | 2321 | 0x00050849, |
| 2315 | 0x7c05b040, | 2322 | 0x7c05b040, |
| 2316 | 0x40800000, | 2323 | 0x40800000, |
| 2317 | 0x00050848, | 2324 | 0x00050849, |
| 2318 | 0x48000001, | 2325 | 0x48000001, |
| 2319 | 0x0003001d, | 2326 | 0x0003001d, |
| 2320 | 0x48000000, | 2327 | 0x48000000, |
| 2321 | 0x0005004b, | 2328 | 0x0005004c, |
| 2322 | 0x0006006d, | 2329 | 0x0006006e, |
| 2323 | 0x280b0008, | 2330 | 0x280b0008, |
| 2324 | 0x80ae0000, | 2331 | 0x80ae0000, |
| 2325 | 0xc82e0000, | 2332 | 0xc82e0000, |
| 2326 | 0x41800000, | 2333 | 0x41800000, |
| 2327 | 0x00050848, | 2334 | 0x00050849, |
| 2328 | 0x7c05b040, | 2335 | 0x7c05b040, |
| 2329 | 0x40800000, | 2336 | 0x40800000, |
| 2330 | 0x00050848, | 2337 | 0x00050849, |
| 2331 | 0x48000001, | 2338 | 0x48000001, |
| 2332 | 0x0003001e, | 2339 | 0x0003001e, |
| 2333 | 0x48000000, | 2340 | 0x48000000, |
| 2334 | 0x0005004b, | 2341 | 0x0005004c, |
| 2335 | 0x0006006e, | 2342 | 0x0006006f, |
| 2336 | 0x00000000, | 2343 | 0x00000000, |
| 2337 | 0x280b0010, | 2344 | 0x280b0010, |
| 2338 | 0x80ae0000, | 2345 | 0x80ae0000, |
| @@ -2340,99 +2347,99 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2340 | 0x80ce0008, | 2347 | 0x80ce0008, |
| 2341 | 0xc84e0008, | 2348 | 0xc84e0008, |
| 2342 | 0x41800000, | 2349 | 0x41800000, |
| 2343 | 0x00050848, | 2350 | 0x00050849, |
| 2344 | 0x7c05b040, | 2351 | 0x7c05b040, |
| 2345 | 0x40800000, | 2352 | 0x40800000, |
| 2346 | 0x00050848, | 2353 | 0x00050849, |
| 2347 | 0x7c06b040, | 2354 | 0x7c06b040, |
| 2348 | 0x40800000, | 2355 | 0x40800000, |
| 2349 | 0x00050848, | 2356 | 0x00050849, |
| 2350 | 0x48000001, | 2357 | 0x48000001, |
| 2351 | 0x0003001f, | 2358 | 0x0003001f, |
| 2352 | 0x48000000, | 2359 | 0x48000000, |
| 2353 | 0x0005004b, | 2360 | 0x0005004c, |
| 2354 | 0x0006006f, | 2361 | 0x00060070, |
| 2355 | 0x280b0010, | 2362 | 0x280b0010, |
| 2356 | 0x80ae0000, | 2363 | 0x80ae0000, |
| 2357 | 0xc82e0000, | 2364 | 0xc82e0000, |
| 2358 | 0x80ce0008, | 2365 | 0x80ce0008, |
| 2359 | 0xc84e0008, | 2366 | 0xc84e0008, |
| 2360 | 0x41800000, | 2367 | 0x41800000, |
| 2361 | 0x00050848, | 2368 | 0x00050849, |
| 2362 | 0x7c05b040, | 2369 | 0x7c05b040, |
| 2363 | 0x40800000, | 2370 | 0x40800000, |
| 2364 | 0x00050848, | 2371 | 0x00050849, |
| 2365 | 0x7c06b040, | 2372 | 0x7c06b040, |
| 2366 | 0x40800000, | 2373 | 0x40800000, |
| 2367 | 0x00050848, | 2374 | 0x00050849, |
| 2368 | 0x48000001, | 2375 | 0x48000001, |
| 2369 | 0x00030020, | 2376 | 0x00030020, |
| 2370 | 0x48000000, | 2377 | 0x48000000, |
| 2371 | 0x0005004b, | 2378 | 0x0005004c, |
| 2372 | 0x00060070, | 2379 | 0x00060071, |
| 2373 | 0x280b0010, | 2380 | 0x280b0010, |
| 2374 | 0x80ae0000, | 2381 | 0x80ae0000, |
| 2375 | 0xc82e0000, | 2382 | 0xc82e0000, |
| 2376 | 0x80ce0008, | 2383 | 0x80ce0008, |
| 2377 | 0xc84e0008, | 2384 | 0xc84e0008, |
| 2378 | 0x41800000, | 2385 | 0x41800000, |
| 2379 | 0x00050848, | 2386 | 0x00050849, |
| 2380 | 0x7c05b040, | 2387 | 0x7c05b040, |
| 2381 | 0x40800000, | 2388 | 0x40800000, |
| 2382 | 0x00050848, | 2389 | 0x00050849, |
| 2383 | 0x7c06b040, | 2390 | 0x7c06b040, |
| 2384 | 0x40800000, | 2391 | 0x40800000, |
| 2385 | 0x00050848, | 2392 | 0x00050849, |
| 2386 | 0x48000001, | 2393 | 0x48000001, |
| 2387 | 0x00030021, | 2394 | 0x00030021, |
| 2388 | 0x48000000, | 2395 | 0x48000000, |
| 2389 | 0x0005004b, | 2396 | 0x0005004c, |
| 2390 | 0x00060071, | ||
| 2391 | 0x00060072, | 2397 | 0x00060072, |
| 2398 | 0x00060073, | ||
| 2392 | 0x280b0008, | 2399 | 0x280b0008, |
| 2393 | 0x80ae0000, | 2400 | 0x80ae0000, |
| 2394 | 0xc82e0000, | 2401 | 0xc82e0000, |
| 2395 | 0x41800000, | 2402 | 0x41800000, |
| 2396 | 0x00050848, | 2403 | 0x00050849, |
| 2397 | 0x7c05b040, | 2404 | 0x7c05b040, |
| 2398 | 0x40800000, | 2405 | 0x40800000, |
| 2399 | 0x00050848, | 2406 | 0x00050849, |
| 2400 | 0xc84a0000, | 2407 | 0xc84a0000, |
| 2401 | 0x00098200, | 2408 | 0x00098200, |
| 2402 | 0x00000000, | 2409 | 0x00000000, |
| 2403 | 0xfc2100b2, | 2410 | 0xfc2100b2, |
| 2404 | 0x48000000, | 2411 | 0x48000000, |
| 2405 | 0x0005004b, | 2412 | 0x0005004c, |
| 2406 | 0x00000000, | 2413 | 0x00000000, |
| 2407 | 0x00060073, | 2414 | 0x00060074, |
| 2408 | 0x280b0010, | 2415 | 0x280b0010, |
| 2409 | 0x80ae0000, | 2416 | 0x80ae0000, |
| 2410 | 0xc82e0000, | 2417 | 0xc82e0000, |
| 2411 | 0x80ce0008, | 2418 | 0x80ce0008, |
| 2412 | 0x806e000c, | 2419 | 0x806e000c, |
| 2413 | 0x41800000, | 2420 | 0x41800000, |
| 2414 | 0x00050848, | 2421 | 0x00050849, |
| 2415 | 0x7c05b040, | 2422 | 0x7c05b040, |
| 2416 | 0x40800000, | 2423 | 0x40800000, |
| 2417 | 0x00050848, | 2424 | 0x00050849, |
| 2418 | 0x7c06b040, | 2425 | 0x7c06b040, |
| 2419 | 0x40820000, | 2426 | 0x40820000, |
| 2420 | 0x00050848, | 2427 | 0x00050849, |
| 2421 | 0x00000000, | 2428 | 0x00000000, |
| 2422 | 0x00060073, | 2429 | 0x00060074, |
| 2423 | 0x280b0010, | 2430 | 0x280b0010, |
| 2424 | 0x80ae0000, | 2431 | 0x80ae0000, |
| 2425 | 0xc82e0000, | 2432 | 0xc82e0000, |
| 2426 | 0x80ce0008, | 2433 | 0x80ce0008, |
| 2427 | 0xc84e0008, | 2434 | 0xc84e0008, |
| 2428 | 0x41800000, | 2435 | 0x41800000, |
| 2429 | 0x00050848, | 2436 | 0x00050849, |
| 2430 | 0x7c05b040, | 2437 | 0x7c05b040, |
| 2431 | 0x40800000, | 2438 | 0x40800000, |
| 2432 | 0x00050848, | 2439 | 0x00050849, |
| 2433 | 0x7c06b040, | 2440 | 0x7c06b040, |
| 2434 | 0x40800000, | 2441 | 0x40800000, |
| 2435 | 0x00050848, | 2442 | 0x00050849, |
| 2436 | 0xfc40101e, | 2443 | 0xfc40101e, |
| 2437 | 0xd8410010, | 2444 | 0xd8410010, |
| 2438 | 0x80610014, | 2445 | 0x80610014, |
| @@ -2440,16 +2447,16 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2440 | 0x48000001, | 2447 | 0x48000001, |
| 2441 | 0x00030022, | 2448 | 0x00030022, |
| 2442 | 0x48000000, | 2449 | 0x48000000, |
| 2443 | 0x0005004b, | 2450 | 0x0005004c, |
| 2444 | 0x00060074, | 2451 | 0x00060075, |
| 2445 | 0x280b0008, | 2452 | 0x280b0008, |
| 2446 | 0x80ae0000, | 2453 | 0x80ae0000, |
| 2447 | 0xc82e0000, | 2454 | 0xc82e0000, |
| 2448 | 0x41800000, | 2455 | 0x41800000, |
| 2449 | 0x00050848, | 2456 | 0x00050849, |
| 2450 | 0x7c05b040, | 2457 | 0x7c05b040, |
| 2451 | 0x40800000, | 2458 | 0x40800000, |
| 2452 | 0x00050848, | 2459 | 0x00050849, |
| 2453 | 0x38710000, | 2460 | 0x38710000, |
| 2454 | 0x00098200, | 2461 | 0x00098200, |
| 2455 | 0x820efff8, | 2462 | 0x820efff8, |
| @@ -2474,16 +2481,16 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2474 | 0xd8540008, | 2481 | 0xd8540008, |
| 2475 | 0x00000000, | 2482 | 0x00000000, |
| 2476 | 0x48000000, | 2483 | 0x48000000, |
| 2477 | 0x00050049, | 2484 | 0x0005004a, |
| 2478 | 0x00060075, | 2485 | 0x00060076, |
| 2479 | 0x280b0008, | 2486 | 0x280b0008, |
| 2480 | 0x80ae0000, | 2487 | 0x80ae0000, |
| 2481 | 0xc82e0000, | 2488 | 0xc82e0000, |
| 2482 | 0x41800000, | 2489 | 0x41800000, |
| 2483 | 0x00050848, | 2490 | 0x00050849, |
| 2484 | 0x7c05b040, | 2491 | 0x7c05b040, |
| 2485 | 0x40800000, | 2492 | 0x40800000, |
| 2486 | 0x00050848, | 2493 | 0x00050849, |
| 2487 | 0x386efff8, | 2494 | 0x386efff8, |
| 2488 | 0x820efff8, | 2495 | 0x820efff8, |
| 2489 | 0x48000001, | 2496 | 0x48000001, |
| @@ -2493,14 +2500,14 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2493 | 0x39800000, | 2500 | 0x39800000, |
| 2494 | 0x00098200, | 2501 | 0x00098200, |
| 2495 | 0x48000000, | 2502 | 0x48000000, |
| 2496 | 0x00050049, | 2503 | 0x0005004a, |
| 2497 | 0x00000000, | 2504 | 0x00000000, |
| 2498 | 0x00060076, | 2505 | 0x00060077, |
| 2499 | 0x280b0008, | 2506 | 0x280b0008, |
| 2500 | 0x80ae0000, | 2507 | 0x80ae0000, |
| 2501 | 0x806e0004, | 2508 | 0x806e0004, |
| 2502 | 0x41800000, | 2509 | 0x41800000, |
| 2503 | 0x00050848, | 2510 | 0x00050849, |
| 2504 | 0x7c05b040, | 2511 | 0x7c05b040, |
| 2505 | 0x390e0008, | 2512 | 0x390e0008, |
| 2506 | 0x7d2e5a14, | 2513 | 0x7d2e5a14, |
| @@ -2511,7 +2518,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2511 | 0x7c884840, | 2518 | 0x7c884840, |
| 2512 | 0x80880004, | 2519 | 0x80880004, |
| 2513 | 0x40840000, | 2520 | 0x40840000, |
| 2514 | 0x0005085d, | 2521 | 0x0005085e, |
| 2515 | 0x7c06b040, | 2522 | 0x7c06b040, |
| 2516 | 0x6c608000, | 2523 | 0x6c608000, |
| 2517 | 0x6c868000, | 2524 | 0x6c868000, |
| @@ -2526,7 +2533,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2526 | 0x0005000b, | 2533 | 0x0005000b, |
| 2527 | 0x0006000d, | 2534 | 0x0006000d, |
| 2528 | 0x40800000, | 2535 | 0x40800000, |
| 2529 | 0x00050848, | 2536 | 0x00050849, |
| 2530 | 0x6c638000, | 2537 | 0x6c638000, |
| 2531 | 0x9061000c, | 2538 | 0x9061000c, |
| 2532 | 0xc8210008, | 2539 | 0xc8210008, |
| @@ -2537,13 +2544,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2537 | 0x0006000e, | 2544 | 0x0006000e, |
| 2538 | 0xc82e0000, | 2545 | 0xc82e0000, |
| 2539 | 0x40800000, | 2546 | 0x40800000, |
| 2540 | 0x00050848, | 2547 | 0x00050849, |
| 2541 | 0x0006000f, | 2548 | 0x0006000f, |
| 2542 | 0x80c80000, | 2549 | 0x80c80000, |
| 2543 | 0x7c884840, | 2550 | 0x7c884840, |
| 2544 | 0xc8480000, | 2551 | 0xc8480000, |
| 2545 | 0x40840000, | 2552 | 0x40840000, |
| 2546 | 0x0005084b, | 2553 | 0x0005084c, |
| 2547 | 0x7c06b040, | 2554 | 0x7c06b040, |
| 2548 | 0x40800000, | 2555 | 0x40800000, |
| 2549 | 0x00050807, | 2556 | 0x00050807, |
| @@ -2556,7 +2563,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2556 | 0x00060011, | 2563 | 0x00060011, |
| 2557 | 0x80880004, | 2564 | 0x80880004, |
| 2558 | 0x40820000, | 2565 | 0x40820000, |
| 2559 | 0x00050848, | 2566 | 0x00050849, |
| 2560 | 0x6c848000, | 2567 | 0x6c848000, |
| 2561 | 0x9081000c, | 2568 | 0x9081000c, |
| 2562 | 0xc8410008, | 2569 | 0xc8410008, |
| @@ -2564,15 +2571,15 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2564 | 0x48000000, | 2571 | 0x48000000, |
| 2565 | 0x00050010, | 2572 | 0x00050010, |
| 2566 | 0x00000000, | 2573 | 0x00000000, |
| 2567 | 0x00060076, | 2574 | 0x00060077, |
| 2568 | 0x280b0008, | 2575 | 0x280b0008, |
| 2569 | 0x80ae0000, | 2576 | 0x80ae0000, |
| 2570 | 0xc82e0000, | 2577 | 0xc82e0000, |
| 2571 | 0x41800000, | 2578 | 0x41800000, |
| 2572 | 0x00050848, | 2579 | 0x00050849, |
| 2573 | 0x7c05b040, | 2580 | 0x7c05b040, |
| 2574 | 0x40800000, | 2581 | 0x40800000, |
| 2575 | 0x00050848, | 2582 | 0x00050849, |
| 2576 | 0x39000008, | 2583 | 0x39000008, |
| 2577 | 0x0006000b, | 2584 | 0x0006000b, |
| 2578 | 0x7c8e402e, | 2585 | 0x7c8e402e, |
| @@ -2580,21 +2587,21 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2580 | 0x7c885840, | 2587 | 0x7c885840, |
| 2581 | 0x7c04b040, | 2588 | 0x7c04b040, |
| 2582 | 0x40840000, | 2589 | 0x40840000, |
| 2583 | 0x0005084b, | 2590 | 0x0005084c, |
| 2584 | 0x40800000, | 2591 | 0x40800000, |
| 2585 | 0x00050848, | 2592 | 0x00050849, |
| 2586 | 0xfc011028, | 2593 | 0xfc011028, |
| 2587 | 0x39080008, | 2594 | 0x39080008, |
| 2588 | 0xfc2008ae, | 2595 | 0xfc2008ae, |
| 2589 | 0x48000000, | 2596 | 0x48000000, |
| 2590 | 0x0005000b, | 2597 | 0x0005000b, |
| 2591 | 0x00000000, | 2598 | 0x00000000, |
| 2592 | 0x00060077, | 2599 | 0x00060078, |
| 2593 | 0x280b0008, | 2600 | 0x280b0008, |
| 2594 | 0x80ae0000, | 2601 | 0x80ae0000, |
| 2595 | 0x806e0004, | 2602 | 0x806e0004, |
| 2596 | 0x41800000, | 2603 | 0x41800000, |
| 2597 | 0x00050848, | 2604 | 0x00050849, |
| 2598 | 0x7c05b040, | 2605 | 0x7c05b040, |
| 2599 | 0x390e0008, | 2606 | 0x390e0008, |
| 2600 | 0x7d2e5a14, | 2607 | 0x7d2e5a14, |
| @@ -2605,7 +2612,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2605 | 0x7c884840, | 2612 | 0x7c884840, |
| 2606 | 0x80880004, | 2613 | 0x80880004, |
| 2607 | 0x40840000, | 2614 | 0x40840000, |
| 2608 | 0x0005085d, | 2615 | 0x0005085e, |
| 2609 | 0x7c06b040, | 2616 | 0x7c06b040, |
| 2610 | 0x6c608000, | 2617 | 0x6c608000, |
| 2611 | 0x6c868000, | 2618 | 0x6c868000, |
| @@ -2620,7 +2627,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2620 | 0x0005000b, | 2627 | 0x0005000b, |
| 2621 | 0x0006000d, | 2628 | 0x0006000d, |
| 2622 | 0x40800000, | 2629 | 0x40800000, |
| 2623 | 0x00050848, | 2630 | 0x00050849, |
| 2624 | 0x6c638000, | 2631 | 0x6c638000, |
| 2625 | 0x9061000c, | 2632 | 0x9061000c, |
| 2626 | 0xc8210008, | 2633 | 0xc8210008, |
| @@ -2631,13 +2638,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2631 | 0x0006000e, | 2638 | 0x0006000e, |
| 2632 | 0xc82e0000, | 2639 | 0xc82e0000, |
| 2633 | 0x40800000, | 2640 | 0x40800000, |
| 2634 | 0x00050848, | 2641 | 0x00050849, |
| 2635 | 0x0006000f, | 2642 | 0x0006000f, |
| 2636 | 0x80c80000, | 2643 | 0x80c80000, |
| 2637 | 0x7c884840, | 2644 | 0x7c884840, |
| 2638 | 0xc8480000, | 2645 | 0xc8480000, |
| 2639 | 0x40840000, | 2646 | 0x40840000, |
| 2640 | 0x0005084b, | 2647 | 0x0005084c, |
| 2641 | 0x7c06b040, | 2648 | 0x7c06b040, |
| 2642 | 0x40800000, | 2649 | 0x40800000, |
| 2643 | 0x00050807, | 2650 | 0x00050807, |
| @@ -2650,7 +2657,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2650 | 0x00060011, | 2657 | 0x00060011, |
| 2651 | 0x80880004, | 2658 | 0x80880004, |
| 2652 | 0x40820000, | 2659 | 0x40820000, |
| 2653 | 0x00050848, | 2660 | 0x00050849, |
| 2654 | 0x6c848000, | 2661 | 0x6c848000, |
| 2655 | 0x9081000c, | 2662 | 0x9081000c, |
| 2656 | 0xc8410008, | 2663 | 0xc8410008, |
| @@ -2658,15 +2665,15 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2658 | 0x48000000, | 2665 | 0x48000000, |
| 2659 | 0x00050010, | 2666 | 0x00050010, |
| 2660 | 0x00000000, | 2667 | 0x00000000, |
| 2661 | 0x00060077, | 2668 | 0x00060078, |
| 2662 | 0x280b0008, | 2669 | 0x280b0008, |
| 2663 | 0x80ae0000, | 2670 | 0x80ae0000, |
| 2664 | 0xc82e0000, | 2671 | 0xc82e0000, |
| 2665 | 0x41800000, | 2672 | 0x41800000, |
| 2666 | 0x00050848, | 2673 | 0x00050849, |
| 2667 | 0x7c05b040, | 2674 | 0x7c05b040, |
| 2668 | 0x40800000, | 2675 | 0x40800000, |
| 2669 | 0x00050848, | 2676 | 0x00050849, |
| 2670 | 0x39000008, | 2677 | 0x39000008, |
| 2671 | 0x0006000b, | 2678 | 0x0006000b, |
| 2672 | 0x7c8e402e, | 2679 | 0x7c8e402e, |
| @@ -2674,39 +2681,39 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2674 | 0x7c885840, | 2681 | 0x7c885840, |
| 2675 | 0x7c04b040, | 2682 | 0x7c04b040, |
| 2676 | 0x40840000, | 2683 | 0x40840000, |
| 2677 | 0x0005084b, | 2684 | 0x0005084c, |
| 2678 | 0x40800000, | 2685 | 0x40800000, |
| 2679 | 0x00050848, | 2686 | 0x00050849, |
| 2680 | 0xfc011028, | 2687 | 0xfc011028, |
| 2681 | 0x39080008, | 2688 | 0x39080008, |
| 2682 | 0xfc20106e, | 2689 | 0xfc20106e, |
| 2683 | 0x48000000, | 2690 | 0x48000000, |
| 2684 | 0x0005000b, | 2691 | 0x0005000b, |
| 2685 | 0x00000000, | 2692 | 0x00000000, |
| 2686 | 0x00060078, | 2693 | 0x00060079, |
| 2687 | 0x280b0008, | 2694 | 0x280b0008, |
| 2688 | 0x80ae0000, | 2695 | 0x80ae0000, |
| 2689 | 0x806e0004, | 2696 | 0x806e0004, |
| 2690 | 0x41800000, | 2697 | 0x41800000, |
| 2691 | 0x00050848, | 2698 | 0x00050849, |
| 2692 | 0x2c050000, | 2699 | 0x2c050000, |
| 2693 | 0x00098200, | 2700 | 0x00098200, |
| 2694 | 0x40820000, | 2701 | 0x40820000, |
| 2695 | 0x00050848, | 2702 | 0x00050849, |
| 2696 | 0x80630000, | 2703 | 0x80630000, |
| 2697 | 0x00098200, | 2704 | 0x00098200, |
| 2698 | 0x48000000, | 2705 | 0x48000000, |
| 2699 | 0x0005005d, | 2706 | 0x0005005e, |
| 2700 | 0x00060079, | 2707 | 0x0006007a, |
| 2701 | 0x280b0008, | 2708 | 0x280b0008, |
| 2702 | 0x80ae0000, | 2709 | 0x80ae0000, |
| 2703 | 0x806e0004, | 2710 | 0x806e0004, |
| 2704 | 0x40820000, | 2711 | 0x40820000, |
| 2705 | 0x00050848, | 2712 | 0x00050849, |
| 2706 | 0x2c050000, | 2713 | 0x2c050000, |
| 2707 | 0x00098200, | 2714 | 0x00098200, |
| 2708 | 0x40820000, | 2715 | 0x40820000, |
| 2709 | 0x00050848, | 2716 | 0x00050849, |
| 2710 | 0x80030000, | 2717 | 0x80030000, |
| 2711 | 0x00098200, | 2718 | 0x00098200, |
| 2712 | 0x00000000, | 2719 | 0x00000000, |
| @@ -2718,9 +2725,9 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2718 | 0x28000000, | 2725 | 0x28000000, |
| 2719 | 0x3a8efff8, | 2726 | 0x3a8efff8, |
| 2720 | 0x41a20000, | 2727 | 0x41a20000, |
| 2721 | 0x00050849, | 2728 | 0x0005084a, |
| 2722 | 0x48000000, | 2729 | 0x48000000, |
| 2723 | 0x0005005d, | 2730 | 0x0005005e, |
| 2724 | 0x00000000, | 2731 | 0x00000000, |
| 2725 | 0x89030000, | 2732 | 0x89030000, |
| 2726 | 0x00098200, | 2733 | 0x00098200, |
| @@ -2736,33 +2743,33 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2736 | 0x000900a1, | 2743 | 0x000900a1, |
| 2737 | 0xd8140000, | 2744 | 0xd8140000, |
| 2738 | 0x48000000, | 2745 | 0x48000000, |
| 2739 | 0x00050049, | 2746 | 0x0005004a, |
| 2740 | 0x00000000, | 2747 | 0x00000000, |
| 2741 | 0x0006007a, | 2748 | 0x0006007b, |
| 2742 | 0x80110000, | 2749 | 0x80110000, |
| 2743 | 0x00098200, | 2750 | 0x00098200, |
| 2744 | 0x81110000, | 2751 | 0x81110000, |
| 2745 | 0x00098200, | 2752 | 0x00098200, |
| 2746 | 0x7c004040, | 2753 | 0x7c004040, |
| 2747 | 0x40800001, | 2754 | 0x40800001, |
| 2748 | 0x00050852, | 2755 | 0x00050853, |
| 2749 | 0x280b0008, | 2756 | 0x280b0008, |
| 2750 | 0x80ae0000, | 2757 | 0x80ae0000, |
| 2751 | 0x00000000, | 2758 | 0x00000000, |
| 2752 | 0x800e0004, | 2759 | 0x800e0004, |
| 2753 | 0x40820000, | 2760 | 0x40820000, |
| 2754 | 0x00050848, | 2761 | 0x00050849, |
| 2755 | 0x7c05b040, | 2762 | 0x7c05b040, |
| 2756 | 0x40820000, | 2763 | 0x40820000, |
| 2757 | 0x00050848, | 2764 | 0x00050849, |
| 2758 | 0x388e0007, | 2765 | 0x388e0007, |
| 2759 | 0x00000000, | 2766 | 0x00000000, |
| 2760 | 0xc82e0000, | 2767 | 0xc82e0000, |
| 2761 | 0x40820000, | 2768 | 0x40820000, |
| 2762 | 0x00050848, | 2769 | 0x00050849, |
| 2763 | 0x7c05b040, | 2770 | 0x7c05b040, |
| 2764 | 0x40800000, | 2771 | 0x40800000, |
| 2765 | 0x00050848, | 2772 | 0x00050849, |
| 2766 | 0xfc20081e, | 2773 | 0xfc20081e, |
| 2767 | 0xd8210010, | 2774 | 0xd8210010, |
| 2768 | 0x80010014, | 2775 | 0x80010014, |
| @@ -2771,8 +2778,8 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2771 | 0x38a00001, | 2778 | 0x38a00001, |
| 2772 | 0x280000ff, | 2779 | 0x280000ff, |
| 2773 | 0x41810000, | 2780 | 0x41810000, |
| 2774 | 0x00050848, | 2781 | 0x00050849, |
| 2775 | 0x0006007b, | 2782 | 0x0006007c, |
| 2776 | 0x7e439378, | 2783 | 0x7e439378, |
| 2777 | 0x91d20000, | 2784 | 0x91d20000, |
| 2778 | 0x00098200, | 2785 | 0x00098200, |
| @@ -2784,15 +2791,15 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2784 | 0x38a00000, | 2791 | 0x38a00000, |
| 2785 | 0x00098200, | 2792 | 0x00098200, |
| 2786 | 0x48000000, | 2793 | 0x48000000, |
| 2787 | 0x0005004d, | 2794 | 0x0005004e, |
| 2788 | 0x0006007c, | 2795 | 0x0006007d, |
| 2789 | 0x80110000, | 2796 | 0x80110000, |
| 2790 | 0x00098200, | 2797 | 0x00098200, |
| 2791 | 0x81110000, | 2798 | 0x81110000, |
| 2792 | 0x00098200, | 2799 | 0x00098200, |
| 2793 | 0x7c004040, | 2800 | 0x7c004040, |
| 2794 | 0x40800001, | 2801 | 0x40800001, |
| 2795 | 0x00050852, | 2802 | 0x00050853, |
| 2796 | 0x280b0010, | 2803 | 0x280b0010, |
| 2797 | 0x80ae0010, | 2804 | 0x80ae0010, |
| 2798 | 0x00000000, | 2805 | 0x00000000, |
| @@ -2801,7 +2808,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2801 | 0x800e0000, | 2808 | 0x800e0000, |
| 2802 | 0x806e0004, | 2809 | 0x806e0004, |
| 2803 | 0x41800000, | 2810 | 0x41800000, |
| 2804 | 0x00050848, | 2811 | 0x00050849, |
| 2805 | 0x808e0008, | 2812 | 0x808e0008, |
| 2806 | 0x00000000, | 2813 | 0x00000000, |
| 2807 | 0x810e000c, | 2814 | 0x810e000c, |
| @@ -2815,27 +2822,27 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2815 | 0x7c05b040, | 2822 | 0x7c05b040, |
| 2816 | 0x812e0014, | 2823 | 0x812e0014, |
| 2817 | 0x40820000, | 2824 | 0x40820000, |
| 2818 | 0x00050848, | 2825 | 0x00050849, |
| 2819 | 0x0006000b, | 2826 | 0x0006000b, |
| 2820 | 0x7c04b040, | 2827 | 0x7c04b040, |
| 2821 | 0x40820000, | 2828 | 0x40820000, |
| 2822 | 0x00050848, | 2829 | 0x00050849, |
| 2823 | 0x00000000, | 2830 | 0x00000000, |
| 2824 | 0x7c05b040, | 2831 | 0x7c05b040, |
| 2825 | 0x40800000, | 2832 | 0x40800000, |
| 2826 | 0x00050848, | 2833 | 0x00050849, |
| 2827 | 0xfc00001e, | 2834 | 0xfc00001e, |
| 2828 | 0xd8010010, | 2835 | 0xd8010010, |
| 2829 | 0x81210014, | 2836 | 0x81210014, |
| 2830 | 0x0006000b, | 2837 | 0x0006000b, |
| 2831 | 0x7c04b040, | 2838 | 0x7c04b040, |
| 2832 | 0x40800000, | 2839 | 0x40800000, |
| 2833 | 0x00050848, | 2840 | 0x00050849, |
| 2834 | 0x00000000, | 2841 | 0x00000000, |
| 2835 | 0x2c000000, | 2842 | 0x2c000000, |
| 2836 | 0x00098200, | 2843 | 0x00098200, |
| 2837 | 0x40820000, | 2844 | 0x40820000, |
| 2838 | 0x00050848, | 2845 | 0x00050849, |
| 2839 | 0x00000000, | 2846 | 0x00000000, |
| 2840 | 0xfc20081e, | 2847 | 0xfc20081e, |
| 2841 | 0xd8210010, | 2848 | 0xd8210010, |
| @@ -2861,7 +2868,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2861 | 0x7c844214, | 2868 | 0x7c844214, |
| 2862 | 0x7ca50078, | 2869 | 0x7ca50078, |
| 2863 | 0x48000000, | 2870 | 0x48000000, |
| 2864 | 0x0005007b, | 2871 | 0x0005007c, |
| 2865 | 0x0006000f, | 2872 | 0x0006000f, |
| 2866 | 0x7c890050, | 2873 | 0x7c890050, |
| 2867 | 0x7c84fe70, | 2874 | 0x7c84fe70, |
| @@ -2878,14 +2885,14 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2878 | 0x39080001, | 2885 | 0x39080001, |
| 2879 | 0x48000000, | 2886 | 0x48000000, |
| 2880 | 0x0005000d, | 2887 | 0x0005000d, |
| 2881 | 0x0006007d, | 2888 | 0x0006007e, |
| 2882 | 0x80110000, | 2889 | 0x80110000, |
| 2883 | 0x00098200, | 2890 | 0x00098200, |
| 2884 | 0x81110000, | 2891 | 0x81110000, |
| 2885 | 0x00098200, | 2892 | 0x00098200, |
| 2886 | 0x7c004040, | 2893 | 0x7c004040, |
| 2887 | 0x40800001, | 2894 | 0x40800001, |
| 2888 | 0x00050852, | 2895 | 0x00050853, |
| 2889 | 0x280b0010, | 2896 | 0x280b0010, |
| 2890 | 0x800e0000, | 2897 | 0x800e0000, |
| 2891 | 0x806e0004, | 2898 | 0x806e0004, |
| @@ -2896,19 +2903,19 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2896 | 0xc84e0008, | 2903 | 0xc84e0008, |
| 2897 | 0x00000000, | 2904 | 0x00000000, |
| 2898 | 0x41800000, | 2905 | 0x41800000, |
| 2899 | 0x00050848, | 2906 | 0x00050849, |
| 2900 | 0x2c000000, | 2907 | 0x2c000000, |
| 2901 | 0x00098200, | 2908 | 0x00098200, |
| 2902 | 0x40820000, | 2909 | 0x40820000, |
| 2903 | 0x00050848, | 2910 | 0x00050849, |
| 2904 | 0x00000000, | 2911 | 0x00000000, |
| 2905 | 0x7c06b040, | 2912 | 0x7c06b040, |
| 2906 | 0x40820000, | 2913 | 0x40820000, |
| 2907 | 0x00050848, | 2914 | 0x00050849, |
| 2908 | 0x00000000, | 2915 | 0x00000000, |
| 2909 | 0x7c06b040, | 2916 | 0x7c06b040, |
| 2910 | 0x40800000, | 2917 | 0x40800000, |
| 2911 | 0x00050848, | 2918 | 0x00050849, |
| 2912 | 0xfc40101e, | 2919 | 0xfc40101e, |
| 2913 | 0xd8410010, | 2920 | 0xd8410010, |
| 2914 | 0x80a10014, | 2921 | 0x80a10014, |
| @@ -2926,13 +2933,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2926 | 0x00050802, | 2933 | 0x00050802, |
| 2927 | 0x7c882840, | 2934 | 0x7c882840, |
| 2928 | 0x40820000, | 2935 | 0x40820000, |
| 2929 | 0x00050848, | 2936 | 0x00050849, |
| 2930 | 0x88030000, | 2937 | 0x88030000, |
| 2931 | 0x00098200, | 2938 | 0x00098200, |
| 2932 | 0x80910000, | 2939 | 0x80910000, |
| 2933 | 0x00098200, | 2940 | 0x00098200, |
| 2934 | 0x41840000, | 2941 | 0x41840000, |
| 2935 | 0x00050848, | 2942 | 0x00050849, |
| 2936 | 0x0006000b, | 2943 | 0x0006000b, |
| 2937 | 0x28090000, | 2944 | 0x28090000, |
| 2938 | 0x7c0449ae, | 2945 | 0x7c0449ae, |
| @@ -2940,34 +2947,34 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2940 | 0x40820000, | 2947 | 0x40820000, |
| 2941 | 0x0005080b, | 2948 | 0x0005080b, |
| 2942 | 0x48000000, | 2949 | 0x48000000, |
| 2943 | 0x0005007b, | 2950 | 0x0005007c, |
| 2944 | 0x0006000c, | 2951 | 0x0006000c, |
| 2945 | 0x38710000, | 2952 | 0x38710000, |
| 2946 | 0x00098200, | 2953 | 0x00098200, |
| 2947 | 0x38a00000, | 2954 | 0x38a00000, |
| 2948 | 0x00098200, | 2955 | 0x00098200, |
| 2949 | 0x48000000, | 2956 | 0x48000000, |
| 2950 | 0x0005004d, | 2957 | 0x0005004e, |
| 2951 | 0x0006007e, | 2958 | 0x0006007f, |
| 2952 | 0x80110000, | 2959 | 0x80110000, |
| 2953 | 0x00098200, | 2960 | 0x00098200, |
| 2954 | 0x81110000, | 2961 | 0x81110000, |
| 2955 | 0x00098200, | 2962 | 0x00098200, |
| 2956 | 0x7c004040, | 2963 | 0x7c004040, |
| 2957 | 0x40800001, | 2964 | 0x40800001, |
| 2958 | 0x00050852, | 2965 | 0x00050853, |
| 2959 | 0x280b0008, | 2966 | 0x280b0008, |
| 2960 | 0x80ae0000, | 2967 | 0x80ae0000, |
| 2961 | 0x806e0004, | 2968 | 0x806e0004, |
| 2962 | 0x41800000, | 2969 | 0x41800000, |
| 2963 | 0x00050848, | 2970 | 0x00050849, |
| 2964 | 0x2c050000, | 2971 | 0x2c050000, |
| 2965 | 0x00098200, | 2972 | 0x00098200, |
| 2966 | 0x81110000, | 2973 | 0x81110000, |
| 2967 | 0x00098200, | 2974 | 0x00098200, |
| 2968 | 0x00000000, | 2975 | 0x00000000, |
| 2969 | 0x40820000, | 2976 | 0x40820000, |
| 2970 | 0x00050848, | 2977 | 0x00050849, |
| 2971 | 0x80a30000, | 2978 | 0x80a30000, |
| 2972 | 0x00098200, | 2979 | 0x00098200, |
| 2973 | 0x38630000, | 2980 | 0x38630000, |
| @@ -2978,36 +2985,36 @@ static const unsigned int build_actionlist[7580] = { | |||
| 2978 | 0x7c082840, | 2985 | 0x7c082840, |
| 2979 | 0x38c5ffff, | 2986 | 0x38c5ffff, |
| 2980 | 0x41800000, | 2987 | 0x41800000, |
| 2981 | 0x00050848, | 2988 | 0x00050849, |
| 2982 | 0x0006000b, | 2989 | 0x0006000b, |
| 2983 | 0x2c060000, | 2990 | 0x2c060000, |
| 2984 | 0x7d0348ae, | 2991 | 0x7d0348ae, |
| 2985 | 0x41a00000, | 2992 | 0x41a00000, |
| 2986 | 0x0005087b, | 2993 | 0x0005087c, |
| 2987 | 0x7d0431ae, | 2994 | 0x7d0431ae, |
| 2988 | 0x38c6ffff, | 2995 | 0x38c6ffff, |
| 2989 | 0x39290001, | 2996 | 0x39290001, |
| 2990 | 0x48000000, | 2997 | 0x48000000, |
| 2991 | 0x0005000b, | 2998 | 0x0005000b, |
| 2992 | 0x0006007f, | 2999 | 0x00060080, |
| 2993 | 0x80110000, | 3000 | 0x80110000, |
| 2994 | 0x00098200, | 3001 | 0x00098200, |
| 2995 | 0x81110000, | 3002 | 0x81110000, |
| 2996 | 0x00098200, | 3003 | 0x00098200, |
| 2997 | 0x7c004040, | 3004 | 0x7c004040, |
| 2998 | 0x40800001, | 3005 | 0x40800001, |
| 2999 | 0x00050852, | 3006 | 0x00050853, |
| 3000 | 0x280b0008, | 3007 | 0x280b0008, |
| 3001 | 0x80ae0000, | 3008 | 0x80ae0000, |
| 3002 | 0x806e0004, | 3009 | 0x806e0004, |
| 3003 | 0x41800000, | 3010 | 0x41800000, |
| 3004 | 0x00050848, | 3011 | 0x00050849, |
| 3005 | 0x2c050000, | 3012 | 0x2c050000, |
| 3006 | 0x00098200, | 3013 | 0x00098200, |
| 3007 | 0x81110000, | 3014 | 0x81110000, |
| 3008 | 0x00098200, | 3015 | 0x00098200, |
| 3009 | 0x40820000, | 3016 | 0x40820000, |
| 3010 | 0x00050848, | 3017 | 0x00050849, |
| 3011 | 0x80a30000, | 3018 | 0x80a30000, |
| 3012 | 0x00098200, | 3019 | 0x00098200, |
| 3013 | 0x38630000, | 3020 | 0x38630000, |
| @@ -3017,12 +3024,12 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3017 | 0x7c082840, | 3024 | 0x7c082840, |
| 3018 | 0x39200000, | 3025 | 0x39200000, |
| 3019 | 0x41800000, | 3026 | 0x41800000, |
| 3020 | 0x00050848, | 3027 | 0x00050849, |
| 3021 | 0x0006000b, | 3028 | 0x0006000b, |
| 3022 | 0x7c092840, | 3029 | 0x7c092840, |
| 3023 | 0x7d0348ae, | 3030 | 0x7d0348ae, |
| 3024 | 0x40a00000, | 3031 | 0x40a00000, |
| 3025 | 0x0005087b, | 3032 | 0x0005087c, |
| 3026 | 0x00000000, | 3033 | 0x00000000, |
| 3027 | 0x3808ffbf, | 3034 | 0x3808ffbf, |
| 3028 | 0x69060020, | 3035 | 0x69060020, |
| @@ -3034,25 +3041,25 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3034 | 0x39290001, | 3041 | 0x39290001, |
| 3035 | 0x48000000, | 3042 | 0x48000000, |
| 3036 | 0x0005000b, | 3043 | 0x0005000b, |
| 3037 | 0x00060080, | 3044 | 0x00060081, |
| 3038 | 0x80110000, | 3045 | 0x80110000, |
| 3039 | 0x00098200, | 3046 | 0x00098200, |
| 3040 | 0x81110000, | 3047 | 0x81110000, |
| 3041 | 0x00098200, | 3048 | 0x00098200, |
| 3042 | 0x7c004040, | 3049 | 0x7c004040, |
| 3043 | 0x40800001, | 3050 | 0x40800001, |
| 3044 | 0x00050852, | 3051 | 0x00050853, |
| 3045 | 0x280b0008, | 3052 | 0x280b0008, |
| 3046 | 0x80ae0000, | 3053 | 0x80ae0000, |
| 3047 | 0x806e0004, | 3054 | 0x806e0004, |
| 3048 | 0x41800000, | 3055 | 0x41800000, |
| 3049 | 0x00050848, | 3056 | 0x00050849, |
| 3050 | 0x2c050000, | 3057 | 0x2c050000, |
| 3051 | 0x00098200, | 3058 | 0x00098200, |
| 3052 | 0x81110000, | 3059 | 0x81110000, |
| 3053 | 0x00098200, | 3060 | 0x00098200, |
| 3054 | 0x40820000, | 3061 | 0x40820000, |
| 3055 | 0x00050848, | 3062 | 0x00050849, |
| 3056 | 0x80a30000, | 3063 | 0x80a30000, |
| 3057 | 0x00098200, | 3064 | 0x00098200, |
| 3058 | 0x38630000, | 3065 | 0x38630000, |
| @@ -3062,12 +3069,12 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3062 | 0x7c082840, | 3069 | 0x7c082840, |
| 3063 | 0x39200000, | 3070 | 0x39200000, |
| 3064 | 0x41800000, | 3071 | 0x41800000, |
| 3065 | 0x00050848, | 3072 | 0x00050849, |
| 3066 | 0x0006000b, | 3073 | 0x0006000b, |
| 3067 | 0x7c092840, | 3074 | 0x7c092840, |
| 3068 | 0x7d0348ae, | 3075 | 0x7d0348ae, |
| 3069 | 0x40a00000, | 3076 | 0x40a00000, |
| 3070 | 0x0005087b, | 3077 | 0x0005087c, |
| 3071 | 0x3808ff9f, | 3078 | 0x3808ff9f, |
| 3072 | 0x69060020, | 3079 | 0x69060020, |
| 3073 | 0x3000ffe6, | 3080 | 0x3000ffe6, |
| @@ -3078,40 +3085,40 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3078 | 0x39290001, | 3085 | 0x39290001, |
| 3079 | 0x48000000, | 3086 | 0x48000000, |
| 3080 | 0x0005000b, | 3087 | 0x0005000b, |
| 3081 | 0x00060081, | 3088 | 0x00060082, |
| 3082 | 0x280b0008, | 3089 | 0x280b0008, |
| 3083 | 0x80ae0000, | 3090 | 0x80ae0000, |
| 3084 | 0x806e0004, | 3091 | 0x806e0004, |
| 3085 | 0x41800000, | 3092 | 0x41800000, |
| 3086 | 0x00050848, | 3093 | 0x00050849, |
| 3087 | 0x2c050000, | 3094 | 0x2c050000, |
| 3088 | 0x00098200, | 3095 | 0x00098200, |
| 3089 | 0x40820000, | 3096 | 0x40820000, |
| 3090 | 0x00050848, | 3097 | 0x00050849, |
| 3091 | 0x48000001, | 3098 | 0x48000001, |
| 3092 | 0x00030026, | 3099 | 0x00030026, |
| 3093 | 0x48000000, | 3100 | 0x48000000, |
| 3094 | 0x0005005d, | 3101 | 0x0005005e, |
| 3095 | 0x00000000, | 3102 | 0x00000000, |
| 3096 | 0x00060082, | 3103 | 0x00060083, |
| 3097 | 0x280b0008, | 3104 | 0x280b0008, |
| 3098 | 0x80ae0000, | 3105 | 0x80ae0000, |
| 3099 | 0x806e0004, | 3106 | 0x806e0004, |
| 3100 | 0x41800000, | 3107 | 0x41800000, |
| 3101 | 0x00050848, | 3108 | 0x00050849, |
| 3102 | 0x7c05b040, | 3109 | 0x7c05b040, |
| 3103 | 0x40820001, | 3110 | 0x40820001, |
| 3104 | 0x00050883, | 3111 | 0x00050884, |
| 3105 | 0x00000000, | 3112 | 0x00000000, |
| 3106 | 0x00060082, | 3113 | 0x00060083, |
| 3107 | 0x280b0008, | 3114 | 0x280b0008, |
| 3108 | 0x80ae0000, | 3115 | 0x80ae0000, |
| 3109 | 0xc82e0000, | 3116 | 0xc82e0000, |
| 3110 | 0x41800000, | 3117 | 0x41800000, |
| 3111 | 0x00050848, | 3118 | 0x00050849, |
| 3112 | 0x7c05b040, | 3119 | 0x7c05b040, |
| 3113 | 0x40800000, | 3120 | 0x40800000, |
| 3114 | 0x00050848, | 3121 | 0x00050849, |
| 3115 | 0xfc21f02a, | 3122 | 0xfc21f02a, |
| 3116 | 0xd8210010, | 3123 | 0xd8210010, |
| 3117 | 0x80610014, | 3124 | 0x80610014, |
| @@ -3127,15 +3134,15 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3127 | 0xc8280000, | 3134 | 0xc8280000, |
| 3128 | 0x00000000, | 3135 | 0x00000000, |
| 3129 | 0x40a40000, | 3136 | 0x40a40000, |
| 3130 | 0x0005085d, | 3137 | 0x0005085e, |
| 3131 | 0x7c06b040, | 3138 | 0x7c06b040, |
| 3132 | 0x00000000, | 3139 | 0x00000000, |
| 3133 | 0x40820001, | 3140 | 0x40820001, |
| 3134 | 0x00050884, | 3141 | 0x00050885, |
| 3135 | 0x00000000, | 3142 | 0x00000000, |
| 3136 | 0xfc21f02a, | 3143 | 0xfc21f02a, |
| 3137 | 0x40800000, | 3144 | 0x40800000, |
| 3138 | 0x00050848, | 3145 | 0x00050849, |
| 3139 | 0xd8210010, | 3146 | 0xd8210010, |
| 3140 | 0x80810014, | 3147 | 0x80810014, |
| 3141 | 0x00000000, | 3148 | 0x00000000, |
| @@ -3144,25 +3151,25 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3144 | 0x48000000, | 3151 | 0x48000000, |
| 3145 | 0x0005000b, | 3152 | 0x0005000b, |
| 3146 | 0x00000000, | 3153 | 0x00000000, |
| 3147 | 0x00060085, | 3154 | 0x00060086, |
| 3148 | 0x280b0008, | 3155 | 0x280b0008, |
| 3149 | 0x80ae0000, | 3156 | 0x80ae0000, |
| 3150 | 0x806e0004, | 3157 | 0x806e0004, |
| 3151 | 0x41800000, | 3158 | 0x41800000, |
| 3152 | 0x00050848, | 3159 | 0x00050849, |
| 3153 | 0x7c05b040, | 3160 | 0x7c05b040, |
| 3154 | 0x40820001, | 3161 | 0x40820001, |
| 3155 | 0x00050883, | 3162 | 0x00050884, |
| 3156 | 0x00000000, | 3163 | 0x00000000, |
| 3157 | 0x00060085, | 3164 | 0x00060086, |
| 3158 | 0x280b0008, | 3165 | 0x280b0008, |
| 3159 | 0x80ae0000, | 3166 | 0x80ae0000, |
| 3160 | 0xc82e0000, | 3167 | 0xc82e0000, |
| 3161 | 0x41800000, | 3168 | 0x41800000, |
| 3162 | 0x00050848, | 3169 | 0x00050849, |
| 3163 | 0x7c05b040, | 3170 | 0x7c05b040, |
| 3164 | 0x40800000, | 3171 | 0x40800000, |
| 3165 | 0x00050848, | 3172 | 0x00050849, |
| 3166 | 0xfc21f02a, | 3173 | 0xfc21f02a, |
| 3167 | 0xd8210010, | 3174 | 0xd8210010, |
| 3168 | 0x80610014, | 3175 | 0x80610014, |
| @@ -3178,15 +3185,15 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3178 | 0xc8280000, | 3185 | 0xc8280000, |
| 3179 | 0x00000000, | 3186 | 0x00000000, |
| 3180 | 0x40a40000, | 3187 | 0x40a40000, |
| 3181 | 0x0005085d, | 3188 | 0x0005085e, |
| 3182 | 0x7c06b040, | 3189 | 0x7c06b040, |
| 3183 | 0x00000000, | 3190 | 0x00000000, |
| 3184 | 0x40820001, | 3191 | 0x40820001, |
| 3185 | 0x00050884, | 3192 | 0x00050885, |
| 3186 | 0x00000000, | 3193 | 0x00000000, |
| 3187 | 0xfc21f02a, | 3194 | 0xfc21f02a, |
| 3188 | 0x40800000, | 3195 | 0x40800000, |
| 3189 | 0x00050848, | 3196 | 0x00050849, |
| 3190 | 0xd8210010, | 3197 | 0xd8210010, |
| 3191 | 0x80810014, | 3198 | 0x80810014, |
| 3192 | 0x00000000, | 3199 | 0x00000000, |
| @@ -3195,25 +3202,25 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3195 | 0x48000000, | 3202 | 0x48000000, |
| 3196 | 0x0005000b, | 3203 | 0x0005000b, |
| 3197 | 0x00000000, | 3204 | 0x00000000, |
| 3198 | 0x00060086, | 3205 | 0x00060087, |
| 3199 | 0x280b0008, | 3206 | 0x280b0008, |
| 3200 | 0x80ae0000, | 3207 | 0x80ae0000, |
| 3201 | 0x806e0004, | 3208 | 0x806e0004, |
| 3202 | 0x41800000, | 3209 | 0x41800000, |
| 3203 | 0x00050848, | 3210 | 0x00050849, |
| 3204 | 0x7c05b040, | 3211 | 0x7c05b040, |
| 3205 | 0x40820001, | 3212 | 0x40820001, |
| 3206 | 0x00050883, | 3213 | 0x00050884, |
| 3207 | 0x00000000, | 3214 | 0x00000000, |
| 3208 | 0x00060086, | 3215 | 0x00060087, |
| 3209 | 0x280b0008, | 3216 | 0x280b0008, |
| 3210 | 0x80ae0000, | 3217 | 0x80ae0000, |
| 3211 | 0xc82e0000, | 3218 | 0xc82e0000, |
| 3212 | 0x41800000, | 3219 | 0x41800000, |
| 3213 | 0x00050848, | 3220 | 0x00050849, |
| 3214 | 0x7c05b040, | 3221 | 0x7c05b040, |
| 3215 | 0x40800000, | 3222 | 0x40800000, |
| 3216 | 0x00050848, | 3223 | 0x00050849, |
| 3217 | 0xfc21f02a, | 3224 | 0xfc21f02a, |
| 3218 | 0xd8210010, | 3225 | 0xd8210010, |
| 3219 | 0x80610014, | 3226 | 0x80610014, |
| @@ -3229,15 +3236,15 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3229 | 0xc8280000, | 3236 | 0xc8280000, |
| 3230 | 0x00000000, | 3237 | 0x00000000, |
| 3231 | 0x40a40000, | 3238 | 0x40a40000, |
| 3232 | 0x0005085d, | 3239 | 0x0005085e, |
| 3233 | 0x7c06b040, | 3240 | 0x7c06b040, |
| 3234 | 0x00000000, | 3241 | 0x00000000, |
| 3235 | 0x40820001, | 3242 | 0x40820001, |
| 3236 | 0x00050884, | 3243 | 0x00050885, |
| 3237 | 0x00000000, | 3244 | 0x00000000, |
| 3238 | 0xfc21f02a, | 3245 | 0xfc21f02a, |
| 3239 | 0x40800000, | 3246 | 0x40800000, |
| 3240 | 0x00050848, | 3247 | 0x00050849, |
| 3241 | 0xd8210010, | 3248 | 0xd8210010, |
| 3242 | 0x80810014, | 3249 | 0x80810014, |
| 3243 | 0x00000000, | 3250 | 0x00000000, |
| @@ -3246,25 +3253,25 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3246 | 0x48000000, | 3253 | 0x48000000, |
| 3247 | 0x0005000b, | 3254 | 0x0005000b, |
| 3248 | 0x00000000, | 3255 | 0x00000000, |
| 3249 | 0x00060087, | 3256 | 0x00060088, |
| 3250 | 0x280b0008, | 3257 | 0x280b0008, |
| 3251 | 0x80ae0000, | 3258 | 0x80ae0000, |
| 3252 | 0x806e0004, | 3259 | 0x806e0004, |
| 3253 | 0x41800000, | 3260 | 0x41800000, |
| 3254 | 0x00050848, | 3261 | 0x00050849, |
| 3255 | 0x7c05b040, | 3262 | 0x7c05b040, |
| 3256 | 0x40820001, | 3263 | 0x40820001, |
| 3257 | 0x00050883, | 3264 | 0x00050884, |
| 3258 | 0x00000000, | 3265 | 0x00000000, |
| 3259 | 0x00060087, | 3266 | 0x00060088, |
| 3260 | 0x280b0008, | 3267 | 0x280b0008, |
| 3261 | 0x80ae0000, | 3268 | 0x80ae0000, |
| 3262 | 0xc82e0000, | 3269 | 0xc82e0000, |
| 3263 | 0x41800000, | 3270 | 0x41800000, |
| 3264 | 0x00050848, | 3271 | 0x00050849, |
| 3265 | 0x7c05b040, | 3272 | 0x7c05b040, |
| 3266 | 0x40800000, | 3273 | 0x40800000, |
| 3267 | 0x00050848, | 3274 | 0x00050849, |
| 3268 | 0xfc21f02a, | 3275 | 0xfc21f02a, |
| 3269 | 0xd8210010, | 3276 | 0xd8210010, |
| 3270 | 0x80610014, | 3277 | 0x80610014, |
| @@ -3274,64 +3281,64 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3274 | 0x5060c42e, | 3281 | 0x5060c42e, |
| 3275 | 0x7c030378, | 3282 | 0x7c030378, |
| 3276 | 0x48000000, | 3283 | 0x48000000, |
| 3277 | 0x0005005d, | 3284 | 0x0005005e, |
| 3278 | 0x00000000, | 3285 | 0x00000000, |
| 3279 | 0x00060088, | 3286 | 0x00060089, |
| 3280 | 0x280b0008, | 3287 | 0x280b0008, |
| 3281 | 0x80ae0000, | 3288 | 0x80ae0000, |
| 3282 | 0x806e0004, | 3289 | 0x806e0004, |
| 3283 | 0x41800000, | 3290 | 0x41800000, |
| 3284 | 0x00050848, | 3291 | 0x00050849, |
| 3285 | 0x7c05b040, | 3292 | 0x7c05b040, |
| 3286 | 0x40820001, | 3293 | 0x40820001, |
| 3287 | 0x00050883, | 3294 | 0x00050884, |
| 3288 | 0x00000000, | 3295 | 0x00000000, |
| 3289 | 0x00060088, | 3296 | 0x00060089, |
| 3290 | 0x280b0008, | 3297 | 0x280b0008, |
| 3291 | 0x80ae0000, | 3298 | 0x80ae0000, |
| 3292 | 0xc82e0000, | 3299 | 0xc82e0000, |
| 3293 | 0x41800000, | 3300 | 0x41800000, |
| 3294 | 0x00050848, | 3301 | 0x00050849, |
| 3295 | 0x7c05b040, | 3302 | 0x7c05b040, |
| 3296 | 0x40800000, | 3303 | 0x40800000, |
| 3297 | 0x00050848, | 3304 | 0x00050849, |
| 3298 | 0xfc21f02a, | 3305 | 0xfc21f02a, |
| 3299 | 0xd8210010, | 3306 | 0xd8210010, |
| 3300 | 0x80610014, | 3307 | 0x80610014, |
| 3301 | 0x00000000, | 3308 | 0x00000000, |
| 3302 | 0x7c6318f8, | 3309 | 0x7c6318f8, |
| 3303 | 0x48000000, | 3310 | 0x48000000, |
| 3304 | 0x0005005d, | 3311 | 0x0005005e, |
| 3305 | 0x00000000, | 3312 | 0x00000000, |
| 3306 | 0x00060089, | 3313 | 0x0006008a, |
| 3307 | 0x280b0010, | 3314 | 0x280b0010, |
| 3308 | 0x80ae0000, | 3315 | 0x80ae0000, |
| 3309 | 0x80ce0008, | 3316 | 0x80ce0008, |
| 3310 | 0x806e0004, | 3317 | 0x806e0004, |
| 3311 | 0x808e000c, | 3318 | 0x808e000c, |
| 3312 | 0x41800000, | 3319 | 0x41800000, |
| 3313 | 0x00050848, | 3320 | 0x00050849, |
| 3314 | 0x7c05b040, | 3321 | 0x7c05b040, |
| 3315 | 0x40820001, | 3322 | 0x40820001, |
| 3316 | 0x00050883, | 3323 | 0x00050884, |
| 3317 | 0x7c06b040, | 3324 | 0x7c06b040, |
| 3318 | 0x40820000, | 3325 | 0x40820000, |
| 3319 | 0x00050848, | 3326 | 0x00050849, |
| 3320 | 0x00000000, | 3327 | 0x00000000, |
| 3321 | 0x00060089, | 3328 | 0x0006008a, |
| 3322 | 0x280b0010, | 3329 | 0x280b0010, |
| 3323 | 0x80ae0000, | 3330 | 0x80ae0000, |
| 3324 | 0xc82e0000, | 3331 | 0xc82e0000, |
| 3325 | 0x80ce0008, | 3332 | 0x80ce0008, |
| 3326 | 0xc84e0008, | 3333 | 0xc84e0008, |
| 3327 | 0x41800000, | 3334 | 0x41800000, |
| 3328 | 0x00050848, | 3335 | 0x00050849, |
| 3329 | 0x7c05b040, | 3336 | 0x7c05b040, |
| 3330 | 0x40800000, | 3337 | 0x40800000, |
| 3331 | 0x00050848, | 3338 | 0x00050849, |
| 3332 | 0x7c06b040, | 3339 | 0x7c06b040, |
| 3333 | 0x40800000, | 3340 | 0x40800000, |
| 3334 | 0x00050848, | 3341 | 0x00050849, |
| 3335 | 0xfc21f02a, | 3342 | 0xfc21f02a, |
| 3336 | 0xfc42f02a, | 3343 | 0xfc42f02a, |
| 3337 | 0xd8210010, | 3344 | 0xd8210010, |
| @@ -3342,37 +3349,37 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3342 | 0x548406fe, | 3349 | 0x548406fe, |
| 3343 | 0x7c632030, | 3350 | 0x7c632030, |
| 3344 | 0x48000000, | 3351 | 0x48000000, |
| 3345 | 0x0005005d, | 3352 | 0x0005005e, |
| 3346 | 0x00000000, | 3353 | 0x00000000, |
| 3347 | 0x0006008a, | 3354 | 0x0006008b, |
| 3348 | 0x280b0010, | 3355 | 0x280b0010, |
| 3349 | 0x80ae0000, | 3356 | 0x80ae0000, |
| 3350 | 0x80ce0008, | 3357 | 0x80ce0008, |
| 3351 | 0x806e0004, | 3358 | 0x806e0004, |
| 3352 | 0x808e000c, | 3359 | 0x808e000c, |
| 3353 | 0x41800000, | 3360 | 0x41800000, |
| 3354 | 0x00050848, | 3361 | 0x00050849, |
| 3355 | 0x7c05b040, | 3362 | 0x7c05b040, |
| 3356 | 0x40820001, | 3363 | 0x40820001, |
| 3357 | 0x00050883, | 3364 | 0x00050884, |
| 3358 | 0x7c06b040, | 3365 | 0x7c06b040, |
| 3359 | 0x40820000, | 3366 | 0x40820000, |
| 3360 | 0x00050848, | 3367 | 0x00050849, |
| 3361 | 0x00000000, | 3368 | 0x00000000, |
| 3362 | 0x0006008a, | 3369 | 0x0006008b, |
| 3363 | 0x280b0010, | 3370 | 0x280b0010, |
| 3364 | 0x80ae0000, | 3371 | 0x80ae0000, |
| 3365 | 0xc82e0000, | 3372 | 0xc82e0000, |
| 3366 | 0x80ce0008, | 3373 | 0x80ce0008, |
| 3367 | 0xc84e0008, | 3374 | 0xc84e0008, |
| 3368 | 0x41800000, | 3375 | 0x41800000, |
| 3369 | 0x00050848, | 3376 | 0x00050849, |
| 3370 | 0x7c05b040, | 3377 | 0x7c05b040, |
| 3371 | 0x40800000, | 3378 | 0x40800000, |
| 3372 | 0x00050848, | 3379 | 0x00050849, |
| 3373 | 0x7c06b040, | 3380 | 0x7c06b040, |
| 3374 | 0x40800000, | 3381 | 0x40800000, |
| 3375 | 0x00050848, | 3382 | 0x00050849, |
| 3376 | 0xfc21f02a, | 3383 | 0xfc21f02a, |
| 3377 | 0xfc42f02a, | 3384 | 0xfc42f02a, |
| 3378 | 0xd8210010, | 3385 | 0xd8210010, |
| @@ -3383,37 +3390,37 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3383 | 0x548406fe, | 3390 | 0x548406fe, |
| 3384 | 0x7c632430, | 3391 | 0x7c632430, |
| 3385 | 0x48000000, | 3392 | 0x48000000, |
| 3386 | 0x0005005d, | 3393 | 0x0005005e, |
| 3387 | 0x00000000, | 3394 | 0x00000000, |
| 3388 | 0x0006008b, | 3395 | 0x0006008c, |
| 3389 | 0x280b0010, | 3396 | 0x280b0010, |
| 3390 | 0x80ae0000, | 3397 | 0x80ae0000, |
| 3391 | 0x80ce0008, | 3398 | 0x80ce0008, |
| 3392 | 0x806e0004, | 3399 | 0x806e0004, |
| 3393 | 0x808e000c, | 3400 | 0x808e000c, |
| 3394 | 0x41800000, | 3401 | 0x41800000, |
| 3395 | 0x00050848, | 3402 | 0x00050849, |
| 3396 | 0x7c05b040, | 3403 | 0x7c05b040, |
| 3397 | 0x40820001, | 3404 | 0x40820001, |
| 3398 | 0x00050883, | 3405 | 0x00050884, |
| 3399 | 0x7c06b040, | 3406 | 0x7c06b040, |
| 3400 | 0x40820000, | 3407 | 0x40820000, |
| 3401 | 0x00050848, | 3408 | 0x00050849, |
| 3402 | 0x00000000, | 3409 | 0x00000000, |
| 3403 | 0x0006008b, | 3410 | 0x0006008c, |
| 3404 | 0x280b0010, | 3411 | 0x280b0010, |
| 3405 | 0x80ae0000, | 3412 | 0x80ae0000, |
| 3406 | 0xc82e0000, | 3413 | 0xc82e0000, |
| 3407 | 0x80ce0008, | 3414 | 0x80ce0008, |
| 3408 | 0xc84e0008, | 3415 | 0xc84e0008, |
| 3409 | 0x41800000, | 3416 | 0x41800000, |
| 3410 | 0x00050848, | 3417 | 0x00050849, |
| 3411 | 0x7c05b040, | 3418 | 0x7c05b040, |
| 3412 | 0x40800000, | 3419 | 0x40800000, |
| 3413 | 0x00050848, | 3420 | 0x00050849, |
| 3414 | 0x7c06b040, | 3421 | 0x7c06b040, |
| 3415 | 0x40800000, | 3422 | 0x40800000, |
| 3416 | 0x00050848, | 3423 | 0x00050849, |
| 3417 | 0xfc21f02a, | 3424 | 0xfc21f02a, |
| 3418 | 0xfc42f02a, | 3425 | 0xfc42f02a, |
| 3419 | 0xd8210010, | 3426 | 0xd8210010, |
| @@ -3424,37 +3431,37 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3424 | 0x548406fe, | 3431 | 0x548406fe, |
| 3425 | 0x7c632630, | 3432 | 0x7c632630, |
| 3426 | 0x48000000, | 3433 | 0x48000000, |
| 3427 | 0x0005005d, | 3434 | 0x0005005e, |
| 3428 | 0x00000000, | 3435 | 0x00000000, |
| 3429 | 0x0006008c, | 3436 | 0x0006008d, |
| 3430 | 0x280b0010, | 3437 | 0x280b0010, |
| 3431 | 0x80ae0000, | 3438 | 0x80ae0000, |
| 3432 | 0x80ce0008, | 3439 | 0x80ce0008, |
| 3433 | 0x806e0004, | 3440 | 0x806e0004, |
| 3434 | 0x808e000c, | 3441 | 0x808e000c, |
| 3435 | 0x41800000, | 3442 | 0x41800000, |
| 3436 | 0x00050848, | 3443 | 0x00050849, |
| 3437 | 0x7c05b040, | 3444 | 0x7c05b040, |
| 3438 | 0x40820001, | 3445 | 0x40820001, |
| 3439 | 0x00050883, | 3446 | 0x00050884, |
| 3440 | 0x7c06b040, | 3447 | 0x7c06b040, |
| 3441 | 0x40820000, | 3448 | 0x40820000, |
| 3442 | 0x00050848, | 3449 | 0x00050849, |
| 3443 | 0x00000000, | 3450 | 0x00000000, |
| 3444 | 0x0006008c, | 3451 | 0x0006008d, |
| 3445 | 0x280b0010, | 3452 | 0x280b0010, |
| 3446 | 0x80ae0000, | 3453 | 0x80ae0000, |
| 3447 | 0xc82e0000, | 3454 | 0xc82e0000, |
| 3448 | 0x80ce0008, | 3455 | 0x80ce0008, |
| 3449 | 0xc84e0008, | 3456 | 0xc84e0008, |
| 3450 | 0x41800000, | 3457 | 0x41800000, |
| 3451 | 0x00050848, | 3458 | 0x00050849, |
| 3452 | 0x7c05b040, | 3459 | 0x7c05b040, |
| 3453 | 0x40800000, | 3460 | 0x40800000, |
| 3454 | 0x00050848, | 3461 | 0x00050849, |
| 3455 | 0x7c06b040, | 3462 | 0x7c06b040, |
| 3456 | 0x40800000, | 3463 | 0x40800000, |
| 3457 | 0x00050848, | 3464 | 0x00050849, |
| 3458 | 0xfc21f02a, | 3465 | 0xfc21f02a, |
| 3459 | 0xfc42f02a, | 3466 | 0xfc42f02a, |
| 3460 | 0xd8210010, | 3467 | 0xd8210010, |
| @@ -3464,37 +3471,37 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3464 | 0x00000000, | 3471 | 0x00000000, |
| 3465 | 0x5c63203e, | 3472 | 0x5c63203e, |
| 3466 | 0x48000000, | 3473 | 0x48000000, |
| 3467 | 0x0005005d, | 3474 | 0x0005005e, |
| 3468 | 0x00000000, | 3475 | 0x00000000, |
| 3469 | 0x0006008d, | 3476 | 0x0006008e, |
| 3470 | 0x280b0010, | 3477 | 0x280b0010, |
| 3471 | 0x80ae0000, | 3478 | 0x80ae0000, |
| 3472 | 0x80ce0008, | 3479 | 0x80ce0008, |
| 3473 | 0x806e0004, | 3480 | 0x806e0004, |
| 3474 | 0x808e000c, | 3481 | 0x808e000c, |
| 3475 | 0x41800000, | 3482 | 0x41800000, |
| 3476 | 0x00050848, | 3483 | 0x00050849, |
| 3477 | 0x7c05b040, | 3484 | 0x7c05b040, |
| 3478 | 0x40820001, | 3485 | 0x40820001, |
| 3479 | 0x00050883, | 3486 | 0x00050884, |
| 3480 | 0x7c06b040, | 3487 | 0x7c06b040, |
| 3481 | 0x40820000, | 3488 | 0x40820000, |
| 3482 | 0x00050848, | 3489 | 0x00050849, |
| 3483 | 0x00000000, | 3490 | 0x00000000, |
| 3484 | 0x0006008d, | 3491 | 0x0006008e, |
| 3485 | 0x280b0010, | 3492 | 0x280b0010, |
| 3486 | 0x80ae0000, | 3493 | 0x80ae0000, |
| 3487 | 0xc82e0000, | 3494 | 0xc82e0000, |
| 3488 | 0x80ce0008, | 3495 | 0x80ce0008, |
| 3489 | 0xc84e0008, | 3496 | 0xc84e0008, |
| 3490 | 0x41800000, | 3497 | 0x41800000, |
| 3491 | 0x00050848, | 3498 | 0x00050849, |
| 3492 | 0x7c05b040, | 3499 | 0x7c05b040, |
| 3493 | 0x40800000, | 3500 | 0x40800000, |
| 3494 | 0x00050848, | 3501 | 0x00050849, |
| 3495 | 0x7c06b040, | 3502 | 0x7c06b040, |
| 3496 | 0x40800000, | 3503 | 0x40800000, |
| 3497 | 0x00050848, | 3504 | 0x00050849, |
| 3498 | 0xfc21f02a, | 3505 | 0xfc21f02a, |
| 3499 | 0xfc42f02a, | 3506 | 0xfc42f02a, |
| 3500 | 0xd8210010, | 3507 | 0xd8210010, |
| @@ -3505,67 +3512,67 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3505 | 0x7c8400d0, | 3512 | 0x7c8400d0, |
| 3506 | 0x5c63203e, | 3513 | 0x5c63203e, |
| 3507 | 0x48000000, | 3514 | 0x48000000, |
| 3508 | 0x0005005d, | 3515 | 0x0005005e, |
| 3509 | 0x00000000, | 3516 | 0x00000000, |
| 3510 | 0x0006008e, | 3517 | 0x0006008f, |
| 3511 | 0x280b0008, | 3518 | 0x280b0008, |
| 3512 | 0x80ae0000, | 3519 | 0x80ae0000, |
| 3513 | 0x806e0004, | 3520 | 0x806e0004, |
| 3514 | 0x41800000, | 3521 | 0x41800000, |
| 3515 | 0x00050848, | 3522 | 0x00050849, |
| 3516 | 0x7c05b040, | 3523 | 0x7c05b040, |
| 3517 | 0x40820001, | 3524 | 0x40820001, |
| 3518 | 0x00050883, | 3525 | 0x00050884, |
| 3519 | 0x00000000, | 3526 | 0x00000000, |
| 3520 | 0x0006008e, | 3527 | 0x0006008f, |
| 3521 | 0x280b0008, | 3528 | 0x280b0008, |
| 3522 | 0x80ae0000, | 3529 | 0x80ae0000, |
| 3523 | 0xc82e0000, | 3530 | 0xc82e0000, |
| 3524 | 0x41800000, | 3531 | 0x41800000, |
| 3525 | 0x00050848, | 3532 | 0x00050849, |
| 3526 | 0x7c05b040, | 3533 | 0x7c05b040, |
| 3527 | 0x40800000, | 3534 | 0x40800000, |
| 3528 | 0x00050848, | 3535 | 0x00050849, |
| 3529 | 0xfc21f02a, | 3536 | 0xfc21f02a, |
| 3530 | 0xd8210010, | 3537 | 0xd8210010, |
| 3531 | 0x80610014, | 3538 | 0x80610014, |
| 3532 | 0x00000000, | 3539 | 0x00000000, |
| 3533 | 0x48000000, | 3540 | 0x48000000, |
| 3534 | 0x0005005d, | 3541 | 0x0005005e, |
| 3535 | 0x00000000, | 3542 | 0x00000000, |
| 3536 | 0x0006005d, | 3543 | 0x0006005e, |
| 3537 | 0x6c638000, | 3544 | 0x6c638000, |
| 3538 | 0x9061000c, | 3545 | 0x9061000c, |
| 3539 | 0xc8210008, | 3546 | 0xc8210008, |
| 3540 | 0xfc21f828, | 3547 | 0xfc21f828, |
| 3541 | 0x00000000, | 3548 | 0x00000000, |
| 3542 | 0x0006004b, | 3549 | 0x0006004c, |
| 3543 | 0x820efff8, | 3550 | 0x820efff8, |
| 3544 | 0x3a8efff8, | 3551 | 0x3a8efff8, |
| 3545 | 0xd82efff8, | 3552 | 0xd82efff8, |
| 3546 | 0x48000000, | 3553 | 0x48000000, |
| 3547 | 0x0005005e, | 3554 | 0x0005005f, |
| 3548 | 0x00060083, | 3555 | 0x00060084, |
| 3549 | 0x00000000, | 3556 | 0x00000000, |
| 3550 | 0xc82e0000, | 3557 | 0xc82e0000, |
| 3551 | 0x41810000, | 3558 | 0x41810000, |
| 3552 | 0x00050848, | 3559 | 0x00050849, |
| 3553 | 0xfc21f02a, | 3560 | 0xfc21f02a, |
| 3554 | 0xd8210010, | 3561 | 0xd8210010, |
| 3555 | 0x80610014, | 3562 | 0x80610014, |
| 3556 | 0x4e800020, | 3563 | 0x4e800020, |
| 3557 | 0x00000000, | 3564 | 0x00000000, |
| 3558 | 0x00060084, | 3565 | 0x00060085, |
| 3559 | 0x00000000, | 3566 | 0x00000000, |
| 3560 | 0xc8280000, | 3567 | 0xc8280000, |
| 3561 | 0x41810000, | 3568 | 0x41810000, |
| 3562 | 0x00050848, | 3569 | 0x00050849, |
| 3563 | 0xfc21f02a, | 3570 | 0xfc21f02a, |
| 3564 | 0xd8210010, | 3571 | 0xd8210010, |
| 3565 | 0x80810014, | 3572 | 0x80810014, |
| 3566 | 0x4e800020, | 3573 | 0x4e800020, |
| 3567 | 0x00000000, | 3574 | 0x00000000, |
| 3568 | 0x00060048, | 3575 | 0x00060049, |
| 3569 | 0x80ca0000, | 3576 | 0x80ca0000, |
| 3570 | 0x00098200, | 3577 | 0x00098200, |
| 3571 | 0x7d0e5a14, | 3578 | 0x7d0e5a14, |
| @@ -3592,14 +3599,14 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3592 | 0x000900a1, | 3599 | 0x000900a1, |
| 3593 | 0x3a8efff8, | 3600 | 0x3a8efff8, |
| 3594 | 0x41810000, | 3601 | 0x41810000, |
| 3595 | 0x00050849, | 3602 | 0x0005084a, |
| 3596 | 0x0006000b, | 3603 | 0x0006000b, |
| 3597 | 0x80120000, | 3604 | 0x80120000, |
| 3598 | 0x00098200, | 3605 | 0x00098200, |
| 3599 | 0x814efffc, | 3606 | 0x814efffc, |
| 3600 | 0x7d6e0050, | 3607 | 0x7d6e0050, |
| 3601 | 0x40820000, | 3608 | 0x40820000, |
| 3602 | 0x00050828, | 3609 | 0x00050829, |
| 3603 | 0x820a0000, | 3610 | 0x820a0000, |
| 3604 | 0x00098200, | 3611 | 0x00098200, |
| 3605 | 0x80f00000, | 3612 | 0x80f00000, |
| @@ -3610,7 +3617,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3610 | 0x7e947214, | 3617 | 0x7e947214, |
| 3611 | 0x7c0903a6, | 3618 | 0x7c0903a6, |
| 3612 | 0x4e800420, | 3619 | 0x4e800420, |
| 3613 | 0x00060028, | 3620 | 0x00060029, |
| 3614 | 0x72000000, | 3621 | 0x72000000, |
| 3615 | 0x00090200, | 3622 | 0x00090200, |
| 3616 | 0x56080038, | 3623 | 0x56080038, |
| @@ -3633,7 +3640,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3633 | 0x7c000000, | 3640 | 0x7c000000, |
| 3634 | 0x48000000, | 3641 | 0x48000000, |
| 3635 | 0x0005000b, | 3642 | 0x0005000b, |
| 3636 | 0x00060052, | 3643 | 0x00060053, |
| 3637 | 0x7ea802a6, | 3644 | 0x7ea802a6, |
| 3638 | 0x91d20000, | 3645 | 0x91d20000, |
| 3639 | 0x00098200, | 3646 | 0x00098200, |
| @@ -3652,7 +3659,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3652 | 0x7d6e0050, | 3659 | 0x7d6e0050, |
| 3653 | 0x814efffc, | 3660 | 0x814efffc, |
| 3654 | 0x4e800020, | 3661 | 0x4e800020, |
| 3655 | 0x0006008f, | 3662 | 0x00060090, |
| 3656 | 0x00000000, | 3663 | 0x00000000, |
| 3657 | 0x88d10000, | 3664 | 0x88d10000, |
| 3658 | 0x00098200, | 3665 | 0x00098200, |
| @@ -3676,7 +3683,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3676 | 0x48000000, | 3683 | 0x48000000, |
| 3677 | 0x00050001, | 3684 | 0x00050001, |
| 3678 | 0x00000000, | 3685 | 0x00000000, |
| 3679 | 0x00060090, | 3686 | 0x00060091, |
| 3680 | 0x88d10000, | 3687 | 0x88d10000, |
| 3681 | 0x00098200, | 3688 | 0x00098200, |
| 3682 | 0x70c00000, | 3689 | 0x70c00000, |
| @@ -3689,7 +3696,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3689 | 0x7c11402e, | 3696 | 0x7c11402e, |
| 3690 | 0x7c0903a6, | 3697 | 0x7c0903a6, |
| 3691 | 0x4e800420, | 3698 | 0x4e800420, |
| 3692 | 0x00060091, | 3699 | 0x00060092, |
| 3693 | 0x88d10000, | 3700 | 0x88d10000, |
| 3694 | 0x00098200, | 3701 | 0x00098200, |
| 3695 | 0x81310000, | 3702 | 0x81310000, |
| @@ -3734,12 +3741,12 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3734 | 0x54eb9d78, | 3741 | 0x54eb9d78, |
| 3735 | 0x7c0903a6, | 3742 | 0x7c0903a6, |
| 3736 | 0x4e800420, | 3743 | 0x4e800420, |
| 3737 | 0x00060092, | 3744 | 0x00060093, |
| 3738 | 0x3a100004, | 3745 | 0x3a100004, |
| 3739 | 0x826affec, | 3746 | 0x826affec, |
| 3740 | 0x48000000, | 3747 | 0x48000000, |
| 3741 | 0x0005000e, | 3748 | 0x0005000e, |
| 3742 | 0x00060093, | 3749 | 0x00060094, |
| 3743 | 0x00000000, | 3750 | 0x00000000, |
| 3744 | 0x810efffc, | 3751 | 0x810efffc, |
| 3745 | 0x38710000, | 3752 | 0x38710000, |
| @@ -3764,13 +3771,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3764 | 0x48000000, | 3771 | 0x48000000, |
| 3765 | 0x0005000d, | 3772 | 0x0005000d, |
| 3766 | 0x00000000, | 3773 | 0x00000000, |
| 3767 | 0x00060094, | 3774 | 0x00060095, |
| 3768 | 0x7e048378, | 3775 | 0x7e048378, |
| 3769 | 0x00000000, | 3776 | 0x00000000, |
| 3770 | 0x48000000, | 3777 | 0x48000000, |
| 3771 | 0x00050001, | 3778 | 0x00050001, |
| 3772 | 0x00000000, | 3779 | 0x00000000, |
| 3773 | 0x00060095, | 3780 | 0x00060096, |
| 3774 | 0x00000000, | 3781 | 0x00000000, |
| 3775 | 0x62040001, | 3782 | 0x62040001, |
| 3776 | 0x0006000b, | 3783 | 0x0006000b, |
| @@ -3796,7 +3803,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3796 | 0x80f0fffc, | 3803 | 0x80f0fffc, |
| 3797 | 0x7c6903a6, | 3804 | 0x7c6903a6, |
| 3798 | 0x4e800420, | 3805 | 0x4e800420, |
| 3799 | 0x00060096, | 3806 | 0x00060097, |
| 3800 | 0x00000000, | 3807 | 0x00000000, |
| 3801 | 0x38210000, | 3808 | 0x38210000, |
| 3802 | 0x00098200, | 3809 | 0x00098200, |
| @@ -3922,7 +3929,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3922 | 0x48000000, | 3929 | 0x48000000, |
| 3923 | 0x00050001, | 3930 | 0x00050001, |
| 3924 | 0x00000000, | 3931 | 0x00000000, |
| 3925 | 0x00060097, | 3932 | 0x00060098, |
| 3926 | 0x00000000, | 3933 | 0x00000000, |
| 3927 | 0x82410024, | 3934 | 0x82410024, |
| 3928 | 0x3a3f0000, | 3935 | 0x3a3f0000, |
| @@ -3981,18 +3988,18 @@ static const unsigned int build_actionlist[7580] = { | |||
| 3981 | 0x48000001, | 3988 | 0x48000001, |
| 3982 | 0x0003002c, | 3989 | 0x0003002c, |
| 3983 | 0x00000000, | 3990 | 0x00000000, |
| 3984 | 0x00060098, | 3991 | 0x00060099, |
| 3985 | 0x48000000, | 3992 | 0x48000000, |
| 3986 | 0x00030010, | 3993 | 0x00030010, |
| 3987 | 0x00060099, | 3994 | 0x0006009a, |
| 3988 | 0x48000000, | 3995 | 0x48000000, |
| 3989 | 0x00030011, | 3996 | 0x00030011, |
| 3990 | 0x0006009a, | 3997 | 0x0006009b, |
| 3991 | 0x00000000, | 3998 | 0x00000000, |
| 3992 | 0x48000000, | 3999 | 0x48000000, |
| 3993 | 0x0003002d, | 4000 | 0x0003002d, |
| 3994 | 0x00000000, | 4001 | 0x00000000, |
| 3995 | 0x0006009b, | 4002 | 0x0006009c, |
| 3996 | 0x7c0327d7, | 4003 | 0x7c0327d7, |
| 3997 | 0x41830000, | 4004 | 0x41830000, |
| 3998 | 0x00050801, | 4005 | 0x00050801, |
| @@ -4010,7 +4017,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4010 | 0x4d820020, | 4017 | 0x4d820020, |
| 4011 | 0x7c000400, | 4018 | 0x7c000400, |
| 4012 | 0x4e800020, | 4019 | 0x4e800020, |
| 4013 | 0x0006009c, | 4020 | 0x0006009d, |
| 4014 | 0x28030001, | 4021 | 0x28030001, |
| 4015 | 0x41820000, | 4022 | 0x41820000, |
| 4016 | 0x00050801, | 4023 | 0x00050801, |
| @@ -4096,7 +4103,191 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4096 | 0x00000000, | 4103 | 0x00000000, |
| 4097 | 0x7c810808, | 4104 | 0x7c810808, |
| 4098 | 0x00000000, | 4105 | 0x00000000, |
| 4099 | 0x0006009d, | 4106 | 0x0006009e, |
| 4107 | 0x00000000, | ||
| 4108 | 0x9421fef0, | ||
| 4109 | 0x91c10000, | ||
| 4110 | 0x00098200, | ||
| 4111 | 0xd9c10000, | ||
| 4112 | 0x00098200, | ||
| 4113 | 0x91e10000, | ||
| 4114 | 0x00098200, | ||
| 4115 | 0xd9e10000, | ||
| 4116 | 0x00098200, | ||
| 4117 | 0x92010000, | ||
| 4118 | 0x00098200, | ||
| 4119 | 0xda010000, | ||
| 4120 | 0x00098200, | ||
| 4121 | 0x7c0802a6, | ||
| 4122 | 0x92210000, | ||
| 4123 | 0x00098200, | ||
| 4124 | 0xda210000, | ||
| 4125 | 0x00098200, | ||
| 4126 | 0x92410000, | ||
| 4127 | 0x00098200, | ||
| 4128 | 0xda410000, | ||
| 4129 | 0x00098200, | ||
| 4130 | 0x92610000, | ||
| 4131 | 0x00098200, | ||
| 4132 | 0xda610000, | ||
| 4133 | 0x00098200, | ||
| 4134 | 0x92810000, | ||
| 4135 | 0x00098200, | ||
| 4136 | 0xda810000, | ||
| 4137 | 0x00098200, | ||
| 4138 | 0x92a10000, | ||
| 4139 | 0x00098200, | ||
| 4140 | 0xdaa10000, | ||
| 4141 | 0x00098200, | ||
| 4142 | 0x92c10000, | ||
| 4143 | 0x00098200, | ||
| 4144 | 0xdac10000, | ||
| 4145 | 0x00098200, | ||
| 4146 | 0x90010114, | ||
| 4147 | 0x92e10000, | ||
| 4148 | 0x00098200, | ||
| 4149 | 0xdae10000, | ||
| 4150 | 0x00098200, | ||
| 4151 | 0x93010000, | ||
| 4152 | 0x00098200, | ||
| 4153 | 0xdb010000, | ||
| 4154 | 0x00098200, | ||
| 4155 | 0x00000000, | ||
| 4156 | 0x93210000, | ||
| 4157 | 0x00098200, | ||
| 4158 | 0xdb210000, | ||
| 4159 | 0x00098200, | ||
| 4160 | 0x7c000026, | ||
| 4161 | 0x93410000, | ||
| 4162 | 0x00098200, | ||
| 4163 | 0xdb410000, | ||
| 4164 | 0x00098200, | ||
| 4165 | 0x93610000, | ||
| 4166 | 0x00098200, | ||
| 4167 | 0xdb610000, | ||
| 4168 | 0x00098200, | ||
| 4169 | 0x93810000, | ||
| 4170 | 0x00098200, | ||
| 4171 | 0xdb810000, | ||
| 4172 | 0x00098200, | ||
| 4173 | 0x93a10000, | ||
| 4174 | 0x00098200, | ||
| 4175 | 0xdba10000, | ||
| 4176 | 0x00098200, | ||
| 4177 | 0x93c10000, | ||
| 4178 | 0x00098200, | ||
| 4179 | 0xdbc10000, | ||
| 4180 | 0x00098200, | ||
| 4181 | 0x93e10000, | ||
| 4182 | 0x00098200, | ||
| 4183 | 0xdbe10000, | ||
| 4184 | 0x00098200, | ||
| 4185 | 0x90010034, | ||
| 4186 | 0x820c0000, | ||
| 4187 | 0x00098200, | ||
| 4188 | 0x3a2c0000, | ||
| 4189 | 0x00098200, | ||
| 4190 | 0x91700000, | ||
| 4191 | 0x00098200, | ||
| 4192 | 0x90700000, | ||
| 4193 | 0x00098200, | ||
| 4194 | 0xd8300000, | ||
| 4195 | 0x00098200, | ||
| 4196 | 0x90900000, | ||
| 4197 | 0x00098200, | ||
| 4198 | 0xd8500000, | ||
| 4199 | 0x00098200, | ||
| 4200 | 0x90b00000, | ||
| 4201 | 0x00098200, | ||
| 4202 | 0x00000000, | ||
| 4203 | 0xd8700000, | ||
| 4204 | 0x00098200, | ||
| 4205 | 0x90d00000, | ||
| 4206 | 0x00098200, | ||
| 4207 | 0xd8900000, | ||
| 4208 | 0x00098200, | ||
| 4209 | 0x90f00000, | ||
| 4210 | 0x00098200, | ||
| 4211 | 0xd8b00000, | ||
| 4212 | 0x00098200, | ||
| 4213 | 0x91100000, | ||
| 4214 | 0x00098200, | ||
| 4215 | 0xd8d00000, | ||
| 4216 | 0x00098200, | ||
| 4217 | 0x91300000, | ||
| 4218 | 0x00098200, | ||
| 4219 | 0xd8f00000, | ||
| 4220 | 0x00098200, | ||
| 4221 | 0x91500000, | ||
| 4222 | 0x00098200, | ||
| 4223 | 0xd9100000, | ||
| 4224 | 0x00098200, | ||
| 4225 | 0x38010000, | ||
| 4226 | 0x00098200, | ||
| 4227 | 0x90100000, | ||
| 4228 | 0x00098200, | ||
| 4229 | 0x7e038378, | ||
| 4230 | 0x92010020, | ||
| 4231 | 0x7c240b78, | ||
| 4232 | 0x48000001, | ||
| 4233 | 0x0003002e, | ||
| 4234 | 0x81c30000, | ||
| 4235 | 0x00098200, | ||
| 4236 | 0x3ac00000, | ||
| 4237 | 0x00098200, | ||
| 4238 | 0x81630000, | ||
| 4239 | 0x00098200, | ||
| 4240 | 0x3cc059c0, | ||
| 4241 | 0x3b000000, | ||
| 4242 | 0x7c721b78, | ||
| 4243 | 0x90c10010, | ||
| 4244 | 0x814efffc, | ||
| 4245 | 0x60c60004, | ||
| 4246 | 0x3ae00000, | ||
| 4247 | 0x00098200, | ||
| 4248 | 0x38000000, | ||
| 4249 | 0x00098200, | ||
| 4250 | 0xc3c10010, | ||
| 4251 | 0x90c10010, | ||
| 4252 | 0x7d6e5850, | ||
| 4253 | 0x90110000, | ||
| 4254 | 0x00098200, | ||
| 4255 | 0xc3e10010, | ||
| 4256 | 0x820a0000, | ||
| 4257 | 0x00098200, | ||
| 4258 | 0x80f00000, | ||
| 4259 | 0x3a100004, | ||
| 4260 | 0x54e815ba, | ||
| 4261 | 0x54f4dd78, | ||
| 4262 | 0x7c11402e, | ||
| 4263 | 0x7e947214, | ||
| 4264 | 0x7c0903a6, | ||
| 4265 | 0x4e800420, | ||
| 4266 | 0x00000000, | ||
| 4267 | 0x00060028, | ||
| 4268 | 0x00000000, | ||
| 4269 | 0x82110000, | ||
| 4270 | 0x00098200, | ||
| 4271 | 0x91d20000, | ||
| 4272 | 0x00098200, | ||
| 4273 | 0x91520000, | ||
| 4274 | 0x00098200, | ||
| 4275 | 0x92500000, | ||
| 4276 | 0x00098200, | ||
| 4277 | 0x7e038378, | ||
| 4278 | 0x7e84a378, | ||
| 4279 | 0x48000001, | ||
| 4280 | 0x0003002f, | ||
| 4281 | 0x80700000, | ||
| 4282 | 0x00098200, | ||
| 4283 | 0xc8300000, | ||
| 4284 | 0x00098200, | ||
| 4285 | 0x80900000, | ||
| 4286 | 0x00098200, | ||
| 4287 | 0x48000000, | ||
| 4288 | 0x0005001a, | ||
| 4289 | 0x00000000, | ||
| 4290 | 0x0006009f, | ||
| 4100 | 0x00000000, | 4291 | 0x00000000, |
| 4101 | 0x81030000, | 4292 | 0x81030000, |
| 4102 | 0x00098200, | 4293 | 0x00098200, |
| @@ -4234,10 +4425,10 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4234 | 0x4e800420, | 4425 | 0x4e800420, |
| 4235 | 0x00060011, | 4426 | 0x00060011, |
| 4236 | 0x41810000, | 4427 | 0x41810000, |
| 4237 | 0x00050834, | 4428 | 0x00050835, |
| 4238 | 0xc8140000, | 4429 | 0xc8140000, |
| 4239 | 0x41850000, | 4430 | 0x41850000, |
| 4240 | 0x00050834, | 4431 | 0x00050835, |
| 4241 | 0x41840000, | 4432 | 0x41840000, |
| 4242 | 0x00050804, | 4433 | 0x00050804, |
| 4243 | 0x6ca58000, | 4434 | 0x6ca58000, |
| @@ -4248,7 +4439,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4248 | 0x00050005, | 4439 | 0x00050005, |
| 4249 | 0x00060012, | 4440 | 0x00060012, |
| 4250 | 0x41850000, | 4441 | 0x41850000, |
| 4251 | 0x00050834, | 4442 | 0x00050835, |
| 4252 | 0x6c848000, | 4443 | 0x6c848000, |
| 4253 | 0x9081000c, | 4444 | 0x9081000c, |
| 4254 | 0xc8010008, | 4445 | 0xc8010008, |
| @@ -4285,11 +4476,11 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4285 | 0x7c88b040, | 4476 | 0x7c88b040, |
| 4286 | 0x552993ba, | 4477 | 0x552993ba, |
| 4287 | 0x40800000, | 4478 | 0x40800000, |
| 4288 | 0x00050834, | 4479 | 0x00050835, |
| 4289 | 0x3d290000, | 4480 | 0x3d290000, |
| 4290 | 0x00098200, | 4481 | 0x00098200, |
| 4291 | 0x40840000, | 4482 | 0x40840000, |
| 4292 | 0x00050834, | 4483 | 0x00050835, |
| 4293 | 0xfc000800, | 4484 | 0xfc000800, |
| 4294 | 0x00000000, | 4485 | 0x00000000, |
| 4295 | 0x40800000, | 4486 | 0x40800000, |
| @@ -4333,10 +4524,10 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4333 | 0x00098200, | 4524 | 0x00098200, |
| 4334 | 0x00000000, | 4525 | 0x00000000, |
| 4335 | 0x409d0000, | 4526 | 0x409d0000, |
| 4336 | 0x0005089e, | 4527 | 0x000508a0, |
| 4337 | 0x00000000, | 4528 | 0x00000000, |
| 4338 | 0x409d0000, | 4529 | 0x409d0000, |
| 4339 | 0x0005089f, | 4530 | 0x000508a1, |
| 4340 | 0x00000000, | 4531 | 0x00000000, |
| 4341 | 0x7c14706e, | 4532 | 0x7c14706e, |
| 4342 | 0x81300000, | 4533 | 0x81300000, |
| @@ -4396,7 +4587,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4396 | 0x00090200, | 4587 | 0x00090200, |
| 4397 | 0x00000000, | 4588 | 0x00000000, |
| 4398 | 0x419e0000, | 4589 | 0x419e0000, |
| 4399 | 0x0005083a, | 4590 | 0x0005083b, |
| 4400 | 0x00000000, | 4591 | 0x00000000, |
| 4401 | 0x7e842840, | 4592 | 0x7e842840, |
| 4402 | 0x4c222902, | 4593 | 0x4c222902, |
| @@ -4451,7 +4642,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4451 | 0x0005080b, | 4642 | 0x0005080b, |
| 4452 | 0x7eb0ab78, | 4643 | 0x7eb0ab78, |
| 4453 | 0x48000000, | 4644 | 0x48000000, |
| 4454 | 0x00050039, | 4645 | 0x0005003a, |
| 4455 | 0x00000000, | 4646 | 0x00000000, |
| 4456 | 0x7c14706e, | 4647 | 0x7c14706e, |
| 4457 | 0x558c007e, | 4648 | 0x558c007e, |
| @@ -4469,7 +4660,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4469 | 0x00098200, | 4660 | 0x00098200, |
| 4470 | 0x00000000, | 4661 | 0x00000000, |
| 4471 | 0x41820000, | 4662 | 0x41820000, |
| 4472 | 0x0005083a, | 4663 | 0x0005083b, |
| 4473 | 0x00000000, | 4664 | 0x00000000, |
| 4474 | 0x7d064050, | 4665 | 0x7d064050, |
| 4475 | 0x7c004378, | 4666 | 0x7c004378, |
| @@ -4507,9 +4698,9 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4507 | 0x3d290000, | 4698 | 0x3d290000, |
| 4508 | 0x00098200, | 4699 | 0x00098200, |
| 4509 | 0x00000000, | 4700 | 0x00000000, |
| 4510 | 0x0006009e, | 4701 | 0x000600a0, |
| 4511 | 0x00000000, | 4702 | 0x00000000, |
| 4512 | 0x0006009f, | 4703 | 0x000600a1, |
| 4513 | 0x00000000, | 4704 | 0x00000000, |
| 4514 | 0x40820000, | 4705 | 0x40820000, |
| 4515 | 0x00050807, | 4706 | 0x00050807, |
| @@ -4518,9 +4709,9 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4518 | 0x7c042800, | 4709 | 0x7c042800, |
| 4519 | 0x0006000e, | 4710 | 0x0006000e, |
| 4520 | 0x00000000, | 4711 | 0x00000000, |
| 4521 | 0x0006009e, | 4712 | 0x000600a0, |
| 4522 | 0x00000000, | 4713 | 0x00000000, |
| 4523 | 0x0006009f, | 4714 | 0x000600a1, |
| 4524 | 0x00000000, | 4715 | 0x00000000, |
| 4525 | 0x7c0ea02e, | 4716 | 0x7c0ea02e, |
| 4526 | 0x3a100004, | 4717 | 0x3a100004, |
| @@ -4566,7 +4757,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4566 | 0x2c000000, | 4757 | 0x2c000000, |
| 4567 | 0x00098200, | 4758 | 0x00098200, |
| 4568 | 0x41820000, | 4759 | 0x41820000, |
| 4569 | 0x0005083a, | 4760 | 0x0005083b, |
| 4570 | 0x48000000, | 4761 | 0x48000000, |
| 4571 | 0x0005000b, | 4762 | 0x0005000b, |
| 4572 | 0x00000000, | 4763 | 0x00000000, |
| @@ -4607,7 +4798,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4607 | 0x7c080050, | 4798 | 0x7c080050, |
| 4608 | 0x00000000, | 4799 | 0x00000000, |
| 4609 | 0x41820000, | 4800 | 0x41820000, |
| 4610 | 0x0005083a, | 4801 | 0x0005083b, |
| 4611 | 0x00000000, | 4802 | 0x00000000, |
| 4612 | 0x552993ba, | 4803 | 0x552993ba, |
| 4613 | 0x3000ffff, | 4804 | 0x3000ffff, |
| @@ -4740,7 +4931,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4740 | 0x00000000, | 4931 | 0x00000000, |
| 4741 | 0x0006000f, | 4932 | 0x0006000f, |
| 4742 | 0x40800000, | 4933 | 0x40800000, |
| 4743 | 0x0005083d, | 4934 | 0x0005083e, |
| 4744 | 0x6d088000, | 4935 | 0x6d088000, |
| 4745 | 0x00060011, | 4936 | 0x00060011, |
| 4746 | 0x80f00000, | 4937 | 0x80f00000, |
| @@ -4794,7 +4985,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4794 | 0x2c000000, | 4985 | 0x2c000000, |
| 4795 | 0x00098200, | 4986 | 0x00098200, |
| 4796 | 0x40820000, | 4987 | 0x40820000, |
| 4797 | 0x00050842, | 4988 | 0x00050843, |
| 4798 | 0x00000000, | 4989 | 0x00000000, |
| 4799 | 0x81230000, | 4990 | 0x81230000, |
| 4800 | 0x00098200, | 4991 | 0x00098200, |
| @@ -4803,7 +4994,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4803 | 0x00050809, | 4994 | 0x00050809, |
| 4804 | 0x0006000d, | 4995 | 0x0006000d, |
| 4805 | 0x00000000, | 4996 | 0x00000000, |
| 4806 | 0x00060043, | 4997 | 0x00060044, |
| 4807 | 0x48000001, | 4998 | 0x48000001, |
| 4808 | 0x00030026, | 4999 | 0x00030026, |
| 4809 | 0x48000000, | 5000 | 0x48000000, |
| @@ -4817,7 +5008,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4817 | 0x40820000, | 5008 | 0x40820000, |
| 4818 | 0x0005080d, | 5009 | 0x0005080d, |
| 4819 | 0x48000000, | 5010 | 0x48000000, |
| 4820 | 0x00050042, | 5011 | 0x00050043, |
| 4821 | 0x00000000, | 5012 | 0x00000000, |
| 4822 | 0x7d0a706e, | 5013 | 0x7d0a706e, |
| 4823 | 0x7d2b786e, | 5014 | 0x7d2b786e, |
| @@ -4865,13 +5056,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4865 | 0x0005080b, | 5056 | 0x0005080b, |
| 4866 | 0x00000000, | 5057 | 0x00000000, |
| 4867 | 0x48000000, | 5058 | 0x48000000, |
| 4868 | 0x00050040, | 5059 | 0x00050041, |
| 4869 | 0x00000000, | 5060 | 0x00000000, |
| 4870 | 0x48000000, | 5061 | 0x48000000, |
| 4871 | 0x0005003c, | 5062 | 0x0005003d, |
| 4872 | 0x00000000, | 5063 | 0x00000000, |
| 4873 | 0x48000000, | 5064 | 0x48000000, |
| 4874 | 0x00050041, | 5065 | 0x00050042, |
| 4875 | 0x00000000, | 5066 | 0x00000000, |
| 4876 | 0x0006000f, | 5067 | 0x0006000f, |
| 4877 | 0x00000000, | 5068 | 0x00000000, |
| @@ -4884,13 +5075,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4884 | 0xc9eb0000, | 5075 | 0xc9eb0000, |
| 4885 | 0x00000000, | 5076 | 0x00000000, |
| 4886 | 0x40800000, | 5077 | 0x40800000, |
| 4887 | 0x00050840, | 5078 | 0x00050841, |
| 4888 | 0x00000000, | 5079 | 0x00000000, |
| 4889 | 0x40800000, | 5080 | 0x40800000, |
| 4890 | 0x0005083c, | 5081 | 0x0005083d, |
| 4891 | 0x00000000, | 5082 | 0x00000000, |
| 4892 | 0x40800000, | 5083 | 0x40800000, |
| 4893 | 0x00050841, | 5084 | 0x00050842, |
| 4894 | 0x00000000, | 5085 | 0x00000000, |
| 4895 | 0xfc0e782a, | 5086 | 0xfc0e782a, |
| 4896 | 0x80f00000, | 5087 | 0x80f00000, |
| @@ -4910,11 +5101,11 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4910 | 0x7c89b040, | 5101 | 0x7c89b040, |
| 4911 | 0x4c002202, | 5102 | 0x4c002202, |
| 4912 | 0x40800000, | 5103 | 0x40800000, |
| 4913 | 0x0005083e, | 5104 | 0x0005083f, |
| 4914 | 0x00000000, | 5105 | 0x00000000, |
| 4915 | 0x7c08b040, | 5106 | 0x7c08b040, |
| 4916 | 0x40800000, | 5107 | 0x40800000, |
| 4917 | 0x0005083e, | 5108 | 0x0005083f, |
| 4918 | 0x00000000, | 5109 | 0x00000000, |
| 4919 | 0x7d0e502e, | 5110 | 0x7d0e502e, |
| 4920 | 0x00000000, | 5111 | 0x00000000, |
| @@ -4927,11 +5118,11 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4927 | 0x7c89b040, | 5118 | 0x7c89b040, |
| 4928 | 0x4c002202, | 5119 | 0x4c002202, |
| 4929 | 0x40800000, | 5120 | 0x40800000, |
| 4930 | 0x0005083b, | 5121 | 0x0005083c, |
| 4931 | 0x00000000, | 5122 | 0x00000000, |
| 4932 | 0x7c08b040, | 5123 | 0x7c08b040, |
| 4933 | 0x40800000, | 5124 | 0x40800000, |
| 4934 | 0x0005083b, | 5125 | 0x0005083c, |
| 4935 | 0x00000000, | 5126 | 0x00000000, |
| 4936 | 0x7d0e502e, | 5127 | 0x7d0e502e, |
| 4937 | 0x7d2e582e, | 5128 | 0x7d2e582e, |
| @@ -4941,7 +5132,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 4941 | 0x7c89b040, | 5132 | 0x7c89b040, |
| 4942 | 0x4c002202, | 5133 | 0x4c002202, |
| 4943 | 0x40800000, | 5134 | 0x40800000, |
| 4944 | 0x0005083f, | 5135 | 0x00050840, |
| 4945 | 0x00000000, | 5136 | 0x00000000, |
| 4946 | 0xfc0e782a, | 5137 | 0xfc0e782a, |
| 4947 | 0x80f00000, | 5138 | 0x80f00000, |
| @@ -5002,13 +5193,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5002 | 0x0005080b, | 5193 | 0x0005080b, |
| 5003 | 0x00000000, | 5194 | 0x00000000, |
| 5004 | 0x48000000, | 5195 | 0x48000000, |
| 5005 | 0x00050040, | 5196 | 0x00050041, |
| 5006 | 0x00000000, | 5197 | 0x00000000, |
| 5007 | 0x48000000, | 5198 | 0x48000000, |
| 5008 | 0x0005003c, | 5199 | 0x0005003d, |
| 5009 | 0x00000000, | 5200 | 0x00000000, |
| 5010 | 0x48000000, | 5201 | 0x48000000, |
| 5011 | 0x00050041, | 5202 | 0x00050042, |
| 5012 | 0x00000000, | 5203 | 0x00000000, |
| 5013 | 0x0006000f, | 5204 | 0x0006000f, |
| 5014 | 0x00000000, | 5205 | 0x00000000, |
| @@ -5021,13 +5212,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5021 | 0xc9eb0000, | 5212 | 0xc9eb0000, |
| 5022 | 0x00000000, | 5213 | 0x00000000, |
| 5023 | 0x40800000, | 5214 | 0x40800000, |
| 5024 | 0x00050840, | 5215 | 0x00050841, |
| 5025 | 0x00000000, | 5216 | 0x00000000, |
| 5026 | 0x40800000, | 5217 | 0x40800000, |
| 5027 | 0x0005083c, | 5218 | 0x0005083d, |
| 5028 | 0x00000000, | 5219 | 0x00000000, |
| 5029 | 0x40800000, | 5220 | 0x40800000, |
| 5030 | 0x00050841, | 5221 | 0x00050842, |
| 5031 | 0x00000000, | 5222 | 0x00000000, |
| 5032 | 0xfc0e7828, | 5223 | 0xfc0e7828, |
| 5033 | 0x80f00000, | 5224 | 0x80f00000, |
| @@ -5047,11 +5238,11 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5047 | 0x7c89b040, | 5238 | 0x7c89b040, |
| 5048 | 0x4c002202, | 5239 | 0x4c002202, |
| 5049 | 0x40800000, | 5240 | 0x40800000, |
| 5050 | 0x0005083e, | 5241 | 0x0005083f, |
| 5051 | 0x00000000, | 5242 | 0x00000000, |
| 5052 | 0x7c08b040, | 5243 | 0x7c08b040, |
| 5053 | 0x40800000, | 5244 | 0x40800000, |
| 5054 | 0x0005083e, | 5245 | 0x0005083f, |
| 5055 | 0x00000000, | 5246 | 0x00000000, |
| 5056 | 0x7d0e502e, | 5247 | 0x7d0e502e, |
| 5057 | 0x00000000, | 5248 | 0x00000000, |
| @@ -5064,11 +5255,11 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5064 | 0x7c89b040, | 5255 | 0x7c89b040, |
| 5065 | 0x4c002202, | 5256 | 0x4c002202, |
| 5066 | 0x40800000, | 5257 | 0x40800000, |
| 5067 | 0x0005083b, | 5258 | 0x0005083c, |
| 5068 | 0x00000000, | 5259 | 0x00000000, |
| 5069 | 0x7c08b040, | 5260 | 0x7c08b040, |
| 5070 | 0x40800000, | 5261 | 0x40800000, |
| 5071 | 0x0005083b, | 5262 | 0x0005083c, |
| 5072 | 0x00000000, | 5263 | 0x00000000, |
| 5073 | 0x7d0e502e, | 5264 | 0x7d0e502e, |
| 5074 | 0x7d2e582e, | 5265 | 0x7d2e582e, |
| @@ -5078,7 +5269,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5078 | 0x7c89b040, | 5269 | 0x7c89b040, |
| 5079 | 0x4c002202, | 5270 | 0x4c002202, |
| 5080 | 0x40800000, | 5271 | 0x40800000, |
| 5081 | 0x0005083f, | 5272 | 0x00050840, |
| 5082 | 0x00000000, | 5273 | 0x00000000, |
| 5083 | 0xfc0e7828, | 5274 | 0xfc0e7828, |
| 5084 | 0x80f00000, | 5275 | 0x80f00000, |
| @@ -5139,13 +5330,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5139 | 0x0005080b, | 5330 | 0x0005080b, |
| 5140 | 0x00000000, | 5331 | 0x00000000, |
| 5141 | 0x48000000, | 5332 | 0x48000000, |
| 5142 | 0x00050040, | 5333 | 0x00050041, |
| 5143 | 0x00000000, | 5334 | 0x00000000, |
| 5144 | 0x48000000, | 5335 | 0x48000000, |
| 5145 | 0x0005003c, | 5336 | 0x0005003d, |
| 5146 | 0x00000000, | 5337 | 0x00000000, |
| 5147 | 0x48000000, | 5338 | 0x48000000, |
| 5148 | 0x00050041, | 5339 | 0x00050042, |
| 5149 | 0x00000000, | 5340 | 0x00000000, |
| 5150 | 0x0006000f, | 5341 | 0x0006000f, |
| 5151 | 0x00000000, | 5342 | 0x00000000, |
| @@ -5158,13 +5349,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5158 | 0xc9eb0000, | 5349 | 0xc9eb0000, |
| 5159 | 0x00000000, | 5350 | 0x00000000, |
| 5160 | 0x40800000, | 5351 | 0x40800000, |
| 5161 | 0x00050840, | 5352 | 0x00050841, |
| 5162 | 0x00000000, | 5353 | 0x00000000, |
| 5163 | 0x40800000, | 5354 | 0x40800000, |
| 5164 | 0x0005083c, | 5355 | 0x0005083d, |
| 5165 | 0x00000000, | 5356 | 0x00000000, |
| 5166 | 0x40800000, | 5357 | 0x40800000, |
| 5167 | 0x00050841, | 5358 | 0x00050842, |
| 5168 | 0x00000000, | 5359 | 0x00000000, |
| 5169 | 0xfc0e03f2, | 5360 | 0xfc0e03f2, |
| 5170 | 0x80f00000, | 5361 | 0x80f00000, |
| @@ -5184,11 +5375,11 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5184 | 0x7c89b040, | 5375 | 0x7c89b040, |
| 5185 | 0x4c002202, | 5376 | 0x4c002202, |
| 5186 | 0x40800000, | 5377 | 0x40800000, |
| 5187 | 0x0005083e, | 5378 | 0x0005083f, |
| 5188 | 0x00000000, | 5379 | 0x00000000, |
| 5189 | 0x7c08b040, | 5380 | 0x7c08b040, |
| 5190 | 0x40800000, | 5381 | 0x40800000, |
| 5191 | 0x0005083e, | 5382 | 0x0005083f, |
| 5192 | 0x00000000, | 5383 | 0x00000000, |
| 5193 | 0x7d0e502e, | 5384 | 0x7d0e502e, |
| 5194 | 0x00000000, | 5385 | 0x00000000, |
| @@ -5201,11 +5392,11 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5201 | 0x7c89b040, | 5392 | 0x7c89b040, |
| 5202 | 0x4c002202, | 5393 | 0x4c002202, |
| 5203 | 0x40800000, | 5394 | 0x40800000, |
| 5204 | 0x0005083b, | 5395 | 0x0005083c, |
| 5205 | 0x00000000, | 5396 | 0x00000000, |
| 5206 | 0x7c08b040, | 5397 | 0x7c08b040, |
| 5207 | 0x40800000, | 5398 | 0x40800000, |
| 5208 | 0x0005083b, | 5399 | 0x0005083c, |
| 5209 | 0x00000000, | 5400 | 0x00000000, |
| 5210 | 0x7d0e502e, | 5401 | 0x7d0e502e, |
| 5211 | 0x7d2e582e, | 5402 | 0x7d2e582e, |
| @@ -5215,7 +5406,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5215 | 0x7c89b040, | 5406 | 0x7c89b040, |
| 5216 | 0x4c002202, | 5407 | 0x4c002202, |
| 5217 | 0x40800000, | 5408 | 0x40800000, |
| 5218 | 0x0005083f, | 5409 | 0x00050840, |
| 5219 | 0x00000000, | 5410 | 0x00000000, |
| 5220 | 0xfc0e03f2, | 5411 | 0xfc0e03f2, |
| 5221 | 0x80f00000, | 5412 | 0x80f00000, |
| @@ -5241,11 +5432,11 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5241 | 0x7c89b040, | 5432 | 0x7c89b040, |
| 5242 | 0x4c002202, | 5433 | 0x4c002202, |
| 5243 | 0x40800000, | 5434 | 0x40800000, |
| 5244 | 0x0005083e, | 5435 | 0x0005083f, |
| 5245 | 0x00000000, | 5436 | 0x00000000, |
| 5246 | 0x7c08b040, | 5437 | 0x7c08b040, |
| 5247 | 0x40800000, | 5438 | 0x40800000, |
| 5248 | 0x0005083e, | 5439 | 0x0005083f, |
| 5249 | 0x00000000, | 5440 | 0x00000000, |
| 5250 | 0x7d0e502e, | 5441 | 0x7d0e502e, |
| 5251 | 0x00000000, | 5442 | 0x00000000, |
| @@ -5258,11 +5449,11 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5258 | 0x7c89b040, | 5449 | 0x7c89b040, |
| 5259 | 0x4c002202, | 5450 | 0x4c002202, |
| 5260 | 0x40800000, | 5451 | 0x40800000, |
| 5261 | 0x0005083b, | 5452 | 0x0005083c, |
| 5262 | 0x00000000, | 5453 | 0x00000000, |
| 5263 | 0x7c08b040, | 5454 | 0x7c08b040, |
| 5264 | 0x40800000, | 5455 | 0x40800000, |
| 5265 | 0x0005083b, | 5456 | 0x0005083c, |
| 5266 | 0x00000000, | 5457 | 0x00000000, |
| 5267 | 0x7d0e502e, | 5458 | 0x7d0e502e, |
| 5268 | 0x7d2e582e, | 5459 | 0x7d2e582e, |
| @@ -5272,7 +5463,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5272 | 0x7c89b040, | 5463 | 0x7c89b040, |
| 5273 | 0x4c002202, | 5464 | 0x4c002202, |
| 5274 | 0x40800000, | 5465 | 0x40800000, |
| 5275 | 0x0005083f, | 5466 | 0x00050840, |
| 5276 | 0x00000000, | 5467 | 0x00000000, |
| 5277 | 0xfc0e7824, | 5468 | 0xfc0e7824, |
| 5278 | 0x80f00000, | 5469 | 0x80f00000, |
| @@ -5311,7 +5502,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5311 | 0x40860000, | 5502 | 0x40860000, |
| 5312 | 0x00050805, | 5503 | 0x00050805, |
| 5313 | 0x48000001, | 5504 | 0x48000001, |
| 5314 | 0x0005009b, | 5505 | 0x0005009c, |
| 5315 | 0x41830000, | 5506 | 0x41830000, |
| 5316 | 0x00050804, | 5507 | 0x00050804, |
| 5317 | 0x0006000b, | 5508 | 0x0006000b, |
| @@ -5334,13 +5525,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5334 | 0x0005080b, | 5525 | 0x0005080b, |
| 5335 | 0x00000000, | 5526 | 0x00000000, |
| 5336 | 0x48000000, | 5527 | 0x48000000, |
| 5337 | 0x00050040, | 5528 | 0x00050041, |
| 5338 | 0x00000000, | 5529 | 0x00000000, |
| 5339 | 0x48000000, | 5530 | 0x48000000, |
| 5340 | 0x0005003c, | 5531 | 0x0005003d, |
| 5341 | 0x00000000, | 5532 | 0x00000000, |
| 5342 | 0x48000000, | 5533 | 0x48000000, |
| 5343 | 0x00050041, | 5534 | 0x00050042, |
| 5344 | 0x00000000, | 5535 | 0x00000000, |
| 5345 | 0x0006000f, | 5536 | 0x0006000f, |
| 5346 | 0x00000000, | 5537 | 0x00000000, |
| @@ -5353,15 +5544,15 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5353 | 0xc9eb0000, | 5544 | 0xc9eb0000, |
| 5354 | 0x00000000, | 5545 | 0x00000000, |
| 5355 | 0x40800000, | 5546 | 0x40800000, |
| 5356 | 0x00050840, | 5547 | 0x00050841, |
| 5357 | 0x00000000, | 5548 | 0x00000000, |
| 5358 | 0x40800000, | 5549 | 0x40800000, |
| 5359 | 0x0005083c, | 5550 | 0x0005083d, |
| 5360 | 0x00000000, | 5551 | 0x00000000, |
| 5361 | 0x40800000, | 5552 | 0x40800000, |
| 5362 | 0x00050841, | 5553 | 0x00050842, |
| 5363 | 0x00000000, | 5554 | 0x00000000, |
| 5364 | 0x000600a0, | 5555 | 0x000600a2, |
| 5365 | 0xfc2e7824, | 5556 | 0xfc2e7824, |
| 5366 | 0x48000001, | 5557 | 0x48000001, |
| 5367 | 0x00030010, | 5558 | 0x00030010, |
| @@ -5384,11 +5575,11 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5384 | 0x7c89b040, | 5575 | 0x7c89b040, |
| 5385 | 0x4c002202, | 5576 | 0x4c002202, |
| 5386 | 0x40800000, | 5577 | 0x40800000, |
| 5387 | 0x0005083e, | 5578 | 0x0005083f, |
| 5388 | 0x00000000, | 5579 | 0x00000000, |
| 5389 | 0x7c08b040, | 5580 | 0x7c08b040, |
| 5390 | 0x40800000, | 5581 | 0x40800000, |
| 5391 | 0x0005083e, | 5582 | 0x0005083f, |
| 5392 | 0x00000000, | 5583 | 0x00000000, |
| 5393 | 0x7d0e502e, | 5584 | 0x7d0e502e, |
| 5394 | 0x00000000, | 5585 | 0x00000000, |
| @@ -5401,11 +5592,11 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5401 | 0x7c89b040, | 5592 | 0x7c89b040, |
| 5402 | 0x4c002202, | 5593 | 0x4c002202, |
| 5403 | 0x40800000, | 5594 | 0x40800000, |
| 5404 | 0x0005083b, | 5595 | 0x0005083c, |
| 5405 | 0x00000000, | 5596 | 0x00000000, |
| 5406 | 0x7c08b040, | 5597 | 0x7c08b040, |
| 5407 | 0x40800000, | 5598 | 0x40800000, |
| 5408 | 0x0005083b, | 5599 | 0x0005083c, |
| 5409 | 0x00000000, | 5600 | 0x00000000, |
| 5410 | 0x7d0e502e, | 5601 | 0x7d0e502e, |
| 5411 | 0x7d2e582e, | 5602 | 0x7d2e582e, |
| @@ -5415,9 +5606,9 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5415 | 0x7c89b040, | 5606 | 0x7c89b040, |
| 5416 | 0x4c002202, | 5607 | 0x4c002202, |
| 5417 | 0x40800000, | 5608 | 0x40800000, |
| 5418 | 0x0005083f, | 5609 | 0x00050840, |
| 5419 | 0x00000000, | 5610 | 0x00000000, |
| 5420 | 0x000600a0, | 5611 | 0x000600a2, |
| 5421 | 0xfc2e7824, | 5612 | 0xfc2e7824, |
| 5422 | 0x48000001, | 5613 | 0x48000001, |
| 5423 | 0x00030010, | 5614 | 0x00030010, |
| @@ -5459,7 +5650,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5459 | 0x40860000, | 5650 | 0x40860000, |
| 5460 | 0x00050805, | 5651 | 0x00050805, |
| 5461 | 0x48000001, | 5652 | 0x48000001, |
| 5462 | 0x0005009b, | 5653 | 0x0005009c, |
| 5463 | 0x41830000, | 5654 | 0x41830000, |
| 5464 | 0x00050804, | 5655 | 0x00050804, |
| 5465 | 0x0006000b, | 5656 | 0x0006000b, |
| @@ -5482,13 +5673,13 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5482 | 0x0005080b, | 5673 | 0x0005080b, |
| 5483 | 0x00000000, | 5674 | 0x00000000, |
| 5484 | 0x48000000, | 5675 | 0x48000000, |
| 5485 | 0x00050040, | 5676 | 0x00050041, |
| 5486 | 0x00000000, | 5677 | 0x00000000, |
| 5487 | 0x48000000, | 5678 | 0x48000000, |
| 5488 | 0x0005003c, | 5679 | 0x0005003d, |
| 5489 | 0x00000000, | 5680 | 0x00000000, |
| 5490 | 0x48000000, | 5681 | 0x48000000, |
| 5491 | 0x00050041, | 5682 | 0x00050042, |
| 5492 | 0x00000000, | 5683 | 0x00000000, |
| 5493 | 0x0006000f, | 5684 | 0x0006000f, |
| 5494 | 0x00000000, | 5685 | 0x00000000, |
| @@ -5501,16 +5692,16 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5501 | 0xc9eb0000, | 5692 | 0xc9eb0000, |
| 5502 | 0x00000000, | 5693 | 0x00000000, |
| 5503 | 0x40800000, | 5694 | 0x40800000, |
| 5504 | 0x00050840, | 5695 | 0x00050841, |
| 5505 | 0x00000000, | 5696 | 0x00000000, |
| 5506 | 0x40800000, | 5697 | 0x40800000, |
| 5507 | 0x0005083c, | 5698 | 0x0005083d, |
| 5508 | 0x00000000, | 5699 | 0x00000000, |
| 5509 | 0x40800000, | 5700 | 0x40800000, |
| 5510 | 0x00050841, | 5701 | 0x00050842, |
| 5511 | 0x00000000, | 5702 | 0x00000000, |
| 5512 | 0x48000000, | 5703 | 0x48000000, |
| 5513 | 0x000500a0, | 5704 | 0x000500a2, |
| 5514 | 0x00000000, | 5705 | 0x00000000, |
| 5515 | 0x7d0e502e, | 5706 | 0x7d0e502e, |
| 5516 | 0x00000000, | 5707 | 0x00000000, |
| @@ -5523,11 +5714,11 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5523 | 0x7c89b040, | 5714 | 0x7c89b040, |
| 5524 | 0x4c002202, | 5715 | 0x4c002202, |
| 5525 | 0x40800000, | 5716 | 0x40800000, |
| 5526 | 0x0005083e, | 5717 | 0x0005083f, |
| 5527 | 0x00000000, | 5718 | 0x00000000, |
| 5528 | 0x7c08b040, | 5719 | 0x7c08b040, |
| 5529 | 0x40800000, | 5720 | 0x40800000, |
| 5530 | 0x0005083e, | 5721 | 0x0005083f, |
| 5531 | 0x00000000, | 5722 | 0x00000000, |
| 5532 | 0x7d0e502e, | 5723 | 0x7d0e502e, |
| 5533 | 0x00000000, | 5724 | 0x00000000, |
| @@ -5540,11 +5731,11 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5540 | 0x7c89b040, | 5731 | 0x7c89b040, |
| 5541 | 0x4c002202, | 5732 | 0x4c002202, |
| 5542 | 0x40800000, | 5733 | 0x40800000, |
| 5543 | 0x0005083b, | 5734 | 0x0005083c, |
| 5544 | 0x00000000, | 5735 | 0x00000000, |
| 5545 | 0x7c08b040, | 5736 | 0x7c08b040, |
| 5546 | 0x40800000, | 5737 | 0x40800000, |
| 5547 | 0x0005083b, | 5738 | 0x0005083c, |
| 5548 | 0x00000000, | 5739 | 0x00000000, |
| 5549 | 0x7d0e502e, | 5740 | 0x7d0e502e, |
| 5550 | 0x7d2e582e, | 5741 | 0x7d2e582e, |
| @@ -5554,10 +5745,10 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5554 | 0x7c89b040, | 5745 | 0x7c89b040, |
| 5555 | 0x4c002202, | 5746 | 0x4c002202, |
| 5556 | 0x40800000, | 5747 | 0x40800000, |
| 5557 | 0x0005083f, | 5748 | 0x00050840, |
| 5558 | 0x00000000, | 5749 | 0x00000000, |
| 5559 | 0x48000000, | 5750 | 0x48000000, |
| 5560 | 0x000500a0, | 5751 | 0x000500a2, |
| 5561 | 0x00000000, | 5752 | 0x00000000, |
| 5562 | 0x7d0e502e, | 5753 | 0x7d0e502e, |
| 5563 | 0x7c2e54ae, | 5754 | 0x7c2e54ae, |
| @@ -5567,7 +5758,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5567 | 0x7c89b040, | 5758 | 0x7c89b040, |
| 5568 | 0x4c002202, | 5759 | 0x4c002202, |
| 5569 | 0x40800000, | 5760 | 0x40800000, |
| 5570 | 0x0005083f, | 5761 | 0x00050840, |
| 5571 | 0x48000001, | 5762 | 0x48000001, |
| 5572 | 0x0003001f, | 5763 | 0x0003001f, |
| 5573 | 0x80f00000, | 5764 | 0x80f00000, |
| @@ -5587,18 +5778,18 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5587 | 0x00098200, | 5778 | 0x00098200, |
| 5588 | 0x7c8e5a14, | 5779 | 0x7c8e5a14, |
| 5589 | 0x7d555378, | 5780 | 0x7d555378, |
| 5590 | 0x0006002a, | 5781 | 0x0006002b, |
| 5591 | 0x92010020, | 5782 | 0x92010020, |
| 5592 | 0x7e439378, | 5783 | 0x7e439378, |
| 5593 | 0x54a500fe, | 5784 | 0x54a500fe, |
| 5594 | 0x000900ab, | 5785 | 0x000900ab, |
| 5595 | 0x48000001, | 5786 | 0x48000001, |
| 5596 | 0x0003002e, | 5787 | 0x00030030, |
| 5597 | 0x28030000, | 5788 | 0x28030000, |
| 5598 | 0x81d20000, | 5789 | 0x81d20000, |
| 5599 | 0x00098200, | 5790 | 0x00098200, |
| 5600 | 0x40820000, | 5791 | 0x40820000, |
| 5601 | 0x00050835, | 5792 | 0x00050836, |
| 5602 | 0x80f00000, | 5793 | 0x80f00000, |
| 5603 | 0x3a100004, | 5794 | 0x3a100004, |
| 5604 | 0x7c0eacae, | 5795 | 0x7c0eacae, |
| @@ -5811,7 +6002,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5811 | 0x41820000, | 6002 | 0x41820000, |
| 5812 | 0x0005080b, | 6003 | 0x0005080b, |
| 5813 | 0x48000001, | 6004 | 0x48000001, |
| 5814 | 0x0003002f, | 6005 | 0x00030031, |
| 5815 | 0x48000000, | 6006 | 0x48000000, |
| 5816 | 0x0005000b, | 6007 | 0x0005000b, |
| 5817 | 0x00000000, | 6008 | 0x00000000, |
| @@ -5862,7 +6053,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5862 | 0x41820000, | 6053 | 0x41820000, |
| 5863 | 0x0005080b, | 6054 | 0x0005080b, |
| 5864 | 0x48000001, | 6055 | 0x48000001, |
| 5865 | 0x0003002f, | 6056 | 0x00030031, |
| 5866 | 0x48000000, | 6057 | 0x48000000, |
| 5867 | 0x0005000b, | 6058 | 0x0005000b, |
| 5868 | 0x00000000, | 6059 | 0x00000000, |
| @@ -5925,7 +6116,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5925 | 0x00050801, | 6116 | 0x00050801, |
| 5926 | 0x7c8ea214, | 6117 | 0x7c8ea214, |
| 5927 | 0x48000001, | 6118 | 0x48000001, |
| 5928 | 0x00030030, | 6119 | 0x00030032, |
| 5929 | 0x81d20000, | 6120 | 0x81d20000, |
| 5930 | 0x00098200, | 6121 | 0x00098200, |
| 5931 | 0x0006000b, | 6122 | 0x0006000b, |
| @@ -5950,7 +6141,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5950 | 0x7e439378, | 6141 | 0x7e439378, |
| 5951 | 0x80aefffc, | 6142 | 0x80aefffc, |
| 5952 | 0x48000001, | 6143 | 0x48000001, |
| 5953 | 0x00030031, | 6144 | 0x00030033, |
| 5954 | 0x81d20000, | 6145 | 0x81d20000, |
| 5955 | 0x00098200, | 6146 | 0x00098200, |
| 5956 | 0x38000000, | 6147 | 0x38000000, |
| @@ -5988,14 +6179,14 @@ static const unsigned int build_actionlist[7580] = { | |||
| 5988 | 0x00050803, | 6179 | 0x00050803, |
| 5989 | 0x0006000c, | 6180 | 0x0006000c, |
| 5990 | 0x48000001, | 6181 | 0x48000001, |
| 5991 | 0x00030032, | 6182 | 0x00030034, |
| 5992 | 0x00000000, | 6183 | 0x00000000, |
| 5993 | 0x5588007e, | 6184 | 0x5588007e, |
| 5994 | 0x000900ab, | 6185 | 0x000900ab, |
| 5995 | 0x2108fffc, | 6186 | 0x2108fffc, |
| 5996 | 0x7c8f402e, | 6187 | 0x7c8f402e, |
| 5997 | 0x48000001, | 6188 | 0x48000001, |
| 5998 | 0x00030033, | 6189 | 0x00030035, |
| 5999 | 0x00000000, | 6190 | 0x00000000, |
| 6000 | 0x81d20000, | 6191 | 0x81d20000, |
| 6001 | 0x00098200, | 6192 | 0x00098200, |
| @@ -6022,7 +6213,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6022 | 0x0006000f, | 6213 | 0x0006000f, |
| 6023 | 0x7d956378, | 6214 | 0x7d956378, |
| 6024 | 0x48000001, | 6215 | 0x48000001, |
| 6025 | 0x00030034, | 6216 | 0x00030036, |
| 6026 | 0x7eacab78, | 6217 | 0x7eacab78, |
| 6027 | 0x7e439378, | 6218 | 0x7e439378, |
| 6028 | 0x48000000, | 6219 | 0x48000000, |
| @@ -6037,10 +6228,10 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6037 | 0x7d6f402e, | 6228 | 0x7d6f402e, |
| 6038 | 0x00000000, | 6229 | 0x00000000, |
| 6039 | 0x48000000, | 6230 | 0x48000000, |
| 6040 | 0x000500a1, | 6231 | 0x000500a3, |
| 6041 | 0x00000000, | 6232 | 0x00000000, |
| 6042 | 0x48000000, | 6233 | 0x48000000, |
| 6043 | 0x000500a2, | 6234 | 0x000500a4, |
| 6044 | 0x00000000, | 6235 | 0x00000000, |
| 6045 | 0x7c6a706e, | 6236 | 0x7c6a706e, |
| 6046 | 0x7c8b706e, | 6237 | 0x7c8b706e, |
| @@ -6054,7 +6245,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6054 | 0x00098200, | 6245 | 0x00098200, |
| 6055 | 0x7c84b040, | 6246 | 0x7c84b040, |
| 6056 | 0x40820000, | 6247 | 0x40820000, |
| 6057 | 0x0005082f, | 6248 | 0x00050830, |
| 6058 | 0x00000000, | 6249 | 0x00000000, |
| 6059 | 0x800a0000, | 6250 | 0x800a0000, |
| 6060 | 0x00098200, | 6251 | 0x00098200, |
| @@ -6084,7 +6275,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6084 | 0x000900a1, | 6275 | 0x000900a1, |
| 6085 | 0x00000000, | 6276 | 0x00000000, |
| 6086 | 0x40810000, | 6277 | 0x40810000, |
| 6087 | 0x0005082f, | 6278 | 0x00050830, |
| 6088 | 0x7c08482e, | 6279 | 0x7c08482e, |
| 6089 | 0x7dc84cae, | 6280 | 0x7dc84cae, |
| 6090 | 0x2c000000, | 6281 | 0x2c000000, |
| @@ -6116,17 +6307,17 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6116 | 0x40820000, | 6307 | 0x40820000, |
| 6117 | 0x0005080b, | 6308 | 0x0005080b, |
| 6118 | 0x48000000, | 6309 | 0x48000000, |
| 6119 | 0x0005002f, | 6310 | 0x00050030, |
| 6120 | 0x0006000f, | 6311 | 0x0006000f, |
| 6121 | 0x2c040000, | 6312 | 0x2c040000, |
| 6122 | 0x00098200, | 6313 | 0x00098200, |
| 6123 | 0x40820000, | 6314 | 0x40820000, |
| 6124 | 0x0005082f, | 6315 | 0x00050830, |
| 6125 | 0x00000000, | 6316 | 0x00000000, |
| 6126 | 0x816b0004, | 6317 | 0x816b0004, |
| 6127 | 0x00000000, | 6318 | 0x00000000, |
| 6128 | 0x48000000, | 6319 | 0x48000000, |
| 6129 | 0x000500a1, | 6320 | 0x000500a3, |
| 6130 | 0x00000000, | 6321 | 0x00000000, |
| 6131 | 0x7c6a706e, | 6322 | 0x7c6a706e, |
| 6132 | 0x5568007e, | 6323 | 0x5568007e, |
| @@ -6137,8 +6328,8 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6137 | 0x00098200, | 6328 | 0x00098200, |
| 6138 | 0x7d6f402e, | 6329 | 0x7d6f402e, |
| 6139 | 0x40820000, | 6330 | 0x40820000, |
| 6140 | 0x0005082c, | 6331 | 0x0005082d, |
| 6141 | 0x000600a1, | 6332 | 0x000600a3, |
| 6142 | 0x800a0000, | 6333 | 0x800a0000, |
| 6143 | 0x00098200, | 6334 | 0x00098200, |
| 6144 | 0x810b0000, | 6335 | 0x810b0000, |
| @@ -6207,7 +6398,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6207 | 0x40820000, | 6398 | 0x40820000, |
| 6208 | 0x0005080d, | 6399 | 0x0005080d, |
| 6209 | 0x48000000, | 6400 | 0x48000000, |
| 6210 | 0x0005002d, | 6401 | 0x0005002e, |
| 6211 | 0x00000000, | 6402 | 0x00000000, |
| 6212 | 0x7c6a706e, | 6403 | 0x7c6a706e, |
| 6213 | 0x556000fe, | 6404 | 0x556000fe, |
| @@ -6216,14 +6407,14 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6216 | 0x2c030000, | 6407 | 0x2c030000, |
| 6217 | 0x00098200, | 6408 | 0x00098200, |
| 6218 | 0x40820000, | 6409 | 0x40820000, |
| 6219 | 0x0005082e, | 6410 | 0x0005082f, |
| 6220 | 0x810a0000, | 6411 | 0x810a0000, |
| 6221 | 0x00098200, | 6412 | 0x00098200, |
| 6222 | 0x812a0000, | 6413 | 0x812a0000, |
| 6223 | 0x00098200, | 6414 | 0x00098200, |
| 6224 | 0x7c004040, | 6415 | 0x7c004040, |
| 6225 | 0x40800000, | 6416 | 0x40800000, |
| 6226 | 0x0005082e, | 6417 | 0x0005082f, |
| 6227 | 0x7d09582e, | 6418 | 0x7d09582e, |
| 6228 | 0x7c095cae, | 6419 | 0x7c095cae, |
| 6229 | 0x2c080000, | 6420 | 0x2c080000, |
| @@ -6255,7 +6446,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6255 | 0x40820000, | 6446 | 0x40820000, |
| 6256 | 0x0005080b, | 6447 | 0x0005080b, |
| 6257 | 0x48000000, | 6448 | 0x48000000, |
| 6258 | 0x0005002e, | 6449 | 0x0005002f, |
| 6259 | 0x00000000, | 6450 | 0x00000000, |
| 6260 | 0x7c6a706e, | 6451 | 0x7c6a706e, |
| 6261 | 0x7c8b706e, | 6452 | 0x7c8b706e, |
| @@ -6269,7 +6460,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6269 | 0x00098200, | 6460 | 0x00098200, |
| 6270 | 0x7c84b040, | 6461 | 0x7c84b040, |
| 6271 | 0x40820000, | 6462 | 0x40820000, |
| 6272 | 0x00050833, | 6463 | 0x00050834, |
| 6273 | 0x00000000, | 6464 | 0x00000000, |
| 6274 | 0x800a0000, | 6465 | 0x800a0000, |
| 6275 | 0x00098200, | 6466 | 0x00098200, |
| @@ -6299,7 +6490,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6299 | 0x000900a1, | 6490 | 0x000900a1, |
| 6300 | 0x00000000, | 6491 | 0x00000000, |
| 6301 | 0x40810000, | 6492 | 0x40810000, |
| 6302 | 0x00050833, | 6493 | 0x00050834, |
| 6303 | 0x7d28002e, | 6494 | 0x7d28002e, |
| 6304 | 0x88ca0000, | 6495 | 0x88ca0000, |
| 6305 | 0x00098200, | 6496 | 0x00098200, |
| @@ -6338,17 +6529,17 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6338 | 0x40820000, | 6529 | 0x40820000, |
| 6339 | 0x0005080b, | 6530 | 0x0005080b, |
| 6340 | 0x48000000, | 6531 | 0x48000000, |
| 6341 | 0x00050033, | 6532 | 0x00050034, |
| 6342 | 0x0006000f, | 6533 | 0x0006000f, |
| 6343 | 0x2c040000, | 6534 | 0x2c040000, |
| 6344 | 0x00098200, | 6535 | 0x00098200, |
| 6345 | 0x40820000, | 6536 | 0x40820000, |
| 6346 | 0x00050833, | 6537 | 0x00050834, |
| 6347 | 0x00000000, | 6538 | 0x00000000, |
| 6348 | 0x816b0004, | 6539 | 0x816b0004, |
| 6349 | 0x00000000, | 6540 | 0x00000000, |
| 6350 | 0x48000000, | 6541 | 0x48000000, |
| 6351 | 0x000500a2, | 6542 | 0x000500a4, |
| 6352 | 0x00060011, | 6543 | 0x00060011, |
| 6353 | 0x80110000, | 6544 | 0x80110000, |
| 6354 | 0x00098200, | 6545 | 0x00098200, |
| @@ -6397,8 +6588,8 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6397 | 0x00098200, | 6588 | 0x00098200, |
| 6398 | 0x7d6f402e, | 6589 | 0x7d6f402e, |
| 6399 | 0x40820000, | 6590 | 0x40820000, |
| 6400 | 0x00050830, | 6591 | 0x00050831, |
| 6401 | 0x000600a2, | 6592 | 0x000600a4, |
| 6402 | 0x800a0000, | 6593 | 0x800a0000, |
| 6403 | 0x00098200, | 6594 | 0x00098200, |
| 6404 | 0x810b0000, | 6595 | 0x810b0000, |
| @@ -6469,7 +6660,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6469 | 0x40820000, | 6660 | 0x40820000, |
| 6470 | 0x0005080c, | 6661 | 0x0005080c, |
| 6471 | 0x48000000, | 6662 | 0x48000000, |
| 6472 | 0x00050031, | 6663 | 0x00050032, |
| 6473 | 0x0006000f, | 6664 | 0x0006000f, |
| 6474 | 0x81290000, | 6665 | 0x81290000, |
| 6475 | 0x00098200, | 6666 | 0x00098200, |
| @@ -6492,7 +6683,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6492 | 0x70000000, | 6683 | 0x70000000, |
| 6493 | 0x00090200, | 6684 | 0x00090200, |
| 6494 | 0x41820000, | 6685 | 0x41820000, |
| 6495 | 0x00050831, | 6686 | 0x00050832, |
| 6496 | 0x00060010, | 6687 | 0x00060010, |
| 6497 | 0x00000000, | 6688 | 0x00000000, |
| 6498 | 0x38000000, | 6689 | 0x38000000, |
| @@ -6501,7 +6692,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6501 | 0x7d445378, | 6692 | 0x7d445378, |
| 6502 | 0x90050000, | 6693 | 0x90050000, |
| 6503 | 0x48000001, | 6694 | 0x48000001, |
| 6504 | 0x00030035, | 6695 | 0x00030037, |
| 6505 | 0x81d20000, | 6696 | 0x81d20000, |
| 6506 | 0x00098200, | 6697 | 0x00098200, |
| 6507 | 0xd9c30000, | 6698 | 0xd9c30000, |
| @@ -6527,7 +6718,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6527 | 0x2c030000, | 6718 | 0x2c030000, |
| 6528 | 0x00098200, | 6719 | 0x00098200, |
| 6529 | 0x40820000, | 6720 | 0x40820000, |
| 6530 | 0x00050832, | 6721 | 0x00050833, |
| 6531 | 0x810a0000, | 6722 | 0x810a0000, |
| 6532 | 0x00098200, | 6723 | 0x00098200, |
| 6533 | 0x812a0000, | 6724 | 0x812a0000, |
| @@ -6537,7 +6728,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6537 | 0x7c004040, | 6728 | 0x7c004040, |
| 6538 | 0x7dcea4ae, | 6729 | 0x7dcea4ae, |
| 6539 | 0x40800000, | 6730 | 0x40800000, |
| 6540 | 0x00050832, | 6731 | 0x00050833, |
| 6541 | 0x7d09582e, | 6732 | 0x7d09582e, |
| 6542 | 0x2c080000, | 6733 | 0x2c080000, |
| 6543 | 0x00098200, | 6734 | 0x00098200, |
| @@ -6573,7 +6764,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6573 | 0x40820000, | 6764 | 0x40820000, |
| 6574 | 0x0005080b, | 6765 | 0x0005080b, |
| 6575 | 0x48000000, | 6766 | 0x48000000, |
| 6576 | 0x00050032, | 6767 | 0x00050033, |
| 6577 | 0x00060011, | 6768 | 0x00060011, |
| 6578 | 0x80110000, | 6769 | 0x80110000, |
| 6579 | 0x00098200, | 6770 | 0x00098200, |
| @@ -6642,7 +6833,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6642 | 0x92010020, | 6833 | 0x92010020, |
| 6643 | 0x7d956378, | 6834 | 0x7d956378, |
| 6644 | 0x48000001, | 6835 | 0x48000001, |
| 6645 | 0x00030036, | 6836 | 0x00030038, |
| 6646 | 0x7eacab78, | 6837 | 0x7eacab78, |
| 6647 | 0x48000000, | 6838 | 0x48000000, |
| 6648 | 0x0005000b, | 6839 | 0x0005000b, |
| @@ -6693,8 +6884,8 @@ static const unsigned int build_actionlist[7580] = { | |||
| 6693 | 0x00098200, | 6884 | 0x00098200, |
| 6694 | 0x3a940008, | 6885 | 0x3a940008, |
| 6695 | 0x40820000, | 6886 | 0x40820000, |
| 6696 | 0x00050844, | 6887 | 0x00050845, |
| 6697 | 0x00060045, | 6888 | 0x00060046, |
| 6698 | 0x71000000, | 6889 | 0x71000000, |
| 6699 | 0x00090200, | 6890 | 0x00090200, |
| 6700 | 0x88ca0000, | 6891 | 0x88ca0000, |
| @@ -7027,7 +7218,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 7027 | 0x6a080000, | 7218 | 0x6a080000, |
| 7028 | 0x00090200, | 7219 | 0x00090200, |
| 7029 | 0x40820000, | 7220 | 0x40820000, |
| 7030 | 0x000508a3, | 7221 | 0x000508a5, |
| 7031 | 0x00060017, | 7222 | 0x00060017, |
| 7032 | 0x80f0fffc, | 7223 | 0x80f0fffc, |
| 7033 | 0x2c0c0008, | 7224 | 0x2c0c0008, |
| @@ -7078,7 +7269,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 7078 | 0x7ee9412e, | 7269 | 0x7ee9412e, |
| 7079 | 0x48000000, | 7270 | 0x48000000, |
| 7080 | 0x0005000f, | 7271 | 0x0005000f, |
| 7081 | 0x000600a3, | 7272 | 0x000600a5, |
| 7082 | 0x71090000, | 7273 | 0x71090000, |
| 7083 | 0x00090200, | 7274 | 0x00090200, |
| 7084 | 0x40820000, | 7275 | 0x40820000, |
| @@ -7096,7 +7287,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 7096 | 0x6a080000, | 7287 | 0x6a080000, |
| 7097 | 0x00090200, | 7288 | 0x00090200, |
| 7098 | 0x40a20000, | 7289 | 0x40a20000, |
| 7099 | 0x000508a3, | 7290 | 0x000508a5, |
| 7100 | 0x80f0fffc, | 7291 | 0x80f0fffc, |
| 7101 | 0x392efff8, | 7292 | 0x392efff8, |
| 7102 | 0x54ea5d78, | 7293 | 0x54ea5d78, |
| @@ -7140,7 +7331,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 7140 | 0x00098200, | 7331 | 0x00098200, |
| 7141 | 0x7d31432e, | 7332 | 0x7d31432e, |
| 7142 | 0x41800000, | 7333 | 0x41800000, |
| 7143 | 0x00050893, | 7334 | 0x00050894, |
| 7144 | 0x00000000, | 7335 | 0x00000000, |
| 7145 | 0x7d14706e, | 7336 | 0x7d14706e, |
| 7146 | 0x80740000, | 7337 | 0x80740000, |
| @@ -7267,7 +7458,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 7267 | 0xc8540000, | 7458 | 0xc8540000, |
| 7268 | 0x00098200, | 7459 | 0x00098200, |
| 7269 | 0x40800000, | 7460 | 0x40800000, |
| 7270 | 0x00050846, | 7461 | 0x00050847, |
| 7271 | 0x00000000, | 7462 | 0x00000000, |
| 7272 | 0x2f060000, | 7463 | 0x2f060000, |
| 7273 | 0x00000000, | 7464 | 0x00000000, |
| @@ -7355,7 +7546,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 7355 | 0x00098200, | 7546 | 0x00098200, |
| 7356 | 0x7d31432e, | 7547 | 0x7d31432e, |
| 7357 | 0x41800000, | 7548 | 0x41800000, |
| 7358 | 0x00050893, | 7549 | 0x00050894, |
| 7359 | 0x00000000, | 7550 | 0x00000000, |
| 7360 | 0x7d14706e, | 7551 | 0x7d14706e, |
| 7361 | 0x81340004, | 7552 | 0x81340004, |
| @@ -7397,7 +7588,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 7397 | 0x00098200, | 7588 | 0x00098200, |
| 7398 | 0x7d31432e, | 7589 | 0x7d31432e, |
| 7399 | 0x41800000, | 7590 | 0x41800000, |
| 7400 | 0x00050893, | 7591 | 0x00050894, |
| 7401 | 0x00000000, | 7592 | 0x00000000, |
| 7402 | 0x80f00000, | 7593 | 0x80f00000, |
| 7403 | 0x3a100004, | 7594 | 0x3a100004, |
| @@ -7453,7 +7644,7 @@ static const unsigned int build_actionlist[7580] = { | |||
| 7453 | 0x00098200, | 7644 | 0x00098200, |
| 7454 | 0x7d31432e, | 7645 | 0x7d31432e, |
| 7455 | 0x41800000, | 7646 | 0x41800000, |
| 7456 | 0x00050895, | 7647 | 0x00050896, |
| 7457 | 0x00000000, | 7648 | 0x00000000, |
| 7458 | 0x81320000, | 7649 | 0x81320000, |
| 7459 | 0x00098200, | 7650 | 0x00098200, |
| @@ -7616,6 +7807,7 @@ enum { | |||
| 7616 | GLOB_vmeta_call, | 7807 | GLOB_vmeta_call, |
| 7617 | GLOB_vm_call_dispatch_f, | 7808 | GLOB_vm_call_dispatch_f, |
| 7618 | GLOB_vm_cpcall, | 7809 | GLOB_vm_cpcall, |
| 7810 | GLOB_cont_ffi_callback, | ||
| 7619 | GLOB_vm_call_tail, | 7811 | GLOB_vm_call_tail, |
| 7620 | GLOB_cont_cat, | 7812 | GLOB_cont_cat, |
| 7621 | GLOB_BC_CAT_Z, | 7813 | GLOB_BC_CAT_Z, |
| @@ -7733,6 +7925,7 @@ enum { | |||
| 7733 | GLOB_vm_trunc, | 7925 | GLOB_vm_trunc, |
| 7734 | GLOB_vm_modi, | 7926 | GLOB_vm_modi, |
| 7735 | GLOB_vm_foldarith, | 7927 | GLOB_vm_foldarith, |
| 7928 | GLOB_vm_ffi_callback, | ||
| 7736 | GLOB_vm_ffi_call, | 7929 | GLOB_vm_ffi_call, |
| 7737 | GLOB_BC_ISEQN_Z, | 7930 | GLOB_BC_ISEQN_Z, |
| 7738 | GLOB_BC_ISNEN_Z, | 7931 | GLOB_BC_ISNEN_Z, |
| @@ -7763,6 +7956,7 @@ static const char *const globnames[] = { | |||
| 7763 | "vmeta_call", | 7956 | "vmeta_call", |
| 7764 | "vm_call_dispatch_f", | 7957 | "vm_call_dispatch_f", |
| 7765 | "vm_cpcall", | 7958 | "vm_cpcall", |
| 7959 | "cont_ffi_callback", | ||
| 7766 | "vm_call_tail", | 7960 | "vm_call_tail", |
| 7767 | "cont_cat", | 7961 | "cont_cat", |
| 7768 | "BC_CAT_Z", | 7962 | "BC_CAT_Z", |
| @@ -7880,6 +8074,7 @@ static const char *const globnames[] = { | |||
| 7880 | "vm_trunc", | 8074 | "vm_trunc", |
| 7881 | "vm_modi", | 8075 | "vm_modi", |
| 7882 | "vm_foldarith", | 8076 | "vm_foldarith", |
| 8077 | "vm_ffi_callback", | ||
| 7883 | "vm_ffi_call", | 8078 | "vm_ffi_call", |
| 7884 | "BC_ISEQN_Z", | 8079 | "BC_ISEQN_Z", |
| 7885 | "BC_ISNEN_Z", | 8080 | "BC_ISNEN_Z", |
| @@ -7936,6 +8131,8 @@ static const char *const extnames[] = { | |||
| 7936 | "lj_trace_exit", | 8131 | "lj_trace_exit", |
| 7937 | "lj_err_throw", | 8132 | "lj_err_throw", |
| 7938 | "trunc", | 8133 | "trunc", |
| 8134 | "lj_ccallback_enter", | ||
| 8135 | "lj_ccallback_leave", | ||
| 7939 | "lj_meta_cat", | 8136 | "lj_meta_cat", |
| 7940 | "lj_gc_barrieruv", | 8137 | "lj_gc_barrieruv", |
| 7941 | "lj_func_closeuv", | 8138 | "lj_func_closeuv", |
| @@ -7974,385 +8171,407 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 7974 | dasm_put(Dst, 105, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4, 128+(31-14)*8, Dt1(->maxstack)); | 8171 | dasm_put(Dst, 105, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4, 128+(31-14)*8, Dt1(->maxstack)); |
| 7975 | dasm_put(Dst, 154, Dt1(->top), 31-3, Dt1(->top), ~LJ_VMST_C, Dt1(->glref), Dt2(->vmstate), LJ_TISNUM, Dt1(->base), Dt1(->glref), LJ_TFALSE, LJ_TNIL, ~LJ_VMST_INTERP, GG_G2DISP); | 8172 | dasm_put(Dst, 154, Dt1(->top), 31-3, Dt1(->top), ~LJ_VMST_C, Dt1(->glref), Dt2(->vmstate), LJ_TISNUM, Dt1(->base), Dt1(->glref), LJ_TFALSE, LJ_TNIL, ~LJ_VMST_INTERP, GG_G2DISP); |
| 7976 | dasm_put(Dst, 217, DISPATCH_GL(vmstate), LUA_MINSTACK, Dt1(->base), Dt1(->top), 32-3, Dt1(->base), Dt1(->top), Dt7(->pc), 56+(14-14)*4, 128+(14-14)*8, 56+(15-14)*4, 128+(15-14)*8, 56+(16-14)*4, 128+(16-14)*8, 56+(17-14)*4); | 8173 | dasm_put(Dst, 217, DISPATCH_GL(vmstate), LUA_MINSTACK, Dt1(->base), Dt1(->top), 32-3, Dt1(->base), Dt1(->top), Dt7(->pc), 56+(14-14)*4, 128+(14-14)*8, 56+(15-14)*4, 128+(15-14)*8, 56+(16-14)*4, 128+(16-14)*8, 56+(17-14)*4); |
| 7977 | dasm_put(Dst, 277, 128+(17-14)*8, 56+(18-14)*4, 128+(18-14)*8, 56+(19-14)*4, 128+(19-14)*8, 56+(20-14)*4, 128+(20-14)*8, 56+(21-14)*4, 128+(21-14)*8, 56+(22-14)*4, 128+(22-14)*8, 56+(23-14)*4, 128+(23-14)*8, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4); | 8174 | dasm_put(Dst, 278, 128+(17-14)*8, 56+(18-14)*4, 128+(18-14)*8, 56+(19-14)*4, 128+(19-14)*8, 56+(20-14)*4, 128+(20-14)*8, 56+(21-14)*4, 128+(21-14)*8, 56+(22-14)*4, 128+(22-14)*8, 56+(23-14)*4, 128+(23-14)*8, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4); |
| 7978 | dasm_put(Dst, 326, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4, 128+(31-14)*8, Dt1(->glref), Dt1(->status), FRAME_CP, CFRAME_RESUME, GG_G2DISP, Dt1(->cframe), Dt1(->base), LJ_TISNUM, Dt1(->top), Dt1(->status), FRAME_TYPE, ~LJ_VMST_INTERP, LJ_TNIL, DISPATCH_GL(vmstate)); | 8175 | dasm_put(Dst, 325, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4, 128+(31-14)*8, Dt1(->glref), Dt1(->status), FRAME_CP, CFRAME_RESUME, GG_G2DISP, Dt1(->cframe), Dt1(->base), LJ_TISNUM, Dt1(->top), Dt1(->status), FRAME_TYPE, ~LJ_VMST_INTERP, LJ_TNIL, DISPATCH_GL(vmstate)); |
| 7979 | dasm_put(Dst, 393, 56+(14-14)*4, 128+(14-14)*8, 56+(15-14)*4, 128+(15-14)*8, 56+(16-14)*4, 128+(16-14)*8, 56+(17-14)*4, 128+(17-14)*8, 56+(18-14)*4, 128+(18-14)*8, 56+(19-14)*4, 128+(19-14)*8, 56+(20-14)*4, 128+(20-14)*8, 56+(21-14)*4, 128+(21-14)*8, 56+(22-14)*4, 128+(22-14)*8, 56+(23-14)*4); | 8176 | dasm_put(Dst, 393, 56+(14-14)*4, 128+(14-14)*8, 56+(15-14)*4, 128+(15-14)*8, 56+(16-14)*4, 128+(16-14)*8, 56+(17-14)*4, 128+(17-14)*8, 56+(18-14)*4, 128+(18-14)*8, 56+(19-14)*4, 128+(19-14)*8, 56+(20-14)*4, 128+(20-14)*8, 56+(21-14)*4, 128+(21-14)*8, 56+(22-14)*4, 128+(22-14)*8, 56+(23-14)*4); |
| 7980 | dasm_put(Dst, 440, 128+(23-14)*8, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4, 128+(31-14)*8, FRAME_CP, 56+(14-14)*4, 128+(14-14)*8); | 8177 | dasm_put(Dst, 440, 128+(23-14)*8, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4, 128+(31-14)*8, FRAME_CP, 56+(14-14)*4, 128+(14-14)*8); |
| 7981 | dasm_put(Dst, 488, 56+(15-14)*4, 128+(15-14)*8, 56+(16-14)*4, 128+(16-14)*8, 56+(17-14)*4, 128+(17-14)*8, 56+(18-14)*4, 128+(18-14)*8, 56+(19-14)*4, 128+(19-14)*8, 56+(20-14)*4, 128+(20-14)*8, 56+(21-14)*4, 128+(21-14)*8, 56+(22-14)*4, 128+(22-14)*8, 56+(23-14)*4, 128+(23-14)*8, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8); | 8178 | dasm_put(Dst, 488, 56+(15-14)*4, 128+(15-14)*8, 56+(16-14)*4, 128+(16-14)*8, 56+(17-14)*4, 128+(17-14)*8, 56+(18-14)*4, 128+(18-14)*8, 56+(19-14)*4, 128+(19-14)*8, 56+(20-14)*4, 128+(20-14)*8, 56+(21-14)*4, 128+(21-14)*8, 56+(22-14)*4, 128+(22-14)*8, 56+(23-14)*4, 128+(23-14)*8, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8); |
| 7982 | dasm_put(Dst, 535, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4, 128+(31-14)*8, FRAME_C, Dt1(->cframe), Dt1(->cframe), Dt1(->glref), GG_G2DISP, Dt1(->base), LJ_TISNUM, Dt1(->top)); | 8179 | dasm_put(Dst, 535, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4, 128+(31-14)*8, FRAME_C, Dt1(->cframe), Dt1(->cframe), Dt1(->glref), GG_G2DISP, Dt1(->base), LJ_TISNUM, Dt1(->top)); |
| 7983 | dasm_put(Dst, 586, ~LJ_VMST_INTERP, LJ_TNIL, DISPATCH_GL(vmstate), LJ_TFUNC, Dt7(->pc), 56+(14-14)*4, 128+(14-14)*8, 56+(15-14)*4, 128+(15-14)*8, 56+(16-14)*4, 128+(16-14)*8, 56+(17-14)*4, 128+(17-14)*8, 56+(18-14)*4, 128+(18-14)*8, 56+(19-14)*4, 128+(19-14)*8, 56+(20-14)*4); | 8180 | dasm_put(Dst, 586, ~LJ_VMST_INTERP, LJ_TNIL, DISPATCH_GL(vmstate), LJ_TFUNC, Dt7(->pc), 56+(14-14)*4, 128+(14-14)*8, 56+(15-14)*4, 128+(15-14)*8, 56+(16-14)*4, 128+(16-14)*8, 56+(17-14)*4, 128+(17-14)*8, 56+(18-14)*4, 128+(18-14)*8, 56+(19-14)*4, 128+(19-14)*8, 56+(20-14)*4); |
| 7984 | dasm_put(Dst, 654, 128+(20-14)*8, 56+(21-14)*4, 128+(21-14)*8, 56+(22-14)*4, 128+(22-14)*8, 56+(23-14)*4, 128+(23-14)*8, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4); | 8181 | dasm_put(Dst, 653, 128+(20-14)*8, 56+(21-14)*4, 128+(21-14)*8, 56+(22-14)*4, 128+(22-14)*8, 56+(23-14)*4, 128+(23-14)*8, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4); |
| 7985 | dasm_put(Dst, 701, 128+(31-14)*8, Dt1(->stack), Dt1(->top), Dt1(->cframe), Dt1(->cframe), Dt1(->glref), FRAME_CP, GG_G2DISP, Dt7(->pc), PC2PROTO(k), Dt1(->base), DISPATCH_GL(tmptv)); | 8182 | dasm_put(Dst, 700, 128+(31-14)*8, Dt1(->stack), Dt1(->top), Dt1(->cframe), Dt1(->cframe), Dt1(->glref), FRAME_CP, GG_G2DISP); |
| 7986 | dasm_put(Dst, 775, LJ_TSTR, DISPATCH_GL(tmptv), LJ_TTAB, DISPATCH_GL(tmptv2), LJ_TSTR); | 8183 | #if LJ_HASFFI |
| 8184 | dasm_put(Dst, 738); | ||
| 8185 | #endif | ||
| 8186 | dasm_put(Dst, 740, Dt7(->pc)); | ||
| 8187 | #if LJ_HASFFI | ||
| 8188 | dasm_put(Dst, 746); | ||
| 8189 | #endif | ||
| 8190 | dasm_put(Dst, 749, PC2PROTO(k)); | ||
| 8191 | #if LJ_HASFFI | ||
| 8192 | dasm_put(Dst, 754); | ||
| 8193 | #endif | ||
| 8194 | dasm_put(Dst, 762, Dt1(->base), DISPATCH_GL(tmptv), LJ_TSTR, DISPATCH_GL(tmptv), LJ_TTAB, DISPATCH_GL(tmptv2), LJ_TSTR); | ||
| 7987 | if (!LJ_DUALNUM) { | 8195 | if (!LJ_DUALNUM) { |
| 7988 | dasm_put(Dst, 800); | 8196 | dasm_put(Dst, 807); |
| 7989 | } | 8197 | } |
| 7990 | dasm_put(Dst, 804, DISPATCH_GL(tmptv)); | 8198 | dasm_put(Dst, 811, DISPATCH_GL(tmptv)); |
| 7991 | if (LJ_DUALNUM) { | 8199 | if (LJ_DUALNUM) { |
| 7992 | dasm_put(Dst, 809); | 8200 | dasm_put(Dst, 816); |
| 7993 | } else { | 8201 | } else { |
| 7994 | dasm_put(Dst, 812); | 8202 | dasm_put(Dst, 819); |
| 7995 | } | 8203 | } |
| 7996 | dasm_put(Dst, 814, Dt1(->base), FRAME_CONT, Dt1(->top), DISPATCH_GL(tmptv), LJ_TSTR, DISPATCH_GL(tmptv), LJ_TTAB, DISPATCH_GL(tmptv2), LJ_TSTR); | 8204 | dasm_put(Dst, 821, Dt1(->base), FRAME_CONT, Dt1(->top), DISPATCH_GL(tmptv), LJ_TSTR, DISPATCH_GL(tmptv), LJ_TTAB, DISPATCH_GL(tmptv2), LJ_TSTR); |
| 7997 | if (!LJ_DUALNUM) { | 8205 | if (!LJ_DUALNUM) { |
| 7998 | dasm_put(Dst, 882); | 8206 | dasm_put(Dst, 889); |
| 7999 | } | 8207 | } |
| 8000 | dasm_put(Dst, 886, DISPATCH_GL(tmptv)); | 8208 | dasm_put(Dst, 893, DISPATCH_GL(tmptv)); |
| 8001 | if (LJ_DUALNUM) { | 8209 | if (LJ_DUALNUM) { |
| 8002 | dasm_put(Dst, 891); | 8210 | dasm_put(Dst, 898); |
| 8003 | } else { | 8211 | } else { |
| 8004 | dasm_put(Dst, 894); | 8212 | dasm_put(Dst, 901); |
| 8005 | } | 8213 | } |
| 8006 | dasm_put(Dst, 896, Dt1(->base), FRAME_CONT, Dt1(->top)); | 8214 | dasm_put(Dst, 903, Dt1(->base), FRAME_CONT, Dt1(->top)); |
| 8007 | if (LJ_DUALNUM) { | 8215 | if (LJ_DUALNUM) { |
| 8008 | dasm_put(Dst, 941); | 8216 | dasm_put(Dst, 948); |
| 8009 | } else { | 8217 | } else { |
| 8010 | dasm_put(Dst, 943); | 8218 | dasm_put(Dst, 950); |
| 8011 | } | 8219 | } |
| 8012 | dasm_put(Dst, 945); | 8220 | dasm_put(Dst, 952); |
| 8013 | if (LJ_DUALNUM) { | 8221 | if (LJ_DUALNUM) { |
| 8014 | dasm_put(Dst, 947); | 8222 | dasm_put(Dst, 954); |
| 8015 | } else { | 8223 | } else { |
| 8016 | dasm_put(Dst, 949); | 8224 | dasm_put(Dst, 956); |
| 8017 | } | 8225 | } |
| 8018 | dasm_put(Dst, 951, Dt1(->base), -(BCBIAS_J*4 >> 16), LJ_TTRUE, LJ_TTRUE, Dt1(->base)); | 8226 | dasm_put(Dst, 958, Dt1(->base), -(BCBIAS_J*4 >> 16), LJ_TTRUE, LJ_TTRUE, Dt1(->base)); |
| 8019 | #if LJ_HASFFI | 8227 | #if LJ_HASFFI |
| 8020 | dasm_put(Dst, 1014, Dt1(->base)); | 8228 | dasm_put(Dst, 1021, Dt1(->base)); |
| 8021 | #endif | 8229 | #endif |
| 8022 | dasm_put(Dst, 1025); | 8230 | dasm_put(Dst, 1032); |
| 8023 | if (LJ_DUALNUM) { | 8231 | if (LJ_DUALNUM) { |
| 8024 | dasm_put(Dst, 1032); | 8232 | dasm_put(Dst, 1039); |
| 8025 | } | 8233 | } |
| 8026 | dasm_put(Dst, 1037); | 8234 | dasm_put(Dst, 1044); |
| 8027 | if (LJ_DUALNUM) { | 8235 | if (LJ_DUALNUM) { |
| 8028 | dasm_put(Dst, 1051); | 8236 | dasm_put(Dst, 1058); |
| 8029 | } | 8237 | } |
| 8030 | dasm_put(Dst, 1054); | 8238 | dasm_put(Dst, 1061); |
| 8031 | if (LJ_DUALNUM) { | 8239 | if (LJ_DUALNUM) { |
| 8032 | dasm_put(Dst, 1057); | 8240 | dasm_put(Dst, 1064); |
| 8033 | } | 8241 | } |
| 8034 | dasm_put(Dst, 1060, Dt1(->base), FRAME_CONT); | 8242 | dasm_put(Dst, 1067, Dt1(->base), FRAME_CONT); |
| 8035 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 8243 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 8036 | dasm_put(Dst, 1084); | 8244 | dasm_put(Dst, 1091); |
| 8037 | #endif | 8245 | #endif |
| 8038 | dasm_put(Dst, 1086, Dt1(->base)); | 8246 | dasm_put(Dst, 1093, Dt1(->base)); |
| 8039 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 8247 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 8040 | dasm_put(Dst, 1094); | ||
| 8041 | #else | ||
| 8042 | dasm_put(Dst, 1101); | 8248 | dasm_put(Dst, 1101); |
| 8249 | #else | ||
| 8250 | dasm_put(Dst, 1108); | ||
| 8043 | #endif | 8251 | #endif |
| 8044 | dasm_put(Dst, 1104, Dt1(->base), Dt7(->pc), Dt1(->base), Dt1(->base)); | 8252 | dasm_put(Dst, 1111, Dt1(->base), Dt7(->pc), Dt1(->base), Dt1(->base)); |
| 8045 | #if LJ_HASJIT | 8253 | #if LJ_HASJIT |
| 8046 | dasm_put(Dst, 1152); | 8254 | dasm_put(Dst, 1159); |
| 8047 | #endif | 8255 | #endif |
| 8048 | dasm_put(Dst, 1154); | 8256 | dasm_put(Dst, 1161); |
| 8049 | #if LJ_HASJIT | 8257 | #if LJ_HASJIT |
| 8050 | dasm_put(Dst, 1156, BC_JFORI); | 8258 | dasm_put(Dst, 1163, BC_JFORI); |
| 8051 | #endif | 8259 | #endif |
| 8052 | dasm_put(Dst, 1159); | 8260 | dasm_put(Dst, 1166); |
| 8053 | #if LJ_HASJIT | 8261 | #if LJ_HASJIT |
| 8054 | dasm_put(Dst, 1161, BC_JFORI); | 8262 | dasm_put(Dst, 1168, BC_JFORI); |
| 8055 | #endif | 8263 | #endif |
| 8056 | dasm_put(Dst, 1164, BC_FORI, LJ_TFALSE, ~LJ_TISNUM+1, 31-3, Dt8(->upvalue), LJ_TTAB, Dt6(->metatable)); | 8264 | dasm_put(Dst, 1171, BC_FORI, LJ_TFALSE, ~LJ_TISNUM+1, 31-3, Dt8(->upvalue), LJ_TTAB, Dt6(->metatable)); |
| 8057 | dasm_put(Dst, 1227, LJ_TNIL, DISPATCH_GL(gcroot[GCROOT_MMNAME+MM_metatable]), Dt6(->hmask), LJ_TTAB, Dt5(->hash), Dt6(->node), 31-5, 31-3, DtB(->key), 4+offsetof(Node, key), DtB(->val), 4+offsetof(Node, val), LJ_TSTR, DtB(->next)); | 8265 | dasm_put(Dst, 1234, LJ_TNIL, DISPATCH_GL(gcroot[GCROOT_MMNAME+MM_metatable]), Dt6(->hmask), LJ_TTAB, Dt5(->hash), Dt6(->node), 31-5, 31-3, DtB(->key), 4+offsetof(Node, key), DtB(->val), 4+offsetof(Node, val), LJ_TSTR, DtB(->next)); |
| 8058 | dasm_put(Dst, 1275, LJ_TNIL, LJ_TUDATA, ~LJ_TISNUM+1, 31-2, DISPATCH_GL(gcroot[GCROOT_BASEMT]), LJ_TTAB, Dt6(->metatable), LJ_TTAB, Dt6(->marked), LJ_GC_BLACK, Dt6(->metatable)); | 8266 | dasm_put(Dst, 1282, LJ_TNIL, LJ_TUDATA, ~LJ_TISNUM+1, 31-2, DISPATCH_GL(gcroot[GCROOT_BASEMT]), LJ_TTAB, Dt6(->metatable), LJ_TTAB, Dt6(->marked), LJ_GC_BLACK, Dt6(->metatable)); |
| 8059 | dasm_put(Dst, 1330, DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist), LJ_TTAB, LJ_TSTR, DISPATCH_GL(gcroot[GCROOT_BASEMT_NUM]), Dt1(->base)); | 8267 | dasm_put(Dst, 1337, DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist), LJ_TTAB, LJ_TSTR, DISPATCH_GL(gcroot[GCROOT_BASEMT_NUM]), Dt1(->base)); |
| 8060 | dasm_put(Dst, 1390, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); | 8268 | dasm_put(Dst, 1397, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); |
| 8061 | if (LJ_DUALNUM) { | 8269 | if (LJ_DUALNUM) { |
| 8062 | dasm_put(Dst, 1400); | 8270 | dasm_put(Dst, 1407); |
| 8063 | } else { | 8271 | } else { |
| 8064 | dasm_put(Dst, 1403); | 8272 | dasm_put(Dst, 1410); |
| 8065 | } | 8273 | } |
| 8066 | dasm_put(Dst, 1406, LJ_TSTR, LJ_TTAB, Dt1(->base), Dt1(->top), LJ_TNIL, (2+1)*8, LJ_TTAB); | 8274 | dasm_put(Dst, 1413, LJ_TSTR, LJ_TTAB, Dt1(->base), Dt1(->top), LJ_TNIL, (2+1)*8, LJ_TTAB); |
| 8067 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 8275 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 8068 | dasm_put(Dst, 1457, Dt6(->metatable), Dt8(->upvalue[0])); | 8276 | dasm_put(Dst, 1464, Dt6(->metatable), Dt8(->upvalue[0])); |
| 8069 | #else | 8277 | #else |
| 8070 | dasm_put(Dst, 1466, Dt8(->upvalue[0])); | 8278 | dasm_put(Dst, 1473, Dt8(->upvalue[0])); |
| 8071 | #endif | 8279 | #endif |
| 8072 | dasm_put(Dst, 1470, (3+1)*8); | 8280 | dasm_put(Dst, 1477, (3+1)*8); |
| 8073 | if (LJ_DUALNUM) { | 8281 | if (LJ_DUALNUM) { |
| 8074 | dasm_put(Dst, 1482); | 8282 | dasm_put(Dst, 1489); |
| 8075 | } else { | 8283 | } else { |
| 8076 | dasm_put(Dst, 1484); | 8284 | dasm_put(Dst, 1491); |
| 8077 | } | 8285 | } |
| 8078 | dasm_put(Dst, 1486, LJ_TTAB); | 8286 | dasm_put(Dst, 1493, LJ_TTAB); |
| 8079 | if (LJ_DUALNUM) { | 8287 | if (LJ_DUALNUM) { |
| 8080 | dasm_put(Dst, 1493); | 8288 | dasm_put(Dst, 1500); |
| 8081 | } else { | 8289 | } else { |
| 8082 | dasm_put(Dst, 1498); | 8290 | dasm_put(Dst, 1505); |
| 8083 | } | 8291 | } |
| 8084 | dasm_put(Dst, 1510, Dt6(->asize), Dt6(->array)); | 8292 | dasm_put(Dst, 1517, Dt6(->asize), Dt6(->array)); |
| 8085 | if (!LJ_DUALNUM) { | 8293 | if (!LJ_DUALNUM) { |
| 8086 | dasm_put(Dst, 1515); | 8294 | dasm_put(Dst, 1522); |
| 8087 | } | 8295 | } |
| 8088 | dasm_put(Dst, 1517); | 8296 | dasm_put(Dst, 1524); |
| 8089 | if (LJ_DUALNUM) { | 8297 | if (LJ_DUALNUM) { |
| 8090 | dasm_put(Dst, 1521, 31-3); | 8298 | dasm_put(Dst, 1528, 31-3); |
| 8091 | } else { | 8299 | } else { |
| 8092 | dasm_put(Dst, 1526, 31-3); | 8300 | dasm_put(Dst, 1533, 31-3); |
| 8093 | } | 8301 | } |
| 8094 | dasm_put(Dst, 1530, LJ_TNIL, (0+1)*8, (2+1)*8, Dt6(->hmask), (0+1)*8, (0+1)*8, LJ_TTAB); | 8302 | dasm_put(Dst, 1537, LJ_TNIL, (0+1)*8, (2+1)*8, Dt6(->hmask), (0+1)*8, (0+1)*8, LJ_TTAB); |
| 8095 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 8303 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 8096 | dasm_put(Dst, 1578, Dt6(->metatable), Dt8(->upvalue[0])); | 8304 | dasm_put(Dst, 1585, Dt6(->metatable), Dt8(->upvalue[0])); |
| 8097 | #else | 8305 | #else |
| 8098 | dasm_put(Dst, 1587, Dt8(->upvalue[0])); | 8306 | dasm_put(Dst, 1594, Dt8(->upvalue[0])); |
| 8099 | #endif | 8307 | #endif |
| 8100 | if (LJ_DUALNUM) { | 8308 | if (LJ_DUALNUM) { |
| 8101 | dasm_put(Dst, 1591); | 8309 | dasm_put(Dst, 1598); |
| 8102 | } else { | 8310 | } else { |
| 8103 | dasm_put(Dst, 1593); | 8311 | dasm_put(Dst, 1600); |
| 8104 | } | 8312 | } |
| 8105 | dasm_put(Dst, 1595, (3+1)*8, DISPATCH_GL(hookmask), 32-HOOK_ACTIVE_SHIFT, 8+FRAME_PCALL, DISPATCH_GL(hookmask), LJ_TFUNC, 32-HOOK_ACTIVE_SHIFT, 16+FRAME_PCALL, LJ_TTHREAD, Dt1(->status), Dt1(->cframe)); | 8313 | dasm_put(Dst, 1602, (3+1)*8, DISPATCH_GL(hookmask), 32-HOOK_ACTIVE_SHIFT, 8+FRAME_PCALL, DISPATCH_GL(hookmask), LJ_TFUNC, 32-HOOK_ACTIVE_SHIFT, 16+FRAME_PCALL, LJ_TTHREAD, Dt1(->status), Dt1(->cframe)); |
| 8106 | dasm_put(Dst, 1656, Dt1(->top), LUA_YIELD, Dt1(->base), Dt1(->maxstack), Dt1(->base), Dt1(->top), Dt1(->top), Dt1(->base), LUA_YIELD, Dt1(->top), ~LJ_VMST_INTERP, Dt1(->base), DISPATCH_GL(vmstate)); | 8314 | dasm_put(Dst, 1663, Dt1(->top), LUA_YIELD, Dt1(->base), Dt1(->maxstack), Dt1(->base), Dt1(->top), Dt1(->top), Dt1(->base), LUA_YIELD, Dt1(->top), ~LJ_VMST_INTERP, Dt1(->base), DISPATCH_GL(vmstate)); |
| 8107 | dasm_put(Dst, 1718, Dt1(->maxstack), Dt1(->top), FRAME_TYPE, LJ_TTRUE, FRAME_TYPE, LJ_TFALSE, Dt1(->top), (2+1)*8, 32-3); | 8315 | dasm_put(Dst, 1725, Dt1(->maxstack), Dt1(->top), FRAME_TYPE, LJ_TTRUE, FRAME_TYPE, LJ_TFALSE, Dt1(->top), (2+1)*8, 32-3); |
| 8108 | dasm_put(Dst, 1781, Dt8(->upvalue[0].gcr), Dt1(->status), Dt1(->cframe), Dt1(->top), LUA_YIELD, Dt1(->base), Dt1(->maxstack), Dt1(->base), Dt1(->top), Dt1(->top), Dt1(->base), LUA_YIELD, Dt1(->top), ~LJ_VMST_INTERP); | 8316 | dasm_put(Dst, 1788, Dt8(->upvalue[0].gcr), Dt1(->status), Dt1(->cframe), Dt1(->top), LUA_YIELD, Dt1(->base), Dt1(->maxstack), Dt1(->base), Dt1(->top), Dt1(->top), Dt1(->base), LUA_YIELD, Dt1(->top), ~LJ_VMST_INTERP); |
| 8109 | dasm_put(Dst, 1840, Dt1(->base), DISPATCH_GL(vmstate), Dt1(->maxstack), Dt1(->top), FRAME_TYPE, 32-3, Dt1(->cframe)); | 8317 | dasm_put(Dst, 1847, Dt1(->base), DISPATCH_GL(vmstate), Dt1(->maxstack), Dt1(->top), FRAME_TYPE, 32-3, Dt1(->cframe)); |
| 8110 | dasm_put(Dst, 1897, Dt1(->base), CFRAME_RESUME, Dt1(->top), LUA_YIELD, Dt1(->cframe), Dt1(->status)); | 8318 | dasm_put(Dst, 1904, Dt1(->base), CFRAME_RESUME, Dt1(->top), LUA_YIELD, Dt1(->cframe), Dt1(->status)); |
| 8111 | if (LJ_DUALNUM) { | 8319 | if (LJ_DUALNUM) { |
| 8112 | dasm_put(Dst, 1922); | 8320 | dasm_put(Dst, 1929); |
| 8113 | } | 8321 | } |
| 8114 | dasm_put(Dst, 1943, (1+1)*8, FRAME_TYPE); | 8322 | dasm_put(Dst, 1950, (1+1)*8, FRAME_TYPE); |
| 8115 | if (LJ_DUALNUM) { | 8323 | if (LJ_DUALNUM) { |
| 8116 | dasm_put(Dst, 1985, 31-11, 32-21, 31-11); | 8324 | dasm_put(Dst, 1992, 31-11, 32-21, 31-11); |
| 8117 | dasm_put(Dst, 2067, 31-11, 32-21, 31-11); | 8325 | dasm_put(Dst, 2074, 31-11, 32-21, 31-11); |
| 8118 | } else { | 8326 | } else { |
| 8119 | dasm_put(Dst, 2121); | 8327 | dasm_put(Dst, 2128); |
| 8120 | } | 8328 | } |
| 8121 | dasm_put(Dst, 2148); | 8329 | dasm_put(Dst, 2155); |
| 8122 | dasm_put(Dst, 2207); | 8330 | dasm_put(Dst, 2214); |
| 8123 | dasm_put(Dst, 2265); | 8331 | dasm_put(Dst, 2272); |
| 8124 | dasm_put(Dst, 2321, Dt8(->upvalue[0])); | 8332 | dasm_put(Dst, 2328, Dt8(->upvalue[0])); |
| 8125 | dasm_put(Dst, 2387); | 8333 | dasm_put(Dst, 2394); |
| 8126 | if (LJ_DUALNUM) { | 8334 | if (LJ_DUALNUM) { |
| 8127 | dasm_put(Dst, 2391); | 8335 | dasm_put(Dst, 2398); |
| 8128 | } else { | 8336 | } else { |
| 8129 | dasm_put(Dst, 2406); | 8337 | dasm_put(Dst, 2413); |
| 8130 | } | 8338 | } |
| 8131 | dasm_put(Dst, 2424, DISPATCH_GL(tmptv), DISPATCH_GL(tmptv)); | 8339 | dasm_put(Dst, 2431, DISPATCH_GL(tmptv), DISPATCH_GL(tmptv)); |
| 8132 | if (!LJ_DUALNUM) { | 8340 | if (!LJ_DUALNUM) { |
| 8133 | dasm_put(Dst, 2446); | 8341 | dasm_put(Dst, 2453); |
| 8134 | } | 8342 | } |
| 8135 | dasm_put(Dst, 2451, (2+1)*8); | 8343 | dasm_put(Dst, 2458, (2+1)*8); |
| 8136 | if (LJ_DUALNUM) { | 8344 | if (LJ_DUALNUM) { |
| 8137 | dasm_put(Dst, 2455); | 8345 | dasm_put(Dst, 2462); |
| 8138 | } else { | 8346 | } else { |
| 8139 | dasm_put(Dst, 2458); | 8347 | dasm_put(Dst, 2465); |
| 8140 | } | 8348 | } |
| 8141 | dasm_put(Dst, 2460, (2+1)*8); | 8349 | dasm_put(Dst, 2467, (2+1)*8); |
| 8142 | if (LJ_DUALNUM) { | 8350 | if (LJ_DUALNUM) { |
| 8143 | dasm_put(Dst, 2482); | 8351 | dasm_put(Dst, 2489); |
| 8144 | } else { | 8352 | } else { |
| 8145 | dasm_put(Dst, 2551); | 8353 | dasm_put(Dst, 2558); |
| 8146 | } | 8354 | } |
| 8147 | if (LJ_DUALNUM) { | 8355 | if (LJ_DUALNUM) { |
| 8148 | dasm_put(Dst, 2576); | 8356 | dasm_put(Dst, 2583); |
| 8149 | } else { | 8357 | } else { |
| 8150 | dasm_put(Dst, 2645); | 8358 | dasm_put(Dst, 2652); |
| 8151 | } | 8359 | } |
| 8152 | dasm_put(Dst, 2670, LJ_TSTR, Dt5(->len), LJ_TSTR, Dt5(->len)); | 8360 | dasm_put(Dst, 2677, LJ_TSTR, Dt5(->len), LJ_TSTR, Dt5(->len)); |
| 8153 | if (LJ_DUALNUM) { | 8361 | if (LJ_DUALNUM) { |
| 8154 | dasm_put(Dst, 2697, Dt5([1]), (0+1)*8); | 8362 | dasm_put(Dst, 2704, Dt5([1]), (0+1)*8); |
| 8155 | } else { | 8363 | } else { |
| 8156 | dasm_put(Dst, 2709, Dt5([1]), 31-3); | 8364 | dasm_put(Dst, 2716, Dt5([1]), 31-3); |
| 8157 | } | 8365 | } |
| 8158 | dasm_put(Dst, 2725, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); | 8366 | dasm_put(Dst, 2732, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); |
| 8159 | if (LJ_DUALNUM) { | 8367 | if (LJ_DUALNUM) { |
| 8160 | dasm_put(Dst, 2736); | 8368 | dasm_put(Dst, 2743); |
| 8161 | } else { | 8369 | } else { |
| 8162 | dasm_put(Dst, 2744); | 8370 | dasm_put(Dst, 2751); |
| 8163 | } | 8371 | } |
| 8164 | dasm_put(Dst, 2755, Dt1(->base), Dt1(->base), LJ_TSTR, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); | 8372 | dasm_put(Dst, 2762, Dt1(->base), Dt1(->base), LJ_TSTR, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); |
| 8165 | if (!LJ_DUALNUM) { | 8373 | if (!LJ_DUALNUM) { |
| 8166 | dasm_put(Dst, 2783); | 8374 | dasm_put(Dst, 2790); |
| 8167 | } | 8375 | } |
| 8168 | dasm_put(Dst, 2785); | 8376 | dasm_put(Dst, 2792); |
| 8169 | if (LJ_DUALNUM) { | 8377 | if (LJ_DUALNUM) { |
| 8170 | dasm_put(Dst, 2791); | 8378 | dasm_put(Dst, 2798); |
| 8171 | } else { | 8379 | } else { |
| 8172 | dasm_put(Dst, 2793); | 8380 | dasm_put(Dst, 2800); |
| 8173 | } | 8381 | } |
| 8174 | dasm_put(Dst, 2795); | 8382 | dasm_put(Dst, 2802); |
| 8175 | if (LJ_DUALNUM) { | 8383 | if (LJ_DUALNUM) { |
| 8176 | dasm_put(Dst, 2799); | 8384 | dasm_put(Dst, 2806); |
| 8177 | } else { | 8385 | } else { |
| 8178 | dasm_put(Dst, 2808); | 8386 | dasm_put(Dst, 2815); |
| 8179 | } | 8387 | } |
| 8180 | dasm_put(Dst, 2819, LJ_TSTR); | 8388 | dasm_put(Dst, 2826, LJ_TSTR); |
| 8181 | if (!LJ_DUALNUM) { | 8389 | if (!LJ_DUALNUM) { |
| 8182 | dasm_put(Dst, 2824); | 8390 | dasm_put(Dst, 2831); |
| 8183 | } | 8391 | } |
| 8184 | dasm_put(Dst, 2828, Dt5(->len), sizeof(GCstr)-1, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); | 8392 | dasm_put(Dst, 2835, Dt5(->len), sizeof(GCstr)-1, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); |
| 8185 | if (LJ_DUALNUM) { | 8393 | if (LJ_DUALNUM) { |
| 8186 | dasm_put(Dst, 2878); | 8394 | dasm_put(Dst, 2885); |
| 8187 | } else { | 8395 | } else { |
| 8188 | dasm_put(Dst, 2880); | 8396 | dasm_put(Dst, 2887); |
| 8189 | } | 8397 | } |
| 8190 | dasm_put(Dst, 2882, LJ_TSTR); | 8398 | dasm_put(Dst, 2889, LJ_TSTR); |
| 8191 | if (LJ_DUALNUM) { | 8399 | if (LJ_DUALNUM) { |
| 8192 | dasm_put(Dst, 2889); | 8400 | dasm_put(Dst, 2896); |
| 8193 | } else { | 8401 | } else { |
| 8194 | dasm_put(Dst, 2893); | 8402 | dasm_put(Dst, 2900); |
| 8195 | } | 8403 | } |
| 8196 | dasm_put(Dst, 2900, Dt5(->len), DISPATCH_GL(tmpbuf.sz), Dt5([1]), DISPATCH_GL(tmpbuf.buf), DISPATCH_GL(strempty), LJ_TSTR, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, DISPATCH_GL(tmpbuf.sz)); | 8404 | dasm_put(Dst, 2907, Dt5(->len), DISPATCH_GL(tmpbuf.sz), Dt5([1]), DISPATCH_GL(tmpbuf.buf), DISPATCH_GL(strempty), LJ_TSTR, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, DISPATCH_GL(tmpbuf.sz)); |
| 8197 | dasm_put(Dst, 2953, Dt5(->len), sizeof(GCstr), DISPATCH_GL(tmpbuf.buf), DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, DISPATCH_GL(tmpbuf.sz), Dt5(->len), sizeof(GCstr), DISPATCH_GL(tmpbuf.buf)); | 8405 | dasm_put(Dst, 2960, Dt5(->len), sizeof(GCstr), DISPATCH_GL(tmpbuf.buf), DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, DISPATCH_GL(tmpbuf.sz), Dt5(->len), sizeof(GCstr), DISPATCH_GL(tmpbuf.buf)); |
| 8198 | dasm_put(Dst, 3011, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, DISPATCH_GL(tmpbuf.sz), Dt5(->len), sizeof(GCstr), DISPATCH_GL(tmpbuf.buf), LJ_TTAB); | 8406 | dasm_put(Dst, 3018, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, DISPATCH_GL(tmpbuf.sz), Dt5(->len), sizeof(GCstr), DISPATCH_GL(tmpbuf.buf), LJ_TTAB); |
| 8199 | if (LJ_DUALNUM) { | 8407 | if (LJ_DUALNUM) { |
| 8200 | dasm_put(Dst, 3080); | 8408 | dasm_put(Dst, 3087); |
| 8201 | } else { | 8409 | } else { |
| 8202 | dasm_put(Dst, 3090); | 8410 | dasm_put(Dst, 3097); |
| 8203 | } | 8411 | } |
| 8204 | dasm_put(Dst, 3103); | 8412 | dasm_put(Dst, 3110); |
| 8205 | if (LJ_DUALNUM) { | 8413 | if (LJ_DUALNUM) { |
| 8206 | dasm_put(Dst, 3109); | 8414 | dasm_put(Dst, 3116); |
| 8207 | } else { | 8415 | } else { |
| 8208 | dasm_put(Dst, 3111); | 8416 | dasm_put(Dst, 3118); |
| 8209 | } | 8417 | } |
| 8210 | dasm_put(Dst, 3113); | 8418 | dasm_put(Dst, 3120); |
| 8211 | if (LJ_DUALNUM) { | 8419 | if (LJ_DUALNUM) { |
| 8212 | dasm_put(Dst, 3117); | 8420 | dasm_put(Dst, 3124); |
| 8213 | } else { | 8421 | } else { |
| 8214 | dasm_put(Dst, 3120); | 8422 | dasm_put(Dst, 3127); |
| 8215 | } | 8423 | } |
| 8216 | dasm_put(Dst, 3126); | 8424 | dasm_put(Dst, 3133); |
| 8217 | if (LJ_DUALNUM) { | 8425 | if (LJ_DUALNUM) { |
| 8218 | dasm_put(Dst, 3131); | 8426 | dasm_put(Dst, 3138); |
| 8219 | } else { | 8427 | } else { |
| 8220 | dasm_put(Dst, 3141); | 8428 | dasm_put(Dst, 3148); |
| 8221 | } | 8429 | } |
| 8222 | dasm_put(Dst, 3154); | 8430 | dasm_put(Dst, 3161); |
| 8223 | if (LJ_DUALNUM) { | 8431 | if (LJ_DUALNUM) { |
| 8224 | dasm_put(Dst, 3160); | 8432 | dasm_put(Dst, 3167); |
| 8225 | } else { | 8433 | } else { |
| 8226 | dasm_put(Dst, 3162); | 8434 | dasm_put(Dst, 3169); |
| 8227 | } | 8435 | } |
| 8228 | dasm_put(Dst, 3164); | 8436 | dasm_put(Dst, 3171); |
| 8229 | if (LJ_DUALNUM) { | 8437 | if (LJ_DUALNUM) { |
| 8230 | dasm_put(Dst, 3168); | 8438 | dasm_put(Dst, 3175); |
| 8231 | } else { | 8439 | } else { |
| 8232 | dasm_put(Dst, 3171); | 8440 | dasm_put(Dst, 3178); |
| 8233 | } | 8441 | } |
| 8234 | dasm_put(Dst, 3177); | 8442 | dasm_put(Dst, 3184); |
| 8235 | if (LJ_DUALNUM) { | 8443 | if (LJ_DUALNUM) { |
| 8236 | dasm_put(Dst, 3182); | 8444 | dasm_put(Dst, 3189); |
| 8237 | } else { | 8445 | } else { |
| 8238 | dasm_put(Dst, 3192); | 8446 | dasm_put(Dst, 3199); |
| 8239 | } | 8447 | } |
| 8240 | dasm_put(Dst, 3205); | 8448 | dasm_put(Dst, 3212); |
| 8241 | if (LJ_DUALNUM) { | 8449 | if (LJ_DUALNUM) { |
| 8242 | dasm_put(Dst, 3211); | 8450 | dasm_put(Dst, 3218); |
| 8243 | } else { | 8451 | } else { |
| 8244 | dasm_put(Dst, 3213); | 8452 | dasm_put(Dst, 3220); |
| 8245 | } | 8453 | } |
| 8246 | dasm_put(Dst, 3215); | 8454 | dasm_put(Dst, 3222); |
| 8247 | if (LJ_DUALNUM) { | 8455 | if (LJ_DUALNUM) { |
| 8248 | dasm_put(Dst, 3219); | 8456 | dasm_put(Dst, 3226); |
| 8249 | } else { | 8457 | } else { |
| 8250 | dasm_put(Dst, 3222); | 8458 | dasm_put(Dst, 3229); |
| 8251 | } | 8459 | } |
| 8252 | dasm_put(Dst, 3228); | 8460 | dasm_put(Dst, 3235); |
| 8253 | if (LJ_DUALNUM) { | 8461 | if (LJ_DUALNUM) { |
| 8254 | dasm_put(Dst, 3233); | 8462 | dasm_put(Dst, 3240); |
| 8255 | } else { | 8463 | } else { |
| 8256 | dasm_put(Dst, 3243); | 8464 | dasm_put(Dst, 3250); |
| 8257 | } | 8465 | } |
| 8258 | dasm_put(Dst, 3256); | ||
| 8259 | if (LJ_DUALNUM) { | ||
| 8260 | dasm_put(Dst, 3263); | 8466 | dasm_put(Dst, 3263); |
| 8467 | if (LJ_DUALNUM) { | ||
| 8468 | dasm_put(Dst, 3270); | ||
| 8261 | } else { | 8469 | } else { |
| 8262 | dasm_put(Dst, 3273); | 8470 | dasm_put(Dst, 3280); |
| 8263 | } | 8471 | } |
| 8264 | dasm_put(Dst, 3286); | 8472 | dasm_put(Dst, 3293); |
| 8265 | if (LJ_DUALNUM) { | 8473 | if (LJ_DUALNUM) { |
| 8266 | dasm_put(Dst, 3290); | 8474 | dasm_put(Dst, 3297); |
| 8267 | } else { | 8475 | } else { |
| 8268 | dasm_put(Dst, 3305); | 8476 | dasm_put(Dst, 3312); |
| 8269 | } | 8477 | } |
| 8270 | dasm_put(Dst, 3326); | 8478 | dasm_put(Dst, 3333); |
| 8271 | if (LJ_DUALNUM) { | 8479 | if (LJ_DUALNUM) { |
| 8272 | dasm_put(Dst, 3331); | 8480 | dasm_put(Dst, 3338); |
| 8273 | } else { | 8481 | } else { |
| 8274 | dasm_put(Dst, 3346); | 8482 | dasm_put(Dst, 3353); |
| 8275 | } | 8483 | } |
| 8276 | dasm_put(Dst, 3367); | 8484 | dasm_put(Dst, 3374); |
| 8277 | if (LJ_DUALNUM) { | 8485 | if (LJ_DUALNUM) { |
| 8278 | dasm_put(Dst, 3372); | 8486 | dasm_put(Dst, 3379); |
| 8279 | } else { | 8487 | } else { |
| 8280 | dasm_put(Dst, 3387); | 8488 | dasm_put(Dst, 3394); |
| 8281 | } | 8489 | } |
| 8282 | dasm_put(Dst, 3408); | 8490 | dasm_put(Dst, 3415); |
| 8283 | if (LJ_DUALNUM) { | 8491 | if (LJ_DUALNUM) { |
| 8284 | dasm_put(Dst, 3413); | 8492 | dasm_put(Dst, 3420); |
| 8285 | } else { | 8493 | } else { |
| 8286 | dasm_put(Dst, 3428); | 8494 | dasm_put(Dst, 3435); |
| 8287 | } | 8495 | } |
| 8288 | dasm_put(Dst, 3449); | 8496 | dasm_put(Dst, 3456); |
| 8289 | if (LJ_DUALNUM) { | 8497 | if (LJ_DUALNUM) { |
| 8290 | dasm_put(Dst, 3453); | 8498 | dasm_put(Dst, 3460); |
| 8291 | } else { | 8499 | } else { |
| 8292 | dasm_put(Dst, 3468); | 8500 | dasm_put(Dst, 3475); |
| 8293 | } | 8501 | } |
| 8294 | dasm_put(Dst, 3489); | 8502 | dasm_put(Dst, 3496); |
| 8295 | if (LJ_DUALNUM) { | 8503 | if (LJ_DUALNUM) { |
| 8296 | dasm_put(Dst, 3494); | 8504 | dasm_put(Dst, 3501); |
| 8297 | } else { | 8505 | } else { |
| 8298 | dasm_put(Dst, 3504); | 8506 | dasm_put(Dst, 3511); |
| 8299 | } | 8507 | } |
| 8300 | if (LJ_DUALNUM) { | 8508 | if (LJ_DUALNUM) { |
| 8301 | dasm_put(Dst, 3517); | 8509 | dasm_put(Dst, 3524); |
| 8302 | } else { | 8510 | } else { |
| 8303 | dasm_put(Dst, 3520); | 8511 | dasm_put(Dst, 3527); |
| 8304 | } | 8512 | } |
| 8305 | dasm_put(Dst, 3526); | 8513 | dasm_put(Dst, 3533); |
| 8306 | if (LJ_DUALNUM) { | 8514 | if (LJ_DUALNUM) { |
| 8307 | dasm_put(Dst, 3534); | 8515 | dasm_put(Dst, 3541); |
| 8308 | } | 8516 | } |
| 8309 | dasm_put(Dst, 3542); | 8517 | dasm_put(Dst, 3549); |
| 8310 | if (LJ_DUALNUM) { | 8518 | if (LJ_DUALNUM) { |
| 8311 | dasm_put(Dst, 3544); | 8519 | dasm_put(Dst, 3551); |
| 8312 | } | 8520 | } |
| 8313 | dasm_put(Dst, 3552, Dt8(->f), 8*LUA_MINSTACK, Dt1(->maxstack), Dt1(->base), Dt1(->top), Dt1(->base), 31-3, Dt1(->top), Dt7(->pc), FRAME_TYPE, LUA_MINSTACK); | 8521 | dasm_put(Dst, 3559, Dt8(->f), 8*LUA_MINSTACK, Dt1(->maxstack), Dt1(->base), Dt1(->top), Dt1(->base), 31-3, Dt1(->top), Dt7(->pc), FRAME_TYPE, LUA_MINSTACK); |
| 8314 | dasm_put(Dst, 3615, Dt1(->base), Dt1(->base), Dt1(->top), Dt1(->base), Dt1(->top)); | 8522 | dasm_put(Dst, 3622, Dt1(->base), Dt1(->base), Dt1(->top), Dt1(->base), Dt1(->top)); |
| 8315 | #if LJ_HASJIT | 8523 | #if LJ_HASJIT |
| 8316 | dasm_put(Dst, 3641, DISPATCH_GL(hookmask), HOOK_VMEVENT, DISPATCH_GL(hookcount), HOOK_ACTIVE, LUA_MASKLINE|LUA_MASKCOUNT, DISPATCH_GL(hookcount)); | 8524 | dasm_put(Dst, 3648, DISPATCH_GL(hookmask), HOOK_VMEVENT, DISPATCH_GL(hookcount), HOOK_ACTIVE, LUA_MASKLINE|LUA_MASKCOUNT, DISPATCH_GL(hookcount)); |
| 8317 | #endif | 8525 | #endif |
| 8318 | dasm_put(Dst, 3663, DISPATCH_GL(hookmask), HOOK_ACTIVE, GG_DISP2STATIC, DISPATCH_GL(hookmask), DISPATCH_GL(hookcount), HOOK_ACTIVE, 31-LUA_HOOKLINE, DISPATCH_GL(hookcount), Dt1(->base), Dt1(->base)); | 8526 | dasm_put(Dst, 3670, DISPATCH_GL(hookmask), HOOK_ACTIVE, GG_DISP2STATIC, DISPATCH_GL(hookmask), DISPATCH_GL(hookcount), HOOK_ACTIVE, 31-LUA_HOOKLINE, DISPATCH_GL(hookcount), Dt1(->base), Dt1(->base)); |
| 8319 | dasm_put(Dst, 3710, GG_DISP2STATIC); | 8527 | dasm_put(Dst, 3717, GG_DISP2STATIC); |
| 8320 | #if LJ_HASJIT | 8528 | #if LJ_HASJIT |
| 8321 | dasm_put(Dst, 3728, GG_DISP2J, Dt7(->pc), DISPATCH_J(L), PC2PROTO(framesize), Dt1(->base), 31-3, Dt1(->top)); | 8529 | dasm_put(Dst, 3735, GG_DISP2J, Dt7(->pc), DISPATCH_J(L), PC2PROTO(framesize), Dt1(->base), 31-3, Dt1(->top)); |
| 8322 | #endif | 8530 | #endif |
| 8323 | dasm_put(Dst, 3751); | 8531 | dasm_put(Dst, 3758); |
| 8324 | #if LJ_HASJIT | 8532 | #if LJ_HASJIT |
| 8325 | dasm_put(Dst, 3754); | 8533 | dasm_put(Dst, 3761); |
| 8326 | #endif | 8534 | #endif |
| 8327 | dasm_put(Dst, 3757); | 8535 | dasm_put(Dst, 3764); |
| 8328 | #if LJ_HASJIT | 8536 | #if LJ_HASJIT |
| 8329 | dasm_put(Dst, 3759); | 8537 | dasm_put(Dst, 3766); |
| 8330 | #endif | 8538 | #endif |
| 8331 | dasm_put(Dst, 3762, Dt1(->base), Dt1(->top), Dt1(->base), Dt1(->top)); | 8539 | dasm_put(Dst, 3769, Dt1(->base), Dt1(->top), Dt1(->base), Dt1(->top)); |
| 8332 | #if LJ_HASJIT | 8540 | #if LJ_HASJIT |
| 8333 | dasm_put(Dst, 3785, -(16+32*8+32*4), 16+32*8+2*4, -GG_DISP2G-32768, ~LJ_VMST_EXIT, 16+32*8+32*4, DISPATCH_GL(vmstate), 16+0*8, 16+1*8, 16+2*8, 16+3*8, 16+4*8, 16+5*8, 16+6*8, 16+7*8, 16+32*8+32*4, 16+8*8, 16+9*8, 16+10*8, 16+11*8, 16+32*8+1*4, 16+12*8, 16+13*8); | 8541 | dasm_put(Dst, 3792, -(16+32*8+32*4), 16+32*8+2*4, -GG_DISP2G-32768, ~LJ_VMST_EXIT, 16+32*8+32*4, DISPATCH_GL(vmstate), 16+0*8, 16+1*8, 16+2*8, 16+3*8, 16+4*8, 16+5*8, 16+6*8, 16+7*8, 16+32*8+32*4, 16+8*8, 16+9*8, 16+10*8, 16+11*8, 16+32*8+1*4, 16+12*8, 16+13*8); |
| 8334 | dasm_put(Dst, 3832, 16+14*8, 16+15*8, 16+16*8, 16+17*8, 16+18*8, 16+19*8, 16+32*8+0*4, 16+20*8, 16+21*8, 16+22*8, 16+23*8, 16+24*8, 16+25*8, 16+26*8, 16+27*8, DISPATCH_GL(jit_L), 16+28*8, 16+29*8, 16+30*8, 16+31*8, DISPATCH_GL(jit_base), 32-2); | 8542 | dasm_put(Dst, 3839, 16+14*8, 16+15*8, 16+16*8, 16+17*8, 16+18*8, 16+19*8, 16+32*8+0*4, 16+20*8, 16+21*8, 16+22*8, 16+23*8, 16+24*8, 16+25*8, 16+26*8, 16+27*8, DISPATCH_GL(jit_L), 16+28*8, 16+29*8, 16+30*8, 16+31*8, DISPATCH_GL(jit_base), 32-2); |
| 8335 | dasm_put(Dst, 3881, DISPATCH_J(L), DISPATCH_GL(jit_L), DISPATCH_J(parent), Dt1(->base), GG_DISP2J, DISPATCH_J(exitno), Dt1(->cframe), Dt1(->base)); | 8543 | dasm_put(Dst, 3888, DISPATCH_J(L), DISPATCH_GL(jit_L), DISPATCH_J(parent), Dt1(->base), GG_DISP2J, DISPATCH_J(exitno), Dt1(->cframe), Dt1(->base)); |
| 8336 | #endif | 8544 | #endif |
| 8337 | dasm_put(Dst, 3909); | 8545 | dasm_put(Dst, 3916); |
| 8338 | #if LJ_HASJIT | 8546 | #if LJ_HASJIT |
| 8339 | dasm_put(Dst, 3911, -GG_DISP2G-32768, 31-3, Dt7(->pc), DISPATCH_GL(jit_L), PC2PROTO(k), LJ_TISNUM, LJ_TNIL, DISPATCH_GL(vmstate), BC_FUNCF*4); | 8547 | dasm_put(Dst, 3918, -GG_DISP2G-32768, 31-3, Dt7(->pc), DISPATCH_GL(jit_L), PC2PROTO(k), LJ_TISNUM, LJ_TNIL, DISPATCH_GL(vmstate), BC_FUNCF*4); |
| 8340 | #endif | 8548 | #endif |
| 8341 | dasm_put(Dst, 3968); | 8549 | dasm_put(Dst, 3975); |
| 8342 | #if LJ_HASJIT | 8550 | #if LJ_HASJIT |
| 8343 | dasm_put(Dst, 3976); | 8551 | dasm_put(Dst, 3983); |
| 8344 | #endif | 8552 | #endif |
| 8345 | dasm_put(Dst, 3979); | 8553 | dasm_put(Dst, 3986); |
| 8346 | #if LJ_HASJIT | 8554 | #if LJ_HASJIT |
| 8347 | dasm_put(Dst, 4059); | 8555 | dasm_put(Dst, 4066); |
| 8348 | #else | 8556 | #else |
| 8349 | dasm_put(Dst, 4081); | 8557 | dasm_put(Dst, 4088); |
| 8350 | #endif | 8558 | #endif |
| 8351 | dasm_put(Dst, 4083); | 8559 | dasm_put(Dst, 4090); |
| 8352 | #if LJ_HASFFI | 8560 | #if LJ_HASFFI |
| 8353 | #define DtE(_V) (int)(ptrdiff_t)&(((CCallState *)0)_V) | 8561 | #define DtE(_V) (int)(ptrdiff_t)&(((CTState *)0)_V) |
| 8354 | dasm_put(Dst, 4085, DtE(->spadj), DtE(->nsp), DtE(->nfpr), DtE(->stack), 31-2, DtE(->fpr[0]), DtE(->fpr[1]), DtE(->fpr[2]), DtE(->fpr[3]), DtE(->fpr[4]), DtE(->fpr[5]), DtE(->fpr[6]), DtE(->fpr[7]), DtE(->func), DtE(->gpr[1]), DtE(->gpr[2])); | 8562 | dasm_put(Dst, 4092, 56+(14-14)*4, 128+(14-14)*8, 56+(15-14)*4, 128+(15-14)*8, 56+(16-14)*4, 128+(16-14)*8, 56+(17-14)*4, 128+(17-14)*8, 56+(18-14)*4, 128+(18-14)*8, 56+(19-14)*4, 128+(19-14)*8, 56+(20-14)*4, 128+(20-14)*8, 56+(21-14)*4, 128+(21-14)*8, 56+(22-14)*4, 128+(22-14)*8, 56+(23-14)*4, 128+(23-14)*8, 56+(24-14)*4, 128+(24-14)*8); |
| 8355 | dasm_put(Dst, 4143, DtE(->gpr[3]), DtE(->gpr[4]), DtE(->gpr[5]), DtE(->gpr[6]), DtE(->gpr[7]), DtE(->gpr[0]), DtE(->gpr[0]), DtE(->fpr[0]), DtE(->gpr[1]), DtE(->gpr[2]), DtE(->gpr[3])); | 8563 | dasm_put(Dst, 4140, 56+(25-14)*4, 128+(25-14)*8, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4, 128+(31-14)*8, Dt2(->ctype_state), GG_G2DISP, DtE(->cb.slot), DtE(->cb.gpr[0]), DtE(->cb.fpr[0]), DtE(->cb.gpr[1]), DtE(->cb.fpr[1]), DtE(->cb.gpr[2])); |
| 8564 | dasm_put(Dst, 4187, DtE(->cb.fpr[2]), DtE(->cb.gpr[3]), DtE(->cb.fpr[3]), DtE(->cb.gpr[4]), DtE(->cb.fpr[4]), DtE(->cb.gpr[5]), DtE(->cb.fpr[5]), DtE(->cb.gpr[6]), DtE(->cb.fpr[6]), DtE(->cb.gpr[7]), DtE(->cb.fpr[7]), 272+8, DtE(->cb.stack), Dt1(->base), LJ_TISNUM, Dt1(->top), LJ_TNIL, ~LJ_VMST_INTERP, DISPATCH_GL(vmstate), Dt7(->pc)); | ||
| 8565 | #endif | ||
| 8566 | dasm_put(Dst, 4251); | ||
| 8567 | #if LJ_HASFFI | ||
| 8568 | dasm_put(Dst, 4253, DISPATCH_GL(ctype_state), Dt1(->base), Dt1(->top), DtE(->L), DtE(->cb.gpr[0]), DtE(->cb.fpr[0]), DtE(->cb.gpr[1])); | ||
| 8569 | #endif | ||
| 8570 | dasm_put(Dst, 4274); | ||
| 8571 | #if LJ_HASFFI | ||
| 8572 | #define DtF(_V) (int)(ptrdiff_t)&(((CCallState *)0)_V) | ||
| 8573 | dasm_put(Dst, 4276, DtF(->spadj), DtF(->nsp), DtF(->nfpr), DtF(->stack), 31-2, DtF(->fpr[0]), DtF(->fpr[1]), DtF(->fpr[2]), DtF(->fpr[3]), DtF(->fpr[4]), DtF(->fpr[5]), DtF(->fpr[6]), DtF(->fpr[7]), DtF(->func), DtF(->gpr[1]), DtF(->gpr[2])); | ||
| 8574 | dasm_put(Dst, 4334, DtF(->gpr[3]), DtF(->gpr[4]), DtF(->gpr[5]), DtF(->gpr[6]), DtF(->gpr[7]), DtF(->gpr[0]), DtF(->gpr[0]), DtF(->fpr[0]), DtF(->gpr[1]), DtF(->gpr[2]), DtF(->gpr[3])); | ||
| 8356 | #endif | 8575 | #endif |
| 8357 | } | 8576 | } |
| 8358 | 8577 | ||
| @@ -8360,7 +8579,7 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 8360 | static void build_ins(BuildCtx *ctx, BCOp op, int defop) | 8579 | static void build_ins(BuildCtx *ctx, BCOp op, int defop) |
| 8361 | { | 8580 | { |
| 8362 | int vk = 0; | 8581 | int vk = 0; |
| 8363 | dasm_put(Dst, 4175, defop); | 8582 | dasm_put(Dst, 4366, defop); |
| 8364 | 8583 | ||
| 8365 | switch (op) { | 8584 | switch (op) { |
| 8366 | 8585 | ||
| @@ -8370,224 +8589,224 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 8370 | 8589 | ||
| 8371 | case BC_ISLT: case BC_ISGE: case BC_ISLE: case BC_ISGT: | 8590 | case BC_ISLT: case BC_ISGE: case BC_ISLE: case BC_ISGT: |
| 8372 | if (LJ_DUALNUM) { | 8591 | if (LJ_DUALNUM) { |
| 8373 | dasm_put(Dst, 4177, -(BCBIAS_J*4 >> 16)); | 8592 | dasm_put(Dst, 4368, -(BCBIAS_J*4 >> 16)); |
| 8374 | if (op == BC_ISLT) { | 8593 | if (op == BC_ISLT) { |
| 8375 | dasm_put(Dst, 4194); | 8594 | dasm_put(Dst, 4385); |
| 8376 | } else if (op == BC_ISGE) { | 8595 | } else if (op == BC_ISGE) { |
| 8377 | dasm_put(Dst, 4197); | 8596 | dasm_put(Dst, 4388); |
| 8378 | } else if (op == BC_ISLE) { | 8597 | } else if (op == BC_ISLE) { |
| 8379 | dasm_put(Dst, 4200); | 8598 | dasm_put(Dst, 4391); |
| 8380 | } else { | 8599 | } else { |
| 8381 | dasm_put(Dst, 4203); | 8600 | dasm_put(Dst, 4394); |
| 8382 | } | 8601 | } |
| 8383 | dasm_put(Dst, 4206); | 8602 | dasm_put(Dst, 4397); |
| 8384 | if (op == BC_ISLT) { | 8603 | if (op == BC_ISLT) { |
| 8385 | dasm_put(Dst, 4245); | 8604 | dasm_put(Dst, 4436); |
| 8386 | } else if (op == BC_ISGE) { | 8605 | } else if (op == BC_ISGE) { |
| 8387 | dasm_put(Dst, 4248); | 8606 | dasm_put(Dst, 4439); |
| 8388 | } else if (op == BC_ISLE) { | 8607 | } else if (op == BC_ISLE) { |
| 8389 | dasm_put(Dst, 4251); | 8608 | dasm_put(Dst, 4442); |
| 8390 | } else { | 8609 | } else { |
| 8391 | dasm_put(Dst, 4255); | 8610 | dasm_put(Dst, 4446); |
| 8392 | } | 8611 | } |
| 8393 | dasm_put(Dst, 4259); | 8612 | dasm_put(Dst, 4450); |
| 8394 | } else { | 8613 | } else { |
| 8395 | dasm_put(Dst, 4262, -(BCBIAS_J*4 >> 16)); | 8614 | dasm_put(Dst, 4453, -(BCBIAS_J*4 >> 16)); |
| 8396 | if (op == BC_ISLT) { | 8615 | if (op == BC_ISLT) { |
| 8397 | dasm_put(Dst, 4279); | 8616 | dasm_put(Dst, 4470); |
| 8398 | } else if (op == BC_ISGE) { | 8617 | } else if (op == BC_ISGE) { |
| 8399 | dasm_put(Dst, 4282); | 8618 | dasm_put(Dst, 4473); |
| 8400 | } else if (op == BC_ISLE) { | 8619 | } else if (op == BC_ISLE) { |
| 8401 | dasm_put(Dst, 4285); | 8620 | dasm_put(Dst, 4476); |
| 8402 | } else { | 8621 | } else { |
| 8403 | dasm_put(Dst, 4289); | 8622 | dasm_put(Dst, 4480); |
| 8404 | } | 8623 | } |
| 8405 | dasm_put(Dst, 4293); | 8624 | dasm_put(Dst, 4484); |
| 8406 | } | 8625 | } |
| 8407 | break; | 8626 | break; |
| 8408 | 8627 | ||
| 8409 | case BC_ISEQV: case BC_ISNEV: | 8628 | case BC_ISEQV: case BC_ISNEV: |
| 8410 | vk = op == BC_ISEQV; | 8629 | vk = op == BC_ISEQV; |
| 8411 | if (LJ_DUALNUM) { | 8630 | if (LJ_DUALNUM) { |
| 8412 | dasm_put(Dst, 4306, -(BCBIAS_J*4 >> 16)); | 8631 | dasm_put(Dst, 4497, -(BCBIAS_J*4 >> 16)); |
| 8413 | if (vk) { | 8632 | if (vk) { |
| 8414 | dasm_put(Dst, 4319); | 8633 | dasm_put(Dst, 4510); |
| 8415 | } else { | 8634 | } else { |
| 8416 | dasm_put(Dst, 4322); | 8635 | dasm_put(Dst, 4513); |
| 8417 | } | 8636 | } |
| 8418 | } else { | 8637 | } else { |
| 8419 | dasm_put(Dst, 4325, -(BCBIAS_J*4 >> 16)); | 8638 | dasm_put(Dst, 4516, -(BCBIAS_J*4 >> 16)); |
| 8420 | if (vk) { | 8639 | if (vk) { |
| 8421 | dasm_put(Dst, 4342); | 8640 | dasm_put(Dst, 4533); |
| 8422 | } else { | 8641 | } else { |
| 8423 | dasm_put(Dst, 4346); | 8642 | dasm_put(Dst, 4537); |
| 8424 | } | 8643 | } |
| 8425 | dasm_put(Dst, 4350); | 8644 | dasm_put(Dst, 4541); |
| 8426 | } | 8645 | } |
| 8427 | dasm_put(Dst, 4362); | 8646 | dasm_put(Dst, 4553); |
| 8428 | if (!LJ_DUALNUM) { | 8647 | if (!LJ_DUALNUM) { |
| 8429 | dasm_put(Dst, 4364); | 8648 | dasm_put(Dst, 4555); |
| 8430 | } | 8649 | } |
| 8431 | if (LJ_HASFFI) { | 8650 | if (LJ_HASFFI) { |
| 8432 | dasm_put(Dst, 4367, LJ_TCDATA, LJ_TCDATA); | 8651 | dasm_put(Dst, 4558, LJ_TCDATA, LJ_TCDATA); |
| 8433 | } | 8652 | } |
| 8434 | dasm_put(Dst, 4372, ~LJ_TISPRI); | 8653 | dasm_put(Dst, 4563, ~LJ_TISPRI); |
| 8435 | if (LJ_HASFFI) { | 8654 | if (LJ_HASFFI) { |
| 8436 | dasm_put(Dst, 4377); | 8655 | dasm_put(Dst, 4568); |
| 8437 | } | 8656 | } |
| 8438 | dasm_put(Dst, 4379, ~LJ_TISTABUD); | 8657 | dasm_put(Dst, 4570, ~LJ_TISTABUD); |
| 8439 | if (LJ_HASFFI) { | 8658 | if (LJ_HASFFI) { |
| 8440 | dasm_put(Dst, 4382); | 8659 | dasm_put(Dst, 4573); |
| 8441 | } | 8660 | } |
| 8442 | dasm_put(Dst, 4385); | 8661 | dasm_put(Dst, 4576); |
| 8443 | if (vk) { | 8662 | if (vk) { |
| 8444 | dasm_put(Dst, 4393); | 8663 | dasm_put(Dst, 4584); |
| 8445 | } else { | 8664 | } else { |
| 8446 | dasm_put(Dst, 4398); | 8665 | dasm_put(Dst, 4589); |
| 8447 | } | 8666 | } |
| 8448 | if (LJ_DUALNUM) { | 8667 | if (LJ_DUALNUM) { |
| 8449 | dasm_put(Dst, 4403); | 8668 | dasm_put(Dst, 4594); |
| 8450 | } else { | 8669 | } else { |
| 8451 | dasm_put(Dst, 4418); | 8670 | dasm_put(Dst, 4609); |
| 8452 | } | 8671 | } |
| 8453 | dasm_put(Dst, 4421, Dt6(->metatable), 1-vk, Dt6(->nomm), 1<<MM_eq); | 8672 | dasm_put(Dst, 4612, Dt6(->metatable), 1-vk, Dt6(->nomm), 1<<MM_eq); |
| 8454 | break; | 8673 | break; |
| 8455 | 8674 | ||
| 8456 | case BC_ISEQS: case BC_ISNES: | 8675 | case BC_ISEQS: case BC_ISNES: |
| 8457 | vk = op == BC_ISEQS; | 8676 | vk = op == BC_ISEQS; |
| 8458 | dasm_put(Dst, 4440, 32-1); | 8677 | dasm_put(Dst, 4631, 32-1); |
| 8459 | if (LJ_HASFFI) { | 8678 | if (LJ_HASFFI) { |
| 8460 | dasm_put(Dst, 4448, LJ_TCDATA); | 8679 | dasm_put(Dst, 4639, LJ_TCDATA); |
| 8461 | } | 8680 | } |
| 8462 | dasm_put(Dst, 4451, LJ_TSTR); | 8681 | dasm_put(Dst, 4642, LJ_TSTR); |
| 8463 | if (LJ_HASFFI) { | 8682 | if (LJ_HASFFI) { |
| 8464 | dasm_put(Dst, 4455); | 8683 | dasm_put(Dst, 4646); |
| 8465 | } | 8684 | } |
| 8466 | dasm_put(Dst, 4458, -(BCBIAS_J*4 >> 16)); | 8685 | dasm_put(Dst, 4649, -(BCBIAS_J*4 >> 16)); |
| 8467 | if (vk) { | 8686 | if (vk) { |
| 8468 | dasm_put(Dst, 4466); | 8687 | dasm_put(Dst, 4657); |
| 8469 | } else { | 8688 | } else { |
| 8470 | dasm_put(Dst, 4468); | 8689 | dasm_put(Dst, 4659); |
| 8471 | } | 8690 | } |
| 8472 | dasm_put(Dst, 4470); | 8691 | dasm_put(Dst, 4661); |
| 8473 | break; | 8692 | break; |
| 8474 | 8693 | ||
| 8475 | case BC_ISEQN: case BC_ISNEN: | 8694 | case BC_ISEQN: case BC_ISNEN: |
| 8476 | vk = op == BC_ISEQN; | 8695 | vk = op == BC_ISEQN; |
| 8477 | if (LJ_DUALNUM) { | 8696 | if (LJ_DUALNUM) { |
| 8478 | dasm_put(Dst, 4482, -(BCBIAS_J*4 >> 16)); | 8697 | dasm_put(Dst, 4673, -(BCBIAS_J*4 >> 16)); |
| 8479 | if (vk) { | 8698 | if (vk) { |
| 8480 | dasm_put(Dst, 4494); | 8699 | dasm_put(Dst, 4685); |
| 8481 | } else { | 8700 | } else { |
| 8482 | dasm_put(Dst, 4496); | 8701 | dasm_put(Dst, 4687); |
| 8483 | } | 8702 | } |
| 8484 | dasm_put(Dst, 4498); | 8703 | dasm_put(Dst, 4689); |
| 8485 | } else { | 8704 | } else { |
| 8486 | if (vk) { | 8705 | if (vk) { |
| 8487 | dasm_put(Dst, 4505); | 8706 | dasm_put(Dst, 4696); |
| 8488 | } else { | 8707 | } else { |
| 8489 | dasm_put(Dst, 4507); | 8708 | dasm_put(Dst, 4698); |
| 8490 | } | 8709 | } |
| 8491 | dasm_put(Dst, 4509, -(BCBIAS_J*4 >> 16)); | 8710 | dasm_put(Dst, 4700, -(BCBIAS_J*4 >> 16)); |
| 8492 | } | 8711 | } |
| 8493 | if (vk) { | 8712 | if (vk) { |
| 8494 | dasm_put(Dst, 4522); | 8713 | dasm_put(Dst, 4713); |
| 8495 | if (!LJ_HASFFI) { | 8714 | if (!LJ_HASFFI) { |
| 8496 | dasm_put(Dst, 4527); | 8715 | dasm_put(Dst, 4718); |
| 8497 | } | 8716 | } |
| 8498 | } else { | 8717 | } else { |
| 8499 | dasm_put(Dst, 4529); | 8718 | dasm_put(Dst, 4720); |
| 8500 | if (!LJ_HASFFI) { | 8719 | if (!LJ_HASFFI) { |
| 8501 | dasm_put(Dst, 4533); | 8720 | dasm_put(Dst, 4724); |
| 8502 | } | 8721 | } |
| 8503 | dasm_put(Dst, 4535); | 8722 | dasm_put(Dst, 4726); |
| 8504 | } | 8723 | } |
| 8505 | dasm_put(Dst, 4538); | 8724 | dasm_put(Dst, 4729); |
| 8506 | if (LJ_HASFFI) { | 8725 | if (LJ_HASFFI) { |
| 8507 | dasm_put(Dst, 4549, LJ_TCDATA); | 8726 | dasm_put(Dst, 4740, LJ_TCDATA); |
| 8508 | } | 8727 | } |
| 8509 | if (LJ_DUALNUM) { | 8728 | if (LJ_DUALNUM) { |
| 8510 | dasm_put(Dst, 4557); | 8729 | dasm_put(Dst, 4748); |
| 8511 | } | 8730 | } |
| 8512 | break; | 8731 | break; |
| 8513 | 8732 | ||
| 8514 | case BC_ISEQP: case BC_ISNEP: | 8733 | case BC_ISEQP: case BC_ISNEP: |
| 8515 | vk = op == BC_ISEQP; | 8734 | vk = op == BC_ISEQP; |
| 8516 | dasm_put(Dst, 4581, 32-3); | 8735 | dasm_put(Dst, 4772, 32-3); |
| 8517 | if (LJ_HASFFI) { | 8736 | if (LJ_HASFFI) { |
| 8518 | dasm_put(Dst, 4588, LJ_TCDATA); | 8737 | dasm_put(Dst, 4779, LJ_TCDATA); |
| 8519 | } | 8738 | } |
| 8520 | dasm_put(Dst, 4591); | 8739 | dasm_put(Dst, 4782); |
| 8521 | if (LJ_HASFFI) { | 8740 | if (LJ_HASFFI) { |
| 8522 | dasm_put(Dst, 4593); | 8741 | dasm_put(Dst, 4784); |
| 8523 | } | 8742 | } |
| 8524 | dasm_put(Dst, 4596, -(BCBIAS_J*4 >> 16)); | 8743 | dasm_put(Dst, 4787, -(BCBIAS_J*4 >> 16)); |
| 8525 | if (vk) { | 8744 | if (vk) { |
| 8526 | dasm_put(Dst, 4602); | 8745 | dasm_put(Dst, 4793); |
| 8527 | } else { | 8746 | } else { |
| 8528 | dasm_put(Dst, 4604); | 8747 | dasm_put(Dst, 4795); |
| 8529 | } | 8748 | } |
| 8530 | dasm_put(Dst, 4606); | 8749 | dasm_put(Dst, 4797); |
| 8531 | break; | 8750 | break; |
| 8532 | 8751 | ||
| 8533 | /* -- Unary test and copy ops ------------------------------------------- */ | 8752 | /* -- Unary test and copy ops ------------------------------------------- */ |
| 8534 | 8753 | ||
| 8535 | case BC_ISTC: case BC_ISFC: case BC_IST: case BC_ISF: | 8754 | case BC_ISTC: case BC_ISFC: case BC_IST: case BC_ISF: |
| 8536 | dasm_put(Dst, 4618); | 8755 | dasm_put(Dst, 4809); |
| 8537 | if (op == BC_IST || op == BC_ISF) { | 8756 | if (op == BC_IST || op == BC_ISF) { |
| 8538 | dasm_put(Dst, 4622, LJ_TTRUE, -(BCBIAS_J*4 >> 16)); | 8757 | dasm_put(Dst, 4813, LJ_TTRUE, -(BCBIAS_J*4 >> 16)); |
| 8539 | if (op == BC_IST) { | 8758 | if (op == BC_IST) { |
| 8540 | dasm_put(Dst, 4629); | 8759 | dasm_put(Dst, 4820); |
| 8541 | } else { | 8760 | } else { |
| 8542 | dasm_put(Dst, 4631); | 8761 | dasm_put(Dst, 4822); |
| 8543 | } | 8762 | } |
| 8544 | dasm_put(Dst, 4633); | 8763 | dasm_put(Dst, 4824); |
| 8545 | } else { | 8764 | } else { |
| 8546 | dasm_put(Dst, 4635, LJ_TFALSE); | 8765 | dasm_put(Dst, 4826, LJ_TFALSE); |
| 8547 | if (op == BC_ISTC) { | 8766 | if (op == BC_ISTC) { |
| 8548 | dasm_put(Dst, 4640); | 8767 | dasm_put(Dst, 4831); |
| 8549 | } else { | 8768 | } else { |
| 8550 | dasm_put(Dst, 4643); | 8769 | dasm_put(Dst, 4834); |
| 8551 | } | 8770 | } |
| 8552 | dasm_put(Dst, 4646, -(BCBIAS_J*4 >> 16)); | 8771 | dasm_put(Dst, 4837, -(BCBIAS_J*4 >> 16)); |
| 8553 | } | 8772 | } |
| 8554 | dasm_put(Dst, 4653); | 8773 | dasm_put(Dst, 4844); |
| 8555 | break; | 8774 | break; |
| 8556 | 8775 | ||
| 8557 | /* -- Unary ops --------------------------------------------------------- */ | 8776 | /* -- Unary ops --------------------------------------------------------- */ |
| 8558 | 8777 | ||
| 8559 | case BC_MOV: | 8778 | case BC_MOV: |
| 8560 | dasm_put(Dst, 4664); | 8779 | dasm_put(Dst, 4855); |
| 8561 | break; | 8780 | break; |
| 8562 | case BC_NOT: | 8781 | case BC_NOT: |
| 8563 | dasm_put(Dst, 4677, LJ_TTRUE); | 8782 | dasm_put(Dst, 4868, LJ_TTRUE); |
| 8564 | break; | 8783 | break; |
| 8565 | case BC_UNM: | 8784 | case BC_UNM: |
| 8566 | dasm_put(Dst, 4693); | 8785 | dasm_put(Dst, 4884); |
| 8567 | if (LJ_DUALNUM) { | 8786 | if (LJ_DUALNUM) { |
| 8568 | dasm_put(Dst, 4697); | 8787 | dasm_put(Dst, 4888); |
| 8569 | } | 8788 | } |
| 8570 | dasm_put(Dst, 4725); | 8789 | dasm_put(Dst, 4916); |
| 8571 | if (LJ_DUALNUM) { | 8790 | if (LJ_DUALNUM) { |
| 8572 | dasm_put(Dst, 4735); | 8791 | dasm_put(Dst, 4926); |
| 8573 | } else { | 8792 | } else { |
| 8574 | dasm_put(Dst, 4738); | 8793 | dasm_put(Dst, 4929); |
| 8575 | } | 8794 | } |
| 8576 | break; | 8795 | break; |
| 8577 | case BC_LEN: | 8796 | case BC_LEN: |
| 8578 | dasm_put(Dst, 4747, LJ_TSTR, Dt5(->len)); | 8797 | dasm_put(Dst, 4938, LJ_TSTR, Dt5(->len)); |
| 8579 | if (LJ_DUALNUM) { | 8798 | if (LJ_DUALNUM) { |
| 8580 | dasm_put(Dst, 4757); | 8799 | dasm_put(Dst, 4948); |
| 8581 | } else { | 8800 | } else { |
| 8582 | dasm_put(Dst, 4762); | 8801 | dasm_put(Dst, 4953); |
| 8583 | } | 8802 | } |
| 8584 | dasm_put(Dst, 4769, LJ_TTAB); | 8803 | dasm_put(Dst, 4960, LJ_TTAB); |
| 8585 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 8804 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 8586 | dasm_put(Dst, 4783, Dt6(->metatable)); | 8805 | dasm_put(Dst, 4974, Dt6(->metatable)); |
| 8587 | #endif | 8806 | #endif |
| 8588 | dasm_put(Dst, 4790); | 8807 | dasm_put(Dst, 4981); |
| 8589 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 8808 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 8590 | dasm_put(Dst, 4796, Dt6(->nomm), 1<<MM_len); | 8809 | dasm_put(Dst, 4987, Dt6(->nomm), 1<<MM_len); |
| 8591 | #endif | 8810 | #endif |
| 8592 | break; | 8811 | break; |
| 8593 | 8812 | ||
| @@ -8599,77 +8818,77 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 8599 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8818 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8600 | switch (vk) { | 8819 | switch (vk) { |
| 8601 | case 0: | 8820 | case 0: |
| 8602 | dasm_put(Dst, 4806); | 8821 | dasm_put(Dst, 4997); |
| 8603 | break; | 8822 | break; |
| 8604 | case 1: | 8823 | case 1: |
| 8605 | dasm_put(Dst, 4812); | 8824 | dasm_put(Dst, 5003); |
| 8606 | break; | 8825 | break; |
| 8607 | default: | 8826 | default: |
| 8608 | dasm_put(Dst, 4818); | 8827 | dasm_put(Dst, 5009); |
| 8609 | break; | 8828 | break; |
| 8610 | } | 8829 | } |
| 8611 | dasm_put(Dst, 4824); | 8830 | dasm_put(Dst, 5015); |
| 8612 | switch (vk) { | 8831 | switch (vk) { |
| 8613 | case 0: | 8832 | case 0: |
| 8614 | dasm_put(Dst, 4851); | 8833 | dasm_put(Dst, 5042); |
| 8615 | break; | 8834 | break; |
| 8616 | case 1: | 8835 | case 1: |
| 8617 | dasm_put(Dst, 4854); | 8836 | dasm_put(Dst, 5045); |
| 8618 | break; | 8837 | break; |
| 8619 | default: | 8838 | default: |
| 8620 | dasm_put(Dst, 4857); | 8839 | dasm_put(Dst, 5048); |
| 8621 | break; | 8840 | break; |
| 8622 | } | 8841 | } |
| 8623 | dasm_put(Dst, 4860); | 8842 | dasm_put(Dst, 5051); |
| 8624 | if (vk == 1) { | 8843 | if (vk == 1) { |
| 8625 | dasm_put(Dst, 4862); | 8844 | dasm_put(Dst, 5053); |
| 8626 | } else { | 8845 | } else { |
| 8627 | dasm_put(Dst, 4866); | 8846 | dasm_put(Dst, 5057); |
| 8628 | } | 8847 | } |
| 8629 | switch (vk) { | 8848 | switch (vk) { |
| 8630 | case 0: | 8849 | case 0: |
| 8631 | dasm_put(Dst, 4870); | 8850 | dasm_put(Dst, 5061); |
| 8632 | break; | 8851 | break; |
| 8633 | case 1: | 8852 | case 1: |
| 8634 | dasm_put(Dst, 4873); | 8853 | dasm_put(Dst, 5064); |
| 8635 | break; | 8854 | break; |
| 8636 | default: | 8855 | default: |
| 8637 | dasm_put(Dst, 4876); | 8856 | dasm_put(Dst, 5067); |
| 8638 | break; | 8857 | break; |
| 8639 | } | 8858 | } |
| 8640 | dasm_put(Dst, 4879); | 8859 | dasm_put(Dst, 5070); |
| 8641 | } else { | 8860 | } else { |
| 8642 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8861 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8643 | switch (vk) { | 8862 | switch (vk) { |
| 8644 | case 0: | 8863 | case 0: |
| 8645 | dasm_put(Dst, 4886); | 8864 | dasm_put(Dst, 5077); |
| 8646 | if (LJ_DUALNUM) { | 8865 | if (LJ_DUALNUM) { |
| 8647 | dasm_put(Dst, 4888); | 8866 | dasm_put(Dst, 5079); |
| 8648 | } | 8867 | } |
| 8649 | dasm_put(Dst, 4890); | 8868 | dasm_put(Dst, 5081); |
| 8650 | if (LJ_DUALNUM) { | 8869 | if (LJ_DUALNUM) { |
| 8651 | dasm_put(Dst, 4893); | 8870 | dasm_put(Dst, 5084); |
| 8652 | } else { | 8871 | } else { |
| 8653 | dasm_put(Dst, 4899); | 8872 | dasm_put(Dst, 5090); |
| 8654 | } | 8873 | } |
| 8655 | break; | 8874 | break; |
| 8656 | case 1: | 8875 | case 1: |
| 8657 | dasm_put(Dst, 4903); | 8876 | dasm_put(Dst, 5094); |
| 8658 | if (LJ_DUALNUM) { | 8877 | if (LJ_DUALNUM) { |
| 8659 | dasm_put(Dst, 4905); | 8878 | dasm_put(Dst, 5096); |
| 8660 | } | 8879 | } |
| 8661 | dasm_put(Dst, 4907); | 8880 | dasm_put(Dst, 5098); |
| 8662 | if (LJ_DUALNUM) { | 8881 | if (LJ_DUALNUM) { |
| 8663 | dasm_put(Dst, 4910); | 8882 | dasm_put(Dst, 5101); |
| 8664 | } else { | 8883 | } else { |
| 8665 | dasm_put(Dst, 4916); | 8884 | dasm_put(Dst, 5107); |
| 8666 | } | 8885 | } |
| 8667 | break; | 8886 | break; |
| 8668 | default: | 8887 | default: |
| 8669 | dasm_put(Dst, 4920); | 8888 | dasm_put(Dst, 5111); |
| 8670 | break; | 8889 | break; |
| 8671 | } | 8890 | } |
| 8672 | dasm_put(Dst, 4930); | 8891 | dasm_put(Dst, 5121); |
| 8673 | } | 8892 | } |
| 8674 | break; | 8893 | break; |
| 8675 | case BC_SUBVN: case BC_SUBNV: case BC_SUBVV: | 8894 | case BC_SUBVN: case BC_SUBNV: case BC_SUBVV: |
| @@ -8677,77 +8896,77 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 8677 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8896 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8678 | switch (vk) { | 8897 | switch (vk) { |
| 8679 | case 0: | 8898 | case 0: |
| 8680 | dasm_put(Dst, 4943); | 8899 | dasm_put(Dst, 5134); |
| 8681 | break; | 8900 | break; |
| 8682 | case 1: | 8901 | case 1: |
| 8683 | dasm_put(Dst, 4949); | 8902 | dasm_put(Dst, 5140); |
| 8684 | break; | 8903 | break; |
| 8685 | default: | 8904 | default: |
| 8686 | dasm_put(Dst, 4955); | 8905 | dasm_put(Dst, 5146); |
| 8687 | break; | 8906 | break; |
| 8688 | } | 8907 | } |
| 8689 | dasm_put(Dst, 4961); | 8908 | dasm_put(Dst, 5152); |
| 8690 | switch (vk) { | 8909 | switch (vk) { |
| 8691 | case 0: | 8910 | case 0: |
| 8692 | dasm_put(Dst, 4988); | 8911 | dasm_put(Dst, 5179); |
| 8693 | break; | 8912 | break; |
| 8694 | case 1: | 8913 | case 1: |
| 8695 | dasm_put(Dst, 4991); | 8914 | dasm_put(Dst, 5182); |
| 8696 | break; | 8915 | break; |
| 8697 | default: | 8916 | default: |
| 8698 | dasm_put(Dst, 4994); | 8917 | dasm_put(Dst, 5185); |
| 8699 | break; | 8918 | break; |
| 8700 | } | 8919 | } |
| 8701 | dasm_put(Dst, 4997); | 8920 | dasm_put(Dst, 5188); |
| 8702 | if (vk == 1) { | 8921 | if (vk == 1) { |
| 8703 | dasm_put(Dst, 4999); | 8922 | dasm_put(Dst, 5190); |
| 8704 | } else { | 8923 | } else { |
| 8705 | dasm_put(Dst, 5003); | 8924 | dasm_put(Dst, 5194); |
| 8706 | } | 8925 | } |
| 8707 | switch (vk) { | 8926 | switch (vk) { |
| 8708 | case 0: | 8927 | case 0: |
| 8709 | dasm_put(Dst, 5007); | 8928 | dasm_put(Dst, 5198); |
| 8710 | break; | 8929 | break; |
| 8711 | case 1: | 8930 | case 1: |
| 8712 | dasm_put(Dst, 5010); | 8931 | dasm_put(Dst, 5201); |
| 8713 | break; | 8932 | break; |
| 8714 | default: | 8933 | default: |
| 8715 | dasm_put(Dst, 5013); | 8934 | dasm_put(Dst, 5204); |
| 8716 | break; | 8935 | break; |
| 8717 | } | 8936 | } |
| 8718 | dasm_put(Dst, 5016); | 8937 | dasm_put(Dst, 5207); |
| 8719 | } else { | 8938 | } else { |
| 8720 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8939 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8721 | switch (vk) { | 8940 | switch (vk) { |
| 8722 | case 0: | 8941 | case 0: |
| 8723 | dasm_put(Dst, 5023); | 8942 | dasm_put(Dst, 5214); |
| 8724 | if (LJ_DUALNUM) { | 8943 | if (LJ_DUALNUM) { |
| 8725 | dasm_put(Dst, 5025); | 8944 | dasm_put(Dst, 5216); |
| 8726 | } | 8945 | } |
| 8727 | dasm_put(Dst, 5027); | 8946 | dasm_put(Dst, 5218); |
| 8728 | if (LJ_DUALNUM) { | 8947 | if (LJ_DUALNUM) { |
| 8729 | dasm_put(Dst, 5030); | 8948 | dasm_put(Dst, 5221); |
| 8730 | } else { | 8949 | } else { |
| 8731 | dasm_put(Dst, 5036); | 8950 | dasm_put(Dst, 5227); |
| 8732 | } | 8951 | } |
| 8733 | break; | 8952 | break; |
| 8734 | case 1: | 8953 | case 1: |
| 8735 | dasm_put(Dst, 5040); | 8954 | dasm_put(Dst, 5231); |
| 8736 | if (LJ_DUALNUM) { | 8955 | if (LJ_DUALNUM) { |
| 8737 | dasm_put(Dst, 5042); | 8956 | dasm_put(Dst, 5233); |
| 8738 | } | 8957 | } |
| 8739 | dasm_put(Dst, 5044); | 8958 | dasm_put(Dst, 5235); |
| 8740 | if (LJ_DUALNUM) { | 8959 | if (LJ_DUALNUM) { |
| 8741 | dasm_put(Dst, 5047); | 8960 | dasm_put(Dst, 5238); |
| 8742 | } else { | 8961 | } else { |
| 8743 | dasm_put(Dst, 5053); | 8962 | dasm_put(Dst, 5244); |
| 8744 | } | 8963 | } |
| 8745 | break; | 8964 | break; |
| 8746 | default: | 8965 | default: |
| 8747 | dasm_put(Dst, 5057); | 8966 | dasm_put(Dst, 5248); |
| 8748 | break; | 8967 | break; |
| 8749 | } | 8968 | } |
| 8750 | dasm_put(Dst, 5067); | 8969 | dasm_put(Dst, 5258); |
| 8751 | } | 8970 | } |
| 8752 | break; | 8971 | break; |
| 8753 | case BC_MULVN: case BC_MULNV: case BC_MULVV: | 8972 | case BC_MULVN: case BC_MULNV: case BC_MULVV: |
| @@ -8755,188 +8974,188 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 8755 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8974 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8756 | switch (vk) { | 8975 | switch (vk) { |
| 8757 | case 0: | 8976 | case 0: |
| 8758 | dasm_put(Dst, 5080); | 8977 | dasm_put(Dst, 5271); |
| 8759 | break; | 8978 | break; |
| 8760 | case 1: | 8979 | case 1: |
| 8761 | dasm_put(Dst, 5086); | 8980 | dasm_put(Dst, 5277); |
| 8762 | break; | 8981 | break; |
| 8763 | default: | 8982 | default: |
| 8764 | dasm_put(Dst, 5092); | 8983 | dasm_put(Dst, 5283); |
| 8765 | break; | 8984 | break; |
| 8766 | } | 8985 | } |
| 8767 | dasm_put(Dst, 5098); | 8986 | dasm_put(Dst, 5289); |
| 8768 | switch (vk) { | 8987 | switch (vk) { |
| 8769 | case 0: | 8988 | case 0: |
| 8770 | dasm_put(Dst, 5125); | 8989 | dasm_put(Dst, 5316); |
| 8771 | break; | 8990 | break; |
| 8772 | case 1: | 8991 | case 1: |
| 8773 | dasm_put(Dst, 5128); | 8992 | dasm_put(Dst, 5319); |
| 8774 | break; | 8993 | break; |
| 8775 | default: | 8994 | default: |
| 8776 | dasm_put(Dst, 5131); | 8995 | dasm_put(Dst, 5322); |
| 8777 | break; | 8996 | break; |
| 8778 | } | 8997 | } |
| 8779 | dasm_put(Dst, 5134); | 8998 | dasm_put(Dst, 5325); |
| 8780 | if (vk == 1) { | 8999 | if (vk == 1) { |
| 8781 | dasm_put(Dst, 5136); | 9000 | dasm_put(Dst, 5327); |
| 8782 | } else { | 9001 | } else { |
| 8783 | dasm_put(Dst, 5140); | 9002 | dasm_put(Dst, 5331); |
| 8784 | } | 9003 | } |
| 8785 | switch (vk) { | 9004 | switch (vk) { |
| 8786 | case 0: | 9005 | case 0: |
| 8787 | dasm_put(Dst, 5144); | 9006 | dasm_put(Dst, 5335); |
| 8788 | break; | 9007 | break; |
| 8789 | case 1: | 9008 | case 1: |
| 8790 | dasm_put(Dst, 5147); | 9009 | dasm_put(Dst, 5338); |
| 8791 | break; | 9010 | break; |
| 8792 | default: | 9011 | default: |
| 8793 | dasm_put(Dst, 5150); | 9012 | dasm_put(Dst, 5341); |
| 8794 | break; | 9013 | break; |
| 8795 | } | 9014 | } |
| 8796 | dasm_put(Dst, 5153); | 9015 | dasm_put(Dst, 5344); |
| 8797 | } else { | 9016 | } else { |
| 8798 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 9017 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8799 | switch (vk) { | 9018 | switch (vk) { |
| 8800 | case 0: | 9019 | case 0: |
| 8801 | dasm_put(Dst, 5160); | 9020 | dasm_put(Dst, 5351); |
| 8802 | if (LJ_DUALNUM) { | 9021 | if (LJ_DUALNUM) { |
| 8803 | dasm_put(Dst, 5162); | 9022 | dasm_put(Dst, 5353); |
| 8804 | } | 9023 | } |
| 8805 | dasm_put(Dst, 5164); | 9024 | dasm_put(Dst, 5355); |
| 8806 | if (LJ_DUALNUM) { | 9025 | if (LJ_DUALNUM) { |
| 8807 | dasm_put(Dst, 5167); | 9026 | dasm_put(Dst, 5358); |
| 8808 | } else { | 9027 | } else { |
| 8809 | dasm_put(Dst, 5173); | 9028 | dasm_put(Dst, 5364); |
| 8810 | } | 9029 | } |
| 8811 | break; | 9030 | break; |
| 8812 | case 1: | 9031 | case 1: |
| 8813 | dasm_put(Dst, 5177); | 9032 | dasm_put(Dst, 5368); |
| 8814 | if (LJ_DUALNUM) { | 9033 | if (LJ_DUALNUM) { |
| 8815 | dasm_put(Dst, 5179); | 9034 | dasm_put(Dst, 5370); |
| 8816 | } | 9035 | } |
| 8817 | dasm_put(Dst, 5181); | 9036 | dasm_put(Dst, 5372); |
| 8818 | if (LJ_DUALNUM) { | 9037 | if (LJ_DUALNUM) { |
| 8819 | dasm_put(Dst, 5184); | 9038 | dasm_put(Dst, 5375); |
| 8820 | } else { | 9039 | } else { |
| 8821 | dasm_put(Dst, 5190); | 9040 | dasm_put(Dst, 5381); |
| 8822 | } | 9041 | } |
| 8823 | break; | 9042 | break; |
| 8824 | default: | 9043 | default: |
| 8825 | dasm_put(Dst, 5194); | 9044 | dasm_put(Dst, 5385); |
| 8826 | break; | 9045 | break; |
| 8827 | } | 9046 | } |
| 8828 | dasm_put(Dst, 5204); | 9047 | dasm_put(Dst, 5395); |
| 8829 | } | 9048 | } |
| 8830 | break; | 9049 | break; |
| 8831 | case BC_DIVVN: case BC_DIVNV: case BC_DIVVV: | 9050 | case BC_DIVVN: case BC_DIVNV: case BC_DIVVV: |
| 8832 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 9051 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8833 | switch (vk) { | 9052 | switch (vk) { |
| 8834 | case 0: | 9053 | case 0: |
| 8835 | dasm_put(Dst, 5217); | 9054 | dasm_put(Dst, 5408); |
| 8836 | if (LJ_DUALNUM) { | 9055 | if (LJ_DUALNUM) { |
| 8837 | dasm_put(Dst, 5219); | 9056 | dasm_put(Dst, 5410); |
| 8838 | } | 9057 | } |
| 8839 | dasm_put(Dst, 5221); | 9058 | dasm_put(Dst, 5412); |
| 8840 | if (LJ_DUALNUM) { | 9059 | if (LJ_DUALNUM) { |
| 8841 | dasm_put(Dst, 5224); | 9060 | dasm_put(Dst, 5415); |
| 8842 | } else { | 9061 | } else { |
| 8843 | dasm_put(Dst, 5230); | 9062 | dasm_put(Dst, 5421); |
| 8844 | } | 9063 | } |
| 8845 | break; | 9064 | break; |
| 8846 | case 1: | 9065 | case 1: |
| 8847 | dasm_put(Dst, 5234); | 9066 | dasm_put(Dst, 5425); |
| 8848 | if (LJ_DUALNUM) { | 9067 | if (LJ_DUALNUM) { |
| 8849 | dasm_put(Dst, 5236); | 9068 | dasm_put(Dst, 5427); |
| 8850 | } | 9069 | } |
| 8851 | dasm_put(Dst, 5238); | 9070 | dasm_put(Dst, 5429); |
| 8852 | if (LJ_DUALNUM) { | 9071 | if (LJ_DUALNUM) { |
| 8853 | dasm_put(Dst, 5241); | 9072 | dasm_put(Dst, 5432); |
| 8854 | } else { | 9073 | } else { |
| 8855 | dasm_put(Dst, 5247); | 9074 | dasm_put(Dst, 5438); |
| 8856 | } | 9075 | } |
| 8857 | break; | 9076 | break; |
| 8858 | default: | 9077 | default: |
| 8859 | dasm_put(Dst, 5251); | 9078 | dasm_put(Dst, 5442); |
| 8860 | break; | 9079 | break; |
| 8861 | } | 9080 | } |
| 8862 | dasm_put(Dst, 5261); | 9081 | dasm_put(Dst, 5452); |
| 8863 | break; | 9082 | break; |
| 8864 | case BC_MODVN: | 9083 | case BC_MODVN: |
| 8865 | if (LJ_DUALNUM) { | 9084 | if (LJ_DUALNUM) { |
| 8866 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 9085 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8867 | switch (vk) { | 9086 | switch (vk) { |
| 8868 | case 0: | 9087 | case 0: |
| 8869 | dasm_put(Dst, 5274); | 9088 | dasm_put(Dst, 5465); |
| 8870 | break; | 9089 | break; |
| 8871 | case 1: | 9090 | case 1: |
| 8872 | dasm_put(Dst, 5280); | 9091 | dasm_put(Dst, 5471); |
| 8873 | break; | 9092 | break; |
| 8874 | default: | 9093 | default: |
| 8875 | dasm_put(Dst, 5286); | 9094 | dasm_put(Dst, 5477); |
| 8876 | break; | 9095 | break; |
| 8877 | } | 9096 | } |
| 8878 | dasm_put(Dst, 5292); | 9097 | dasm_put(Dst, 5483); |
| 8879 | switch (vk) { | 9098 | switch (vk) { |
| 8880 | case 0: | 9099 | case 0: |
| 8881 | dasm_put(Dst, 5320); | 9100 | dasm_put(Dst, 5511); |
| 8882 | break; | 9101 | break; |
| 8883 | case 1: | 9102 | case 1: |
| 8884 | dasm_put(Dst, 5323); | 9103 | dasm_put(Dst, 5514); |
| 8885 | break; | 9104 | break; |
| 8886 | default: | 9105 | default: |
| 8887 | dasm_put(Dst, 5326); | 9106 | dasm_put(Dst, 5517); |
| 8888 | break; | 9107 | break; |
| 8889 | } | 9108 | } |
| 8890 | dasm_put(Dst, 5329); | 9109 | dasm_put(Dst, 5520); |
| 8891 | if (vk == 1) { | 9110 | if (vk == 1) { |
| 8892 | dasm_put(Dst, 5331); | 9111 | dasm_put(Dst, 5522); |
| 8893 | } else { | 9112 | } else { |
| 8894 | dasm_put(Dst, 5335); | 9113 | dasm_put(Dst, 5526); |
| 8895 | } | 9114 | } |
| 8896 | switch (vk) { | 9115 | switch (vk) { |
| 8897 | case 0: | 9116 | case 0: |
| 8898 | dasm_put(Dst, 5339); | 9117 | dasm_put(Dst, 5530); |
| 8899 | break; | 9118 | break; |
| 8900 | case 1: | 9119 | case 1: |
| 8901 | dasm_put(Dst, 5342); | 9120 | dasm_put(Dst, 5533); |
| 8902 | break; | 9121 | break; |
| 8903 | default: | 9122 | default: |
| 8904 | dasm_put(Dst, 5345); | 9123 | dasm_put(Dst, 5536); |
| 8905 | break; | 9124 | break; |
| 8906 | } | 9125 | } |
| 8907 | dasm_put(Dst, 5348); | 9126 | dasm_put(Dst, 5539); |
| 8908 | } else { | 9127 | } else { |
| 8909 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 9128 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8910 | switch (vk) { | 9129 | switch (vk) { |
| 8911 | case 0: | 9130 | case 0: |
| 8912 | dasm_put(Dst, 5360); | 9131 | dasm_put(Dst, 5551); |
| 8913 | if (LJ_DUALNUM) { | 9132 | if (LJ_DUALNUM) { |
| 8914 | dasm_put(Dst, 5362); | 9133 | dasm_put(Dst, 5553); |
| 8915 | } | 9134 | } |
| 8916 | dasm_put(Dst, 5364); | 9135 | dasm_put(Dst, 5555); |
| 8917 | if (LJ_DUALNUM) { | 9136 | if (LJ_DUALNUM) { |
| 8918 | dasm_put(Dst, 5367); | 9137 | dasm_put(Dst, 5558); |
| 8919 | } else { | 9138 | } else { |
| 8920 | dasm_put(Dst, 5373); | 9139 | dasm_put(Dst, 5564); |
| 8921 | } | 9140 | } |
| 8922 | break; | 9141 | break; |
| 8923 | case 1: | 9142 | case 1: |
| 8924 | dasm_put(Dst, 5377); | 9143 | dasm_put(Dst, 5568); |
| 8925 | if (LJ_DUALNUM) { | 9144 | if (LJ_DUALNUM) { |
| 8926 | dasm_put(Dst, 5379); | 9145 | dasm_put(Dst, 5570); |
| 8927 | } | 9146 | } |
| 8928 | dasm_put(Dst, 5381); | 9147 | dasm_put(Dst, 5572); |
| 8929 | if (LJ_DUALNUM) { | 9148 | if (LJ_DUALNUM) { |
| 8930 | dasm_put(Dst, 5384); | 9149 | dasm_put(Dst, 5575); |
| 8931 | } else { | 9150 | } else { |
| 8932 | dasm_put(Dst, 5390); | 9151 | dasm_put(Dst, 5581); |
| 8933 | } | 9152 | } |
| 8934 | break; | 9153 | break; |
| 8935 | default: | 9154 | default: |
| 8936 | dasm_put(Dst, 5394); | 9155 | dasm_put(Dst, 5585); |
| 8937 | break; | 9156 | break; |
| 8938 | } | 9157 | } |
| 8939 | dasm_put(Dst, 5404); | 9158 | dasm_put(Dst, 5595); |
| 8940 | } | 9159 | } |
| 8941 | break; | 9160 | break; |
| 8942 | case BC_MODNV: case BC_MODVV: | 9161 | case BC_MODNV: case BC_MODVV: |
| @@ -8944,298 +9163,298 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 8944 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 9163 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8945 | switch (vk) { | 9164 | switch (vk) { |
| 8946 | case 0: | 9165 | case 0: |
| 8947 | dasm_put(Dst, 5422); | 9166 | dasm_put(Dst, 5613); |
| 8948 | break; | 9167 | break; |
| 8949 | case 1: | 9168 | case 1: |
| 8950 | dasm_put(Dst, 5428); | 9169 | dasm_put(Dst, 5619); |
| 8951 | break; | 9170 | break; |
| 8952 | default: | 9171 | default: |
| 8953 | dasm_put(Dst, 5434); | 9172 | dasm_put(Dst, 5625); |
| 8954 | break; | 9173 | break; |
| 8955 | } | 9174 | } |
| 8956 | dasm_put(Dst, 5440); | 9175 | dasm_put(Dst, 5631); |
| 8957 | switch (vk) { | 9176 | switch (vk) { |
| 8958 | case 0: | 9177 | case 0: |
| 8959 | dasm_put(Dst, 5468); | 9178 | dasm_put(Dst, 5659); |
| 8960 | break; | 9179 | break; |
| 8961 | case 1: | 9180 | case 1: |
| 8962 | dasm_put(Dst, 5471); | 9181 | dasm_put(Dst, 5662); |
| 8963 | break; | 9182 | break; |
| 8964 | default: | 9183 | default: |
| 8965 | dasm_put(Dst, 5474); | 9184 | dasm_put(Dst, 5665); |
| 8966 | break; | 9185 | break; |
| 8967 | } | 9186 | } |
| 8968 | dasm_put(Dst, 5477); | 9187 | dasm_put(Dst, 5668); |
| 8969 | if (vk == 1) { | 9188 | if (vk == 1) { |
| 8970 | dasm_put(Dst, 5479); | 9189 | dasm_put(Dst, 5670); |
| 8971 | } else { | 9190 | } else { |
| 8972 | dasm_put(Dst, 5483); | 9191 | dasm_put(Dst, 5674); |
| 8973 | } | 9192 | } |
| 8974 | switch (vk) { | 9193 | switch (vk) { |
| 8975 | case 0: | 9194 | case 0: |
| 8976 | dasm_put(Dst, 5487); | 9195 | dasm_put(Dst, 5678); |
| 8977 | break; | 9196 | break; |
| 8978 | case 1: | 9197 | case 1: |
| 8979 | dasm_put(Dst, 5490); | 9198 | dasm_put(Dst, 5681); |
| 8980 | break; | 9199 | break; |
| 8981 | default: | 9200 | default: |
| 8982 | dasm_put(Dst, 5493); | 9201 | dasm_put(Dst, 5684); |
| 8983 | break; | 9202 | break; |
| 8984 | } | 9203 | } |
| 8985 | dasm_put(Dst, 5496); | 9204 | dasm_put(Dst, 5687); |
| 8986 | } else { | 9205 | } else { |
| 8987 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 9206 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8988 | switch (vk) { | 9207 | switch (vk) { |
| 8989 | case 0: | 9208 | case 0: |
| 8990 | dasm_put(Dst, 5499); | 9209 | dasm_put(Dst, 5690); |
| 8991 | if (LJ_DUALNUM) { | 9210 | if (LJ_DUALNUM) { |
| 8992 | dasm_put(Dst, 5501); | 9211 | dasm_put(Dst, 5692); |
| 8993 | } | 9212 | } |
| 8994 | dasm_put(Dst, 5503); | 9213 | dasm_put(Dst, 5694); |
| 8995 | if (LJ_DUALNUM) { | 9214 | if (LJ_DUALNUM) { |
| 8996 | dasm_put(Dst, 5506); | 9215 | dasm_put(Dst, 5697); |
| 8997 | } else { | 9216 | } else { |
| 8998 | dasm_put(Dst, 5512); | 9217 | dasm_put(Dst, 5703); |
| 8999 | } | 9218 | } |
| 9000 | break; | 9219 | break; |
| 9001 | case 1: | 9220 | case 1: |
| 9002 | dasm_put(Dst, 5516); | 9221 | dasm_put(Dst, 5707); |
| 9003 | if (LJ_DUALNUM) { | 9222 | if (LJ_DUALNUM) { |
| 9004 | dasm_put(Dst, 5518); | 9223 | dasm_put(Dst, 5709); |
| 9005 | } | 9224 | } |
| 9006 | dasm_put(Dst, 5520); | 9225 | dasm_put(Dst, 5711); |
| 9007 | if (LJ_DUALNUM) { | 9226 | if (LJ_DUALNUM) { |
| 9008 | dasm_put(Dst, 5523); | 9227 | dasm_put(Dst, 5714); |
| 9009 | } else { | 9228 | } else { |
| 9010 | dasm_put(Dst, 5529); | 9229 | dasm_put(Dst, 5720); |
| 9011 | } | 9230 | } |
| 9012 | break; | 9231 | break; |
| 9013 | default: | 9232 | default: |
| 9014 | dasm_put(Dst, 5533); | 9233 | dasm_put(Dst, 5724); |
| 9015 | break; | 9234 | break; |
| 9016 | } | 9235 | } |
| 9017 | dasm_put(Dst, 5543); | 9236 | dasm_put(Dst, 5734); |
| 9018 | } | 9237 | } |
| 9019 | break; | 9238 | break; |
| 9020 | case BC_POW: | 9239 | case BC_POW: |
| 9021 | dasm_put(Dst, 5546); | 9240 | dasm_put(Dst, 5737); |
| 9022 | break; | 9241 | break; |
| 9023 | 9242 | ||
| 9024 | case BC_CAT: | 9243 | case BC_CAT: |
| 9025 | dasm_put(Dst, 5569, Dt1(->base), 32-3, Dt1(->base)); | 9244 | dasm_put(Dst, 5760, Dt1(->base), 32-3, Dt1(->base)); |
| 9026 | break; | 9245 | break; |
| 9027 | 9246 | ||
| 9028 | /* -- Constant ops ------------------------------------------------------ */ | 9247 | /* -- Constant ops ------------------------------------------------------ */ |
| 9029 | 9248 | ||
| 9030 | case BC_KSTR: | 9249 | case BC_KSTR: |
| 9031 | dasm_put(Dst, 5599, 32-1, LJ_TSTR); | 9250 | dasm_put(Dst, 5790, 32-1, LJ_TSTR); |
| 9032 | break; | 9251 | break; |
| 9033 | case BC_KCDATA: | 9252 | case BC_KCDATA: |
| 9034 | #if LJ_HASFFI | 9253 | #if LJ_HASFFI |
| 9035 | dasm_put(Dst, 5618, 32-1, LJ_TCDATA); | 9254 | dasm_put(Dst, 5809, 32-1, LJ_TCDATA); |
| 9036 | #endif | 9255 | #endif |
| 9037 | break; | 9256 | break; |
| 9038 | case BC_KSHORT: | 9257 | case BC_KSHORT: |
| 9039 | if (LJ_DUALNUM) { | 9258 | if (LJ_DUALNUM) { |
| 9040 | dasm_put(Dst, 5637, 31-13); | 9259 | dasm_put(Dst, 5828, 31-13); |
| 9041 | } else { | 9260 | } else { |
| 9042 | dasm_put(Dst, 5653, 31-13, 31-20); | 9261 | dasm_put(Dst, 5844, 31-13, 31-20); |
| 9043 | } | 9262 | } |
| 9044 | break; | 9263 | break; |
| 9045 | case BC_KNUM: | 9264 | case BC_KNUM: |
| 9046 | dasm_put(Dst, 5681); | 9265 | dasm_put(Dst, 5872); |
| 9047 | break; | 9266 | break; |
| 9048 | case BC_KPRI: | 9267 | case BC_KPRI: |
| 9049 | dasm_put(Dst, 5694, 32-3); | 9268 | dasm_put(Dst, 5885, 32-3); |
| 9050 | break; | 9269 | break; |
| 9051 | case BC_KNIL: | 9270 | case BC_KNIL: |
| 9052 | dasm_put(Dst, 5709); | 9271 | dasm_put(Dst, 5900); |
| 9053 | break; | 9272 | break; |
| 9054 | 9273 | ||
| 9055 | /* -- Upvalue and function ops ------------------------------------------ */ | 9274 | /* -- Upvalue and function ops ------------------------------------------ */ |
| 9056 | 9275 | ||
| 9057 | case BC_UGET: | 9276 | case BC_UGET: |
| 9058 | dasm_put(Dst, 5728, 32-1, offsetof(GCfuncL, uvptr), DtA(->v)); | 9277 | dasm_put(Dst, 5919, 32-1, offsetof(GCfuncL, uvptr), DtA(->v)); |
| 9059 | break; | 9278 | break; |
| 9060 | case BC_USETV: | 9279 | case BC_USETV: |
| 9061 | dasm_put(Dst, 5749, 32-1, offsetof(GCfuncL, uvptr), DtA(->marked), DtA(->v), LJ_GC_BLACK, DtA(->closed), -(LJ_TISNUM+1), LJ_TISGCV - (LJ_TISNUM+1), Dt4(->gch.marked), LJ_GC_WHITES, GG_DISP2G); | 9280 | dasm_put(Dst, 5940, 32-1, offsetof(GCfuncL, uvptr), DtA(->marked), DtA(->v), LJ_GC_BLACK, DtA(->closed), -(LJ_TISNUM+1), LJ_TISGCV - (LJ_TISNUM+1), Dt4(->gch.marked), LJ_GC_WHITES, GG_DISP2G); |
| 9062 | break; | 9281 | break; |
| 9063 | case BC_USETS: | 9282 | case BC_USETS: |
| 9064 | dasm_put(Dst, 5802, 32-1, 32-1, offsetof(GCfuncL, uvptr), DtA(->marked), DtA(->v), LJ_GC_BLACK, Dt5(->marked), DtA(->closed), LJ_TSTR, LJ_GC_WHITES, GG_DISP2G); | 9283 | dasm_put(Dst, 5993, 32-1, 32-1, offsetof(GCfuncL, uvptr), DtA(->marked), DtA(->v), LJ_GC_BLACK, Dt5(->marked), DtA(->closed), LJ_TSTR, LJ_GC_WHITES, GG_DISP2G); |
| 9065 | break; | 9284 | break; |
| 9066 | case BC_USETN: | 9285 | case BC_USETN: |
| 9067 | dasm_put(Dst, 5853, 32-1, offsetof(GCfuncL, uvptr), DtA(->v)); | 9286 | dasm_put(Dst, 6044, 32-1, offsetof(GCfuncL, uvptr), DtA(->v)); |
| 9068 | break; | 9287 | break; |
| 9069 | case BC_USETP: | 9288 | case BC_USETP: |
| 9070 | dasm_put(Dst, 5874, 32-1, 32-3, offsetof(GCfuncL, uvptr), DtA(->v)); | 9289 | dasm_put(Dst, 6065, 32-1, 32-3, offsetof(GCfuncL, uvptr), DtA(->v)); |
| 9071 | break; | 9290 | break; |
| 9072 | 9291 | ||
| 9073 | case BC_UCLO: | 9292 | case BC_UCLO: |
| 9074 | dasm_put(Dst, 5897, Dt1(->openupval), 32-1, -(BCBIAS_J*4 >> 16), Dt1(->base), Dt1(->base)); | 9293 | dasm_put(Dst, 6088, Dt1(->openupval), 32-1, -(BCBIAS_J*4 >> 16), Dt1(->base), Dt1(->base)); |
| 9075 | break; | 9294 | break; |
| 9076 | 9295 | ||
| 9077 | case BC_FNEW: | 9296 | case BC_FNEW: |
| 9078 | dasm_put(Dst, 5927, 32-1, Dt1(->base), Dt1(->base), LJ_TFUNC); | 9297 | dasm_put(Dst, 6118, 32-1, Dt1(->base), Dt1(->base), LJ_TFUNC); |
| 9079 | break; | 9298 | break; |
| 9080 | 9299 | ||
| 9081 | /* -- Table ops --------------------------------------------------------- */ | 9300 | /* -- Table ops --------------------------------------------------------- */ |
| 9082 | 9301 | ||
| 9083 | case BC_TNEW: | 9302 | case BC_TNEW: |
| 9084 | case BC_TDUP: | 9303 | case BC_TDUP: |
| 9085 | dasm_put(Dst, 5955, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), Dt1(->base)); | 9304 | dasm_put(Dst, 6146, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), Dt1(->base)); |
| 9086 | if (op == BC_TNEW) { | 9305 | if (op == BC_TNEW) { |
| 9087 | dasm_put(Dst, 5968); | 9306 | dasm_put(Dst, 6159); |
| 9088 | } else { | 9307 | } else { |
| 9089 | dasm_put(Dst, 5977, 32-1); | 9308 | dasm_put(Dst, 6168, 32-1); |
| 9090 | } | 9309 | } |
| 9091 | dasm_put(Dst, 5984, Dt1(->base), LJ_TTAB); | 9310 | dasm_put(Dst, 6175, Dt1(->base), LJ_TTAB); |
| 9092 | if (op == BC_TNEW) { | 9311 | if (op == BC_TNEW) { |
| 9093 | dasm_put(Dst, 6001); | 9312 | dasm_put(Dst, 6192); |
| 9094 | } | 9313 | } |
| 9095 | dasm_put(Dst, 6006); | 9314 | dasm_put(Dst, 6197); |
| 9096 | break; | 9315 | break; |
| 9097 | 9316 | ||
| 9098 | case BC_GGET: | 9317 | case BC_GGET: |
| 9099 | case BC_GSET: | 9318 | case BC_GSET: |
| 9100 | dasm_put(Dst, 6015, 32-1, Dt7(->env)); | 9319 | dasm_put(Dst, 6206, 32-1, Dt7(->env)); |
| 9101 | if (op == BC_GGET) { | 9320 | if (op == BC_GGET) { |
| 9102 | dasm_put(Dst, 6023); | 9321 | dasm_put(Dst, 6214); |
| 9103 | } else { | 9322 | } else { |
| 9104 | dasm_put(Dst, 6026); | 9323 | dasm_put(Dst, 6217); |
| 9105 | } | 9324 | } |
| 9106 | break; | 9325 | break; |
| 9107 | 9326 | ||
| 9108 | case BC_TGETV: | 9327 | case BC_TGETV: |
| 9109 | dasm_put(Dst, 6029); | 9328 | dasm_put(Dst, 6220); |
| 9110 | if (LJ_DUALNUM) { | 9329 | if (LJ_DUALNUM) { |
| 9111 | dasm_put(Dst, 6033); | 9330 | dasm_put(Dst, 6224); |
| 9112 | } else { | 9331 | } else { |
| 9113 | dasm_put(Dst, 6035); | 9332 | dasm_put(Dst, 6226); |
| 9114 | } | 9333 | } |
| 9115 | dasm_put(Dst, 6037, LJ_TTAB); | 9334 | dasm_put(Dst, 6228, LJ_TTAB); |
| 9116 | if (LJ_DUALNUM) { | 9335 | if (LJ_DUALNUM) { |
| 9117 | dasm_put(Dst, 6043, Dt6(->asize), Dt6(->array), 31-3); | 9336 | dasm_put(Dst, 6234, Dt6(->asize), Dt6(->array), 31-3); |
| 9118 | } else { | 9337 | } else { |
| 9119 | dasm_put(Dst, 6053, Dt6(->asize), Dt6(->array), 31-3); | 9338 | dasm_put(Dst, 6244, Dt6(->asize), Dt6(->array), 31-3); |
| 9120 | } | 9339 | } |
| 9121 | dasm_put(Dst, 6070, LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index, LJ_TSTR); | 9340 | dasm_put(Dst, 6261, LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index, LJ_TSTR); |
| 9122 | if (!LJ_DUALNUM) { | 9341 | if (!LJ_DUALNUM) { |
| 9123 | dasm_put(Dst, 6110); | 9342 | dasm_put(Dst, 6301); |
| 9124 | } | 9343 | } |
| 9125 | dasm_put(Dst, 6112); | 9344 | dasm_put(Dst, 6303); |
| 9126 | break; | 9345 | break; |
| 9127 | case BC_TGETS: | 9346 | case BC_TGETS: |
| 9128 | dasm_put(Dst, 6115, 32-1, LJ_TTAB, Dt6(->hmask), Dt5(->hash), Dt6(->node), 31-5, 31-3, DtB(->key), 4+offsetof(Node, key), DtB(->val), 4+offsetof(Node, val), LJ_TSTR, LJ_TNIL, DtB(->next)); | 9347 | dasm_put(Dst, 6306, 32-1, LJ_TTAB, Dt6(->hmask), Dt5(->hash), Dt6(->node), 31-5, 31-3, DtB(->key), 4+offsetof(Node, key), DtB(->val), 4+offsetof(Node, val), LJ_TSTR, LJ_TNIL, DtB(->next)); |
| 9129 | dasm_put(Dst, 6176, LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index); | 9348 | dasm_put(Dst, 6367, LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index); |
| 9130 | break; | 9349 | break; |
| 9131 | case BC_TGETB: | 9350 | case BC_TGETB: |
| 9132 | dasm_put(Dst, 6196, 32-3, LJ_TTAB, Dt6(->asize), Dt6(->array), LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index); | 9351 | dasm_put(Dst, 6387, 32-3, LJ_TTAB, Dt6(->asize), Dt6(->array), LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index); |
| 9133 | break; | 9352 | break; |
| 9134 | 9353 | ||
| 9135 | case BC_TSETV: | 9354 | case BC_TSETV: |
| 9136 | dasm_put(Dst, 6244); | 9355 | dasm_put(Dst, 6435); |
| 9137 | if (LJ_DUALNUM) { | 9356 | if (LJ_DUALNUM) { |
| 9138 | dasm_put(Dst, 6248); | 9357 | dasm_put(Dst, 6439); |
| 9139 | } else { | 9358 | } else { |
| 9140 | dasm_put(Dst, 6250); | 9359 | dasm_put(Dst, 6441); |
| 9141 | } | 9360 | } |
| 9142 | dasm_put(Dst, 6252, LJ_TTAB); | 9361 | dasm_put(Dst, 6443, LJ_TTAB); |
| 9143 | if (LJ_DUALNUM) { | 9362 | if (LJ_DUALNUM) { |
| 9144 | dasm_put(Dst, 6258, Dt6(->asize), Dt6(->array), 31-3); | 9363 | dasm_put(Dst, 6449, Dt6(->asize), Dt6(->array), 31-3); |
| 9145 | } else { | 9364 | } else { |
| 9146 | dasm_put(Dst, 6268, Dt6(->asize), Dt6(->array), 31-3); | 9365 | dasm_put(Dst, 6459, Dt6(->asize), Dt6(->array), 31-3); |
| 9147 | } | 9366 | } |
| 9148 | dasm_put(Dst, 6285, Dt6(->marked), LJ_TNIL, LJ_GC_BLACK, Dt6(->metatable), Dt6(->nomm), 1<<MM_newindex, LJ_TSTR); | 9367 | dasm_put(Dst, 6476, Dt6(->marked), LJ_TNIL, LJ_GC_BLACK, Dt6(->metatable), Dt6(->nomm), 1<<MM_newindex, LJ_TSTR); |
| 9149 | if (!LJ_DUALNUM) { | 9368 | if (!LJ_DUALNUM) { |
| 9150 | dasm_put(Dst, 6332); | 9369 | dasm_put(Dst, 6523); |
| 9151 | } | 9370 | } |
| 9152 | dasm_put(Dst, 6334, DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); | 9371 | dasm_put(Dst, 6525, DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); |
| 9153 | break; | 9372 | break; |
| 9154 | dasm_put(Dst, 6349, LJ_TSTR, LJ_TNIL); | 9373 | dasm_put(Dst, 6540, LJ_TSTR, LJ_TNIL); |
| 9155 | case BC_TSETS: | 9374 | case BC_TSETS: |
| 9156 | dasm_put(Dst, 6375, 32-1, LJ_TTAB, Dt6(->hmask), Dt5(->hash), Dt6(->node), Dt6(->nomm), 31-5, 31-3, Dt6(->marked), DtB(->key), 4+offsetof(Node, key), DtB(->val), 4+offsetof(Node, val), LJ_TSTR, LJ_TNIL); | 9375 | dasm_put(Dst, 6566, 32-1, LJ_TTAB, Dt6(->hmask), Dt5(->hash), Dt6(->node), Dt6(->nomm), 31-5, 31-3, Dt6(->marked), DtB(->key), 4+offsetof(Node, key), DtB(->val), 4+offsetof(Node, val), LJ_TSTR, LJ_TNIL); |
| 9157 | dasm_put(Dst, 6426, LJ_GC_BLACK, DtB(->val), Dt6(->metatable), Dt6(->nomm), 1<<MM_newindex, DtB(->next), Dt6(->metatable), DISPATCH_GL(tmptv), Dt1(->base), Dt6(->nomm), 1<<MM_newindex); | 9376 | dasm_put(Dst, 6617, LJ_GC_BLACK, DtB(->val), Dt6(->metatable), Dt6(->nomm), 1<<MM_newindex, DtB(->next), Dt6(->metatable), DISPATCH_GL(tmptv), Dt1(->base), Dt6(->nomm), 1<<MM_newindex); |
| 9158 | dasm_put(Dst, 6482, LJ_TSTR, Dt1(->base), DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); | 9377 | dasm_put(Dst, 6673, LJ_TSTR, Dt1(->base), DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); |
| 9159 | break; | 9378 | break; |
| 9160 | case BC_TSETB: | 9379 | case BC_TSETB: |
| 9161 | dasm_put(Dst, 6507, 32-3, LJ_TTAB, Dt6(->asize), Dt6(->array), Dt6(->marked), LJ_TNIL, LJ_GC_BLACK, Dt6(->metatable), Dt6(->nomm), 1<<MM_newindex, DISPATCH_GL(gc.grayagain)); | 9380 | dasm_put(Dst, 6698, 32-3, LJ_TTAB, Dt6(->asize), Dt6(->array), Dt6(->marked), LJ_TNIL, LJ_GC_BLACK, Dt6(->metatable), Dt6(->nomm), 1<<MM_newindex, DISPATCH_GL(gc.grayagain)); |
| 9162 | dasm_put(Dst, 6565, DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); | 9381 | dasm_put(Dst, 6756, DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); |
| 9163 | break; | 9382 | break; |
| 9164 | 9383 | ||
| 9165 | case BC_TSETM: | 9384 | case BC_TSETM: |
| 9166 | dasm_put(Dst, 6575, 32-3, Dt6(->asize), 31-3, Dt6(->marked), Dt6(->array), LJ_GC_BLACK, Dt1(->base), DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); | 9385 | dasm_put(Dst, 6766, 32-3, Dt6(->asize), 31-3, Dt6(->marked), Dt6(->array), LJ_GC_BLACK, Dt1(->base), DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); |
| 9167 | dasm_put(Dst, 6644); | 9386 | dasm_put(Dst, 6835); |
| 9168 | break; | 9387 | break; |
| 9169 | 9388 | ||
| 9170 | /* -- Calls and vararg handling ----------------------------------------- */ | 9389 | /* -- Calls and vararg handling ----------------------------------------- */ |
| 9171 | 9390 | ||
| 9172 | case BC_CALLM: | 9391 | case BC_CALLM: |
| 9173 | dasm_put(Dst, 6647); | 9392 | dasm_put(Dst, 6838); |
| 9174 | break; | 9393 | break; |
| 9175 | case BC_CALL: | 9394 | case BC_CALL: |
| 9176 | dasm_put(Dst, 6649, LJ_TFUNC, Dt7(->pc)); | 9395 | dasm_put(Dst, 6840, LJ_TFUNC, Dt7(->pc)); |
| 9177 | break; | 9396 | break; |
| 9178 | 9397 | ||
| 9179 | case BC_CALLMT: | 9398 | case BC_CALLMT: |
| 9180 | dasm_put(Dst, 6670); | 9399 | dasm_put(Dst, 6861); |
| 9181 | break; | 9400 | break; |
| 9182 | case BC_CALLT: | 9401 | case BC_CALLT: |
| 9183 | dasm_put(Dst, 6672, LJ_TFUNC, FRAME_TYPE, Dt7(->ffid), FRAME_VARG, Dt7(->pc), -4-8, Dt7(->pc), PC2PROTO(k), FRAME_TYPEP); | 9402 | dasm_put(Dst, 6863, LJ_TFUNC, FRAME_TYPE, Dt7(->ffid), FRAME_VARG, Dt7(->pc), -4-8, Dt7(->pc), PC2PROTO(k), FRAME_TYPEP); |
| 9184 | dasm_put(Dst, 6736, FRAME_TYPE); | 9403 | dasm_put(Dst, 6927, FRAME_TYPE); |
| 9185 | break; | 9404 | break; |
| 9186 | 9405 | ||
| 9187 | case BC_ITERC: | 9406 | case BC_ITERC: |
| 9188 | dasm_put(Dst, 6745, LJ_TFUNC, Dt7(->pc)); | 9407 | dasm_put(Dst, 6936, LJ_TFUNC, Dt7(->pc)); |
| 9189 | break; | 9408 | break; |
| 9190 | 9409 | ||
| 9191 | case BC_ITERN: | 9410 | case BC_ITERN: |
| 9192 | #if LJ_HASJIT | 9411 | #if LJ_HASJIT |
| 9193 | #endif | 9412 | #endif |
| 9194 | dasm_put(Dst, 6772, Dt6(->asize), Dt6(->array), 31-3, LJ_TNIL); | 9413 | dasm_put(Dst, 6963, Dt6(->asize), Dt6(->array), 31-3, LJ_TNIL); |
| 9195 | if (LJ_DUALNUM) { | 9414 | if (LJ_DUALNUM) { |
| 9196 | dasm_put(Dst, 6794); | 9415 | dasm_put(Dst, 6985); |
| 9197 | } else { | 9416 | } else { |
| 9198 | dasm_put(Dst, 6797); | 9417 | dasm_put(Dst, 6988); |
| 9199 | } | 9418 | } |
| 9200 | dasm_put(Dst, 6801, -(BCBIAS_J*4 >> 16)); | 9419 | dasm_put(Dst, 6992, -(BCBIAS_J*4 >> 16)); |
| 9201 | if (!LJ_DUALNUM) { | 9420 | if (!LJ_DUALNUM) { |
| 9202 | dasm_put(Dst, 6809); | 9421 | dasm_put(Dst, 7000); |
| 9203 | } | 9422 | } |
| 9204 | dasm_put(Dst, 6811, Dt6(->hmask), Dt6(->node), 31-5, 31-3, LJ_TNIL, DtB(->key), -(BCBIAS_J*4 >> 16)); | 9423 | dasm_put(Dst, 7002, Dt6(->hmask), Dt6(->node), 31-5, 31-3, LJ_TNIL, DtB(->key), -(BCBIAS_J*4 >> 16)); |
| 9205 | break; | 9424 | break; |
| 9206 | 9425 | ||
| 9207 | case BC_ISNEXT: | 9426 | case BC_ISNEXT: |
| 9208 | dasm_put(Dst, 6867, LJ_TTAB, LJ_TFUNC, LJ_TNIL, Dt8(->ffid), FF_next_N, 32-1, -(BCBIAS_J*4 >> 16), BC_JMP, BC_ITERC, -(BCBIAS_J*4 >> 16)); | 9427 | dasm_put(Dst, 7058, LJ_TTAB, LJ_TFUNC, LJ_TNIL, Dt8(->ffid), FF_next_N, 32-1, -(BCBIAS_J*4 >> 16), BC_JMP, BC_ITERC, -(BCBIAS_J*4 >> 16)); |
| 9209 | break; | 9428 | break; |
| 9210 | 9429 | ||
| 9211 | case BC_VARG: | 9430 | case BC_VARG: |
| 9212 | dasm_put(Dst, 6917, FRAME_VARG, Dt1(->maxstack), Dt1(->top), Dt1(->base), 32-3, Dt1(->base)); | 9431 | dasm_put(Dst, 7108, FRAME_VARG, Dt1(->maxstack), Dt1(->top), Dt1(->base), 32-3, Dt1(->base)); |
| 9213 | dasm_put(Dst, 6997); | 9432 | dasm_put(Dst, 7188); |
| 9214 | break; | 9433 | break; |
| 9215 | 9434 | ||
| 9216 | /* -- Returns ----------------------------------------------------------- */ | 9435 | /* -- Returns ----------------------------------------------------------- */ |
| 9217 | 9436 | ||
| 9218 | case BC_RETM: | 9437 | case BC_RETM: |
| 9219 | dasm_put(Dst, 7003); | 9438 | dasm_put(Dst, 7194); |
| 9220 | break; | 9439 | break; |
| 9221 | 9440 | ||
| 9222 | case BC_RET: | 9441 | case BC_RET: |
| 9223 | dasm_put(Dst, 7005, FRAME_TYPE, FRAME_VARG, Dt7(->pc), PC2PROTO(k), FRAME_TYPEP); | 9442 | dasm_put(Dst, 7196, FRAME_TYPE, FRAME_VARG, Dt7(->pc), PC2PROTO(k), FRAME_TYPEP); |
| 9224 | break; | 9443 | break; |
| 9225 | 9444 | ||
| 9226 | case BC_RET0: case BC_RET1: | 9445 | case BC_RET0: case BC_RET1: |
| 9227 | dasm_put(Dst, 7075, FRAME_TYPE, FRAME_VARG); | 9446 | dasm_put(Dst, 7266, FRAME_TYPE, FRAME_VARG); |
| 9228 | if (op == BC_RET1) { | 9447 | if (op == BC_RET1) { |
| 9229 | dasm_put(Dst, 7088); | 9448 | dasm_put(Dst, 7279); |
| 9230 | } | 9449 | } |
| 9231 | dasm_put(Dst, 7091, Dt7(->pc), PC2PROTO(k)); | 9450 | dasm_put(Dst, 7282, Dt7(->pc), PC2PROTO(k)); |
| 9232 | break; | 9451 | break; |
| 9233 | 9452 | ||
| 9234 | /* -- Loops and branches ------------------------------------------------ */ | 9453 | /* -- Loops and branches ------------------------------------------------ */ |
| 9235 | 9454 | ||
| 9236 | case BC_FORL: | 9455 | case BC_FORL: |
| 9237 | #if LJ_HASJIT | 9456 | #if LJ_HASJIT |
| 9238 | dasm_put(Dst, 7119, GG_DISP2HOT, -HOTCOUNT_LOOP); | 9457 | dasm_put(Dst, 7310, GG_DISP2HOT, -HOTCOUNT_LOOP); |
| 9239 | #endif | 9458 | #endif |
| 9240 | break; | 9459 | break; |
| 9241 | 9460 | ||
| @@ -9248,100 +9467,100 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 9248 | case BC_IFORL: | 9467 | case BC_IFORL: |
| 9249 | vk = (op == BC_IFORL || op == BC_JFORL); | 9468 | vk = (op == BC_IFORL || op == BC_JFORL); |
| 9250 | if (LJ_DUALNUM) { | 9469 | if (LJ_DUALNUM) { |
| 9251 | dasm_put(Dst, 7129, FORL_IDX*8+4); | 9470 | dasm_put(Dst, 7320, FORL_IDX*8+4); |
| 9252 | if (vk) { | 9471 | if (vk) { |
| 9253 | dasm_put(Dst, 7134, FORL_STEP*8+4, FORL_STOP*8+4, FORL_IDX*8+4); | 9472 | dasm_put(Dst, 7325, FORL_STEP*8+4, FORL_STOP*8+4, FORL_IDX*8+4); |
| 9254 | } else { | 9473 | } else { |
| 9255 | dasm_put(Dst, 7148, FORL_STEP*8, FORL_STEP*8+4, FORL_STOP*8, FORL_STOP*8+4); | 9474 | dasm_put(Dst, 7339, FORL_STEP*8, FORL_STEP*8+4, FORL_STOP*8, FORL_STOP*8+4); |
| 9256 | } | 9475 | } |
| 9257 | dasm_put(Dst, 7164, FORL_EXT*8); | 9476 | dasm_put(Dst, 7355, FORL_EXT*8); |
| 9258 | if (op != BC_JFORL) { | 9477 | if (op != BC_JFORL) { |
| 9259 | dasm_put(Dst, 7171, 32-1); | 9478 | dasm_put(Dst, 7362, 32-1); |
| 9260 | } | 9479 | } |
| 9261 | dasm_put(Dst, 7174, FORL_EXT*8+4); | 9480 | dasm_put(Dst, 7365, FORL_EXT*8+4); |
| 9262 | if (op != BC_JFORL) { | 9481 | if (op != BC_JFORL) { |
| 9263 | dasm_put(Dst, 7177); | 9482 | dasm_put(Dst, 7368); |
| 9264 | } | 9483 | } |
| 9265 | if (op == BC_FORI) { | 9484 | if (op == BC_FORI) { |
| 9266 | dasm_put(Dst, 7179); | 9485 | dasm_put(Dst, 7370); |
| 9267 | } else if (op == BC_JFORI) { | 9486 | } else if (op == BC_JFORI) { |
| 9268 | dasm_put(Dst, 7182, -(BCBIAS_J*4 >> 16)); | 9487 | dasm_put(Dst, 7373, -(BCBIAS_J*4 >> 16)); |
| 9269 | } else if (op == BC_IFORL) { | 9488 | } else if (op == BC_IFORL) { |
| 9270 | dasm_put(Dst, 7187, -(BCBIAS_J*4 >> 16)); | 9489 | dasm_put(Dst, 7378, -(BCBIAS_J*4 >> 16)); |
| 9271 | } else { | 9490 | } else { |
| 9272 | dasm_put(Dst, 7192, BC_JLOOP); | 9491 | dasm_put(Dst, 7383, BC_JLOOP); |
| 9273 | } | 9492 | } |
| 9274 | dasm_put(Dst, 7195); | 9493 | dasm_put(Dst, 7386); |
| 9275 | if (vk) { | 9494 | if (vk) { |
| 9276 | dasm_put(Dst, 7211); | 9495 | dasm_put(Dst, 7402); |
| 9277 | } | 9496 | } |
| 9278 | } | 9497 | } |
| 9279 | if (vk) { | 9498 | if (vk) { |
| 9280 | if (LJ_DUALNUM) { | 9499 | if (LJ_DUALNUM) { |
| 9281 | dasm_put(Dst, 7218, FORL_IDX*8); | 9500 | dasm_put(Dst, 7409, FORL_IDX*8); |
| 9282 | } else { | 9501 | } else { |
| 9283 | dasm_put(Dst, 7222); | 9502 | dasm_put(Dst, 7413); |
| 9284 | } | 9503 | } |
| 9285 | dasm_put(Dst, 7224, FORL_STEP*8, FORL_STOP*8, FORL_STEP*8, FORL_IDX*8); | 9504 | dasm_put(Dst, 7415, FORL_STEP*8, FORL_STOP*8, FORL_STEP*8, FORL_IDX*8); |
| 9286 | } else { | 9505 | } else { |
| 9287 | if (LJ_DUALNUM) { | 9506 | if (LJ_DUALNUM) { |
| 9288 | dasm_put(Dst, 7234); | 9507 | dasm_put(Dst, 7425); |
| 9289 | } else { | 9508 | } else { |
| 9290 | dasm_put(Dst, 7236, FORL_STEP*8, FORL_STOP*8); | 9509 | dasm_put(Dst, 7427, FORL_STEP*8, FORL_STOP*8); |
| 9291 | } | 9510 | } |
| 9292 | dasm_put(Dst, 7245, FORL_IDX*8, FORL_STEP*8, FORL_STOP*8); | 9511 | dasm_put(Dst, 7436, FORL_IDX*8, FORL_STEP*8, FORL_STOP*8); |
| 9293 | } | 9512 | } |
| 9294 | dasm_put(Dst, 7256); | 9513 | dasm_put(Dst, 7447); |
| 9295 | if (op != BC_JFORL) { | 9514 | if (op != BC_JFORL) { |
| 9296 | dasm_put(Dst, 7258, 32-1); | 9515 | dasm_put(Dst, 7449, 32-1); |
| 9297 | } | 9516 | } |
| 9298 | dasm_put(Dst, 7261, FORL_EXT*8); | 9517 | dasm_put(Dst, 7452, FORL_EXT*8); |
| 9299 | if (op != BC_JFORL) { | 9518 | if (op != BC_JFORL) { |
| 9300 | dasm_put(Dst, 7264); | 9519 | dasm_put(Dst, 7455); |
| 9301 | } | 9520 | } |
| 9302 | dasm_put(Dst, 7266); | 9521 | dasm_put(Dst, 7457); |
| 9303 | if (op == BC_JFORI) { | 9522 | if (op == BC_JFORI) { |
| 9304 | dasm_put(Dst, 7268, -(BCBIAS_J*4 >> 16)); | 9523 | dasm_put(Dst, 7459, -(BCBIAS_J*4 >> 16)); |
| 9305 | } | 9524 | } |
| 9306 | dasm_put(Dst, 7271); | 9525 | dasm_put(Dst, 7462); |
| 9307 | if (op == BC_FORI) { | 9526 | if (op == BC_FORI) { |
| 9308 | dasm_put(Dst, 7274); | 9527 | dasm_put(Dst, 7465); |
| 9309 | } else if (op == BC_IFORL) { | 9528 | } else if (op == BC_IFORL) { |
| 9310 | if (LJ_DUALNUM) { | 9529 | if (LJ_DUALNUM) { |
| 9311 | dasm_put(Dst, 7277); | 9530 | dasm_put(Dst, 7468); |
| 9312 | } else { | 9531 | } else { |
| 9313 | dasm_put(Dst, 7280); | 9532 | dasm_put(Dst, 7471); |
| 9314 | } | 9533 | } |
| 9315 | dasm_put(Dst, 7283, -(BCBIAS_J*4 >> 16)); | 9534 | dasm_put(Dst, 7474, -(BCBIAS_J*4 >> 16)); |
| 9316 | } else if (op == BC_JFORI) { | 9535 | } else if (op == BC_JFORI) { |
| 9317 | dasm_put(Dst, 7287); | 9536 | dasm_put(Dst, 7478); |
| 9318 | } else { | 9537 | } else { |
| 9319 | dasm_put(Dst, 7290, BC_JLOOP); | 9538 | dasm_put(Dst, 7481, BC_JLOOP); |
| 9320 | } | 9539 | } |
| 9321 | if (LJ_DUALNUM) { | 9540 | if (LJ_DUALNUM) { |
| 9322 | dasm_put(Dst, 7293); | 9541 | dasm_put(Dst, 7484); |
| 9323 | } else { | 9542 | } else { |
| 9324 | dasm_put(Dst, 7296); | 9543 | dasm_put(Dst, 7487); |
| 9325 | } | 9544 | } |
| 9326 | dasm_put(Dst, 7308); | 9545 | dasm_put(Dst, 7499); |
| 9327 | if (op == BC_FORI) { | 9546 | if (op == BC_FORI) { |
| 9328 | dasm_put(Dst, 7310, -(BCBIAS_J*4 >> 16)); | 9547 | dasm_put(Dst, 7501, -(BCBIAS_J*4 >> 16)); |
| 9329 | } else if (op == BC_IFORL) { | 9548 | } else if (op == BC_IFORL) { |
| 9330 | dasm_put(Dst, 7316); | 9549 | dasm_put(Dst, 7507); |
| 9331 | } else if (op == BC_JFORI) { | 9550 | } else if (op == BC_JFORI) { |
| 9332 | dasm_put(Dst, 7319); | 9551 | dasm_put(Dst, 7510); |
| 9333 | } else { | 9552 | } else { |
| 9334 | dasm_put(Dst, 7322, BC_JLOOP); | 9553 | dasm_put(Dst, 7513, BC_JLOOP); |
| 9335 | } | 9554 | } |
| 9336 | dasm_put(Dst, 7325); | 9555 | dasm_put(Dst, 7516); |
| 9337 | if (op == BC_JFORI) { | 9556 | if (op == BC_JFORI) { |
| 9338 | dasm_put(Dst, 7328, BC_JLOOP); | 9557 | dasm_put(Dst, 7519, BC_JLOOP); |
| 9339 | } | 9558 | } |
| 9340 | break; | 9559 | break; |
| 9341 | 9560 | ||
| 9342 | case BC_ITERL: | 9561 | case BC_ITERL: |
| 9343 | #if LJ_HASJIT | 9562 | #if LJ_HASJIT |
| 9344 | dasm_put(Dst, 7334, GG_DISP2HOT, -HOTCOUNT_LOOP); | 9563 | dasm_put(Dst, 7525, GG_DISP2HOT, -HOTCOUNT_LOOP); |
| 9345 | #endif | 9564 | #endif |
| 9346 | break; | 9565 | break; |
| 9347 | 9566 | ||
| @@ -9350,40 +9569,40 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 9350 | break; | 9569 | break; |
| 9351 | #endif | 9570 | #endif |
| 9352 | case BC_IITERL: | 9571 | case BC_IITERL: |
| 9353 | dasm_put(Dst, 7344, LJ_TNIL); | 9572 | dasm_put(Dst, 7535, LJ_TNIL); |
| 9354 | if (op == BC_JITERL) { | 9573 | if (op == BC_JITERL) { |
| 9355 | dasm_put(Dst, 7351, BC_JLOOP); | 9574 | dasm_put(Dst, 7542, BC_JLOOP); |
| 9356 | } else { | 9575 | } else { |
| 9357 | dasm_put(Dst, 7356, 32-1, -(BCBIAS_J*4 >> 16)); | 9576 | dasm_put(Dst, 7547, 32-1, -(BCBIAS_J*4 >> 16)); |
| 9358 | } | 9577 | } |
| 9359 | dasm_put(Dst, 7364); | 9578 | dasm_put(Dst, 7555); |
| 9360 | break; | 9579 | break; |
| 9361 | 9580 | ||
| 9362 | case BC_LOOP: | 9581 | case BC_LOOP: |
| 9363 | #if LJ_HASJIT | 9582 | #if LJ_HASJIT |
| 9364 | dasm_put(Dst, 7376, GG_DISP2HOT, -HOTCOUNT_LOOP); | 9583 | dasm_put(Dst, 7567, GG_DISP2HOT, -HOTCOUNT_LOOP); |
| 9365 | #endif | 9584 | #endif |
| 9366 | break; | 9585 | break; |
| 9367 | 9586 | ||
| 9368 | case BC_ILOOP: | 9587 | case BC_ILOOP: |
| 9369 | dasm_put(Dst, 7386); | 9588 | dasm_put(Dst, 7577); |
| 9370 | break; | 9589 | break; |
| 9371 | 9590 | ||
| 9372 | case BC_JLOOP: | 9591 | case BC_JLOOP: |
| 9373 | #if LJ_HASJIT | 9592 | #if LJ_HASJIT |
| 9374 | dasm_put(Dst, 7397, DISPATCH_J(trace), 32-1, DISPATCH_GL(vmstate), DtD(->mcode), DISPATCH_GL(jit_base), DISPATCH_GL(jit_L), GG_DISP2G+32768); | 9593 | dasm_put(Dst, 7588, DISPATCH_J(trace), 32-1, DISPATCH_GL(vmstate), DtD(->mcode), DISPATCH_GL(jit_base), DISPATCH_GL(jit_L), GG_DISP2G+32768); |
| 9375 | #endif | 9594 | #endif |
| 9376 | break; | 9595 | break; |
| 9377 | 9596 | ||
| 9378 | case BC_JMP: | 9597 | case BC_JMP: |
| 9379 | dasm_put(Dst, 7416, 32-1, -(BCBIAS_J*4 >> 16)); | 9598 | dasm_put(Dst, 7607, 32-1, -(BCBIAS_J*4 >> 16)); |
| 9380 | break; | 9599 | break; |
| 9381 | 9600 | ||
| 9382 | /* -- Function headers -------------------------------------------------- */ | 9601 | /* -- Function headers -------------------------------------------------- */ |
| 9383 | 9602 | ||
| 9384 | case BC_FUNCF: | 9603 | case BC_FUNCF: |
| 9385 | #if LJ_HASJIT | 9604 | #if LJ_HASJIT |
| 9386 | dasm_put(Dst, 7432, GG_DISP2HOT, -HOTCOUNT_CALL); | 9605 | dasm_put(Dst, 7623, GG_DISP2HOT, -HOTCOUNT_CALL); |
| 9387 | #endif | 9606 | #endif |
| 9388 | case BC_FUNCV: /* NYI: compiled vararg functions. */ | 9607 | case BC_FUNCV: /* NYI: compiled vararg functions. */ |
| 9389 | break; | 9608 | break; |
| @@ -9393,42 +9612,42 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 9393 | break; | 9612 | break; |
| 9394 | #endif | 9613 | #endif |
| 9395 | case BC_IFUNCF: | 9614 | case BC_IFUNCF: |
| 9396 | dasm_put(Dst, 7442, Dt1(->maxstack), -4+PC2PROTO(numparams), -4+PC2PROTO(k), 31-3); | 9615 | dasm_put(Dst, 7633, Dt1(->maxstack), -4+PC2PROTO(numparams), -4+PC2PROTO(k), 31-3); |
| 9397 | if (op != BC_JFUNCF) { | 9616 | if (op != BC_JFUNCF) { |
| 9398 | dasm_put(Dst, 7454); | 9617 | dasm_put(Dst, 7645); |
| 9399 | } | 9618 | } |
| 9400 | dasm_put(Dst, 7457); | 9619 | dasm_put(Dst, 7648); |
| 9401 | if (op == BC_JFUNCF) { | 9620 | if (op == BC_JFUNCF) { |
| 9402 | dasm_put(Dst, 7462, BC_JLOOP); | 9621 | dasm_put(Dst, 7653, BC_JLOOP); |
| 9403 | } else { | 9622 | } else { |
| 9404 | dasm_put(Dst, 7466); | 9623 | dasm_put(Dst, 7657); |
| 9405 | } | 9624 | } |
| 9406 | dasm_put(Dst, 7475); | 9625 | dasm_put(Dst, 7666); |
| 9407 | break; | 9626 | break; |
| 9408 | 9627 | ||
| 9409 | case BC_JFUNCV: | 9628 | case BC_JFUNCV: |
| 9410 | #if !LJ_HASJIT | 9629 | #if !LJ_HASJIT |
| 9411 | break; | 9630 | break; |
| 9412 | #endif | 9631 | #endif |
| 9413 | dasm_put(Dst, 7481); | 9632 | dasm_put(Dst, 7672); |
| 9414 | break; /* NYI: compiled vararg functions. */ | 9633 | break; /* NYI: compiled vararg functions. */ |
| 9415 | 9634 | ||
| 9416 | case BC_IFUNCV: | 9635 | case BC_IFUNCV: |
| 9417 | dasm_put(Dst, 7483, Dt1(->maxstack), 8+FRAME_VARG, -4+PC2PROTO(k), -4+PC2PROTO(numparams), LJ_TNIL); | 9636 | dasm_put(Dst, 7674, Dt1(->maxstack), 8+FRAME_VARG, -4+PC2PROTO(k), -4+PC2PROTO(numparams), LJ_TNIL); |
| 9418 | break; | 9637 | break; |
| 9419 | 9638 | ||
| 9420 | case BC_FUNCC: | 9639 | case BC_FUNCC: |
| 9421 | case BC_FUNCCW: | 9640 | case BC_FUNCCW: |
| 9422 | if (op == BC_FUNCC) { | 9641 | if (op == BC_FUNCC) { |
| 9423 | dasm_put(Dst, 7536, Dt8(->f)); | 9642 | dasm_put(Dst, 7727, Dt8(->f)); |
| 9424 | } else { | 9643 | } else { |
| 9425 | dasm_put(Dst, 7539, DISPATCH_GL(wrapf)); | 9644 | dasm_put(Dst, 7730, DISPATCH_GL(wrapf)); |
| 9426 | } | 9645 | } |
| 9427 | dasm_put(Dst, 7542, Dt1(->maxstack), Dt1(->base), Dt1(->top), ~LJ_VMST_C); | 9646 | dasm_put(Dst, 7733, Dt1(->maxstack), Dt1(->base), Dt1(->top), ~LJ_VMST_C); |
| 9428 | if (op == BC_FUNCCW) { | 9647 | if (op == BC_FUNCCW) { |
| 9429 | dasm_put(Dst, 7555, Dt8(->f)); | 9648 | dasm_put(Dst, 7746, Dt8(->f)); |
| 9430 | } | 9649 | } |
| 9431 | dasm_put(Dst, 7558, DISPATCH_GL(vmstate), Dt1(->base), 31-3, Dt1(->top), ~LJ_VMST_INTERP, DISPATCH_GL(vmstate)); | 9650 | dasm_put(Dst, 7749, DISPATCH_GL(vmstate), Dt1(->base), 31-3, Dt1(->top), ~LJ_VMST_INTERP, DISPATCH_GL(vmstate)); |
| 9432 | break; | 9651 | break; |
| 9433 | 9652 | ||
| 9434 | /* ---------------------------------------------------------------------- */ | 9653 | /* ---------------------------------------------------------------------- */ |
| @@ -9448,7 +9667,7 @@ static int build_backend(BuildCtx *ctx) | |||
| 9448 | 9667 | ||
| 9449 | build_subroutines(ctx); | 9668 | build_subroutines(ctx); |
| 9450 | 9669 | ||
| 9451 | dasm_put(Dst, 7579); | 9670 | dasm_put(Dst, 7770); |
| 9452 | for (op = 0; op < BC__MAX; op++) | 9671 | for (op = 0; op < BC__MAX; op++) |
| 9453 | build_ins(ctx, (BCOp)op, op); | 9672 | build_ins(ctx, (BCOp)op, op); |
| 9454 | 9673 | ||
diff --git a/src/lj_ccallback.c b/src/lj_ccallback.c index e104c484..c0668e41 100644 --- a/src/lj_ccallback.c +++ b/src/lj_ccallback.c | |||
| @@ -43,6 +43,13 @@ static MSize CALLBACK_OFS2SLOT(MSize ofs) | |||
| 43 | #define CALLBACK_MAX_SLOT \ | 43 | #define CALLBACK_MAX_SLOT \ |
| 44 | (((CALLBACK_MCODE_SIZE-CALLBACK_MCODE_HEAD)/(CALLBACK_MCODE_GROUP+4*32))*32) | 44 | (((CALLBACK_MCODE_SIZE-CALLBACK_MCODE_HEAD)/(CALLBACK_MCODE_GROUP+4*32))*32) |
| 45 | 45 | ||
| 46 | #elif LJ_TARGET_PPC | ||
| 47 | |||
| 48 | #define CALLBACK_MCODE_HEAD 24 | ||
| 49 | #define CALLBACK_SLOT2OFS(slot) (CALLBACK_MCODE_HEAD + 8*(slot)) | ||
| 50 | #define CALLBACK_OFS2SLOT(ofs) (((ofs)-CALLBACK_MCODE_HEAD)/8) | ||
| 51 | #define CALLBACK_MAX_SLOT (CALLBACK_OFS2SLOT(CALLBACK_MCODE_SIZE)) | ||
| 52 | |||
| 46 | #else | 53 | #else |
| 47 | 54 | ||
| 48 | /* Missing support for this architecture. */ | 55 | /* Missing support for this architecture. */ |
| @@ -70,8 +77,8 @@ MSize lj_ccallback_ptr2slot(CTState *cts, void *p) | |||
| 70 | return ~0u; /* Not a known callback function pointer. */ | 77 | return ~0u; /* Not a known callback function pointer. */ |
| 71 | } | 78 | } |
| 72 | 79 | ||
| 73 | #if LJ_TARGET_X86ORX64 | ||
| 74 | /* Initialize machine code for callback function pointers. */ | 80 | /* Initialize machine code for callback function pointers. */ |
| 81 | #if LJ_TARGET_X86ORX64 | ||
| 75 | static void callback_mcode_init(global_State *g, uint8_t *page) | 82 | static void callback_mcode_init(global_State *g, uint8_t *page) |
| 76 | { | 83 | { |
| 77 | uint8_t *p = page; | 84 | uint8_t *p = page; |
| @@ -103,6 +110,25 @@ static void callback_mcode_init(global_State *g, uint8_t *page) | |||
| 103 | } | 110 | } |
| 104 | lua_assert(p - page <= CALLBACK_MCODE_SIZE); | 111 | lua_assert(p - page <= CALLBACK_MCODE_SIZE); |
| 105 | } | 112 | } |
| 113 | #elif LJ_TARGET_PPC | ||
| 114 | static void callback_mcode_init(global_State *g, uint32_t *page) | ||
| 115 | { | ||
| 116 | uint32_t *p = page; | ||
| 117 | void *target = (void *)lj_vm_ffi_callback; | ||
| 118 | MSize slot; | ||
| 119 | *p++ = PPCI_LIS | PPCF_T(RID_TMP) | (u32ptr(target) >> 16); | ||
| 120 | *p++ = PPCI_LIS | PPCF_T(RID_R12) | (u32ptr(g) >> 16); | ||
| 121 | *p++ = PPCI_ORI | PPCF_A(RID_TMP)|PPCF_T(RID_TMP) | (u32ptr(target) & 0xffff); | ||
| 122 | *p++ = PPCI_ORI | PPCF_A(RID_R12)|PPCF_T(RID_R12) | (u32ptr(g) & 0xffff); | ||
| 123 | *p++ = PPCI_MTCTR | PPCF_T(RID_TMP); | ||
| 124 | *p++ = PPCI_BCTR; | ||
| 125 | for (slot = 0; slot < CALLBACK_MAX_SLOT; slot++) { | ||
| 126 | *p++ = PPCI_LI | PPCF_T(RID_R11) | slot; | ||
| 127 | *p = PPCI_B | (((page-p) & 0x00ffffffu) << 2); | ||
| 128 | p++; | ||
| 129 | } | ||
| 130 | lua_assert(p - page <= CALLBACK_MCODE_SIZE); | ||
| 131 | } | ||
| 106 | #else | 132 | #else |
| 107 | /* Missing support for this architecture. */ | 133 | /* Missing support for this architecture. */ |
| 108 | #define callback_mcode_init(g, p) UNUSED(p) | 134 | #define callback_mcode_init(g, p) UNUSED(p) |
| @@ -224,8 +250,28 @@ void lj_ccallback_mcode_free(CTState *cts) | |||
| 224 | #elif LJ_TARGET_PPC | 250 | #elif LJ_TARGET_PPC |
| 225 | 251 | ||
| 226 | #define CALLBACK_HANDLE_REGARG \ | 252 | #define CALLBACK_HANDLE_REGARG \ |
| 227 | UNUSED(ngpr); UNUSED(nfpr); UNUSED(maxgpr); goto done; /* NYI */ | 253 | if (isfp) { \ |
| 228 | #define CALLBACK_HANDLE_RET /* NYI */ | 254 | if (nfpr + 1 <= CCALL_NARG_FPR) { \ |
| 255 | sp = &cts->cb.fpr[nfpr]; \ | ||
| 256 | nfpr += 1; \ | ||
| 257 | cta = ctype_get(cts, CTID_DOUBLE); /* FPRs always hold doubles. */ \ | ||
| 258 | goto done; \ | ||
| 259 | } \ | ||
| 260 | } else { /* Try to pass argument in GPRs. */ \ | ||
| 261 | if (n > 1) { \ | ||
| 262 | lua_assert(ctype_isinteger(cta->info) && n == 2); /* int64_t. */ \ | ||
| 263 | ngpr = (ngpr + 1u) & ~1u; /* Align int64_t to regpair. */ \ | ||
| 264 | } \ | ||
| 265 | if (ngpr + n <= maxgpr) { \ | ||
| 266 | sp = &cts->cb.gpr[ngpr]; \ | ||
| 267 | ngpr += n; \ | ||
| 268 | goto done; \ | ||
| 269 | } \ | ||
| 270 | } | ||
| 271 | |||
| 272 | #define CALLBACK_HANDLE_RET \ | ||
| 273 | if (ctype_isfp(ctr->info) && ctr->size == sizeof(float)) \ | ||
| 274 | *(double *)dp = *(float *)dp; /* FPRs always hold doubles. */ | ||
| 229 | 275 | ||
| 230 | #else | 276 | #else |
| 231 | #error "Missing calling convention definitions for this architecture" | 277 | #error "Missing calling convention definitions for this architecture" |
| @@ -327,14 +373,14 @@ static void callback_conv_result(CTState *cts, lua_State *L, TValue *o) | |||
| 327 | #endif | 373 | #endif |
| 328 | if (!ctype_isvoid(ctr->info)) { | 374 | if (!ctype_isvoid(ctr->info)) { |
| 329 | uint8_t *dp = (uint8_t *)&cts->cb.gpr[0]; | 375 | uint8_t *dp = (uint8_t *)&cts->cb.gpr[0]; |
| 330 | #ifdef CALLBACK_HANDLE_RET | ||
| 331 | CALLBACK_HANDLE_RET | ||
| 332 | #endif | ||
| 333 | #if CCALL_NUM_FPR | 376 | #if CCALL_NUM_FPR |
| 334 | if (ctype_isfp(ctr->info)) | 377 | if (ctype_isfp(ctr->info)) |
| 335 | dp = (uint8_t *)&cts->cb.fpr[0]; | 378 | dp = (uint8_t *)&cts->cb.fpr[0]; |
| 336 | #endif | 379 | #endif |
| 337 | lj_cconv_ct_tv(cts, ctr, dp, o, 0); | 380 | lj_cconv_ct_tv(cts, ctr, dp, o, 0); |
| 381 | #ifdef CALLBACK_HANDLE_RET | ||
| 382 | CALLBACK_HANDLE_RET | ||
| 383 | #endif | ||
| 338 | /* Extend returned integers to (at least) 32 bits. */ | 384 | /* Extend returned integers to (at least) 32 bits. */ |
| 339 | if (ctype_isinteger_or_bool(ctr->info) && ctr->size < 4) { | 385 | if (ctype_isinteger_or_bool(ctr->info) && ctr->size < 4) { |
| 340 | if (ctr->info & CTF_UNSIGNED) | 386 | if (ctr->info & CTF_UNSIGNED) |
diff --git a/src/lj_errmsg.h b/src/lj_errmsg.h index e9ad0451..4a4fec68 100644 --- a/src/lj_errmsg.h +++ b/src/lj_errmsg.h | |||
| @@ -161,7 +161,7 @@ ERRDEF(FFI_BADIDX, LUA_QS " cannot be indexed") | |||
| 161 | ERRDEF(FFI_WRCONST, "attempt to write to constant location") | 161 | ERRDEF(FFI_WRCONST, "attempt to write to constant location") |
| 162 | ERRDEF(FFI_NODECL, "missing declaration for symbol " LUA_QS) | 162 | ERRDEF(FFI_NODECL, "missing declaration for symbol " LUA_QS) |
| 163 | ERRDEF(FFI_BADCBACK, "bad callback") | 163 | ERRDEF(FFI_BADCBACK, "bad callback") |
| 164 | #if LJ_TARGET_X86ORX64 | 164 | #if LJ_TARGET_X86ORX64 || LJ_TARGET_PPC |
| 165 | ERRDEF(FFI_CBACKOV, "too many callbacks") | 165 | ERRDEF(FFI_CBACKOV, "too many callbacks") |
| 166 | #else | 166 | #else |
| 167 | ERRDEF(FFI_CBACKOV, "no support for callbacks (yet)") | 167 | ERRDEF(FFI_CBACKOV, "no support for callbacks (yet)") |
