diff options
| author | Mike Pall <mike> | 2011-07-13 21:36:17 +0200 |
|---|---|---|
| committer | Mike Pall <mike> | 2011-07-13 21:36:17 +0200 |
| commit | ca8dadb328be41dc9349a5d620348a17e90dba84 (patch) | |
| tree | 7969042ca2dea94a5c1a0258ed9eca15e7e37aae | |
| parent | 6599bc7db2fd10cb5c3aa38c59bed64c12f893a8 (diff) | |
| download | luajit-ca8dadb328be41dc9349a5d620348a17e90dba84.tar.gz luajit-ca8dadb328be41dc9349a5d620348a17e90dba84.tar.bz2 luajit-ca8dadb328be41dc9349a5d620348a17e90dba84.zip | |
PPC: Add dual-number mode interpreter.
| -rw-r--r-- | src/buildvm_ppc.dasc | 1725 | ||||
| -rw-r--r-- | src/buildvm_ppc.h | 6687 | ||||
| -rw-r--r-- | src/lj_arch.h | 2 | ||||
| -rw-r--r-- | src/lj_frame.h | 4 |
4 files changed, 7579 insertions, 839 deletions
diff --git a/src/buildvm_ppc.dasc b/src/buildvm_ppc.dasc index 2964e0e2..de3346cb 100644 --- a/src/buildvm_ppc.dasc +++ b/src/buildvm_ppc.dasc | |||
| @@ -26,14 +26,12 @@ | |||
| 26 | |.define LREG, r18 // Register holding lua_State (also in SAVE_L). | 26 | |.define LREG, r18 // Register holding lua_State (also in SAVE_L). |
| 27 | |.define MULTRES, r19 // Size of multi-result: (nresults+1)*8. | 27 | |.define MULTRES, r19 // Size of multi-result: (nresults+1)*8. |
| 28 | | | 28 | | |
| 29 | |// Constants for vectorized type-comparisons (hi+low GPR). C callee-save. | 29 | |// Constants for type-comparisons, stores and conversions. C callee-save. |
| 30 | |.define TISNUM, r22 | 30 | |.define TISNUM, r22 |
| 31 | |.define TISNIL, r23 | 31 | |.define TISNIL, r23 |
| 32 | |.define ZERO, r24 | 32 | |.define ZERO, r24 |
| 33 | |.define TISSTR, r25 // NYI: remove. | 33 | |.define TOBIT, f30 |
| 34 | |.define TISTAB, r26 // NYI: remove. | 34 | |.define TONUM, f31 |
| 35 | |.define TISFUNC, r27 // NYI: remove. | ||
| 36 | |.define TOBIT, r28 // NYI: use FP reg. | ||
| 37 | | | 35 | | |
| 38 | |// The following temporaries are not saved across C calls, except for RA. | 36 | |// The following temporaries are not saved across C calls, except for RA. |
| 39 | |.define RA, r20 // Callee-save. | 37 | |.define RA, r20 // Callee-save. |
| @@ -57,8 +55,8 @@ | |||
| 57 | |.define CARG4, r6 // Overlaps TMP3. | 55 | |.define CARG4, r6 // Overlaps TMP3. |
| 58 | |.define CARG5, r7 // Overlaps INS. | 56 | |.define CARG5, r7 // Overlaps INS. |
| 59 | | | 57 | | |
| 60 | |.define CARGF1, f1 | 58 | |.define FARG1, f1 |
| 61 | |.define CARGF2, f2 | 59 | |.define FARG2, f2 |
| 62 | | | 60 | | |
| 63 | |.define CRET1, r3 | 61 | |.define CRET1, r3 |
| 64 | |.define CRET2, r4 | 62 | |.define CRET2, r4 |
| @@ -69,16 +67,23 @@ | |||
| 69 | |// Back chain for sp: 256(sp) <-- sp entering interpreter | 67 | |// Back chain for sp: 256(sp) <-- sp entering interpreter |
| 70 | |.define SAVE_GPR_, 184 // .. 184+18*4: 32 bit GPR saves. | 68 | |.define SAVE_GPR_, 184 // .. 184+18*4: 32 bit GPR saves. |
| 71 | |.define SAVE_FPR_, 40 // .. 40+18*8: 64 bit FPR saves. | 69 | |.define SAVE_FPR_, 40 // .. 40+18*8: 64 bit FPR saves. |
| 72 | |.define SAVE_UNUSED, 32(sp) // 8 unused bytes for alignment. | 70 | |.define TONUM_LO, 36(sp) |
| 71 | |.define TONUM_HI, 32(sp) | ||
| 73 | |.define SAVE_ERRF, 28(sp) // 32 bit C frame info. | 72 | |.define SAVE_ERRF, 28(sp) // 32 bit C frame info. |
| 74 | |.define SAVE_NRES, 24(sp) | 73 | |.define SAVE_NRES, 24(sp) |
| 75 | |.define SAVE_CFRAME, 20(sp) | 74 | |.define SAVE_CFRAME, 20(sp) |
| 76 | |.define SAVE_L, 16(sp) | 75 | |.define SAVE_L, 16(sp) |
| 77 | |.define SAVE_PC, 12(sp) | 76 | |.define SAVE_MULTRES, 12(sp) |
| 78 | |.define SAVE_MULTRES, 8(sp) | 77 | |.define SAVE_PC, 8(sp) |
| 79 | |// Next frame lr: 4(sp) | 78 | |// Next frame lr: 4(sp) |
| 80 | |// Back chain for sp: 0(sp) <-- sp while in interpreter | 79 | |// Back chain for sp: 0(sp) <-- sp while in interpreter |
| 81 | | | 80 | | |
| 81 | |.define TMPD_LO, SAVE_MULTRES | ||
| 82 | |.define TMPD_BLO, 15(sp) | ||
| 83 | |.define TMPD_HI, SAVE_PC | ||
| 84 | |.define TMPD, SAVE_PC | ||
| 85 | |.define TONUM_D, TONUM_HI | ||
| 86 | | | ||
| 82 | |.macro save_, reg | 87 | |.macro save_, reg |
| 83 | | stw r..reg, SAVE_GPR_+(reg-14)*4(sp) | 88 | | stw r..reg, SAVE_GPR_+(reg-14)*4(sp) |
| 84 | | stfd f..reg, SAVE_FPR_+(reg-14)*8(sp) | 89 | | stfd f..reg, SAVE_FPR_+(reg-14)*8(sp) |
| @@ -133,6 +138,30 @@ | |||
| 133 | |// Trap for not-yet-implemented parts. | 138 | |// Trap for not-yet-implemented parts. |
| 134 | |.macro NYI; tw 4, sp, sp; .endmacro | 139 | |.macro NYI; tw 4, sp, sp; .endmacro |
| 135 | | | 140 | | |
| 141 | |// int/FP conversions. | ||
| 142 | |.macro tonum_i, freg, reg | ||
| 143 | | xoris reg, reg, 0x8000 | ||
| 144 | | stw reg, TONUM_LO | ||
| 145 | | lfd freg, TONUM_D | ||
| 146 | | fsub freg, freg, TONUM | ||
| 147 | |.endmacro | ||
| 148 | | | ||
| 149 | |.macro tonum_u, freg, reg | ||
| 150 | | stw reg, TONUM_LO | ||
| 151 | | lfd freg, TONUM_D | ||
| 152 | | fsub freg, freg, TOBIT | ||
| 153 | |.endmacro | ||
| 154 | | | ||
| 155 | |.macro toint, reg, freg, tmpfreg | ||
| 156 | | fctiwz tmpfreg, freg | ||
| 157 | | stfd tmpfreg, TMPD | ||
| 158 | | lwz reg, TMPD_LO | ||
| 159 | |.endmacro | ||
| 160 | | | ||
| 161 | |.macro toint, reg, freg | ||
| 162 | | toint reg, freg, freg | ||
| 163 | |.endmacro | ||
| 164 | | | ||
| 136 | |//----------------------------------------------------------------------- | 165 | |//----------------------------------------------------------------------- |
| 137 | | | 166 | | |
| 138 | |// Access to frame relative to BASE. | 167 | |// Access to frame relative to BASE. |
| @@ -218,14 +247,11 @@ | |||
| 218 | | | 247 | | |
| 219 | |// Macros to test operand types. | 248 | |// Macros to test operand types. |
| 220 | |.macro checknum, reg; cmplw reg, TISNUM; .endmacro | 249 | |.macro checknum, reg; cmplw reg, TISNUM; .endmacro |
| 250 | |.macro checknum, cr, reg; cmplw cr, reg, TISNUM; .endmacro | ||
| 221 | |.macro checkstr, reg; cmpwi reg, LJ_TSTR; .endmacro | 251 | |.macro checkstr, reg; cmpwi reg, LJ_TSTR; .endmacro |
| 222 | |.macro checktab, reg; cmpwi reg, LJ_TTAB; .endmacro | 252 | |.macro checktab, reg; cmpwi reg, LJ_TTAB; .endmacro |
| 223 | |.macro checkfunc, reg; cmpwi reg, LJ_TFUNC; .endmacro | 253 | |.macro checkfunc, reg; cmpwi reg, LJ_TFUNC; .endmacro |
| 224 | |.macro checknil, reg; cmpwi reg, LJ_TNIL; .endmacro | 254 | |.macro checknil, reg; cmpwi reg, LJ_TNIL; .endmacro |
| 225 | |.macro checkok, label; beq label; .endmacro // NYI: remove. | ||
| 226 | |.macro checkfail, label; bne label; .endmacro // NYI: remove. | ||
| 227 | |.macro checkanyfail, label; bns label; .endmacro // NYI: remove. | ||
| 228 | |.macro checkallok, label; bso label; .endmacro // NYI: remove. | ||
| 229 | | | 255 | | |
| 230 | |.macro branch_RD | 256 | |.macro branch_RD |
| 231 | | srwi TMP0, RD, 1 | 257 | | srwi TMP0, RD, 1 |
| @@ -276,7 +302,7 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 276 | |->vm_returnp: | 302 | |->vm_returnp: |
| 277 | | // See vm_return. Also: TMP2 = previous base. | 303 | | // See vm_return. Also: TMP2 = previous base. |
| 278 | | andi. TMP0, PC, FRAME_P | 304 | | andi. TMP0, PC, FRAME_P |
| 279 | | evsplati TMP1, LJ_TTRUE | 305 | | li TMP1, LJ_TTRUE |
| 280 | | beq ->cont_dispatch | 306 | | beq ->cont_dispatch |
| 281 | | | 307 | | |
| 282 | | // Return from pcall or xpcall fast func. | 308 | | // Return from pcall or xpcall fast func. |
| @@ -309,9 +335,9 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 309 | | beq >2 | 335 | | beq >2 |
| 310 | |1: | 336 | |1: |
| 311 | | addic. TMP1, TMP1, -8 | 337 | | addic. TMP1, TMP1, -8 |
| 312 | | evldd TMP0, 0(RA) | 338 | | lfd f0, 0(RA) |
| 313 | | addi RA, RA, 8 | 339 | | addi RA, RA, 8 |
| 314 | | evstdd TMP0, 0(BASE) | 340 | | stfd f0, 0(BASE) |
| 315 | | addi BASE, BASE, 8 | 341 | | addi BASE, BASE, 8 |
| 316 | | bne <1 | 342 | | bne <1 |
| 317 | | | 343 | | |
| @@ -336,16 +362,17 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 336 | | lwz TMP1, L->maxstack | 362 | | lwz TMP1, L->maxstack |
| 337 | | cmplw BASE, TMP1 | 363 | | cmplw BASE, TMP1 |
| 338 | | bge >8 | 364 | | bge >8 |
| 339 | | evstdd TISNIL, 0(BASE) | 365 | | stw TISNIL, 0(BASE) |
| 340 | | addi RD, RD, 8 | 366 | | addi RD, RD, 8 |
| 341 | | addi BASE, BASE, 8 | 367 | | addi BASE, BASE, 8 |
| 342 | | b <2 | 368 | | b <2 |
| 343 | | | 369 | | |
| 344 | |7: // Less results wanted. | 370 | |7: // Less results wanted. |
| 371 | | subfic TMP3, TMP2, 0 // LUA_MULTRET+1 case? | ||
| 345 | | sub TMP0, RD, TMP2 | 372 | | sub TMP0, RD, TMP2 |
| 346 | | cmpwi TMP2, 0 // LUA_MULTRET+1 case? | 373 | | subfe TMP1, TMP1, TMP1 // TMP1 = TMP2 == 0 ? 0 : -1 |
| 347 | | sub TMP0, BASE, TMP0 // Subtract the difference. | 374 | | and TMP0, TMP0, TMP1 |
| 348 | | iseleq BASE, BASE, TMP0 // Either keep top or shrink it. | 375 | | sub BASE, BASE, TMP0 // Either keep top or shrink it. |
| 349 | | b <3 | 376 | | b <3 |
| 350 | | | 377 | | |
| 351 | |8: // Corner case: need to grow stack for filling up results. | 378 | |8: // Corner case: need to grow stack for filling up results. |
| @@ -380,24 +407,25 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 380 | | rlwinm sp, CARG1, 0, 0, 29 | 407 | | rlwinm sp, CARG1, 0, 0, 29 |
| 381 | |->vm_unwind_ff_eh: // Landing pad for external unwinder. | 408 | |->vm_unwind_ff_eh: // Landing pad for external unwinder. |
| 382 | | lwz L, SAVE_L | 409 | | lwz L, SAVE_L |
| 383 | | evsplati TISNUM, LJ_TISNUM+1 // Setup type comparison constants. | 410 | | li TISNUM, LJ_TISNUM // Setup type comparison constants. |
| 384 | | evsplati TISFUNC, LJ_TFUNC | ||
| 385 | | lus TOBIT, 0x4338 | ||
| 386 | | evsplati TISTAB, LJ_TTAB | ||
| 387 | | li TMP0, 0 | ||
| 388 | | lwz BASE, L->base | 411 | | lwz BASE, L->base |
| 389 | | evmergelo TOBIT, TOBIT, TMP0 | 412 | | lus TMP3, 0x59c0 // TOBIT = 2^52 + 2^51 (float). |
| 390 | | lwz DISPATCH, L->glref // Setup pointer to dispatch table. | 413 | | lwz DISPATCH, L->glref // Setup pointer to dispatch table. |
| 391 | | evsplati TISSTR, LJ_TSTR | 414 | | li ZERO, 0 |
| 415 | | stw TMP3, TMPD | ||
| 392 | | li TMP1, LJ_TFALSE | 416 | | li TMP1, LJ_TFALSE |
| 393 | | evsplati TISNIL, LJ_TNIL | 417 | | ori TMP3, TMP3, 0x0004 // TONUM = 2^52 + 2^51 + 2^31 (float). |
| 418 | | li TISNIL, LJ_TNIL | ||
| 394 | | li_vmstate INTERP | 419 | | li_vmstate INTERP |
| 420 | | lfs TOBIT, TMPD | ||
| 395 | | lwz PC, FRAME_PC(BASE) // Fetch PC of previous frame. | 421 | | lwz PC, FRAME_PC(BASE) // Fetch PC of previous frame. |
| 396 | | la RA, -8(BASE) // Results start at BASE-8. | 422 | | la RA, -8(BASE) // Results start at BASE-8. |
| 423 | | stw TMP3, TMPD | ||
| 397 | | addi DISPATCH, DISPATCH, GG_G2DISP | 424 | | addi DISPATCH, DISPATCH, GG_G2DISP |
| 398 | | stw TMP1, 0(RA) // Prepend false to error message. | 425 | | stw TMP1, 0(RA) // Prepend false to error message. |
| 399 | | li RD, 16 // 2 results: false + error message. | 426 | | li RD, 16 // 2 results: false + error message. |
| 400 | | st_vmstate | 427 | | st_vmstate |
| 428 | | lfs TONUM, TMPD | ||
| 401 | | b ->vm_returnc | 429 | | b ->vm_returnc |
| 402 | | | 430 | | |
| 403 | |//----------------------------------------------------------------------- | 431 | |//----------------------------------------------------------------------- |
| @@ -454,22 +482,25 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 454 | | // Resume after yield (like a return). | 482 | | // Resume after yield (like a return). |
| 455 | | mr RA, BASE | 483 | | mr RA, BASE |
| 456 | | lwz BASE, L->base | 484 | | lwz BASE, L->base |
| 457 | | evsplati TISNUM, LJ_TISNUM+1 // Setup type comparison constants. | 485 | | li TISNUM, LJ_TISNUM // Setup type comparison constants. |
| 458 | | lwz TMP1, L->top | 486 | | lwz TMP1, L->top |
| 459 | | evsplati TISFUNC, LJ_TFUNC | ||
| 460 | | lus TOBIT, 0x4338 | ||
| 461 | | evsplati TISTAB, LJ_TTAB | ||
| 462 | | lwz PC, FRAME_PC(BASE) | 487 | | lwz PC, FRAME_PC(BASE) |
| 463 | | li TMP2, 0 | 488 | | lus TMP3, 0x59c0 // TOBIT = 2^52 + 2^51 (float). |
| 464 | | evsplati TISSTR, LJ_TSTR | ||
| 465 | | sub RD, TMP1, BASE | 489 | | sub RD, TMP1, BASE |
| 466 | | evmergelo TOBIT, TOBIT, TMP2 | ||
| 467 | | stb CARG3, L->status | 490 | | stb CARG3, L->status |
| 491 | | stw TMP3, TMPD | ||
| 468 | | andi. TMP0, PC, FRAME_TYPE | 492 | | andi. TMP0, PC, FRAME_TYPE |
| 469 | | li_vmstate INTERP | 493 | | ori TMP3, TMP3, 0x0004 // TONUM = 2^52 + 2^51 + 2^31 (float). |
| 494 | | lfs TOBIT, TMPD | ||
| 495 | | li ZERO, 0 | ||
| 496 | | stw TMP3, TMPD | ||
| 470 | | addi RD, RD, 8 | 497 | | addi RD, RD, 8 |
| 471 | | evsplati TISNIL, LJ_TNIL | 498 | | lus TMP0, 0x4338 // Hiword of 2^52 + 2^51 (double) |
| 472 | | mr MULTRES, RD | 499 | | mr MULTRES, RD |
| 500 | | stw TMP0, TONUM_HI | ||
| 501 | | li_vmstate INTERP | ||
| 502 | | lfs TONUM, TMPD | ||
| 503 | | li TISNIL, LJ_TNIL | ||
| 473 | | st_vmstate | 504 | | st_vmstate |
| 474 | | beq ->BC_RET_Z | 505 | | beq ->BC_RET_Z |
| 475 | | b ->vm_return | 506 | | b ->vm_return |
| @@ -500,27 +531,29 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 500 | | | 531 | | |
| 501 | |3: // Entry point for vm_cpcall/vm_resume (BASE = base, PC = ftype). | 532 | |3: // Entry point for vm_cpcall/vm_resume (BASE = base, PC = ftype). |
| 502 | | lwz TMP2, L->base // TMP2 = old base (used in vmeta_call). | 533 | | lwz TMP2, L->base // TMP2 = old base (used in vmeta_call). |
| 503 | | evsplati TISNUM, LJ_TISNUM+1 // Setup type comparison constants. | 534 | | li TISNUM, LJ_TISNUM // Setup type comparison constants. |
| 504 | | lwz TMP1, L->top | 535 | | lwz TMP1, L->top |
| 505 | | evsplati TISFUNC, LJ_TFUNC | 536 | | lus TMP3, 0x59c0 // TOBIT = 2^52 + 2^51 (float). |
| 506 | | add PC, PC, BASE | 537 | | add PC, PC, BASE |
| 507 | | evsplati TISTAB, LJ_TTAB | 538 | | stw TMP3, TMPD |
| 508 | | lus TOBIT, 0x4338 | 539 | | li ZERO, 0 |
| 509 | | li TMP0, 0 | 540 | | ori TMP3, TMP3, 0x0004 // TONUM = 2^52 + 2^51 + 2^31 (float). |
| 541 | | lfs TOBIT, TMPD | ||
| 510 | | sub PC, PC, TMP2 // PC = frame delta + frame type | 542 | | sub PC, PC, TMP2 // PC = frame delta + frame type |
| 511 | | evsplati TISSTR, LJ_TSTR | 543 | | stw TMP3, TMPD |
| 544 | | lus TMP0, 0x4338 // Hiword of 2^52 + 2^51 (double) | ||
| 512 | | sub NARGS8:RC, TMP1, BASE | 545 | | sub NARGS8:RC, TMP1, BASE |
| 513 | | evmergelo TOBIT, TOBIT, TMP0 | 546 | | stw TMP0, TONUM_HI |
| 514 | | li_vmstate INTERP | 547 | | li_vmstate INTERP |
| 515 | | evsplati TISNIL, LJ_TNIL | 548 | | lfs TONUM, TMPD |
| 549 | | li TISNIL, LJ_TNIL | ||
| 516 | | st_vmstate | 550 | | st_vmstate |
| 517 | | | 551 | | |
| 518 | |->vm_call_dispatch: | 552 | |->vm_call_dispatch: |
| 519 | | // TMP2 = old base, BASE = new base, RC = nargs*8, PC = caller PC | 553 | | // TMP2 = old base, BASE = new base, RC = nargs*8, PC = caller PC |
| 520 | | li TMP0, -8 | 554 | | lwz TMP0, FRAME_PC(BASE) |
| 521 | | evlddx LFUNC:RB, BASE, TMP0 | 555 | | lwz LFUNC:RB, FRAME_FUNC(BASE) |
| 522 | | checkfunc LFUNC:RB | 556 | | checkfunc TMP0; bne ->vmeta_call |
| 523 | | checkfail ->vmeta_call | ||
| 524 | | | 557 | | |
| 525 | |->vm_call_dispatch_f: | 558 | |->vm_call_dispatch_f: |
| 526 | | ins_call | 559 | | ins_call |
| @@ -570,7 +603,7 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 570 | | beq >1 | 603 | | beq >1 |
| 571 | | subi TMP2, RD, 8 | 604 | | subi TMP2, RD, 8 |
| 572 | | lwz TMP1, LFUNC:TMP1->pc | 605 | | lwz TMP1, LFUNC:TMP1->pc |
| 573 | | evstddx TISNIL, RA, TMP2 // Ensure one valid arg. | 606 | | stwx TISNIL, RA, TMP2 // Ensure one valid arg. |
| 574 | | lwz KBASE, PC2PROTO(k)(TMP1) | 607 | | lwz KBASE, PC2PROTO(k)(TMP1) |
| 575 | | // BASE = base, RA = resultptr, RB = meta base | 608 | | // BASE = base, RA = resultptr, RB = meta base |
| 576 | | mtctr TMP0 | 609 | | mtctr TMP0 |
| @@ -585,42 +618,45 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 585 | | lwz INS, -4(PC) | 618 | | lwz INS, -4(PC) |
| 586 | | subi CARG2, RB, 16 | 619 | | subi CARG2, RB, 16 |
| 587 | | decode_RB8 SAVE0, INS | 620 | | decode_RB8 SAVE0, INS |
| 588 | | evldd TMP0, 0(RA) | 621 | | lfd f0, 0(RA) |
| 589 | | add TMP1, BASE, SAVE0 | 622 | | add TMP1, BASE, SAVE0 |
| 590 | | stw BASE, L->base | 623 | | stw BASE, L->base |
| 591 | | cmplw TMP1, CARG2 | 624 | | cmplw TMP1, CARG2 |
| 592 | | sub CARG3, CARG2, TMP1 | 625 | | sub CARG3, CARG2, TMP1 |
| 593 | | decode_RA8 RA, INS | 626 | | decode_RA8 RA, INS |
| 594 | | evstdd TMP0, 0(CARG2) | 627 | | stfd f0, 0(CARG2) |
| 595 | | bne ->BC_CAT_Z | 628 | | bne ->BC_CAT_Z |
| 596 | | evstddx TMP0, BASE, RA | 629 | | stfdx f0, BASE, RA |
| 597 | | b ->cont_nop | 630 | | b ->cont_nop |
| 598 | | | 631 | | |
| 599 | |//-- Table indexing metamethods ----------------------------------------- | 632 | |//-- Table indexing metamethods ----------------------------------------- |
| 600 | | | 633 | | |
| 601 | |->vmeta_tgets1: | 634 | |->vmeta_tgets1: |
| 602 | | evmergelo STR:RC, TISSTR, STR:RC | ||
| 603 | | la CARG3, DISPATCH_GL(tmptv)(DISPATCH) | 635 | | la CARG3, DISPATCH_GL(tmptv)(DISPATCH) |
| 636 | | li TMP0, LJ_TSTR | ||
| 604 | | decode_RB8 RB, INS | 637 | | decode_RB8 RB, INS |
| 605 | | evstdd STR:RC, 0(CARG3) | 638 | | stw STR:RC, 4(CARG3) |
| 606 | | add CARG2, BASE, RB | 639 | | add CARG2, BASE, RB |
| 640 | | stw TMP0, 0(CARG3) | ||
| 607 | | b >1 | 641 | | b >1 |
| 608 | | | 642 | | |
| 609 | |->vmeta_tgets: | 643 | |->vmeta_tgets: |
| 610 | | evmergelo TAB:RB, TISTAB, TAB:RB | ||
| 611 | | la CARG2, DISPATCH_GL(tmptv)(DISPATCH) | 644 | | la CARG2, DISPATCH_GL(tmptv)(DISPATCH) |
| 612 | | evmergelo STR:RC, TISSTR, STR:RC | 645 | | li TMP0, LJ_TTAB |
| 613 | | evstdd TAB:RB, 0(CARG2) | 646 | | stw TAB:RB, 4(CARG2) |
| 614 | | la CARG3, DISPATCH_GL(tmptv2)(DISPATCH) | 647 | | la CARG3, DISPATCH_GL(tmptv2)(DISPATCH) |
| 615 | | evstdd STR:RC, 0(CARG3) | 648 | | stw TMP0, 0(CARG2) |
| 649 | | li TMP1, LJ_TSTR | ||
| 650 | | stw STR:RC, 4(CARG3) | ||
| 651 | | stw TMP1, 0(CARG3) | ||
| 616 | | b >1 | 652 | | b >1 |
| 617 | | | 653 | | |
| 618 | |->vmeta_tgetb: // TMP0 = index | 654 | |->vmeta_tgetb: // TMP0 = index |
| 619 | | efdcfsi TMP0, TMP0 | 655 | | tonum_u f0, TMP0 |
| 620 | | decode_RB8 RB, INS | 656 | | decode_RB8 RB, INS |
| 621 | | la CARG3, DISPATCH_GL(tmptv)(DISPATCH) | 657 | | la CARG3, DISPATCH_GL(tmptv)(DISPATCH) |
| 622 | | add CARG2, BASE, RB | 658 | | add CARG2, BASE, RB |
| 623 | | evstdd TMP0, 0(CARG3) | 659 | | stfd f0, 0(CARG3) |
| 624 | | b >1 | 660 | | b >1 |
| 625 | | | 661 | | |
| 626 | |->vmeta_tgetv: | 662 | |->vmeta_tgetv: |
| @@ -636,9 +672,10 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 636 | | // Returns TValue * (finished) or NULL (metamethod). | 672 | | // Returns TValue * (finished) or NULL (metamethod). |
| 637 | | cmplwi CRET1, 0 | 673 | | cmplwi CRET1, 0 |
| 638 | | beq >3 | 674 | | beq >3 |
| 639 | | evldd TMP0, 0(CRET1) | 675 | | lfd f0, 0(CRET1) |
| 640 | | evstddx TMP0, BASE, RA | 676 | | ins_next1 |
| 641 | | ins_next | 677 | | stfdx f0, BASE, RA |
| 678 | | ins_next2 | ||
| 642 | | | 679 | | |
| 643 | |3: // Call __index metamethod. | 680 | |3: // Call __index metamethod. |
| 644 | | // BASE = base, L->top = new base, stack = cont/func/t/k | 681 | | // BASE = base, L->top = new base, stack = cont/func/t/k |
| @@ -653,28 +690,31 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 653 | |//----------------------------------------------------------------------- | 690 | |//----------------------------------------------------------------------- |
| 654 | | | 691 | | |
| 655 | |->vmeta_tsets1: | 692 | |->vmeta_tsets1: |
| 656 | | evmergelo STR:RC, TISSTR, STR:RC | ||
| 657 | | la CARG3, DISPATCH_GL(tmptv)(DISPATCH) | 693 | | la CARG3, DISPATCH_GL(tmptv)(DISPATCH) |
| 694 | | li TMP0, LJ_TSTR | ||
| 658 | | decode_RB8 RB, INS | 695 | | decode_RB8 RB, INS |
| 659 | | evstdd STR:RC, 0(CARG3) | 696 | | stw STR:RC, 4(CARG3) |
| 660 | | add CARG2, BASE, RB | 697 | | add CARG2, BASE, RB |
| 698 | | stw TMP0, 0(CARG3) | ||
| 661 | | b >1 | 699 | | b >1 |
| 662 | | | 700 | | |
| 663 | |->vmeta_tsets: | 701 | |->vmeta_tsets: |
| 664 | | evmergelo TAB:RB, TISTAB, TAB:RB | ||
| 665 | | la CARG2, DISPATCH_GL(tmptv)(DISPATCH) | 702 | | la CARG2, DISPATCH_GL(tmptv)(DISPATCH) |
| 666 | | evmergelo STR:RC, TISSTR, STR:RC | 703 | | li TMP0, LJ_TTAB |
| 667 | | evstdd TAB:RB, 0(CARG2) | 704 | | stw TAB:RB, 4(CARG2) |
| 668 | | la CARG3, DISPATCH_GL(tmptv2)(DISPATCH) | 705 | | la CARG3, DISPATCH_GL(tmptv2)(DISPATCH) |
| 669 | | evstdd STR:RC, 0(CARG3) | 706 | | stw TMP0, 0(CARG2) |
| 707 | | li TMP1, LJ_TSTR | ||
| 708 | | stw STR:RC, 4(CARG3) | ||
| 709 | | stw TMP1, 0(CARG3) | ||
| 670 | | b >1 | 710 | | b >1 |
| 671 | | | 711 | | |
| 672 | |->vmeta_tsetb: // TMP0 = index | 712 | |->vmeta_tsetb: // TMP0 = index |
| 673 | | efdcfsi TMP0, TMP0 | 713 | | tonum_u f0, TMP0 |
| 674 | | decode_RB8 RB, INS | 714 | | decode_RB8 RB, INS |
| 675 | | la CARG3, DISPATCH_GL(tmptv)(DISPATCH) | 715 | | la CARG3, DISPATCH_GL(tmptv)(DISPATCH) |
| 676 | | add CARG2, BASE, RB | 716 | | add CARG2, BASE, RB |
| 677 | | evstdd TMP0, 0(CARG3) | 717 | | stfd f0, 0(CARG3) |
| 678 | | b >1 | 718 | | b >1 |
| 679 | | | 719 | | |
| 680 | |->vmeta_tsetv: | 720 | |->vmeta_tsetv: |
| @@ -689,11 +729,12 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 689 | | bl extern lj_meta_tset // (lua_State *L, TValue *o, TValue *k) | 729 | | bl extern lj_meta_tset // (lua_State *L, TValue *o, TValue *k) |
| 690 | | // Returns TValue * (finished) or NULL (metamethod). | 730 | | // Returns TValue * (finished) or NULL (metamethod). |
| 691 | | cmplwi CRET1, 0 | 731 | | cmplwi CRET1, 0 |
| 692 | | evlddx TMP0, BASE, RA | 732 | | lfdx f0, BASE, RA |
| 693 | | beq >3 | 733 | | beq >3 |
| 694 | | // NOBARRIER: lj_meta_tset ensures the table is not black. | 734 | | // NOBARRIER: lj_meta_tset ensures the table is not black. |
| 695 | | evstdd TMP0, 0(CRET1) | 735 | | ins_next1 |
| 696 | | ins_next | 736 | | stfd f0, 0(CRET1) |
| 737 | | ins_next2 | ||
| 697 | | | 738 | | |
| 698 | |3: // Call __newindex metamethod. | 739 | |3: // Call __newindex metamethod. |
| 699 | | // BASE = base, L->top = new base, stack = cont/func/t/k/(v) | 740 | | // BASE = base, L->top = new base, stack = cont/func/t/k/(v) |
| @@ -703,7 +744,7 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 703 | | add PC, TMP1, BASE | 744 | | add PC, TMP1, BASE |
| 704 | | lwz LFUNC:RB, FRAME_FUNC(BASE) // Guaranteed to be a function here. | 745 | | lwz LFUNC:RB, FRAME_FUNC(BASE) // Guaranteed to be a function here. |
| 705 | | li NARGS8:RC, 24 // 3 args for func(t, k, v) | 746 | | li NARGS8:RC, 24 // 3 args for func(t, k, v) |
| 706 | | evstdd TMP0, 16(BASE) // Copy value to third argument. | 747 | | stfd f0, 16(BASE) // Copy value to third argument. |
| 707 | | b ->vm_call_dispatch_f | 748 | | b ->vm_call_dispatch_f |
| 708 | | | 749 | | |
| 709 | |//-- Comparison metamethods --------------------------------------------- | 750 | |//-- Comparison metamethods --------------------------------------------- |
| @@ -721,33 +762,35 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 721 | |3: | 762 | |3: |
| 722 | | cmplwi CRET1, 1 | 763 | | cmplwi CRET1, 1 |
| 723 | | bgt ->vmeta_binop | 764 | | bgt ->vmeta_binop |
| 765 | | subfic CRET1, CRET1, 0 | ||
| 724 | |4: | 766 | |4: |
| 725 | | lwz INS, 0(PC) | 767 | | lwz INS, 0(PC) |
| 726 | | addi PC, PC, 4 | 768 | | addi PC, PC, 4 |
| 727 | | decode_RD4 TMP2, INS | 769 | | decode_RD4 TMP2, INS |
| 728 | | addis TMP3, PC, -(BCBIAS_J*4 >> 16) | 770 | | addis TMP2, TMP2, -(BCBIAS_J*4 >> 16) |
| 729 | | add TMP2, TMP2, TMP3 | 771 | | and TMP2, TMP2, CRET1 |
| 730 | | isellt PC, PC, TMP2 | 772 | | add PC, PC, TMP2 |
| 731 | |->cont_nop: | 773 | |->cont_nop: |
| 732 | | ins_next | 774 | | ins_next |
| 733 | | | 775 | | |
| 734 | |->cont_ra: // RA = resultptr | 776 | |->cont_ra: // RA = resultptr |
| 735 | | lwz INS, -4(PC) | 777 | | lwz INS, -4(PC) |
| 736 | | evldd TMP0, 0(RA) | 778 | | lfd f0, 0(RA) |
| 737 | | decode_RA8 TMP1, INS | 779 | | decode_RA8 TMP1, INS |
| 738 | | evstddx TMP0, BASE, TMP1 | 780 | | stfdx f0, BASE, TMP1 |
| 739 | | b ->cont_nop | 781 | | b ->cont_nop |
| 740 | | | 782 | | |
| 741 | |->cont_condt: // RA = resultptr | 783 | |->cont_condt: // RA = resultptr |
| 742 | | lwz TMP0, 0(RA) | 784 | | lwz TMP0, 0(RA) |
| 743 | | li TMP1, LJ_TTRUE | 785 | | subfic TMP0, TMP0, LJ_TTRUE // Branch if result is true. |
| 744 | | cmplw TMP1, TMP0 // Branch if result is true. | 786 | | subfe CRET1, CRET1, CRET1 |
| 787 | | not CRET1, CRET1 | ||
| 745 | | b <4 | 788 | | b <4 |
| 746 | | | 789 | | |
| 747 | |->cont_condf: // RA = resultptr | 790 | |->cont_condf: // RA = resultptr |
| 748 | | lwz TMP0, 0(RA) | 791 | | lwz TMP0, 0(RA) |
| 749 | | li TMP1, LJ_TFALSE | 792 | | subfic TMP0, TMP0, LJ_TTRUE // Branch if result is false. |
| 750 | | cmplw TMP0, TMP1 // Branch if result is false. | 793 | | subfe CRET1, CRET1, CRET1 |
| 751 | | b <4 | 794 | | b <4 |
| 752 | | | 795 | | |
| 753 | |->vmeta_equal: | 796 | |->vmeta_equal: |
| @@ -773,8 +816,8 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 773 | | b >1 | 816 | | b >1 |
| 774 | | | 817 | | |
| 775 | |->vmeta_unm: | 818 | |->vmeta_unm: |
| 776 | | add CARG3, BASE, RD | 819 | | mr CARG3, RD |
| 777 | | mr CARG4, CARG3 | 820 | | mr CARG4, RD |
| 778 | | b >1 | 821 | | b >1 |
| 779 | | | 822 | | |
| 780 | |->vmeta_arith_vv: | 823 | |->vmeta_arith_vv: |
| @@ -796,6 +839,7 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 796 | | // BASE = old base, CRET1 = new base, stack = cont/func/o1/o2 | 839 | | // BASE = old base, CRET1 = new base, stack = cont/func/o1/o2 |
| 797 | | sub TMP1, CRET1, BASE | 840 | | sub TMP1, CRET1, BASE |
| 798 | | stw PC, -16(CRET1) // [cont|PC] | 841 | | stw PC, -16(CRET1) // [cont|PC] |
| 842 | | mr TMP2, BASE | ||
| 799 | | addi PC, TMP1, FRAME_CONT | 843 | | addi PC, TMP1, FRAME_CONT |
| 800 | | mr BASE, CRET1 | 844 | | mr BASE, CRET1 |
| 801 | | li NARGS8:RC, 16 // 2 args for func(o1, o2). | 845 | | li NARGS8:RC, 16 // 2 args for func(o1, o2). |
| @@ -805,7 +849,7 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 805 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 849 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 806 | | mr SAVE0, CARG1 | 850 | | mr SAVE0, CARG1 |
| 807 | #endif | 851 | #endif |
| 808 | | add CARG2, BASE, RD | 852 | | mr CARG2, RD |
| 809 | | stw BASE, L->base | 853 | | stw BASE, L->base |
| 810 | | mr CARG1, L | 854 | | mr CARG1, L |
| 811 | | stw PC, SAVE_PC | 855 | | stw PC, SAVE_PC |
| @@ -882,29 +926,40 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 882 | |.macro .ffunc_1, name | 926 | |.macro .ffunc_1, name |
| 883 | |->ff_ .. name: | 927 | |->ff_ .. name: |
| 884 | | cmplwi NARGS8:RC, 8 | 928 | | cmplwi NARGS8:RC, 8 |
| 885 | | evldd CARG1, 0(BASE) | 929 | | lwz CARG3, 0(BASE) |
| 930 | | lwz CARG1, 4(BASE) | ||
| 886 | | blt ->fff_fallback | 931 | | blt ->fff_fallback |
| 887 | |.endmacro | 932 | |.endmacro |
| 888 | | | 933 | | |
| 889 | |.macro .ffunc_2, name | 934 | |.macro .ffunc_2, name |
| 890 | |->ff_ .. name: | 935 | |->ff_ .. name: |
| 891 | | cmplwi NARGS8:RC, 16 | 936 | | cmplwi NARGS8:RC, 16 |
| 892 | | evldd CARG1, 0(BASE) | 937 | | lwz CARG3, 0(BASE) |
| 893 | | evldd CARG2, 8(BASE) | 938 | | lwz CARG4, 8(BASE) |
| 939 | | lwz CARG1, 4(BASE) | ||
| 940 | | lwz CARG2, 12(BASE) | ||
| 894 | | blt ->fff_fallback | 941 | | blt ->fff_fallback |
| 895 | |.endmacro | 942 | |.endmacro |
| 896 | | | 943 | | |
| 897 | |.macro .ffunc_n, name | 944 | |.macro .ffunc_n, name |
| 898 | | .ffunc_1 name | 945 | |->ff_ .. name: |
| 899 | | checknum CARG1 | 946 | | cmplwi NARGS8:RC, 8 |
| 900 | | checkfail ->fff_fallback | 947 | | lwz CARG3, 0(BASE) |
| 948 | | lfd FARG1, 0(BASE) | ||
| 949 | | blt ->fff_fallback | ||
| 950 | | checknum CARG3; bge ->fff_fallback | ||
| 901 | |.endmacro | 951 | |.endmacro |
| 902 | | | 952 | | |
| 903 | |.macro .ffunc_nn, name | 953 | |.macro .ffunc_nn, name |
| 904 | | .ffunc_2 name | 954 | |->ff_ .. name: |
| 905 | | evmergehi TMP0, CARG1, CARG2 | 955 | | cmplwi NARGS8:RC, 16 |
| 906 | | checknum TMP0 | 956 | | lwz CARG3, 0(BASE) |
| 907 | | checkanyfail ->fff_fallback | 957 | | lfd FARG1, 0(BASE) |
| 958 | | lwz CARG4, 8(BASE) | ||
| 959 | | lfd FARG2, 8(BASE) | ||
| 960 | | blt ->fff_fallback | ||
| 961 | | checknum CARG3; bge ->fff_fallback | ||
| 962 | | checknum CARG4; bge ->fff_fallback | ||
| 908 | |.endmacro | 963 | |.endmacro |
| 909 | | | 964 | | |
| 910 | |// Inlined GC threshold check. Caveat: uses TMP0 and TMP1. | 965 | |// Inlined GC threshold check. Caveat: uses TMP0 and TMP1. |
| @@ -917,24 +972,22 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 917 | | | 972 | | |
| 918 | |//-- Base library: checks ----------------------------------------------- | 973 | |//-- Base library: checks ----------------------------------------------- |
| 919 | | | 974 | | |
| 920 | |.ffunc assert | 975 | |.ffunc_1 assert |
| 921 | | cmplwi NARGS8:RC, 8 | 976 | | li TMP1, LJ_TFALSE |
| 922 | | evldd TMP0, 0(BASE) | 977 | | la RA, -8(BASE) |
| 923 | | blt ->fff_fallback | 978 | | cmplw cr1, CARG3, TMP1 |
| 924 | | evaddw TMP1, TISNIL, TISNIL // Synthesize LJ_TFALSE. | ||
| 925 | | la RA, -8(BASE) | ||
| 926 | | evcmpltu cr1, TMP0, TMP1 | ||
| 927 | | lwz PC, FRAME_PC(BASE) | 979 | | lwz PC, FRAME_PC(BASE) |
| 928 | | bge cr1, ->fff_fallback | 980 | | bge cr1, ->fff_fallback |
| 929 | | evstdd TMP0, 0(RA) | 981 | | stw CARG3, 0(RA) |
| 930 | | addi RD, NARGS8:RC, 8 // Compute (nresults+1)*8. | 982 | | addi RD, NARGS8:RC, 8 // Compute (nresults+1)*8. |
| 931 | | beq ->fff_res // Done if exactly 1 argument. | 983 | | stw CARG1, 4(RA) |
| 984 | | beq ->fff_res // Done if exactly 1 argument. | ||
| 932 | | li TMP1, 8 | 985 | | li TMP1, 8 |
| 933 | | subi RC, RC, 8 | 986 | | subi RC, RC, 8 |
| 934 | |1: | 987 | |1: |
| 935 | | cmplw TMP1, RC | 988 | | cmplw TMP1, RC |
| 936 | | evlddx TMP0, BASE, TMP1 | 989 | | lfdx f0, BASE, TMP1 |
| 937 | | evstddx TMP0, RA, TMP1 | 990 | | stfdx f0, RA, TMP1 |
| 938 | | addi TMP1, TMP1, 8 | 991 | | addi TMP1, TMP1, 8 |
| 939 | | bne <1 | 992 | | bne <1 |
| 940 | | b ->fff_res | 993 | | b ->fff_res |
| @@ -943,71 +996,70 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 943 | | cmplwi NARGS8:RC, 8 | 996 | | cmplwi NARGS8:RC, 8 |
| 944 | | lwz CARG1, 0(BASE) | 997 | | lwz CARG1, 0(BASE) |
| 945 | | blt ->fff_fallback | 998 | | blt ->fff_fallback |
| 946 | | li TMP2, ~LJ_TNUMX | 999 | | subfc TMP0, TISNUM, CARG1 |
| 947 | | cmplw CARG1, TISNUM | 1000 | | subfe TMP2, CARG1, CARG1 |
| 948 | | not TMP1, CARG1 | 1001 | | orc TMP1, TMP2, TMP0 |
| 949 | | isellt TMP1, TMP2, TMP1 | 1002 | | addi TMP1, TMP1, ~LJ_TISNUM+1 |
| 950 | | slwi TMP1, TMP1, 3 | 1003 | | slwi TMP1, TMP1, 3 |
| 951 | | la TMP2, CFUNC:RB->upvalue | 1004 | | la TMP2, CFUNC:RB->upvalue |
| 952 | | evlddx STR:CRET1, TMP2, TMP1 | 1005 | | lfdx FARG1, TMP2, TMP1 |
| 953 | | b ->fff_restv | 1006 | | b ->fff_resn |
| 954 | | | 1007 | | |
| 955 | |//-- Base library: getters and setters --------------------------------- | 1008 | |//-- Base library: getters and setters --------------------------------- |
| 956 | | | 1009 | | |
| 957 | |.ffunc_1 getmetatable | 1010 | |.ffunc_1 getmetatable |
| 958 | | checktab CARG1 | 1011 | | checktab CARG3; bne >6 |
| 959 | | evmergehi TMP1, CARG1, CARG1 | ||
| 960 | | checkfail >6 | ||
| 961 | |1: // Field metatable must be at same offset for GCtab and GCudata! | 1012 | |1: // Field metatable must be at same offset for GCtab and GCudata! |
| 962 | | lwz TAB:RB, TAB:CARG1->metatable | 1013 | | lwz TAB:CARG1, TAB:CARG1->metatable |
| 963 | |2: | 1014 | |2: |
| 964 | | evmr CRET1, TISNIL | 1015 | | li CARG3, LJ_TNIL |
| 965 | | cmplwi TAB:RB, 0 | 1016 | | cmplwi TAB:CARG1, 0 |
| 966 | | lwz STR:RC, DISPATCH_GL(gcroot[GCROOT_MMNAME+MM_metatable])(DISPATCH) | 1017 | | lwz STR:RC, DISPATCH_GL(gcroot[GCROOT_MMNAME+MM_metatable])(DISPATCH) |
| 967 | | beq ->fff_restv | 1018 | | beq ->fff_restv |
| 968 | | lwz TMP0, TAB:RB->hmask | 1019 | | lwz TMP0, TAB:CARG1->hmask |
| 969 | | evmergelo CRET1, TISTAB, TAB:RB // Use metatable as default result. | 1020 | | li CARG3, LJ_TTAB // Use metatable as default result. |
| 970 | | lwz TMP1, STR:RC->hash | 1021 | | lwz TMP1, STR:RC->hash |
| 971 | | lwz NODE:TMP2, TAB:RB->node | 1022 | | lwz NODE:TMP2, TAB:CARG1->node |
| 972 | | evmergelo STR:RC, TISSTR, STR:RC | ||
| 973 | | and TMP1, TMP1, TMP0 // idx = str->hash & tab->hmask | 1023 | | and TMP1, TMP1, TMP0 // idx = str->hash & tab->hmask |
| 974 | | slwi TMP0, TMP1, 5 | 1024 | | slwi TMP0, TMP1, 5 |
| 975 | | slwi TMP1, TMP1, 3 | 1025 | | slwi TMP1, TMP1, 3 |
| 976 | | sub TMP1, TMP0, TMP1 | 1026 | | sub TMP1, TMP0, TMP1 |
| 977 | | add NODE:TMP2, NODE:TMP2, TMP1 // node = tab->node + (idx*32-idx*8) | 1027 | | add NODE:TMP2, NODE:TMP2, TMP1 // node = tab->node + (idx*32-idx*8) |
| 978 | |3: // Rearranged logic, because we expect _not_ to find the key. | 1028 | |3: // Rearranged logic, because we expect _not_ to find the key. |
| 979 | | evldd TMP0, NODE:TMP2->key | 1029 | | lwz CARG4, NODE:TMP2->key |
| 980 | | evldd TMP1, NODE:TMP2->val | 1030 | | lwz TMP0, 4+offsetof(Node, key)(NODE:TMP2) |
| 981 | | evcmpeq TMP0, STR:RC | 1031 | | lwz CARG2, NODE:TMP2->val |
| 982 | | lwz NODE:TMP2, NODE:TMP2->next | 1032 | | lwz TMP1, 4+offsetof(Node, val)(NODE:TMP2) |
| 983 | | checkallok >5 | 1033 | | checkstr CARG4; bne >4 |
| 984 | | cmplwi NODE:TMP2, 0 | 1034 | | cmpw TMP0, STR:RC; beq >5 |
| 985 | | beq ->fff_restv // Not found, keep default result. | 1035 | |4: |
| 986 | | b <3 | 1036 | | lwz NODE:TMP2, NODE:TMP2->next |
| 1037 | | cmplwi NODE:TMP2, 0 | ||
| 1038 | | beq ->fff_restv // Not found, keep default result. | ||
| 1039 | | b <3 | ||
| 987 | |5: | 1040 | |5: |
| 988 | | checknil TMP1 | 1041 | | checknil CARG2 |
| 989 | | checkok ->fff_restv // Ditto for nil value. | 1042 | | beq ->fff_restv // Ditto for nil value. |
| 990 | | evmr CRET1, TMP1 // Return value of mt.__metatable. | 1043 | | mr CARG3, CARG2 // Return value of mt.__metatable. |
| 1044 | | mr CARG1, TMP1 | ||
| 991 | | b ->fff_restv | 1045 | | b ->fff_restv |
| 992 | | | 1046 | | |
| 993 | |6: | 1047 | |6: |
| 994 | | cmpwi TMP1, LJ_TUDATA | 1048 | | cmpwi CARG3, LJ_TUDATA; beq <1 |
| 995 | | not TMP1, TMP1 | 1049 | | subfc TMP0, TISNUM, CARG3 |
| 996 | | beq <1 | 1050 | | subfe TMP2, CARG3, CARG3 |
| 997 | | checknum CARG1 | 1051 | | orc TMP1, TMP2, TMP0 |
| 998 | | slwi TMP1, TMP1, 2 | 1052 | | addi TMP1, TMP1, ~LJ_TISNUM+1 |
| 999 | | li TMP2, 4*~LJ_TNUMX | 1053 | | slwi TMP1, TMP1, 2 |
| 1000 | | isellt TMP1, TMP2, TMP1 | ||
| 1001 | | la TMP2, DISPATCH_GL(gcroot[GCROOT_BASEMT])(DISPATCH) | 1054 | | la TMP2, DISPATCH_GL(gcroot[GCROOT_BASEMT])(DISPATCH) |
| 1002 | | lwzx TAB:RB, TMP2, TMP1 | 1055 | | lwzx TAB:CARG1, TMP2, TMP1 |
| 1003 | | b <2 | 1056 | | b <2 |
| 1004 | | | 1057 | | |
| 1005 | |.ffunc_2 setmetatable | 1058 | |.ffunc_2 setmetatable |
| 1006 | | // Fast path: no mt for table yet and not clearing the mt. | 1059 | | // Fast path: no mt for table yet and not clearing the mt. |
| 1007 | | evmergehi TMP0, TAB:CARG1, TAB:CARG2 | 1060 | | checktab CARG3; bne ->fff_fallback |
| 1008 | | checktab TMP0 | ||
| 1009 | | checkanyfail ->fff_fallback | ||
| 1010 | | lwz TAB:TMP1, TAB:CARG1->metatable | 1061 | | lwz TAB:TMP1, TAB:CARG1->metatable |
| 1062 | | checktab CARG4; bne ->fff_fallback | ||
| 1011 | | cmplwi TAB:TMP1, 0 | 1063 | | cmplwi TAB:TMP1, 0 |
| 1012 | | lbz TMP3, TAB:CARG1->marked | 1064 | | lbz TMP3, TAB:CARG1->marked |
| 1013 | | bne ->fff_fallback | 1065 | | bne ->fff_fallback |
| @@ -1018,60 +1070,61 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1018 | | b ->fff_restv | 1070 | | b ->fff_restv |
| 1019 | | | 1071 | | |
| 1020 | |.ffunc rawget | 1072 | |.ffunc rawget |
| 1021 | | cmplwi NARGS8:RC, 16 | 1073 | | cmplwi NARGS8:RC, 8 |
| 1022 | | evldd CARG2, 0(BASE) | 1074 | | lwz CARG4, 0(BASE) |
| 1075 | | lwz TAB:CARG2, 4(BASE) | ||
| 1023 | | blt ->fff_fallback | 1076 | | blt ->fff_fallback |
| 1024 | | checktab CARG2 | 1077 | | checktab CARG4; bne ->fff_fallback |
| 1025 | | la CARG3, 8(BASE) | 1078 | | la CARG3, 8(BASE) |
| 1026 | | checkfail ->fff_fallback | ||
| 1027 | | mr CARG1, L | 1079 | | mr CARG1, L |
| 1028 | | bl extern lj_tab_get // (lua_State *L, GCtab *t, cTValue *key) | 1080 | | bl extern lj_tab_get // (lua_State *L, GCtab *t, cTValue *key) |
| 1029 | | // Returns cTValue *. | 1081 | | // Returns cTValue *. |
| 1030 | | evldd CRET1, 0(CRET1) | 1082 | | lfd FARG1, 0(CRET1) |
| 1031 | | b ->fff_restv | 1083 | | b ->fff_resn |
| 1032 | | | 1084 | | |
| 1033 | |//-- Base library: conversions ------------------------------------------ | 1085 | |//-- Base library: conversions ------------------------------------------ |
| 1034 | | | 1086 | | |
| 1035 | |.ffunc tonumber | 1087 | |.ffunc tonumber |
| 1036 | | // Only handles the number case inline (without a base argument). | 1088 | | // Only handles the number case inline (without a base argument). |
| 1037 | | cmplwi NARGS8:RC, 8 | 1089 | | cmplwi NARGS8:RC, 8 |
| 1038 | | evldd CARG1, 0(BASE) | 1090 | | lwz CARG1, 0(BASE) |
| 1091 | | lfd FARG1, 0(BASE) | ||
| 1039 | | bne ->fff_fallback // Exactly one argument. | 1092 | | bne ->fff_fallback // Exactly one argument. |
| 1040 | | checknum CARG1 | 1093 | | checknum CARG1; bgt ->fff_fallback |
| 1041 | | checkok ->fff_restv | 1094 | | b ->fff_resn |
| 1042 | | b ->fff_fallback | ||
| 1043 | | | 1095 | | |
| 1044 | |.ffunc_1 tostring | 1096 | |.ffunc_1 tostring |
| 1045 | | // Only handles the string or number case inline. | 1097 | | // Only handles the string or number case inline. |
| 1046 | | checkstr CARG1 | 1098 | | checkstr CARG3 |
| 1047 | | // A __tostring method in the string base metatable is ignored. | 1099 | | // A __tostring method in the string base metatable is ignored. |
| 1048 | | checkok ->fff_restv // String key? | 1100 | | beq ->fff_restv // String key? |
| 1049 | | // Handle numbers inline, unless a number base metatable is present. | 1101 | | // Handle numbers inline, unless a number base metatable is present. |
| 1050 | | lwz TMP0, DISPATCH_GL(gcroot[GCROOT_BASEMT_NUM])(DISPATCH) | 1102 | | lwz TMP0, DISPATCH_GL(gcroot[GCROOT_BASEMT_NUM])(DISPATCH) |
| 1051 | | checknum CARG1 | 1103 | | checknum CARG3 |
| 1052 | | cmplwi cr1, TMP0, 0 | 1104 | | cmplwi cr1, TMP0, 0 |
| 1053 | | stw BASE, L->base // Add frame since C call can throw. | 1105 | | stw BASE, L->base // Add frame since C call can throw. |
| 1054 | | crand 4*cr0+eq, 4*cr0+eq, 4*cr1+eq | 1106 | | crorc 4*cr0+eq, 4*cr0+gt, 4*cr1+eq |
| 1055 | | stw PC, SAVE_PC // Redundant (but a defined value). | 1107 | | stw PC, SAVE_PC // Redundant (but a defined value). |
| 1056 | | bne ->fff_fallback | 1108 | | beq ->fff_fallback |
| 1057 | | ffgccheck | 1109 | | ffgccheck |
| 1058 | | mr CARG1, L | 1110 | | mr CARG1, L |
| 1059 | | mr CARG2, BASE | 1111 | | mr CARG2, BASE |
| 1060 | | bl extern lj_str_fromnum // (lua_State *L, lua_Number *np) | 1112 | | bl extern lj_str_fromnum // (lua_State *L, lua_Number *np) |
| 1061 | | // Returns GCstr *. | 1113 | | // Returns GCstr *. |
| 1062 | | evmergelo STR:CRET1, TISSTR, STR:CRET1 | 1114 | | li CARG3, LJ_TSTR |
| 1063 | | b ->fff_restv | 1115 | | b ->fff_restv |
| 1064 | | | 1116 | | |
| 1065 | |//-- Base library: iterators ------------------------------------------- | 1117 | |//-- Base library: iterators ------------------------------------------- |
| 1066 | | | 1118 | | |
| 1067 | |.ffunc next | 1119 | |.ffunc next |
| 1068 | | cmplwi NARGS8:RC, 8 | 1120 | | cmplwi NARGS8:RC, 8 |
| 1069 | | evldd CARG2, 0(BASE) | 1121 | | lwz CARG1, 0(BASE) |
| 1122 | | lwz TAB:CARG2, 4(BASE) | ||
| 1070 | | blt ->fff_fallback | 1123 | | blt ->fff_fallback |
| 1071 | | evstddx TISNIL, BASE, NARGS8:RC // Set missing 2nd arg to nil. | 1124 | | stwx TISNIL, BASE, NARGS8:RC // Set missing 2nd arg to nil. |
| 1072 | | checktab TAB:CARG2 | 1125 | | checktab CARG1 |
| 1073 | | lwz PC, FRAME_PC(BASE) | 1126 | | lwz PC, FRAME_PC(BASE) |
| 1074 | | checkfail ->fff_fallback | 1127 | | bne ->fff_fallback |
| 1075 | | stw BASE, L->base // Add frame since C call can throw. | 1128 | | stw BASE, L->base // Add frame since C call can throw. |
| 1076 | | mr CARG1, L | 1129 | | mr CARG1, L |
| 1077 | | stw BASE, L->top // Dummy frame length is ok. | 1130 | | stw BASE, L->top // Dummy frame length is ok. |
| @@ -1080,60 +1133,69 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1080 | | bl extern lj_tab_next // (lua_State *L, GCtab *t, TValue *key) | 1133 | | bl extern lj_tab_next // (lua_State *L, GCtab *t, TValue *key) |
| 1081 | | // Returns 0 at end of traversal. | 1134 | | // Returns 0 at end of traversal. |
| 1082 | | cmplwi CRET1, 0 | 1135 | | cmplwi CRET1, 0 |
| 1083 | | evmr CRET1, TISNIL | 1136 | | li CARG3, LJ_TNIL |
| 1084 | | beq ->fff_restv // End of traversal: return nil. | 1137 | | beq ->fff_restv // End of traversal: return nil. |
| 1085 | | evldd TMP0, 8(BASE) // Copy key and value to results. | 1138 | | lfd f0, 8(BASE) // Copy key and value to results. |
| 1086 | | la RA, -8(BASE) | 1139 | | la RA, -8(BASE) |
| 1087 | | evldd TMP1, 16(BASE) | 1140 | | lfd f1, 16(BASE) |
| 1088 | | evstdd TMP0, 0(RA) | 1141 | | stfd f0, 0(RA) |
| 1089 | | li RD, (2+1)*8 | 1142 | | li RD, (2+1)*8 |
| 1090 | | evstdd TMP1, 8(RA) | 1143 | | stfd f1, 8(RA) |
| 1091 | | b ->fff_res | 1144 | | b ->fff_res |
| 1092 | | | 1145 | | |
| 1093 | |.ffunc_1 pairs | 1146 | |.ffunc_1 pairs |
| 1094 | | checktab TAB:CARG1 | 1147 | | checktab CARG3 |
| 1095 | | lwz PC, FRAME_PC(BASE) | 1148 | | lwz PC, FRAME_PC(BASE) |
| 1096 | | checkfail ->fff_fallback | 1149 | | bne ->fff_fallback |
| 1097 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 1150 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 1098 | | lwz TAB:TMP2, TAB:CARG1->metatable | 1151 | | lwz TAB:TMP2, TAB:CARG1->metatable |
| 1099 | | evldd CFUNC:TMP0, CFUNC:RB->upvalue[0] | 1152 | | lfd f0, CFUNC:RB->upvalue[0] |
| 1100 | | cmplwi TAB:TMP2, 0 | 1153 | | cmplwi TAB:TMP2, 0 |
| 1101 | | la RA, -8(BASE) | 1154 | | la RA, -8(BASE) |
| 1102 | | bne ->fff_fallback | 1155 | | bne ->fff_fallback |
| 1103 | #else | 1156 | #else |
| 1104 | | evldd CFUNC:TMP0, CFUNC:RB->upvalue[0] | 1157 | | lfd f0, CFUNC:RB->upvalue[0] |
| 1105 | | la RA, -8(BASE) | 1158 | | la RA, -8(BASE) |
| 1106 | #endif | 1159 | #endif |
| 1107 | | evstdd TISNIL, 8(BASE) | 1160 | | stw TISNIL, 8(BASE) |
| 1108 | | li RD, (3+1)*8 | 1161 | | li RD, (3+1)*8 |
| 1109 | | evstdd CFUNC:TMP0, 0(RA) | 1162 | | stfd f0, 0(RA) |
| 1110 | | b ->fff_res | 1163 | | b ->fff_res |
| 1111 | | | 1164 | | |
| 1112 | |.ffunc_2 ipairs_aux | 1165 | |.ffunc ipairs_aux |
| 1113 | | checktab TAB:CARG1 | 1166 | | cmplwi NARGS8:RC, 16 |
| 1167 | | lwz CARG3, 0(BASE) | ||
| 1168 | | lwz TAB:CARG1, 4(BASE) | ||
| 1169 | | lwz CARG4, 8(BASE) | ||
| 1170 | | lfd FARG2, 8(BASE) | ||
| 1171 | | blt ->fff_fallback | ||
| 1172 | | checktab CARG3 | ||
| 1173 | | checknum cr1, CARG4 | ||
| 1114 | | lwz PC, FRAME_PC(BASE) | 1174 | | lwz PC, FRAME_PC(BASE) |
| 1115 | | checkfail ->fff_fallback | 1175 | | lus TMP0, 0x3ff0 |
| 1116 | | checknum CARG2 | 1176 | | stw ZERO, TMPD_LO |
| 1117 | | lus TMP3, 0x3ff0 | 1177 | | bne ->fff_fallback |
| 1118 | | checkfail ->fff_fallback | 1178 | | stw TMP0, TMPD_HI |
| 1119 | | efdctsi TMP2, CARG2 | 1179 | | bge cr1, ->fff_fallback |
| 1180 | | lfd FARG1, TMPD | ||
| 1181 | | toint TMP2, FARG2, f0 | ||
| 1120 | | lwz TMP0, TAB:CARG1->asize | 1182 | | lwz TMP0, TAB:CARG1->asize |
| 1121 | | evmergelo TMP3, TMP3, ZERO | ||
| 1122 | | lwz TMP1, TAB:CARG1->array | 1183 | | lwz TMP1, TAB:CARG1->array |
| 1123 | | efdadd CARG2, CARG2, TMP3 | 1184 | | fadd FARG2, FARG2, FARG1 |
| 1124 | | addi TMP2, TMP2, 1 | 1185 | | addi TMP2, TMP2, 1 |
| 1125 | | la RA, -8(BASE) | 1186 | | la RA, -8(BASE) |
| 1126 | | cmplw TMP0, TMP2 | 1187 | | cmplw TMP0, TMP2 |
| 1127 | | slwi TMP3, TMP2, 3 | 1188 | | slwi TMP3, TMP2, 3 |
| 1128 | | evstdd CARG2, 0(RA) | 1189 | | stfd FARG2, 0(RA) |
| 1129 | | ble >2 // Not in array part? | 1190 | | ble >2 // Not in array part? |
| 1130 | | evlddx TMP1, TMP1, TMP3 | 1191 | | lwzx TMP2, TMP1, TMP3 |
| 1192 | | lfdx f0, TMP1, TMP3 | ||
| 1131 | |1: | 1193 | |1: |
| 1132 | | checknil TMP1 | 1194 | | checknil TMP2 |
| 1133 | | li RD, (0+1)*8 | 1195 | | li RD, (0+1)*8 |
| 1134 | | checkok ->fff_res // End of iteration, return 0 results. | 1196 | | beq ->fff_res // End of iteration, return 0 results. |
| 1135 | | li RD, (2+1)*8 | 1197 | | li RD, (2+1)*8 |
| 1136 | | evstdd TMP1, 8(RA) | 1198 | | stfd f0, 8(RA) |
| 1137 | | b ->fff_res | 1199 | | b ->fff_res |
| 1138 | |2: // Check for empty hash part first. Otherwise call C function. | 1200 | |2: // Check for empty hash part first. Otherwise call C function. |
| 1139 | | lwz TMP0, TAB:CARG1->hmask | 1201 | | lwz TMP0, TAB:CARG1->hmask |
| @@ -1146,27 +1208,28 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1146 | | cmplwi CRET1, 0 | 1208 | | cmplwi CRET1, 0 |
| 1147 | | li RD, (0+1)*8 | 1209 | | li RD, (0+1)*8 |
| 1148 | | beq ->fff_res | 1210 | | beq ->fff_res |
| 1149 | | evldd TMP1, 0(CRET1) | 1211 | | lwz TMP2, 0(CRET1) |
| 1212 | | lfd f0, 0(CRET1) | ||
| 1150 | | b <1 | 1213 | | b <1 |
| 1151 | | | 1214 | | |
| 1152 | |.ffunc_1 ipairs | 1215 | |.ffunc_1 ipairs |
| 1153 | | checktab TAB:CARG1 | 1216 | | checktab CARG3 |
| 1154 | | lwz PC, FRAME_PC(BASE) | 1217 | | lwz PC, FRAME_PC(BASE) |
| 1155 | | checkfail ->fff_fallback | 1218 | | bne ->fff_fallback |
| 1156 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 1219 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 1157 | | lwz TAB:TMP2, TAB:CARG1->metatable | 1220 | | lwz TAB:TMP2, TAB:CARG1->metatable |
| 1158 | | evldd CFUNC:TMP0, CFUNC:RB->upvalue[0] | 1221 | | lfd f0, CFUNC:RB->upvalue[0] |
| 1159 | | cmplwi TAB:TMP2, 0 | 1222 | | cmplwi TAB:TMP2, 0 |
| 1160 | | la RA, -8(BASE) | 1223 | | la RA, -8(BASE) |
| 1161 | | bne ->fff_fallback | 1224 | | bne ->fff_fallback |
| 1162 | #else | 1225 | #else |
| 1163 | | evldd CFUNC:TMP0, CFUNC:RB->upvalue[0] | 1226 | | lfd f0, CFUNC:RB->upvalue[0] |
| 1164 | | la RA, -8(BASE) | 1227 | | la RA, -8(BASE) |
| 1165 | #endif | 1228 | #endif |
| 1166 | | evsplati TMP1, 0 | 1229 | | stw ZERO, 8(BASE) |
| 1230 | | stw ZERO, 12(BASE) | ||
| 1167 | | li RD, (3+1)*8 | 1231 | | li RD, (3+1)*8 |
| 1168 | | evstdd TMP1, 8(BASE) | 1232 | | stfd f0, 0(RA) |
| 1169 | | evstdd CFUNC:TMP0, 0(RA) | ||
| 1170 | | b ->fff_res | 1233 | | b ->fff_res |
| 1171 | | | 1234 | | |
| 1172 | |//-- Base library: catch errors ---------------------------------------- | 1235 | |//-- Base library: catch errors ---------------------------------------- |
| @@ -1183,18 +1246,23 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1183 | | addi PC, TMP3, 8+FRAME_PCALL | 1246 | | addi PC, TMP3, 8+FRAME_PCALL |
| 1184 | | b ->vm_call_dispatch | 1247 | | b ->vm_call_dispatch |
| 1185 | | | 1248 | | |
| 1186 | |.ffunc_2 xpcall | 1249 | |.ffunc xpcall |
| 1187 | | lbz TMP3, DISPATCH_GL(hookmask)(DISPATCH) | 1250 | | cmplwi NARGS8:RC, 16 |
| 1251 | | lwz CARG4, 8(BASE) | ||
| 1252 | | lfd FARG2, 8(BASE) | ||
| 1253 | | lwz CARG3, 0(BASE) | ||
| 1254 | | lfd FARG1, 0(BASE) | ||
| 1255 | | blt ->fff_fallback | ||
| 1256 | | lbz TMP1, DISPATCH_GL(hookmask)(DISPATCH) | ||
| 1188 | | mr TMP2, BASE | 1257 | | mr TMP2, BASE |
| 1189 | | checkfunc CARG2 // Traceback must be a function. | 1258 | | checkfunc CARG4; bne ->fff_fallback // Traceback must be a function. |
| 1190 | | checkfail ->fff_fallback | ||
| 1191 | | la BASE, 16(BASE) | 1259 | | la BASE, 16(BASE) |
| 1192 | | // Remember active hook before pcall. | 1260 | | // Remember active hook before pcall. |
| 1193 | | rlwinm TMP3, TMP3, 32-HOOK_ACTIVE_SHIFT, 31, 31 | 1261 | | rlwinm TMP1, TMP1, 32-HOOK_ACTIVE_SHIFT, 31, 31 |
| 1194 | | evstdd CARG2, 0(TMP2) // Swap function and traceback. | 1262 | | stfd FARG2, 0(TMP2) // Swap function and traceback. |
| 1195 | | subi NARGS8:RC, NARGS8:RC, 16 | 1263 | | subi NARGS8:RC, NARGS8:RC, 16 |
| 1196 | | evstdd CARG1, 8(TMP2) | 1264 | | stfd FARG1, 8(TMP2) |
| 1197 | | addi PC, TMP3, 16+FRAME_PCALL | 1265 | | addi PC, TMP1, 16+FRAME_PCALL |
| 1198 | | b ->vm_call_dispatch | 1266 | | b ->vm_call_dispatch |
| 1199 | | | 1267 | | |
| 1200 | |//-- Coroutine library -------------------------------------------------- | 1268 | |//-- Coroutine library -------------------------------------------------- |
| @@ -1202,15 +1270,11 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1202 | |.macro coroutine_resume_wrap, resume | 1270 | |.macro coroutine_resume_wrap, resume |
| 1203 | |.if resume | 1271 | |.if resume |
| 1204 | |.ffunc_1 coroutine_resume | 1272 | |.ffunc_1 coroutine_resume |
| 1205 | | evmergehi TMP0, L:CARG1, L:CARG1 | 1273 | | cmpwi CARG3, LJ_TTHREAD; bne ->fff_fallback |
| 1206 | |.else | 1274 | |.else |
| 1207 | |.ffunc coroutine_wrap_aux | 1275 | |.ffunc coroutine_wrap_aux |
| 1208 | | lwz L:CARG1, CFUNC:RB->upvalue[0].gcr | 1276 | | lwz L:CARG1, CFUNC:RB->upvalue[0].gcr |
| 1209 | |.endif | 1277 | |.endif |
| 1210 | |.if resume | ||
| 1211 | | cmpwi TMP0, LJ_TTHREAD | ||
| 1212 | | bne ->fff_fallback | ||
| 1213 | |.endif | ||
| 1214 | | lbz TMP0, L:CARG1->status | 1278 | | lbz TMP0, L:CARG1->status |
| 1215 | | lwz TMP1, L:CARG1->cframe | 1279 | | lwz TMP1, L:CARG1->cframe |
| 1216 | | lwz CARG2, L:CARG1->top | 1280 | | lwz CARG2, L:CARG1->top |
| @@ -1240,9 +1304,9 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1240 | | stw BASE, L->top | 1304 | | stw BASE, L->top |
| 1241 | |2: // Move args to coroutine. | 1305 | |2: // Move args to coroutine. |
| 1242 | | cmpw TMP1, NARGS8:RC | 1306 | | cmpw TMP1, NARGS8:RC |
| 1243 | | evlddx TMP0, BASE, TMP1 | 1307 | | lfdx f0, BASE, TMP1 |
| 1244 | | beq >3 | 1308 | | beq >3 |
| 1245 | | evstddx TMP0, CARG2, TMP1 | 1309 | | stfdx f0, CARG2, TMP1 |
| 1246 | | addi TMP1, TMP1, 8 | 1310 | | addi TMP1, TMP1, 8 |
| 1247 | | b <2 | 1311 | | b <2 |
| 1248 | |3: | 1312 | |3: |
| @@ -1272,8 +1336,8 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1272 | | stw TMP2, L:SAVE0->top // Clear coroutine stack. | 1336 | | stw TMP2, L:SAVE0->top // Clear coroutine stack. |
| 1273 | |5: // Move results from coroutine. | 1337 | |5: // Move results from coroutine. |
| 1274 | | cmplw TMP1, TMP3 | 1338 | | cmplw TMP1, TMP3 |
| 1275 | | evlddx TMP0, TMP2, TMP1 | 1339 | | lfdx f0, TMP2, TMP1 |
| 1276 | | evstddx TMP0, BASE, TMP1 | 1340 | | stfdx f0, BASE, TMP1 |
| 1277 | | addi TMP1, TMP1, 8 | 1341 | | addi TMP1, TMP1, 8 |
| 1278 | | bne <5 | 1342 | | bne <5 |
| 1279 | |6: | 1343 | |6: |
| @@ -1298,12 +1362,12 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1298 | | andi. TMP0, PC, FRAME_TYPE | 1362 | | andi. TMP0, PC, FRAME_TYPE |
| 1299 | | la TMP3, -8(TMP3) | 1363 | | la TMP3, -8(TMP3) |
| 1300 | | li TMP1, LJ_TFALSE | 1364 | | li TMP1, LJ_TFALSE |
| 1301 | | evldd TMP0, 0(TMP3) | 1365 | | lfd f0, 0(TMP3) |
| 1302 | | stw TMP3, L:SAVE0->top // Remove error from coroutine stack. | 1366 | | stw TMP3, L:SAVE0->top // Remove error from coroutine stack. |
| 1303 | | li RD, (2+1)*8 | 1367 | | li RD, (2+1)*8 |
| 1304 | | stw TMP1, -8(BASE) // Prepend false to results. | 1368 | | stw TMP1, -8(BASE) // Prepend false to results. |
| 1305 | | la RA, -8(BASE) | 1369 | | la RA, -8(BASE) |
| 1306 | | evstdd TMP0, 0(BASE) // Copy error message. | 1370 | | stfd f0, 0(BASE) // Copy error message. |
| 1307 | | b <7 | 1371 | | b <7 |
| 1308 | |.else | 1372 | |.else |
| 1309 | | mr CARG1, L | 1373 | | mr CARG1, L |
| @@ -1336,15 +1400,17 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1336 | | | 1400 | | |
| 1337 | |//-- Math library ------------------------------------------------------- | 1401 | |//-- Math library ------------------------------------------------------- |
| 1338 | | | 1402 | | |
| 1339 | |.ffunc_n math_abs | 1403 | |.ffunc_1 math_abs |
| 1340 | | efdabs CRET1, CARG1 | 1404 | | checknum CARG3; bge ->fff_fallback |
| 1405 | | rlwinm CARG3, CARG3, 0, 1, 31 | ||
| 1341 | | // Fallthrough. | 1406 | | // Fallthrough. |
| 1342 | | | 1407 | | |
| 1343 | |->fff_restv: | 1408 | |->fff_restv: |
| 1344 | | // CRET1 = TValue result. | 1409 | | // CARG3/CARG1 = TValue result. |
| 1345 | | lwz PC, FRAME_PC(BASE) | 1410 | | lwz PC, FRAME_PC(BASE) |
| 1346 | | la RA, -8(BASE) | 1411 | | stw CARG3, -8(BASE) |
| 1347 | | evstdd CRET1, 0(RA) | 1412 | | la RA, -8(BASE) |
| 1413 | | stw CARG1, -4(BASE) | ||
| 1348 | |->fff_res1: | 1414 | |->fff_res1: |
| 1349 | | // RA = results, PC = return. | 1415 | | // RA = results, PC = return. |
| 1350 | | li RD, (1+1)*8 | 1416 | | li RD, (1+1)*8 |
| @@ -1367,54 +1433,24 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1367 | |6: // Fill up results with nil. | 1433 | |6: // Fill up results with nil. |
| 1368 | | subi TMP1, RD, 8 | 1434 | | subi TMP1, RD, 8 |
| 1369 | | addi RD, RD, 8 | 1435 | | addi RD, RD, 8 |
| 1370 | | evstddx TISNIL, RA, TMP1 | 1436 | | stwx TISNIL, RA, TMP1 |
| 1371 | | b <5 | 1437 | | b <5 |
| 1372 | | | 1438 | | |
| 1373 | |.macro math_extern, func | 1439 | |.macro math_extern, func |
| 1374 | | .ffunc math_ .. func | 1440 | | .ffunc_n math_ .. func |
| 1375 | | cmplwi NARGS8:RC, 8 | ||
| 1376 | | evldd CARG2, 0(BASE) | ||
| 1377 | | blt ->fff_fallback | ||
| 1378 | | checknum CARG2 | ||
| 1379 | | evmergehi CARG1, CARG2, CARG2 | ||
| 1380 | | checkfail ->fff_fallback | ||
| 1381 | | bl extern func | 1441 | | bl extern func |
| 1382 | | evmergelo CRET1, CRET1, CRET2 | 1442 | | b ->fff_resn |
| 1383 | | b ->fff_restv | ||
| 1384 | |.endmacro | 1443 | |.endmacro |
| 1385 | | | 1444 | | |
| 1386 | |.macro math_extern2, func | 1445 | |.macro math_extern2, func |
| 1387 | | .ffunc math_ .. func | 1446 | | .ffunc_nn math_ .. func |
| 1388 | | cmplwi NARGS8:RC, 16 | ||
| 1389 | | evldd CARG2, 0(BASE) | ||
| 1390 | | evldd CARG4, 8(BASE) | ||
| 1391 | | blt ->fff_fallback | ||
| 1392 | | evmergehi CARG1, CARG4, CARG2 | ||
| 1393 | | checknum CARG1 | ||
| 1394 | | evmergehi CARG3, CARG4, CARG4 | ||
| 1395 | | checkanyfail ->fff_fallback | ||
| 1396 | | bl extern func | 1447 | | bl extern func |
| 1397 | | evmergelo CRET1, CRET1, CRET2 | 1448 | | b ->fff_resn |
| 1398 | | b ->fff_restv | ||
| 1399 | |.endmacro | 1449 | |.endmacro |
| 1400 | | | 1450 | | |
| 1401 | |.macro math_round, func | 1451 | | // NYI: Use internal implementation. |
| 1402 | | .ffunc math_ .. func | 1452 | | math_extern floor |
| 1403 | | cmplwi NARGS8:RC, 8 | 1453 | | math_extern ceil |
| 1404 | | evldd CARG2, 0(BASE) | ||
| 1405 | | blt ->fff_fallback | ||
| 1406 | | checknum CARG2 | ||
| 1407 | | evmergehi CARG1, CARG2, CARG2 | ||
| 1408 | | checkfail ->fff_fallback | ||
| 1409 | | lwz PC, FRAME_PC(BASE) | ||
| 1410 | | bl ->vm_..func.._hilo; | ||
| 1411 | | la RA, -8(BASE) | ||
| 1412 | | evstdd CRET2, 0(RA) | ||
| 1413 | | b ->fff_res1 | ||
| 1414 | |.endmacro | ||
| 1415 | | | ||
| 1416 | | math_round floor | ||
| 1417 | | math_round ceil | ||
| 1418 | | | 1454 | | |
| 1419 | | math_extern sqrt | 1455 | | math_extern sqrt |
| 1420 | | math_extern log | 1456 | | math_extern log |
| @@ -1435,119 +1471,98 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1435 | | | 1471 | | |
| 1436 | |->ff_math_deg: | 1472 | |->ff_math_deg: |
| 1437 | |.ffunc_n math_rad | 1473 | |.ffunc_n math_rad |
| 1438 | | evldd CARG2, CFUNC:RB->upvalue[0] | 1474 | | lfd FARG2, CFUNC:RB->upvalue[0] |
| 1439 | | efdmul CRET1, CARG1, CARG2 | 1475 | | fmul FARG1, FARG1, FARG2 |
| 1440 | | b ->fff_restv | 1476 | | b ->fff_resn |
| 1441 | | | 1477 | | |
| 1442 | |.ffunc math_ldexp | 1478 | |.ffunc_nn math_ldexp |
| 1443 | | cmplwi NARGS8:RC, 16 | 1479 | | toint CARG1, FARG2 |
| 1444 | | evldd CARG2, 0(BASE) | ||
| 1445 | | evldd CARG4, 8(BASE) | ||
| 1446 | | blt ->fff_fallback | ||
| 1447 | | evmergehi CARG1, CARG4, CARG2 | ||
| 1448 | | checknum CARG1 | ||
| 1449 | | checkanyfail ->fff_fallback | ||
| 1450 | | efdctsi CARG3, CARG4 | ||
| 1451 | | bl extern ldexp | 1480 | | bl extern ldexp |
| 1452 | | evmergelo CRET1, CRET1, CRET2 | 1481 | | b ->fff_resn |
| 1453 | | b ->fff_restv | ||
| 1454 | | | 1482 | | |
| 1455 | |.ffunc math_frexp | 1483 | |.ffunc_n math_frexp |
| 1456 | | cmplwi NARGS8:RC, 8 | 1484 | | la CARG1, DISPATCH_GL(tmptv)(DISPATCH) |
| 1457 | | evldd CARG2, 0(BASE) | ||
| 1458 | | blt ->fff_fallback | ||
| 1459 | | checknum CARG2 | ||
| 1460 | | evmergehi CARG1, CARG2, CARG2 | ||
| 1461 | | checkfail ->fff_fallback | ||
| 1462 | | la CARG3, DISPATCH_GL(tmptv)(DISPATCH) | ||
| 1463 | | lwz PC, FRAME_PC(BASE) | 1485 | | lwz PC, FRAME_PC(BASE) |
| 1464 | | bl extern frexp | 1486 | | bl extern frexp |
| 1465 | | lwz TMP1, DISPATCH_GL(tmptv)(DISPATCH) | 1487 | | lwz TMP1, DISPATCH_GL(tmptv)(DISPATCH) |
| 1466 | | evmergelo CRET1, CRET1, CRET2 | ||
| 1467 | | efdcfsi CRET2, TMP1 | ||
| 1468 | | la RA, -8(BASE) | 1488 | | la RA, -8(BASE) |
| 1469 | | evstdd CRET1, 0(RA) | 1489 | | tonum_i FARG2, TMP1 |
| 1490 | | stfd FARG1, 0(RA) | ||
| 1470 | | li RD, (2+1)*8 | 1491 | | li RD, (2+1)*8 |
| 1471 | | evstdd CRET2, 8(RA) | 1492 | | stfd FARG2, 8(RA) |
| 1472 | | b ->fff_res | 1493 | | b ->fff_res |
| 1473 | | | 1494 | | |
| 1474 | |.ffunc math_modf | 1495 | |.ffunc_n math_modf |
| 1475 | | cmplwi NARGS8:RC, 8 | 1496 | | la CARG1, -8(BASE) |
| 1476 | | evldd CARG2, 0(BASE) | ||
| 1477 | | blt ->fff_fallback | ||
| 1478 | | checknum CARG2 | ||
| 1479 | | evmergehi CARG1, CARG2, CARG2 | ||
| 1480 | | checkfail ->fff_fallback | ||
| 1481 | | la CARG3, -8(BASE) | ||
| 1482 | | lwz PC, FRAME_PC(BASE) | 1497 | | lwz PC, FRAME_PC(BASE) |
| 1483 | | bl extern modf | 1498 | | bl extern modf |
| 1484 | | evmergelo CRET1, CRET1, CRET2 | ||
| 1485 | | la RA, -8(BASE) | 1499 | | la RA, -8(BASE) |
| 1486 | | evstdd CRET1, 0(BASE) | 1500 | | stfd FARG1, 0(BASE) |
| 1487 | | li RD, (2+1)*8 | 1501 | | li RD, (2+1)*8 |
| 1488 | | b ->fff_res | 1502 | | b ->fff_res |
| 1489 | | | 1503 | | |
| 1490 | |.macro math_minmax, name, cmpop | 1504 | |.macro math_minmax, name, ismax |
| 1491 | | .ffunc_1 name | 1505 | | .ffunc_n name |
| 1492 | | checknum CARG1 | 1506 | | li TMP1, 8 |
| 1493 | | li TMP1, 8 | ||
| 1494 | | checkfail ->fff_fallback | ||
| 1495 | |1: | 1507 | |1: |
| 1496 | | evlddx CARG2, BASE, TMP1 | 1508 | | lwzx CARG2, BASE, TMP1 |
| 1509 | | lfdx FARG2, BASE, TMP1 | ||
| 1497 | | cmplw cr1, TMP1, NARGS8:RC | 1510 | | cmplw cr1, TMP1, NARGS8:RC |
| 1498 | | checknum CARG2 | 1511 | | checknum CARG2 |
| 1499 | | bge cr1, ->fff_restv // Ok, since CRET1 = CARG1. | 1512 | | bge cr1, ->fff_resn |
| 1500 | | checkfail ->fff_fallback | 1513 | | bge ->fff_fallback |
| 1501 | | cmpop CARG2, CARG1 | 1514 | | fsub f0, FARG1, FARG2 |
| 1502 | | addi TMP1, TMP1, 8 | 1515 | | addi TMP1, TMP1, 8 |
| 1503 | | crmove 4*cr0+lt, 4*cr0+gt | 1516 | |.if ismax |
| 1504 | | evsel CARG1, CARG2, CARG1 | 1517 | | fsel FARG1, f0, FARG1, FARG2 |
| 1518 | |.else | ||
| 1519 | | fsel FARG1, f0, FARG2, FARG1 | ||
| 1520 | |.endif | ||
| 1505 | | b <1 | 1521 | | b <1 |
| 1506 | |.endmacro | 1522 | |.endmacro |
| 1507 | | | 1523 | | |
| 1508 | | math_minmax math_min, efdtstlt | 1524 | | math_minmax math_min, 0 |
| 1509 | | math_minmax math_max, efdtstgt | 1525 | | math_minmax math_max, 1 |
| 1510 | | | 1526 | | |
| 1511 | |//-- String library ----------------------------------------------------- | 1527 | |//-- String library ----------------------------------------------------- |
| 1512 | | | 1528 | | |
| 1513 | |.ffunc_1 string_len | 1529 | |.ffunc_1 string_len |
| 1514 | | checkstr STR:CARG1 | 1530 | | checkstr CARG3; bne ->fff_fallback |
| 1515 | | checkfail ->fff_fallback | 1531 | | lwz CRET1, STR:CARG1->len |
| 1516 | | lwz TMP0, STR:CARG1->len | 1532 | | b ->fff_resi |
| 1517 | | efdcfsi CRET1, TMP0 | ||
| 1518 | | b ->fff_restv | ||
| 1519 | | | 1533 | | |
| 1520 | |.ffunc string_byte // Only handle the 1-arg case here. | 1534 | |.ffunc string_byte // Only handle the 1-arg case here. |
| 1521 | | cmplwi NARGS8:RC, 8 | 1535 | | cmplwi NARGS8:RC, 8 |
| 1522 | | evldd STR:CARG1, 0(BASE) | 1536 | | lwz CARG3, 0(BASE) |
| 1537 | | lwz STR:CARG1, 4(BASE) | ||
| 1523 | | bne ->fff_fallback // Need exactly 1 argument. | 1538 | | bne ->fff_fallback // Need exactly 1 argument. |
| 1524 | | checkstr STR:CARG1 | 1539 | | checkstr CARG3 |
| 1525 | | la RA, -8(BASE) | 1540 | | bne ->fff_fallback |
| 1526 | | checkfail ->fff_fallback | ||
| 1527 | | lwz TMP0, STR:CARG1->len | 1541 | | lwz TMP0, STR:CARG1->len |
| 1528 | | li RD, (0+1)*8 | 1542 | | lbz TMP1, STR:CARG1[1] // Access is always ok (NUL at end). |
| 1529 | | lbz TMP1, STR:CARG1[1] // Access is always ok (NUL at end). | 1543 | | addic TMP3, TMP0, -1 // RD = ((str->len != 0)+1)*8 |
| 1530 | | li TMP2, (1+1)*8 | 1544 | | subfe RD, TMP3, TMP0 |
| 1531 | | cmplwi TMP0, 0 | 1545 | | stw TMP1, TONUM_LO // Inlined tonum_u f0, TMP1. |
| 1532 | | lwz PC, FRAME_PC(BASE) | 1546 | | addi RD, RD, 1 |
| 1533 | | efdcfsi CRET1, TMP1 | 1547 | | lfd f0, TONUM_D |
| 1534 | | iseleq RD, RD, TMP2 | 1548 | | la RA, -8(BASE) |
| 1535 | | evstdd CRET1, 0(RA) | 1549 | | lwz PC, FRAME_PC(BASE) |
| 1550 | | fsub f0, f0, TOBIT | ||
| 1551 | | slwi RD, RD, 3 | ||
| 1552 | | stfd f0, 0(RA) | ||
| 1536 | | b ->fff_res | 1553 | | b ->fff_res |
| 1537 | | | 1554 | | |
| 1538 | |.ffunc string_char // Only handle the 1-arg case here. | 1555 | |.ffunc string_char // Only handle the 1-arg case here. |
| 1539 | | ffgccheck | 1556 | | ffgccheck |
| 1540 | | cmplwi NARGS8:RC, 8 | 1557 | | cmplwi NARGS8:RC, 8 |
| 1541 | | evldd CARG1, 0(BASE) | 1558 | | lwz CARG3, 0(BASE) |
| 1559 | | lfd FARG1, 0(BASE) | ||
| 1542 | | bne ->fff_fallback // Exactly 1 argument. | 1560 | | bne ->fff_fallback // Exactly 1 argument. |
| 1543 | | checknum CARG1 | 1561 | | checknum CARG3; bge ->fff_fallback |
| 1544 | | la CARG2, DISPATCH_GL(tmptv)(DISPATCH) | 1562 | | toint TMP0, FARG1 |
| 1545 | | checkfail ->fff_fallback | 1563 | | la CARG2, TMPD_BLO |
| 1546 | | efdctsiz TMP0, CARG1 | ||
| 1547 | | li CARG3, 1 | 1564 | | li CARG3, 1 |
| 1548 | | cmplwi TMP0, 255 | 1565 | | cmplwi TMP0, 255; bgt ->fff_fallback |
| 1549 | | stb TMP0, 0(CARG2) | ||
| 1550 | | bgt ->fff_fallback | ||
| 1551 | |->fff_newstr: | 1566 | |->fff_newstr: |
| 1552 | | mr CARG1, L | 1567 | | mr CARG1, L |
| 1553 | | stw BASE, L->base | 1568 | | stw BASE, L->base |
| @@ -1555,67 +1570,71 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1555 | | bl extern lj_str_new // (lua_State *L, char *str, size_t l) | 1570 | | bl extern lj_str_new // (lua_State *L, char *str, size_t l) |
| 1556 | | // Returns GCstr *. | 1571 | | // Returns GCstr *. |
| 1557 | | lwz BASE, L->base | 1572 | | lwz BASE, L->base |
| 1558 | | evmergelo STR:CRET1, TISSTR, STR:CRET1 | 1573 | | li CARG3, LJ_TSTR |
| 1559 | | b ->fff_restv | 1574 | | b ->fff_restv |
| 1560 | | | 1575 | | |
| 1561 | |.ffunc string_sub | 1576 | |.ffunc string_sub |
| 1562 | | ffgccheck | 1577 | | ffgccheck |
| 1563 | | cmplwi NARGS8:RC, 16 | 1578 | | cmplwi NARGS8:RC, 16 |
| 1564 | | evldd CARG3, 16(BASE) | 1579 | | lwz CARG3, 16(BASE) |
| 1565 | | evldd STR:CARG1, 0(BASE) | 1580 | | lfd f0, 16(BASE) |
| 1581 | | lwz TMP0, 0(BASE) | ||
| 1582 | | lwz STR:CARG1, 4(BASE) | ||
| 1566 | | blt ->fff_fallback | 1583 | | blt ->fff_fallback |
| 1567 | | evldd CARG2, 8(BASE) | 1584 | | lwz CARG2, 8(BASE) |
| 1585 | | lfd f1, 8(BASE) | ||
| 1568 | | li TMP2, -1 | 1586 | | li TMP2, -1 |
| 1569 | | beq >1 | 1587 | | beq >1 |
| 1570 | | checknum CARG3 | 1588 | | checknum CARG3; bge ->fff_fallback |
| 1571 | | checkfail ->fff_fallback | 1589 | | toint TMP2, f0 |
| 1572 | | efdctsiz TMP2, CARG3 | ||
| 1573 | |1: | 1590 | |1: |
| 1574 | | checknum CARG2 | 1591 | | checknum CARG2; bge ->fff_fallback |
| 1575 | | checkfail ->fff_fallback | 1592 | | checkstr TMP0; bne ->fff_fallback |
| 1576 | | checkstr STR:CARG1 | 1593 | | toint TMP1, f1 |
| 1577 | | efdctsiz TMP1, CARG2 | ||
| 1578 | | checkfail ->fff_fallback | ||
| 1579 | | lwz TMP0, STR:CARG1->len | 1594 | | lwz TMP0, STR:CARG1->len |
| 1580 | | cmplw TMP0, TMP2 // len < end? (unsigned compare) | 1595 | | cmplw TMP0, TMP2 // len < end? (unsigned compare) |
| 1581 | | add TMP3, TMP2, TMP0 | 1596 | | addi TMP3, TMP2, 1 |
| 1582 | | blt >5 | 1597 | | blt >5 |
| 1583 | |2: | 1598 | |2: |
| 1584 | | cmpwi TMP1, 0 // start <= 0? | 1599 | | cmpwi TMP1, 0 // start <= 0? |
| 1585 | | add TMP3, TMP1, TMP0 | 1600 | | add TMP3, TMP1, TMP0 |
| 1586 | | ble >7 | 1601 | | ble >7 |
| 1587 | |3: | 1602 | |3: |
| 1588 | | sub. CARG3, TMP2, TMP1 | 1603 | | sub CARG3, TMP2, TMP1 |
| 1589 | | addi CARG2, STR:CARG1, #STR-1 | 1604 | | addi CARG2, STR:CARG1, #STR-1 |
| 1605 | | srawi TMP0, CARG3, 31 | ||
| 1590 | | addi CARG3, CARG3, 1 | 1606 | | addi CARG3, CARG3, 1 |
| 1591 | | add CARG2, CARG2, TMP1 | 1607 | | add CARG2, CARG2, TMP1 |
| 1592 | | isellt CARG3, r0, CARG3 | 1608 | | andc CARG3, CARG3, TMP0 |
| 1593 | | b ->fff_newstr | 1609 | | b ->fff_newstr |
| 1594 | | | 1610 | | |
| 1595 | |5: // Negative end or overflow. | 1611 | |5: // Negative end or overflow. |
| 1596 | | cmpw TMP0, TMP2 | 1612 | | sub CARG2, TMP0, TMP2 |
| 1597 | | addi TMP3, TMP3, 1 | 1613 | | srawi CARG2, CARG2, 31 |
| 1598 | | iselgt TMP2, TMP3, TMP0 // end = end > len ? len : end+len+1 | 1614 | | andc TMP3, TMP3, CARG2 // end = end > len ? len : end+len+1 |
| 1615 | | add TMP2, TMP0, TMP3 | ||
| 1599 | | b <2 | 1616 | | b <2 |
| 1600 | | | 1617 | | |
| 1601 | |7: // Negative start or underflow. | 1618 | |7: // Negative start or underflow. |
| 1602 | | cmpwi cr1, TMP3, 0 | 1619 | | addic CARG3, TMP1, -1 |
| 1603 | | iseleq TMP1, r0, TMP3 | 1620 | | subfe CARG3, CARG3, CARG3 |
| 1604 | | isel TMP1, r0, TMP1, 4*cr1+lt | 1621 | | srawi CARG2, TMP3, 31 // Note: modifies carry. |
| 1622 | | andc TMP3, TMP3, CARG3 | ||
| 1623 | | andc TMP1, TMP3, CARG2 | ||
| 1605 | | addi TMP1, TMP1, 1 // start = 1 + (start ? start+len : 0) | 1624 | | addi TMP1, TMP1, 1 // start = 1 + (start ? start+len : 0) |
| 1606 | | b <3 | 1625 | | b <3 |
| 1607 | | | 1626 | | |
| 1608 | |.ffunc string_rep // Only handle the 1-char case inline. | 1627 | |.ffunc string_rep // Only handle the 1-char case inline. |
| 1609 | | ffgccheck | 1628 | | ffgccheck |
| 1610 | | cmplwi NARGS8:RC, 16 | 1629 | | cmplwi NARGS8:RC, 16 |
| 1611 | | evldd CARG1, 0(BASE) | 1630 | | lwz CARG3, 0(BASE) |
| 1612 | | evldd CARG2, 8(BASE) | 1631 | | lwz STR:CARG1, 4(BASE) |
| 1632 | | lwz CARG4, 8(BASE) | ||
| 1633 | | lfd FARG2, 8(BASE) | ||
| 1613 | | blt ->fff_fallback | 1634 | | blt ->fff_fallback |
| 1614 | | checknum CARG2 | 1635 | | checkstr CARG3; bne ->fff_fallback |
| 1615 | | checkfail ->fff_fallback | 1636 | | checknum CARG4; bge ->fff_fallback |
| 1616 | | checkstr STR:CARG1 | 1637 | | toint CARG3, FARG2 |
| 1617 | | efdctsiz CARG3, CARG2 | ||
| 1618 | | checkfail ->fff_fallback | ||
| 1619 | | lwz TMP0, STR:CARG1->len | 1638 | | lwz TMP0, STR:CARG1->len |
| 1620 | | cmpwi CARG3, 0 | 1639 | | cmpwi CARG3, 0 |
| 1621 | | lwz TMP1, DISPATCH_GL(tmpbuf.sz)(DISPATCH) | 1640 | | lwz TMP1, DISPATCH_GL(tmpbuf.sz)(DISPATCH) |
| @@ -1635,18 +1654,19 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1635 | | bne <1 | 1654 | | bne <1 |
| 1636 | | b ->fff_newstr | 1655 | | b ->fff_newstr |
| 1637 | |2: // Return empty string. | 1656 | |2: // Return empty string. |
| 1638 | | la STR:CRET1, DISPATCH_GL(strempty)(DISPATCH) | 1657 | | la STR:CARG1, DISPATCH_GL(strempty)(DISPATCH) |
| 1639 | | evmergelo CRET1, TISSTR, STR:CRET1 | 1658 | | li CARG3, LJ_TSTR |
| 1640 | | b ->fff_restv | 1659 | | b ->fff_restv |
| 1641 | | | 1660 | | |
| 1642 | |.ffunc string_reverse | 1661 | |.ffunc string_reverse |
| 1643 | | ffgccheck | 1662 | | ffgccheck |
| 1644 | | cmplwi NARGS8:RC, 8 | 1663 | | cmplwi NARGS8:RC, 8 |
| 1645 | | evldd CARG1, 0(BASE) | 1664 | | lwz CARG3, 0(BASE) |
| 1665 | | lwz STR:CARG1, 4(BASE) | ||
| 1646 | | blt ->fff_fallback | 1666 | | blt ->fff_fallback |
| 1647 | | checkstr STR:CARG1 | 1667 | | checkstr CARG3 |
| 1648 | | lwz TMP1, DISPATCH_GL(tmpbuf.sz)(DISPATCH) | 1668 | | lwz TMP1, DISPATCH_GL(tmpbuf.sz)(DISPATCH) |
| 1649 | | checkfail ->fff_fallback | 1669 | | bne ->fff_fallback |
| 1650 | | lwz CARG3, STR:CARG1->len | 1670 | | lwz CARG3, STR:CARG1->len |
| 1651 | | la CARG1, #STR(STR:CARG1) | 1671 | | la CARG1, #STR(STR:CARG1) |
| 1652 | | lwz CARG2, DISPATCH_GL(tmpbuf.buf)(DISPATCH) | 1672 | | lwz CARG2, DISPATCH_GL(tmpbuf.buf)(DISPATCH) |
| @@ -1667,11 +1687,12 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1667 | | .ffunc name | 1687 | | .ffunc name |
| 1668 | | ffgccheck | 1688 | | ffgccheck |
| 1669 | | cmplwi NARGS8:RC, 8 | 1689 | | cmplwi NARGS8:RC, 8 |
| 1670 | | evldd CARG1, 0(BASE) | 1690 | | lwz CARG3, 0(BASE) |
| 1691 | | lwz STR:CARG1, 4(BASE) | ||
| 1671 | | blt ->fff_fallback | 1692 | | blt ->fff_fallback |
| 1672 | | checkstr STR:CARG1 | 1693 | | checkstr CARG3 |
| 1673 | | lwz TMP1, DISPATCH_GL(tmpbuf.sz)(DISPATCH) | 1694 | | lwz TMP1, DISPATCH_GL(tmpbuf.sz)(DISPATCH) |
| 1674 | | checkfail ->fff_fallback | 1695 | | bne ->fff_fallback |
| 1675 | | lwz CARG3, STR:CARG1->len | 1696 | | lwz CARG3, STR:CARG1->len |
| 1676 | | la CARG1, #STR(STR:CARG1) | 1697 | | la CARG1, #STR(STR:CARG1) |
| 1677 | | lwz CARG2, DISPATCH_GL(tmpbuf.buf)(DISPATCH) | 1698 | | lwz CARG2, DISPATCH_GL(tmpbuf.buf)(DISPATCH) |
| @@ -1684,8 +1705,10 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1684 | | bge ->fff_newstr | 1705 | | bge ->fff_newstr |
| 1685 | | subi TMP0, TMP1, lo | 1706 | | subi TMP0, TMP1, lo |
| 1686 | | xori TMP3, TMP1, 0x20 | 1707 | | xori TMP3, TMP1, 0x20 |
| 1687 | | cmplwi TMP0, 26 | 1708 | | addic TMP0, TMP0, -26 |
| 1688 | | isellt TMP1, TMP3, TMP1 | 1709 | | subfe TMP3, TMP3, TMP3 |
| 1710 | | andi. TMP3, TMP3, 0x20 | ||
| 1711 | | xor TMP1, TMP1, TMP3 | ||
| 1689 | | stbx TMP1, CARG2, TMP2 | 1712 | | stbx TMP1, CARG2, TMP2 |
| 1690 | | addi TMP2, TMP2, 1 | 1713 | | addi TMP2, TMP2, 1 |
| 1691 | | b <1 | 1714 | | b <1 |
| @@ -1697,35 +1720,42 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1697 | |//-- Table library ------------------------------------------------------ | 1720 | |//-- Table library ------------------------------------------------------ |
| 1698 | | | 1721 | | |
| 1699 | |.ffunc_1 table_getn | 1722 | |.ffunc_1 table_getn |
| 1700 | | checktab CARG1 | 1723 | | checktab CARG3; bne ->fff_fallback |
| 1701 | | checkfail ->fff_fallback | ||
| 1702 | | bl extern lj_tab_len // (GCtab *t) | 1724 | | bl extern lj_tab_len // (GCtab *t) |
| 1703 | | // Returns uint32_t (but less than 2^31). | 1725 | | // Returns uint32_t (but less than 2^31). |
| 1704 | | efdcfsi CRET1, CRET1 | 1726 | | b ->fff_resi |
| 1705 | | b ->fff_restv | ||
| 1706 | | | 1727 | | |
| 1707 | |//-- Bit library -------------------------------------------------------- | 1728 | |//-- Bit library -------------------------------------------------------- |
| 1708 | | | 1729 | | |
| 1709 | |.macro .ffunc_bit, name | 1730 | |.macro .ffunc_bit, name |
| 1710 | | .ffunc_n bit_..name | 1731 | | .ffunc_n bit_..name |
| 1711 | | efdadd CARG1, CARG1, TOBIT | 1732 | | fadd FARG1, FARG1, TOBIT |
| 1733 | | stfd FARG1, TMPD | ||
| 1734 | | lwz CARG1, TMPD_LO | ||
| 1712 | |.endmacro | 1735 | |.endmacro |
| 1713 | | | 1736 | | |
| 1714 | |.ffunc_bit tobit | 1737 | |.ffunc_bit tobit |
| 1715 | |->fff_resbit: | 1738 | |->fff_resi: |
| 1716 | | efdcfsi CRET1, CARG1 | 1739 | | tonum_i FARG1, CRET1 |
| 1717 | | b ->fff_restv | 1740 | |->fff_resn: |
| 1741 | | lwz PC, FRAME_PC(BASE) | ||
| 1742 | | la RA, -8(BASE) | ||
| 1743 | | stfd FARG1, -8(BASE) | ||
| 1744 | | b ->fff_res1 | ||
| 1718 | | | 1745 | | |
| 1719 | |.macro .ffunc_bit_op, name, ins | 1746 | |.macro .ffunc_bit_op, name, ins |
| 1720 | | .ffunc_bit name | 1747 | | .ffunc_bit name |
| 1721 | | li TMP1, 8 | 1748 | | li TMP1, 8 |
| 1722 | |1: | 1749 | |1: |
| 1723 | | evlddx CARG2, BASE, TMP1 | 1750 | | lwzx CARG4, BASE, TMP1 |
| 1724 | | cmplw cr1, TMP1, NARGS8:RC | 1751 | | cmplw cr1, TMP1, NARGS8:RC |
| 1725 | | checknum CARG2 | 1752 | | lfdx FARG1, BASE, TMP1 |
| 1726 | | bge cr1, ->fff_resbit | 1753 | | checknum CARG4 |
| 1727 | | checkfail ->fff_fallback | 1754 | | bge cr1, ->fff_resi |
| 1728 | | efdadd CARG2, CARG2, TOBIT | 1755 | | fadd FARG1, FARG1, TOBIT |
| 1756 | | bge ->fff_fallback | ||
| 1757 | | stfd FARG1, TMPD | ||
| 1758 | | lwz CARG2, TMPD_LO | ||
| 1729 | | ins CARG1, CARG1, CARG2 | 1759 | | ins CARG1, CARG1, CARG2 |
| 1730 | | addi TMP1, TMP1, 8 | 1760 | | addi TMP1, TMP1, 8 |
| 1731 | | b <1 | 1761 | | b <1 |
| @@ -1739,26 +1769,28 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1739 | | rotlwi TMP0, CARG1, 8 | 1769 | | rotlwi TMP0, CARG1, 8 |
| 1740 | | rlwimi TMP0, CARG1, 24, 0, 7 | 1770 | | rlwimi TMP0, CARG1, 24, 0, 7 |
| 1741 | | rlwimi TMP0, CARG1, 24, 16, 23 | 1771 | | rlwimi TMP0, CARG1, 24, 16, 23 |
| 1742 | | efdcfsi CRET1, TMP0 | 1772 | | mr CRET1, TMP0 |
| 1743 | | b ->fff_restv | 1773 | | b ->fff_resi |
| 1744 | | | 1774 | | |
| 1745 | |.ffunc_bit bnot | 1775 | |.ffunc_bit bnot |
| 1746 | | not TMP0, CARG1 | 1776 | | not CRET1, CARG1 |
| 1747 | | efdcfsi CRET1, TMP0 | 1777 | | b ->fff_resi |
| 1748 | | b ->fff_restv | ||
| 1749 | | | 1778 | | |
| 1750 | |.macro .ffunc_bit_sh, name, ins, shmod | 1779 | |.macro .ffunc_bit_sh, name, ins, shmod |
| 1751 | | .ffunc_nn bit_..name | 1780 | | .ffunc_nn bit_..name |
| 1752 | | efdadd CARG2, CARG2, TOBIT | 1781 | | fadd FARG1, FARG1, TOBIT |
| 1753 | | efdadd CARG1, CARG1, TOBIT | 1782 | | fadd FARG2, FARG2, TOBIT |
| 1783 | | stfd FARG1, TMPD | ||
| 1784 | | lwz CARG1, TMPD_LO | ||
| 1785 | | stfd FARG2, TMPD | ||
| 1786 | | lwz CARG2, TMPD_LO | ||
| 1754 | |.if shmod == 1 | 1787 | |.if shmod == 1 |
| 1755 | | rlwinm CARG2, CARG2, 0, 27, 31 | 1788 | | rlwinm CARG2, CARG2, 0, 27, 31 |
| 1756 | |.elif shmod == 2 | 1789 | |.elif shmod == 2 |
| 1757 | | neg CARG2, CARG2 | 1790 | | neg CARG2, CARG2 |
| 1758 | |.endif | 1791 | |.endif |
| 1759 | | ins TMP0, CARG1, CARG2 | 1792 | | ins CRET1, CARG1, CARG2 |
| 1760 | | efdcfsi CRET1, TMP0 | 1793 | | b ->fff_resi |
| 1761 | | b ->fff_restv | ||
| 1762 | |.endmacro | 1794 | |.endmacro |
| 1763 | | | 1795 | | |
| 1764 | |.ffunc_bit_sh lshift, slw, 1 | 1796 | |.ffunc_bit_sh lshift, slw, 1 |
| @@ -1939,93 +1971,14 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 1939 | |//-- Math helper functions ---------------------------------------------- | 1971 | |//-- Math helper functions ---------------------------------------------- |
| 1940 | |//----------------------------------------------------------------------- | 1972 | |//----------------------------------------------------------------------- |
| 1941 | | | 1973 | | |
| 1942 | |// FP value rounding. Called by math.floor/math.ceil fast functions | 1974 | | // NYI: Use internal implementation. |
| 1943 | |// and from JIT code. | ||
| 1944 | |// | ||
| 1945 | |// This can be inlined if the CPU has the frin/friz/frip/frim instructions. | ||
| 1946 | |// The alternative hard-float approaches have a deep dependency chain. | ||
| 1947 | |// The resulting latency is at least 3x-7x the double-precision FP latency | ||
| 1948 | |// (e500v2: 6cy, e600: 5cy, Cell: 10cy) or around 20-70 cycles. | ||
| 1949 | |// | ||
| 1950 | |// The soft-float approach is tedious, but much faster (e500v2: ~11cy/~6cy). | ||
| 1951 | |// However it relies on a fast way to transfer the FP value to GPRs | ||
| 1952 | |// (e500v2: 0cy for lo-word, 1cy for hi-word). | ||
| 1953 | |// | ||
| 1954 | |.macro vm_round, name, mode | ||
| 1955 | | // Used temporaries: TMP0, TMP1, TMP2, TMP3. | ||
| 1956 | |->name.._efd: // Input: CARG2, output: CRET2 | ||
| 1957 | | evmergehi CARG1, CARG2, CARG2 | ||
| 1958 | |->name.._hilo: | ||
| 1959 | | // Input: CARG1 (hi), CARG2 (hi, lo), output: CRET2 | ||
| 1960 | | rlwinm TMP2, CARG1, 12, 21, 31 | ||
| 1961 | | addic. TMP2, TMP2, -1023 // exp = exponent(x) - 1023 | ||
| 1962 | | li TMP1, -1 | ||
| 1963 | | cmplwi cr1, TMP2, 51 // 0 <= exp <= 51? | ||
| 1964 | | subfic TMP0, TMP2, 52 | ||
| 1965 | | bgt cr1, >1 | ||
| 1966 | | lus TMP3, 0xfff0 | ||
| 1967 | | slw TMP0, TMP1, TMP0 // lomask = -1 << (52-exp) | ||
| 1968 | | sraw TMP1, TMP3, TMP2 // himask = (int32_t)0xfff00000 >> exp | ||
| 1969 | |.if mode == 2 // trunc(x): | ||
| 1970 | | evmergelo TMP0, TMP1, TMP0 | ||
| 1971 | | evand CRET2, CARG2, TMP0 // hi &= himask, lo &= lomask | ||
| 1972 | |.else | ||
| 1973 | | andc TMP2, CARG2, TMP0 | ||
| 1974 | | andc TMP3, CARG1, TMP1 | ||
| 1975 | | or TMP2, TMP2, TMP3 // ztest = (hi&~himask) | (lo&~lomask) | ||
| 1976 | | srawi TMP3, CARG1, 31 // signmask = (int32_t)hi >> 31 | ||
| 1977 | |.if mode == 0 // floor(x): | ||
| 1978 | | and. TMP2, TMP2, TMP3 // iszero = ((ztest & signmask) == 0) | ||
| 1979 | |.else // ceil(x): | ||
| 1980 | | andc. TMP2, TMP2, TMP3 // iszero = ((ztest & ~signmask) == 0) | ||
| 1981 | |.endif | ||
| 1982 | | and CARG2, CARG2, TMP0 // lo &= lomask | ||
| 1983 | | and CARG1, CARG1, TMP1 // hi &= himask | ||
| 1984 | | subc TMP0, CARG2, TMP0 | ||
| 1985 | | iseleq TMP0, CARG2, TMP0 // lo = iszero ? lo : lo-lomask | ||
| 1986 | | sube TMP1, CARG1, TMP1 | ||
| 1987 | | iseleq TMP1, CARG1, TMP1 // hi = iszero ? hi : hi-himask+carry | ||
| 1988 | | evmergelo CRET2, TMP1, TMP0 | ||
| 1989 | |.endif | ||
| 1990 | | blr | ||
| 1991 | |1: | ||
| 1992 | | bgtlr // Already done if >=2^52, +-inf or nan. | ||
| 1993 | |.if mode == 2 // trunc(x): | ||
| 1994 | | rlwinm TMP1, CARG1, 0, 0, 0 // hi = sign(x) | ||
| 1995 | | li TMP0, 0 | ||
| 1996 | | evmergelo CRET2, TMP1, TMP0 | ||
| 1997 | |.else | ||
| 1998 | | rlwinm TMP2, CARG1, 0, 1, 31 | ||
| 1999 | | srawi TMP0, CARG1, 31 // signmask = (int32_t)hi >> 31 | ||
| 2000 | | or TMP2, TMP2, CARG2 // ztest = abs(hi) | lo | ||
| 2001 | | lus TMP1, 0x3ff0 | ||
| 2002 | |.if mode == 0 // floor(x): | ||
| 2003 | | and. TMP2, TMP2, TMP0 // iszero = ((ztest & signmask) == 0) | ||
| 2004 | |.else // ceil(x): | ||
| 2005 | | andc. TMP2, TMP2, TMP0 // iszero = ((ztest & ~signmask) == 0) | ||
| 2006 | |.endif | ||
| 2007 | | li TMP0, 0 | ||
| 2008 | | iseleq TMP1, r0, TMP1 | ||
| 2009 | | rlwimi CARG1, TMP1, 0, 1, 31 // hi = sign(x) | (iszero ? 0.0 : 1.0) | ||
| 2010 | | evmergelo CRET2, CARG1, TMP0 | ||
| 2011 | |.endif | ||
| 2012 | | blr | ||
| 2013 | |.endmacro | ||
| 2014 | | | ||
| 2015 | |->vm_floor: | 1975 | |->vm_floor: |
| 2016 | | mflr CARG3 | 1976 | | b extern floor |
| 2017 | | bl ->vm_floor_hilo | 1977 | |->vm_ceil: |
| 2018 | | mtlr CARG3 | 1978 | | b extern ceil |
| 2019 | | evmergehi CRET1, CRET2, CRET2 | 1979 | |->vm_trunc: |
| 2020 | | blr | ||
| 2021 | | | ||
| 2022 | | vm_round vm_floor, 0 | ||
| 2023 | | vm_round vm_ceil, 1 | ||
| 2024 | #if LJ_HASJIT | 1980 | #if LJ_HASJIT |
| 2025 | | vm_round vm_trunc, 2 | 1981 | | b extern trunc |
| 2026 | #else | ||
| 2027 | |->vm_trunc_efd: | ||
| 2028 | |->vm_trunc_hilo: | ||
| 2029 | #endif | 1982 | #endif |
| 2030 | | | 1983 | | |
| 2031 | |->vm_powi: | 1984 | |->vm_powi: |
| @@ -2042,31 +1995,38 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 2042 | |// Compute x op y for basic arithmetic operators (+ - * / % ^ and unary -) | 1995 | |// Compute x op y for basic arithmetic operators (+ - * / % ^ and unary -) |
| 2043 | |// and basic math functions. ORDER ARITH | 1996 | |// and basic math functions. ORDER ARITH |
| 2044 | |->vm_foldarith: | 1997 | |->vm_foldarith: |
| 2045 | | evmergelo CARG2, CARG1, CARG2 | 1998 | | cmplwi CARG1, 1 |
| 2046 | | cmplwi CARG5, 1 | 1999 | | beq >1; bgt >2 |
| 2047 | | evmergelo CARG4, CARG3, CARG4 | 2000 | | fadd FARG1, FARG1, FARG2; blr |
| 2048 | | beq >1; bgt >2 | ||
| 2049 | | efdadd CRET2, CARG2, CARG4; evmergehi CRET1, CRET2, CRET2; blr | ||
| 2050 | |1: | 2001 | |1: |
| 2051 | | efdsub CRET2, CARG2, CARG4; evmergehi CRET1, CRET2, CRET2; blr | 2002 | | fsub FARG1, FARG1, FARG2; blr |
| 2052 | |2: | 2003 | |2: |
| 2053 | | cmplwi CARG5, 3; beq >1; bgt >2 | 2004 | | cmplwi CARG1, 3; beq >1; bgt >2 |
| 2054 | | efdmul CRET2, CARG2, CARG4; evmergehi CRET1, CRET2, CRET2; blr | 2005 | | fmul FARG1, FARG1, FARG2; blr |
| 2055 | |1: | 2006 | |1: |
| 2056 | | efddiv CRET2, CARG2, CARG4; evmergehi CRET1, CRET2, CRET2; blr | 2007 | | fdiv FARG1, FARG1, FARG2; blr |
| 2057 | |2: | 2008 | |2: |
| 2058 | | cmplwi CARG5, 5; beq >1; bgt >2 | 2009 | | cmplwi CARG1, 5; beq >1; bgt >2 |
| 2059 | | evmr CARG3, CARG2; efddiv CRET2, CARG2, CARG4; evmr RB, CARG4 | 2010 | | // NYI: Use internal implementation of floor and avoid spills. |
| 2060 | | mflr RC; bl ->vm_floor_efd; mtlr RC | 2011 | | stwu sp, -32(sp); stfd f14, 16(sp); stfd f15, 24(sp) |
| 2061 | | efdmul CRET2, CRET2, RB; efdsub CRET2, CARG3, CRET2 | 2012 | | mflr r0 |
| 2062 | | evmergehi CRET1, CRET2, CRET2; blr | 2013 | | fmr f14, FARG1 |
| 2014 | | fdiv FARG1, FARG1, FARG2 | ||
| 2015 | | stw r0, 36(sp) | ||
| 2016 | | fmr f15, FARG2 | ||
| 2017 | | bl extern floor | ||
| 2018 | | lwz r0, 36(sp) | ||
| 2019 | | fmul FARG1, FARG1, f15 | ||
| 2020 | | mtlr r0 | ||
| 2021 | | fsub FARG1, f14, FARG1; | ||
| 2022 | | lfd f14, 16(sp); lfd f15, 24(sp); addi sp, sp, 32; blr | ||
| 2063 | |1: | 2023 | |1: |
| 2064 | | b extern pow | 2024 | | b extern pow |
| 2065 | |2: | 2025 | |2: |
| 2066 | | cmplwi CARG5, 7; beq >1; bgt >2 | 2026 | | cmplwi CARG1, 7; beq >1; bgt >2 |
| 2067 | | xoris CARG1, CARG1, 0x8000; blr | 2027 | | fneg FARG1, FARG1; blr |
| 2068 | |1: | 2028 | |1: |
| 2069 | | rlwinm CARG1, CARG1, 0, 1, 31; blr | 2029 | | fabs FARG1, FARG1; blr |
| 2070 | |2: | 2030 | |2: |
| 2071 | | NYI // Other operations only needed by JIT compiler. | 2031 | | NYI // Other operations only needed by JIT compiler. |
| 2072 | | | 2032 | | |
| @@ -2100,71 +2060,85 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2100 | 2060 | ||
| 2101 | case BC_ISLT: case BC_ISGE: case BC_ISLE: case BC_ISGT: | 2061 | case BC_ISLT: case BC_ISGE: case BC_ISLE: case BC_ISGT: |
| 2102 | | // RA = src1*8, RD = src2*8, JMP with RD = target | 2062 | | // RA = src1*8, RD = src2*8, JMP with RD = target |
| 2103 | | evlddx TMP0, BASE, RA | 2063 | | lwzx TMP0, BASE, RA |
| 2104 | | addi PC, PC, 4 | 2064 | | addi PC, PC, 4 |
| 2105 | | evlddx TMP1, BASE, RD | 2065 | | lfdx f0, BASE, RA |
| 2106 | | addis TMP3, PC, -(BCBIAS_J*4 >> 16) | 2066 | | lwzx TMP1, BASE, RD |
| 2067 | | checknum cr0, TMP0 | ||
| 2107 | | lwz TMP2, -4(PC) | 2068 | | lwz TMP2, -4(PC) |
| 2108 | | evmergehi RB, TMP0, TMP1 | 2069 | | lfdx f1, BASE, RD |
| 2070 | | checknum cr1, TMP1 | ||
| 2109 | | decode_RD4 TMP2, TMP2 | 2071 | | decode_RD4 TMP2, TMP2 |
| 2110 | | checknum RB | 2072 | | bge cr0, ->vmeta_comp |
| 2111 | | add TMP2, TMP2, TMP3 | 2073 | | addis TMP2, TMP2, -(BCBIAS_J*4 >> 16) |
| 2112 | | checkanyfail ->vmeta_comp | 2074 | | bge cr1, ->vmeta_comp |
| 2113 | | efdcmplt TMP0, TMP1 | 2075 | | fcmpu cr0, f0, f1 |
| 2114 | if (op == BC_ISLE || op == BC_ISGT) { | 2076 | if (op == BC_ISLT) { |
| 2115 | | efdcmpeq cr1, TMP0, TMP1 | 2077 | | bge >1 |
| 2116 | | cror 4*cr0+gt, 4*cr0+gt, 4*cr1+gt | 2078 | } else if (op == BC_ISGE) { |
| 2117 | } | 2079 | | blt >1 |
| 2118 | if (op == BC_ISLT || op == BC_ISLE) { | 2080 | } else if (op == BC_ISLE) { |
| 2119 | | iselgt PC, TMP2, PC | 2081 | | cror 4*cr0+lt, 4*cr0+lt, 4*cr0+eq |
| 2082 | | bge >1 | ||
| 2120 | } else { | 2083 | } else { |
| 2121 | | iselgt PC, PC, TMP2 | 2084 | | cror 4*cr0+lt, 4*cr0+lt, 4*cr0+eq |
| 2085 | | blt >1 | ||
| 2122 | } | 2086 | } |
| 2087 | | add PC, PC, TMP2 | ||
| 2088 | |1: | ||
| 2123 | | ins_next | 2089 | | ins_next |
| 2124 | break; | 2090 | break; |
| 2125 | 2091 | ||
| 2126 | case BC_ISEQV: case BC_ISNEV: | 2092 | case BC_ISEQV: case BC_ISNEV: |
| 2127 | vk = op == BC_ISEQV; | 2093 | vk = op == BC_ISEQV; |
| 2128 | | // RA = src1*8, RD = src2*8, JMP with RD = target | 2094 | | // RA = src1*8, RD = src2*8, JMP with RD = target |
| 2129 | | evlddx CARG2, BASE, RA | 2095 | | lwzux TMP0, RA, BASE |
| 2096 | | lwz TMP2, 0(PC) | ||
| 2097 | | lfd f0, 0(RA) | ||
| 2130 | | addi PC, PC, 4 | 2098 | | addi PC, PC, 4 |
| 2131 | | evlddx CARG3, BASE, RD | 2099 | | lwzux TMP1, RD, BASE |
| 2132 | | addis TMP3, PC, -(BCBIAS_J*4 >> 16) | 2100 | | checknum cr0, TMP0 |
| 2133 | | lwz TMP2, -4(PC) | ||
| 2134 | | evmergehi RB, CARG2, CARG3 | ||
| 2135 | | decode_RD4 TMP2, TMP2 | 2101 | | decode_RD4 TMP2, TMP2 |
| 2136 | | checknum RB | 2102 | | lfd f1, 0(RD) |
| 2137 | | add TMP2, TMP2, TMP3 | 2103 | | checknum cr1, TMP1 |
| 2138 | | checkanyfail >5 | 2104 | | addis TMP2, TMP2, -(BCBIAS_J*4 >> 16) |
| 2139 | | efdcmpeq CARG2, CARG3 | 2105 | | bge cr0, >5 |
| 2106 | | bge cr1, >5 | ||
| 2107 | | fcmpu cr0, f0, f1 | ||
| 2140 | if (vk) { | 2108 | if (vk) { |
| 2141 | | iselgt PC, TMP2, PC | 2109 | | bne >1 |
| 2110 | | add PC, PC, TMP2 | ||
| 2142 | } else { | 2111 | } else { |
| 2143 | | iselgt PC, PC, TMP2 | 2112 | | beq >1 |
| 2113 | | add PC, PC, TMP2 | ||
| 2144 | } | 2114 | } |
| 2145 | |1: | 2115 | |1: |
| 2146 | | ins_next | 2116 | | ins_next |
| 2147 | | | 2117 | | |
| 2148 | |5: // Either or both types are not numbers. | 2118 | |5: // Either or both types are not numbers. |
| 2149 | | evcmpeq CARG2, CARG3 | 2119 | | lwz CARG2, 4(RA) |
| 2150 | | not TMP3, RB | 2120 | | lwz CARG3, 4(RD) |
| 2121 | | not TMP3, TMP0 | ||
| 2122 | | cmplw TMP0, TMP1 | ||
| 2151 | | cmplwi cr1, TMP3, ~LJ_TISPRI // Primitive? | 2123 | | cmplwi cr1, TMP3, ~LJ_TISPRI // Primitive? |
| 2152 | | crorc 4*cr7+lt, 4*cr0+so, 4*cr0+lt // 1: Same tv or different type. | ||
| 2153 | | cmplwi cr6, TMP3, ~LJ_TISTABUD // Table or userdata? | 2124 | | cmplwi cr6, TMP3, ~LJ_TISTABUD // Table or userdata? |
| 2154 | | crandc 4*cr7+gt, 4*cr0+lt, 4*cr1+gt // 2: Same type and primitive. | 2125 | | cmplw cr5, CARG2, CARG3 |
| 2126 | | crandc 4*cr0+gt, 4*cr0+eq, 4*cr1+gt // 2: Same type and primitive. | ||
| 2127 | | crorc 4*cr0+lt, 4*cr5+eq, 4*cr0+eq // 1: Same tv or different type. | ||
| 2128 | | crand 4*cr0+eq, 4*cr0+eq, 4*cr5+eq // 0: Same type and same tv. | ||
| 2155 | | mr SAVE0, PC | 2129 | | mr SAVE0, PC |
| 2130 | | cror 4*cr0+eq, 4*cr0+eq, 4*cr0+gt // 0 or 2. | ||
| 2131 | | cror 4*cr0+lt, 4*cr0+lt, 4*cr0+gt // 1 or 2. | ||
| 2156 | if (vk) { | 2132 | if (vk) { |
| 2157 | | isel PC, TMP2, PC, 4*cr7+gt | 2133 | | bne cr0, >6 |
| 2158 | } else { | 2134 | | add PC, PC, TMP2 |
| 2159 | | isel TMP2, PC, TMP2, 4*cr7+gt | 2135 | |6: |
| 2160 | } | ||
| 2161 | | cror 4*cr7+lt, 4*cr7+lt, 4*cr7+gt // 1 or 2. | ||
| 2162 | if (vk) { | ||
| 2163 | | isel PC, TMP2, PC, 4*cr0+so | ||
| 2164 | } else { | 2136 | } else { |
| 2165 | | isel PC, PC, TMP2, 4*cr0+so | 2137 | | beq cr0, >6 |
| 2138 | | add PC, PC, TMP2 | ||
| 2139 | |6: | ||
| 2166 | } | 2140 | } |
| 2167 | | blt cr7, <1 // Done if 1 or 2. | 2141 | | blt cr0, <1 // Done if 1 or 2. |
| 2168 | | blt cr6, <1 // Done if not tab/ud. | 2142 | | blt cr6, <1 // Done if not tab/ud. |
| 2169 | | | 2143 | | |
| 2170 | | // Different tables or userdatas. Need to check __eq metamethod. | 2144 | | // Different tables or userdatas. Need to check __eq metamethod. |
| @@ -2183,52 +2157,57 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2183 | case BC_ISEQS: case BC_ISNES: | 2157 | case BC_ISEQS: case BC_ISNES: |
| 2184 | vk = op == BC_ISEQS; | 2158 | vk = op == BC_ISEQS; |
| 2185 | | // RA = src*8, RD = str_const*8 (~), JMP with RD = target | 2159 | | // RA = src*8, RD = str_const*8 (~), JMP with RD = target |
| 2186 | | evlddx TMP0, BASE, RA | 2160 | | lwzux TMP0, RA, BASE |
| 2187 | | srwi RD, RD, 1 | 2161 | | srwi RD, RD, 1 |
| 2162 | | lwz STR:TMP3, 4(RA) | ||
| 2188 | | lwz INS, 0(PC) | 2163 | | lwz INS, 0(PC) |
| 2189 | | subfic RD, RD, -4 | 2164 | | subfic RD, RD, -4 |
| 2190 | | addi PC, PC, 4 | 2165 | | addi PC, PC, 4 |
| 2191 | | lwzx STR:TMP1, KBASE, RD // KBASE-4-str_const*4 | 2166 | | lwzx STR:TMP1, KBASE, RD // KBASE-4-str_const*4 |
| 2192 | | addis TMP3, PC, -(BCBIAS_J*4 >> 16) | 2167 | | subfic TMP0, TMP0, LJ_TSTR |
| 2168 | | sub TMP1, STR:TMP1, STR:TMP3 | ||
| 2169 | | or TMP0, TMP0, TMP1 | ||
| 2193 | | decode_RD4 TMP2, INS | 2170 | | decode_RD4 TMP2, INS |
| 2194 | | evmergelo STR:TMP1, TISSTR, STR:TMP1 | 2171 | | subfic TMP0, TMP0, 0 |
| 2195 | | add TMP2, TMP2, TMP3 | 2172 | | addis TMP2, TMP2, -(BCBIAS_J*4 >> 16) |
| 2196 | | evcmpeq TMP0, STR:TMP1 | 2173 | | subfe TMP1, TMP1, TMP1 |
| 2197 | if (vk) { | 2174 | if (vk) { |
| 2198 | | isel PC, TMP2, PC, 4*cr0+so | 2175 | | andc TMP2, TMP2, TMP1 |
| 2199 | } else { | 2176 | } else { |
| 2200 | | isel PC, PC, TMP2, 4*cr0+so | 2177 | | and TMP2, TMP2, TMP1 |
| 2201 | } | 2178 | } |
| 2179 | | add PC, PC, TMP2 | ||
| 2202 | | ins_next | 2180 | | ins_next |
| 2203 | break; | 2181 | break; |
| 2204 | 2182 | ||
| 2205 | case BC_ISEQN: case BC_ISNEN: | 2183 | case BC_ISEQN: case BC_ISNEN: |
| 2206 | vk = op == BC_ISEQN; | 2184 | vk = op == BC_ISEQN; |
| 2207 | | // RA = src*8, RD = num_const*8, JMP with RD = target | 2185 | | // RA = src*8, RD = num_const*8, JMP with RD = target |
| 2208 | | evlddx TMP0, BASE, RA | 2186 | | lwzx TMP0, BASE, RA |
| 2187 | | lfdx f0, BASE, RA | ||
| 2209 | | addi PC, PC, 4 | 2188 | | addi PC, PC, 4 |
| 2210 | | evlddx TMP1, KBASE, RD | 2189 | | lfdx f1, KBASE, RD |
| 2211 | | addis TMP3, PC, -(BCBIAS_J*4 >> 16) | ||
| 2212 | | lwz INS, -4(PC) | 2190 | | lwz INS, -4(PC) |
| 2213 | | checknum TMP0 | 2191 | | checknum TMP0; bge >5 |
| 2214 | | checkfail >5 | 2192 | | fcmpu cr0, f0, f1 |
| 2215 | | efdcmpeq TMP0, TMP1 | ||
| 2216 | |1: | ||
| 2217 | | decode_RD4 TMP2, INS | 2193 | | decode_RD4 TMP2, INS |
| 2218 | | add TMP2, TMP2, TMP3 | 2194 | | addis TMP2, TMP2, -(BCBIAS_J*4 >> 16) |
| 2219 | if (vk) { | 2195 | if (vk) { |
| 2220 | | iselgt PC, TMP2, PC | 2196 | | bne >5 |
| 2197 | | add PC, PC, TMP2 | ||
| 2221 | |5: | 2198 | |5: |
| 2222 | } else { | 2199 | } else { |
| 2223 | | iselgt PC, PC, TMP2 | 2200 | | beq >2 |
| 2201 | |1: | ||
| 2202 | | add PC, PC, TMP2 | ||
| 2203 | |2: | ||
| 2224 | } | 2204 | } |
| 2225 | |3: | ||
| 2226 | | ins_next | 2205 | | ins_next |
| 2227 | if (!vk) { | 2206 | if (!vk) { |
| 2228 | |5: | 2207 | |5: |
| 2229 | | decode_RD4 TMP2, INS | 2208 | | decode_RD4 TMP2, INS |
| 2230 | | add PC, TMP2, TMP3 | 2209 | | addis TMP2, TMP2, -(BCBIAS_J*4 >> 16) |
| 2231 | | b <3 | 2210 | | b <1 |
| 2232 | } | 2211 | } |
| 2233 | break; | 2212 | break; |
| 2234 | 2213 | ||
| @@ -2238,17 +2217,19 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2238 | | lwzx TMP0, BASE, RA | 2217 | | lwzx TMP0, BASE, RA |
| 2239 | | srwi TMP1, RD, 3 | 2218 | | srwi TMP1, RD, 3 |
| 2240 | | lwz INS, 0(PC) | 2219 | | lwz INS, 0(PC) |
| 2241 | | addi PC, PC, 4 | ||
| 2242 | | not TMP1, TMP1 | 2220 | | not TMP1, TMP1 |
| 2243 | | addis TMP3, PC, -(BCBIAS_J*4 >> 16) | 2221 | | addi PC, PC, 4 |
| 2244 | | cmplw TMP0, TMP1 | 2222 | | sub TMP0, TMP0, TMP1 |
| 2245 | | decode_RD4 TMP2, INS | 2223 | | decode_RD4 TMP2, INS |
| 2246 | | add TMP2, TMP2, TMP3 | 2224 | | addic TMP0, TMP0, -1 |
| 2225 | | addis TMP2, TMP2, -(BCBIAS_J*4 >> 16) | ||
| 2226 | | subfe TMP1, TMP1, TMP1 | ||
| 2247 | if (vk) { | 2227 | if (vk) { |
| 2248 | | iseleq PC, TMP2, PC | 2228 | | and TMP2, TMP2, TMP1 |
| 2249 | } else { | 2229 | } else { |
| 2250 | | iseleq PC, PC, TMP2 | 2230 | | andc TMP2, TMP2, TMP1 |
| 2251 | } | 2231 | } |
| 2232 | | add PC, PC, TMP2 | ||
| 2252 | | ins_next | 2233 | | ins_next |
| 2253 | break; | 2234 | break; |
| 2254 | 2235 | ||
| @@ -2256,29 +2237,32 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2256 | 2237 | ||
| 2257 | case BC_ISTC: case BC_ISFC: case BC_IST: case BC_ISF: | 2238 | case BC_ISTC: case BC_ISFC: case BC_IST: case BC_ISF: |
| 2258 | | // RA = dst*8 or unused, RD = src*8, JMP with RD = target | 2239 | | // RA = dst*8 or unused, RD = src*8, JMP with RD = target |
| 2259 | | evlddx TMP0, BASE, RD | 2240 | | lwzx TMP0, BASE, RD |
| 2260 | | evaddw TMP1, TISNIL, TISNIL // Synthesize LJ_TFALSE. | ||
| 2261 | | lwz INS, 0(PC) | 2241 | | lwz INS, 0(PC) |
| 2262 | | evcmpltu TMP0, TMP1 | ||
| 2263 | | addi PC, PC, 4 | 2242 | | addi PC, PC, 4 |
| 2264 | if (op == BC_IST || op == BC_ISF) { | 2243 | if (op == BC_IST || op == BC_ISF) { |
| 2265 | | addis TMP3, PC, -(BCBIAS_J*4 >> 16) | 2244 | | subfic TMP0, TMP0, LJ_TTRUE |
| 2266 | | decode_RD4 TMP2, INS | 2245 | | decode_RD4 TMP2, INS |
| 2267 | | add TMP2, TMP2, TMP3 | 2246 | | subfe TMP1, TMP1, TMP1 |
| 2247 | | addis TMP2, TMP2, -(BCBIAS_J*4 >> 16) | ||
| 2268 | if (op == BC_IST) { | 2248 | if (op == BC_IST) { |
| 2269 | | isellt PC, TMP2, PC | 2249 | | andc TMP2, TMP2, TMP1 |
| 2270 | } else { | 2250 | } else { |
| 2271 | | isellt PC, PC, TMP2 | 2251 | | and TMP2, TMP2, TMP1 |
| 2272 | } | 2252 | } |
| 2253 | | add PC, PC, TMP2 | ||
| 2273 | } else { | 2254 | } else { |
| 2255 | | li TMP1, LJ_TFALSE | ||
| 2256 | | lfdx f0, BASE, RD | ||
| 2257 | | cmplw TMP0, TMP1 | ||
| 2274 | if (op == BC_ISTC) { | 2258 | if (op == BC_ISTC) { |
| 2275 | | checkfail >1 | 2259 | | bge >1 |
| 2276 | } else { | 2260 | } else { |
| 2277 | | checkok >1 | 2261 | | blt >1 |
| 2278 | } | 2262 | } |
| 2279 | | addis PC, PC, -(BCBIAS_J*4 >> 16) | 2263 | | addis PC, PC, -(BCBIAS_J*4 >> 16) |
| 2280 | | decode_RD4 TMP2, INS | 2264 | | decode_RD4 TMP2, INS |
| 2281 | | evstddx TMP0, BASE, RA | 2265 | | stfdx f0, BASE, RA |
| 2282 | | add PC, PC, TMP2 | 2266 | | add PC, PC, TMP2 |
| 2283 | |1: | 2267 | |1: |
| 2284 | } | 2268 | } |
| @@ -2290,8 +2274,8 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2290 | case BC_MOV: | 2274 | case BC_MOV: |
| 2291 | | // RA = dst*8, RD = src*8 | 2275 | | // RA = dst*8, RD = src*8 |
| 2292 | | ins_next1 | 2276 | | ins_next1 |
| 2293 | | evlddx TMP0, BASE, RD | 2277 | | lfdx f0, BASE, RD |
| 2294 | | evstddx TMP0, BASE, RA | 2278 | | stfdx f0, BASE, RA |
| 2295 | | ins_next2 | 2279 | | ins_next2 |
| 2296 | break; | 2280 | break; |
| 2297 | case BC_NOT: | 2281 | case BC_NOT: |
| @@ -2305,28 +2289,28 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2305 | break; | 2289 | break; |
| 2306 | case BC_UNM: | 2290 | case BC_UNM: |
| 2307 | | // RA = dst*8, RD = src*8 | 2291 | | // RA = dst*8, RD = src*8 |
| 2308 | | evlddx TMP0, BASE, RD | 2292 | | lwzux TMP1, RD, BASE |
| 2309 | | checknum TMP0 | 2293 | | lwz TMP0, 4(RD) |
| 2310 | | checkfail ->vmeta_unm | 2294 | | checknum TMP1; bge ->vmeta_unm |
| 2311 | | efdneg TMP0, TMP0 | 2295 | | xoris TMP1, TMP1, 0x8000 |
| 2312 | | ins_next1 | 2296 | | ins_next1 |
| 2313 | | evstddx TMP0, BASE, RA | 2297 | | stwux TMP1, RA, BASE |
| 2298 | | stw TMP0, 4(RA) | ||
| 2314 | | ins_next2 | 2299 | | ins_next2 |
| 2315 | break; | 2300 | break; |
| 2316 | case BC_LEN: | 2301 | case BC_LEN: |
| 2317 | | // RA = dst*8, RD = src*8 | 2302 | | // RA = dst*8, RD = src*8 |
| 2318 | | evlddx CARG1, BASE, RD | 2303 | | lwzux TMP0, RD, BASE |
| 2319 | | checkstr CARG1 | 2304 | | lwz CARG1, 4(RD) |
| 2320 | | checkfail >2 | 2305 | | checkstr TMP0; bne >2 |
| 2321 | | lwz CRET1, STR:CARG1->len | 2306 | | lwz CRET1, STR:CARG1->len |
| 2322 | |1: | 2307 | |1: |
| 2308 | | tonum_u f0, CRET1 // Result is a non-negative integer. | ||
| 2323 | | ins_next1 | 2309 | | ins_next1 |
| 2324 | | efdcfsi TMP0, CRET1 | 2310 | | stfdx f0, BASE, RA |
| 2325 | | evstddx TMP0, BASE, RA | ||
| 2326 | | ins_next2 | 2311 | | ins_next2 |
| 2327 | |2: | 2312 | |2: |
| 2328 | | checktab CARG1 | 2313 | | checktab TMP0; bne ->vmeta_len |
| 2329 | | checkfail ->vmeta_len | ||
| 2330 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 2314 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 2331 | | lwz TAB:TMP2, TAB:CARG1->metatable | 2315 | | lwz TAB:TMP2, TAB:CARG1->metatable |
| 2332 | | cmplwi TAB:TMP2, 0 | 2316 | | cmplwi TAB:TMP2, 0 |
| @@ -2353,72 +2337,77 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2353 | ||vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 2337 | ||vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 2354 | ||switch (vk) { | 2338 | ||switch (vk) { |
| 2355 | ||case 0: | 2339 | ||case 0: |
| 2356 | | evlddx t0, BASE, RB | 2340 | | lwzx CARG1, BASE, RB |
| 2357 | | checknum t0 | 2341 | | lfdx t0, BASE, RB |
| 2358 | | evlddx t1, KBASE, RC | 2342 | | lfdx t1, KBASE, RC |
| 2359 | | checkfail ->vmeta_arith_vn | 2343 | | checknum CARG1; bge ->vmeta_arith_vn |
| 2360 | || break; | 2344 | || break; |
| 2361 | ||case 1: | 2345 | ||case 1: |
| 2362 | | evlddx t1, BASE, RB | 2346 | | lwzx CARG1, BASE, RB |
| 2363 | | checknum t1 | 2347 | | lfdx t1, BASE, RB |
| 2364 | | evlddx t0, KBASE, RC | 2348 | | lfdx t0, KBASE, RC |
| 2365 | | checkfail ->vmeta_arith_nv | 2349 | | checknum CARG1; bge ->vmeta_arith_nv |
| 2366 | || break; | 2350 | || break; |
| 2367 | ||default: | 2351 | ||default: |
| 2368 | | evlddx t0, BASE, RB | 2352 | | lwzx CARG1, BASE, RB |
| 2369 | | evlddx t1, BASE, RC | 2353 | | lwzx CARG2, BASE, RC |
| 2370 | | evmergehi TMP2, t0, t1 | 2354 | | lfdx t0, BASE, RB |
| 2371 | | checknum TMP2 | 2355 | | lfdx t1, BASE, RC |
| 2372 | | checkanyfail ->vmeta_arith_vv | 2356 | | checknum cr0, CARG1 |
| 2357 | | checknum cr1, CARG2 | ||
| 2358 | | crand 4*cr0+lt, 4*cr0+lt, 4*cr1+lt | ||
| 2359 | | bge ->vmeta_arith_vv | ||
| 2373 | || break; | 2360 | || break; |
| 2374 | ||} | 2361 | ||} |
| 2375 | |.endmacro | 2362 | |.endmacro |
| 2376 | | | 2363 | | |
| 2377 | |.macro ins_arith, ins | 2364 | |.macro ins_arith, ins |
| 2378 | | ins_arithpre TMP0, TMP1 | 2365 | | ins_arithpre f0, f1 |
| 2379 | | ins_next1 | 2366 | | ins_next1 |
| 2380 | | ins TMP0, TMP0, TMP1 | 2367 | | ins f0, f0, f1 |
| 2381 | | evstddx TMP0, BASE, RA | 2368 | | stfdx f0, BASE, RA |
| 2382 | | ins_next2 | 2369 | | ins_next2 |
| 2383 | |.endmacro | 2370 | |.endmacro |
| 2384 | 2371 | ||
| 2385 | case BC_ADDVN: case BC_ADDNV: case BC_ADDVV: | 2372 | case BC_ADDVN: case BC_ADDNV: case BC_ADDVV: |
| 2386 | | ins_arith efdadd | 2373 | | ins_arith fadd |
| 2387 | break; | 2374 | break; |
| 2388 | case BC_SUBVN: case BC_SUBNV: case BC_SUBVV: | 2375 | case BC_SUBVN: case BC_SUBNV: case BC_SUBVV: |
| 2389 | | ins_arith efdsub | 2376 | | ins_arith fsub |
| 2390 | break; | 2377 | break; |
| 2391 | case BC_MULVN: case BC_MULNV: case BC_MULVV: | 2378 | case BC_MULVN: case BC_MULNV: case BC_MULVV: |
| 2392 | | ins_arith efdmul | 2379 | | ins_arith fmul |
| 2393 | break; | 2380 | break; |
| 2394 | case BC_DIVVN: case BC_DIVNV: case BC_DIVVV: | 2381 | case BC_DIVVN: case BC_DIVNV: case BC_DIVVV: |
| 2395 | | ins_arith efddiv | 2382 | | ins_arith fdiv |
| 2396 | break; | 2383 | break; |
| 2397 | case BC_MODVN: | 2384 | case BC_MODVN: |
| 2398 | | ins_arithpre RD, SAVE0 | 2385 | | ins_arithpre f14, f15 |
| 2399 | |->BC_MODVN_Z: | 2386 | |->BC_MODVN_Z: |
| 2400 | | efddiv CARG2, RD, SAVE0 | 2387 | | fdiv FARG1, f14, f15 |
| 2401 | | bl ->vm_floor_efd // floor(b/c) | 2388 | | // NYI: Use internal implementation of floor. |
| 2402 | | efdmul TMP0, CRET2, SAVE0 | 2389 | | bl extern floor // floor(b/c) |
| 2390 | | fmul f0, FARG1, f15 | ||
| 2403 | | ins_next1 | 2391 | | ins_next1 |
| 2404 | | efdsub TMP0, RD, TMP0 // b - floor(b/c)*c | 2392 | | fsub f0, f14, f0 // b - floor(b/c)*c |
| 2405 | | evstddx TMP0, BASE, RA | 2393 | | stfdx f0, BASE, RA |
| 2406 | | ins_next2 | 2394 | | ins_next2 |
| 2407 | break; | 2395 | break; |
| 2408 | case BC_MODNV: case BC_MODVV: | 2396 | case BC_MODNV: case BC_MODVV: |
| 2409 | | ins_arithpre RD, SAVE0 | 2397 | | ins_arithpre f14, f15 |
| 2410 | | b ->BC_MODVN_Z // Avoid 3 copies. It's slow anyway. | 2398 | | b ->BC_MODVN_Z // Avoid 3 copies. It's slow anyway. |
| 2411 | break; | 2399 | break; |
| 2412 | case BC_POW: | 2400 | case BC_POW: |
| 2413 | | evlddx CARG2, BASE, RB | 2401 | | lwzx CARG1, BASE, RB |
| 2414 | | evlddx CARG4, BASE, RC | 2402 | | lfdx FARG1, BASE, RB |
| 2415 | | evmergehi CARG1, CARG4, CARG2 | 2403 | | lwzx CARG2, BASE, RC |
| 2416 | | checknum CARG1 | 2404 | | lfdx FARG2, BASE, RC |
| 2417 | | evmergehi CARG3, CARG4, CARG4 | 2405 | | checknum cr0, CARG1 |
| 2418 | | checkanyfail ->vmeta_arith_vv | 2406 | | checknum cr1, CARG2 |
| 2407 | | crand 4*cr0+lt, 4*cr0+lt, 4*cr1+lt | ||
| 2408 | | bge ->vmeta_arith_vv | ||
| 2419 | | bl extern pow | 2409 | | bl extern pow |
| 2420 | | evmergelo CRET2, CRET1, CRET2 | 2410 | | stfdx FARG1, BASE, RA |
| 2421 | | evstddx CRET2, BASE, RA | ||
| 2422 | | ins_next | 2411 | | ins_next |
| 2423 | break; | 2412 | break; |
| 2424 | 2413 | ||
| @@ -2437,8 +2426,8 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2437 | | cmplwi CRET1, 0 | 2426 | | cmplwi CRET1, 0 |
| 2438 | | lwz BASE, L->base | 2427 | | lwz BASE, L->base |
| 2439 | | bne ->vmeta_binop | 2428 | | bne ->vmeta_binop |
| 2440 | | evlddx TMP0, BASE, SAVE0 // Copy result from RB to RA. | 2429 | | lfdx f0, BASE, SAVE0 // Copy result from RB to RA. |
| 2441 | | evstddx TMP0, BASE, RA | 2430 | | stfdx f0, BASE, RA |
| 2442 | | ins_next | 2431 | | ins_next |
| 2443 | break; | 2432 | break; |
| 2444 | 2433 | ||
| @@ -2446,41 +2435,63 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2446 | 2435 | ||
| 2447 | case BC_KSTR: | 2436 | case BC_KSTR: |
| 2448 | | // RA = dst*8, RD = str_const*8 (~) | 2437 | | // RA = dst*8, RD = str_const*8 (~) |
| 2449 | | ins_next1 | ||
| 2450 | | srwi TMP1, RD, 1 | 2438 | | srwi TMP1, RD, 1 |
| 2451 | | subfic TMP1, TMP1, -4 | 2439 | | subfic TMP1, TMP1, -4 |
| 2452 | | lwzx TMP0, KBASE, TMP1 // KBASE-4-str_const*4 | 2440 | | lwzx TMP0, KBASE, TMP1 // KBASE-4-str_const*4 |
| 2453 | | evmergelo TMP0, TISSTR, TMP0 | 2441 | | li TMP2, LJ_TSTR |
| 2454 | | evstddx TMP0, BASE, RA | 2442 | | ins_next1 |
| 2443 | | stwux TMP2, RA, BASE | ||
| 2444 | | stw TMP0, 4(RA) | ||
| 2455 | | ins_next2 | 2445 | | ins_next2 |
| 2456 | break; | 2446 | break; |
| 2457 | case BC_KCDATA: | 2447 | case BC_KCDATA: |
| 2458 | #if LJ_HASFFI | 2448 | #if LJ_HASFFI |
| 2459 | | // RA = dst*8, RD = cdata_const*8 (~) | 2449 | | // RA = dst*8, RD = cdata_const*8 (~) |
| 2460 | | ins_next1 | ||
| 2461 | | srwi TMP1, RD, 1 | 2450 | | srwi TMP1, RD, 1 |
| 2462 | | subfic TMP1, TMP1, -4 | 2451 | | subfic TMP1, TMP1, -4 |
| 2463 | | lwzx TMP0, KBASE, TMP1 // KBASE-4-cdata_const*4 | 2452 | | lwzx TMP0, KBASE, TMP1 // KBASE-4-cdata_const*4 |
| 2464 | | li TMP2, LJ_TCDATA | 2453 | | li TMP2, LJ_TCDATA |
| 2465 | | evmergelo TMP0, TMP2, TMP0 | 2454 | | ins_next1 |
| 2466 | | evstddx TMP0, BASE, RA | 2455 | | stwux TMP2, RA, BASE |
| 2456 | | stw TMP0, 4(RA) | ||
| 2467 | | ins_next2 | 2457 | | ins_next2 |
| 2468 | #endif | 2458 | #endif |
| 2469 | break; | 2459 | break; |
| 2470 | case BC_KSHORT: | 2460 | case BC_KSHORT: |
| 2471 | | // RA = dst*8, RD = int16_literal*8 | 2461 | | // RA = dst*8, RD = int16_literal*8 |
| 2472 | | srwi TMP1, RD, 3 | 2462 | | // NYI: which approach is faster? |
| 2473 | | extsh TMP1, TMP1 | 2463 | |.if 1 |
| 2464 | | slwi RD, RD, 13 | ||
| 2465 | | srawi RD, RD, 16 | ||
| 2466 | | tonum_i f0, RD | ||
| 2467 | | ins_next1 | ||
| 2468 | | stfdx f0, BASE, RA | ||
| 2469 | | ins_next2 | ||
| 2470 | |.else | ||
| 2471 | | slwi RD, RD, 13 | ||
| 2472 | | srawi TMP1, RD, 31 | ||
| 2473 | | xor TMP2, TMP1, RD | ||
| 2474 | | sub TMP2, TMP2, TMP1 // TMP2 = abs(x) | ||
| 2475 | | cntlzw TMP3, TMP2 | ||
| 2476 | | subfic TMP1, TMP3, 0x40d // TMP1 = exponent-1 | ||
| 2477 | | slw TMP2, TMP2, TMP3 // TMP2 = left aligned mantissa | ||
| 2478 | | subfic TMP3, RD, 0 | ||
| 2479 | | slwi TMP1, TMP1, 20 | ||
| 2480 | | rlwimi RD, TMP2, 21, 1, 31 // hi = sign(x) | (mantissa>>11) | ||
| 2481 | | subfe TMP0, TMP0, TMP0 | ||
| 2482 | | add RD, RD, TMP1 // hi = hi + exponent-1 | ||
| 2483 | | and RD, RD, TMP0 // hi = x == 0 ? 0 : hi | ||
| 2474 | | ins_next1 | 2484 | | ins_next1 |
| 2475 | | efdcfsi TMP0, TMP1 | 2485 | | stwux RD, RA, BASE |
| 2476 | | evstddx TMP0, BASE, RA | 2486 | | stw ZERO, 4(RA) |
| 2477 | | ins_next2 | 2487 | | ins_next2 |
| 2488 | |.endif | ||
| 2478 | break; | 2489 | break; |
| 2479 | case BC_KNUM: | 2490 | case BC_KNUM: |
| 2480 | | // RA = dst*8, RD = num_const*8 | 2491 | | // RA = dst*8, RD = num_const*8 |
| 2481 | | evlddx TMP0, KBASE, RD | 2492 | | lfdx f0, KBASE, RD |
| 2482 | | ins_next1 | 2493 | | ins_next1 |
| 2483 | | evstddx TMP0, BASE, RA | 2494 | | stfdx f0, BASE, RA |
| 2484 | | ins_next2 | 2495 | | ins_next2 |
| 2485 | break; | 2496 | break; |
| 2486 | case BC_KPRI: | 2497 | case BC_KPRI: |
| @@ -2493,10 +2504,10 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2493 | break; | 2504 | break; |
| 2494 | case BC_KNIL: | 2505 | case BC_KNIL: |
| 2495 | | // RA = base*8, RD = end*8 | 2506 | | // RA = base*8, RD = end*8 |
| 2496 | | evstddx TISNIL, BASE, RA | 2507 | | stwx TISNIL, BASE, RA |
| 2497 | | addi RA, RA, 8 | 2508 | | addi RA, RA, 8 |
| 2498 | |1: | 2509 | |1: |
| 2499 | | evstddx TISNIL, BASE, RA | 2510 | | stwx TISNIL, BASE, RA |
| 2500 | | cmpw RA, RD | 2511 | | cmpw RA, RD |
| 2501 | | addi RA, RA, 8 | 2512 | | addi RA, RA, 8 |
| 2502 | | blt <1 | 2513 | | blt <1 |
| @@ -2513,8 +2524,8 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2513 | | addi RD, RD, offsetof(GCfuncL, uvptr) | 2524 | | addi RD, RD, offsetof(GCfuncL, uvptr) |
| 2514 | | lwzx UPVAL:RB, LFUNC:RB, RD | 2525 | | lwzx UPVAL:RB, LFUNC:RB, RD |
| 2515 | | lwz TMP1, UPVAL:RB->v | 2526 | | lwz TMP1, UPVAL:RB->v |
| 2516 | | evldd TMP0, 0(TMP1) | 2527 | | lfd f0, 0(TMP1) |
| 2517 | | evstddx TMP0, BASE, RA | 2528 | | stfdx f0, BASE, RA |
| 2518 | | ins_next2 | 2529 | | ins_next2 |
| 2519 | break; | 2530 | break; |
| 2520 | case BC_USETV: | 2531 | case BC_USETV: |
| @@ -2522,15 +2533,16 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2522 | | lwz LFUNC:RB, FRAME_FUNC(BASE) | 2533 | | lwz LFUNC:RB, FRAME_FUNC(BASE) |
| 2523 | | srwi RA, RA, 1 | 2534 | | srwi RA, RA, 1 |
| 2524 | | addi RA, RA, offsetof(GCfuncL, uvptr) | 2535 | | addi RA, RA, offsetof(GCfuncL, uvptr) |
| 2525 | | evlddx TMP1, BASE, RD | 2536 | | lfdux f0, RD, BASE |
| 2526 | | lwzx UPVAL:RB, LFUNC:RB, RA | 2537 | | lwzx UPVAL:RB, LFUNC:RB, RA |
| 2527 | | lbz TMP3, UPVAL:RB->marked | 2538 | | lbz TMP3, UPVAL:RB->marked |
| 2528 | | lwz CARG2, UPVAL:RB->v | 2539 | | lwz CARG2, UPVAL:RB->v |
| 2529 | | andi. TMP3, TMP3, LJ_GC_BLACK // isblack(uv) | 2540 | | andi. TMP3, TMP3, LJ_GC_BLACK // isblack(uv) |
| 2530 | | lbz TMP0, UPVAL:RB->closed | 2541 | | lbz TMP0, UPVAL:RB->closed |
| 2531 | | evmergehi TMP2, TMP1, TMP1 | 2542 | | lwz TMP2, 0(RD) |
| 2532 | | evstdd TMP1, 0(CARG2) | 2543 | | stfd f0, 0(CARG2) |
| 2533 | | cmplwi cr1, TMP0, 0 | 2544 | | cmplwi cr1, TMP0, 0 |
| 2545 | | lwz TMP1, 4(RD) | ||
| 2534 | | cror 4*cr0+eq, 4*cr0+eq, 4*cr1+eq | 2546 | | cror 4*cr0+eq, 4*cr0+eq, 4*cr1+eq |
| 2535 | | subi TMP2, TMP2, (LJ_TISNUM+1) | 2547 | | subi TMP2, TMP2, (LJ_TISNUM+1) |
| 2536 | | bne >2 // Upvalue is closed and black? | 2548 | | bne >2 // Upvalue is closed and black? |
| @@ -2558,13 +2570,14 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2558 | | addi RA, RA, offsetof(GCfuncL, uvptr) | 2570 | | addi RA, RA, offsetof(GCfuncL, uvptr) |
| 2559 | | lwzx STR:TMP1, KBASE, TMP1 // KBASE-4-str_const*4 | 2571 | | lwzx STR:TMP1, KBASE, TMP1 // KBASE-4-str_const*4 |
| 2560 | | lwzx UPVAL:RB, LFUNC:RB, RA | 2572 | | lwzx UPVAL:RB, LFUNC:RB, RA |
| 2561 | | evmergelo STR:TMP1, TISSTR, STR:TMP1 | ||
| 2562 | | lbz TMP3, UPVAL:RB->marked | 2573 | | lbz TMP3, UPVAL:RB->marked |
| 2563 | | lwz CARG2, UPVAL:RB->v | 2574 | | lwz CARG2, UPVAL:RB->v |
| 2564 | | andi. TMP3, TMP3, LJ_GC_BLACK // isblack(uv) | 2575 | | andi. TMP3, TMP3, LJ_GC_BLACK // isblack(uv) |
| 2565 | | lbz TMP3, STR:TMP1->marked | 2576 | | lbz TMP3, STR:TMP1->marked |
| 2566 | | lbz TMP2, UPVAL:RB->closed | 2577 | | lbz TMP2, UPVAL:RB->closed |
| 2567 | | evstdd STR:TMP1, 0(CARG2) | 2578 | | li TMP0, LJ_TSTR |
| 2579 | | stw STR:TMP1, 4(CARG2) | ||
| 2580 | | stw TMP0, 0(CARG2) | ||
| 2568 | | bne >2 | 2581 | | bne >2 |
| 2569 | |1: | 2582 | |1: |
| 2570 | | ins_next2 | 2583 | | ins_next2 |
| @@ -2585,10 +2598,10 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2585 | | lwz LFUNC:RB, FRAME_FUNC(BASE) | 2598 | | lwz LFUNC:RB, FRAME_FUNC(BASE) |
| 2586 | | srwi RA, RA, 1 | 2599 | | srwi RA, RA, 1 |
| 2587 | | addi RA, RA, offsetof(GCfuncL, uvptr) | 2600 | | addi RA, RA, offsetof(GCfuncL, uvptr) |
| 2588 | | evlddx TMP0, KBASE, RD | 2601 | | lfdx f0, KBASE, RD |
| 2589 | | lwzx UPVAL:RB, LFUNC:RB, RA | 2602 | | lwzx UPVAL:RB, LFUNC:RB, RA |
| 2590 | | lwz TMP1, UPVAL:RB->v | 2603 | | lwz TMP1, UPVAL:RB->v |
| 2591 | | evstdd TMP0, 0(TMP1) | 2604 | | stfd f0, 0(TMP1) |
| 2592 | | ins_next2 | 2605 | | ins_next2 |
| 2593 | break; | 2606 | break; |
| 2594 | case BC_USETP: | 2607 | case BC_USETP: |
| @@ -2633,8 +2646,9 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2633 | | bl extern lj_func_newL_gc | 2646 | | bl extern lj_func_newL_gc |
| 2634 | | // Returns GCfuncL *. | 2647 | | // Returns GCfuncL *. |
| 2635 | | lwz BASE, L->base | 2648 | | lwz BASE, L->base |
| 2636 | | evmergelo LFUNC:CRET1, TISFUNC, LFUNC:CRET1 | 2649 | | li TMP0, LJ_TFUNC |
| 2637 | | evstddx LFUNC:CRET1, BASE, RA | 2650 | | stwux TMP0, RA, BASE |
| 2651 | | stw LFUNC:CRET1, 4(RA) | ||
| 2638 | | ins_next | 2652 | | ins_next |
| 2639 | break; | 2653 | break; |
| 2640 | 2654 | ||
| @@ -2654,9 +2668,8 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2654 | if (op == BC_TNEW) { | 2668 | if (op == BC_TNEW) { |
| 2655 | | rlwinm CARG2, RD, 29, 21, 31 | 2669 | | rlwinm CARG2, RD, 29, 21, 31 |
| 2656 | | rlwinm CARG3, RD, 18, 27, 31 | 2670 | | rlwinm CARG3, RD, 18, 27, 31 |
| 2657 | | cmpwi CARG2, 0x7ff | 2671 | | cmpwi CARG2, 0x7ff; beq >3 |
| 2658 | | li TMP1, 0x801 | 2672 | |2: |
| 2659 | | iseleq CARG2, TMP1, CARG2 | ||
| 2660 | | bl extern lj_tab_new // (lua_State *L, int32_t asize, uint32_t hbits) | 2673 | | bl extern lj_tab_new // (lua_State *L, int32_t asize, uint32_t hbits) |
| 2661 | | // Returns Table *. | 2674 | | // Returns Table *. |
| 2662 | } else { | 2675 | } else { |
| @@ -2667,9 +2680,15 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2667 | | // Returns Table *. | 2680 | | // Returns Table *. |
| 2668 | } | 2681 | } |
| 2669 | | lwz BASE, L->base | 2682 | | lwz BASE, L->base |
| 2670 | | evmergelo TAB:CRET1, TISTAB, TAB:CRET1 | 2683 | | li TMP0, LJ_TTAB |
| 2671 | | evstddx TAB:CRET1, BASE, RA | 2684 | | stwux TMP0, RA, BASE |
| 2685 | | stw TAB:CRET1, 4(RA) | ||
| 2672 | | ins_next | 2686 | | ins_next |
| 2687 | if (op == BC_TNEW) { | ||
| 2688 | |3: | ||
| 2689 | | li CARG2, 0x801 | ||
| 2690 | | b <2 | ||
| 2691 | } | ||
| 2673 | |5: | 2692 | |5: |
| 2674 | | mr SAVE0, RD | 2693 | | mr SAVE0, RD |
| 2675 | | bl extern lj_gc_step_fixtop // (lua_State *L) | 2694 | | bl extern lj_gc_step_fixtop // (lua_State *L) |
| @@ -2696,28 +2715,34 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2696 | 2715 | ||
| 2697 | case BC_TGETV: | 2716 | case BC_TGETV: |
| 2698 | | // RA = dst*8, RB = table*8, RC = key*8 | 2717 | | // RA = dst*8, RB = table*8, RC = key*8 |
| 2699 | | evlddx TAB:RB, BASE, RB | 2718 | | lwzux CARG1, RB, BASE |
| 2700 | | evlddx RC, BASE, RC | 2719 | | lwzux CARG2, RC, BASE |
| 2701 | | checktab TAB:RB | 2720 | | lwz TAB:RB, 4(RB) |
| 2702 | | checkfail ->vmeta_tgetv | 2721 | | lfd f0, 0(RC) |
| 2703 | | checknum RC | 2722 | | checktab CARG1 |
| 2704 | | checkfail >5 | 2723 | | checknum cr1, CARG2 |
| 2705 | | // Convert number key to integer | 2724 | | bne ->vmeta_tgetv |
| 2706 | | efdctsi TMP2, RC | 2725 | | bge cr1, >5 |
| 2726 | | // Convert number key to integer, check for integerness and range. | ||
| 2727 | | fctiwz f1, f0 | ||
| 2728 | | fadd f2, f0, TOBIT | ||
| 2729 | | stfd f1, TMPD | ||
| 2707 | | lwz TMP0, TAB:RB->asize | 2730 | | lwz TMP0, TAB:RB->asize |
| 2708 | | efdcfsi TMP1, TMP2 | 2731 | | fsub f2, f2, TOBIT |
| 2709 | | cmplw cr0, TMP0, TMP2 | 2732 | | lwz TMP2, TMPD_LO |
| 2710 | | efdcmpeq cr1, RC, TMP1 | ||
| 2711 | | lwz TMP1, TAB:RB->array | 2733 | | lwz TMP1, TAB:RB->array |
| 2712 | | crand 4*cr0+gt, 4*cr0+gt, 4*cr1+gt | 2734 | | fcmpu cr1, f0, f2 |
| 2735 | | cmplw cr0, TMP0, TMP2 | ||
| 2736 | | crand 4*cr0+gt, 4*cr0+gt, 4*cr1+eq | ||
| 2713 | | slwi TMP2, TMP2, 3 | 2737 | | slwi TMP2, TMP2, 3 |
| 2714 | | ble ->vmeta_tgetv // Integer key and in array part? | 2738 | | ble ->vmeta_tgetv // Integer key and in array part? |
| 2715 | | evlddx TMP1, TMP1, TMP2 | 2739 | | lwzx TMP0, TMP1, TMP2 |
| 2716 | | checknil TMP1 | 2740 | | lfdx f14, TMP1, TMP2 |
| 2717 | | checkok >2 | 2741 | | checknil TMP0; beq >2 |
| 2718 | |1: | 2742 | |1: |
| 2719 | | evstddx TMP1, BASE, RA | 2743 | | ins_next1 |
| 2720 | | ins_next | 2744 | | stfdx f14, BASE, RA |
| 2745 | | ins_next2 | ||
| 2721 | | | 2746 | | |
| 2722 | |2: // Check for __index if table value is nil. | 2747 | |2: // Check for __index if table value is nil. |
| 2723 | | lwz TAB:TMP2, TAB:RB->metatable | 2748 | | lwz TAB:TMP2, TAB:RB->metatable |
| @@ -2729,38 +2754,40 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2729 | | b ->vmeta_tgetv | 2754 | | b ->vmeta_tgetv |
| 2730 | | | 2755 | | |
| 2731 | |5: | 2756 | |5: |
| 2732 | | checkstr STR:RC // String key? | 2757 | | checkstr CARG2; bne ->vmeta_tgetv |
| 2733 | | checkok ->BC_TGETS_Z | 2758 | | lwz STR:RC, 4(RC) |
| 2734 | | b ->vmeta_tgetv | 2759 | | b ->BC_TGETS_Z // String key? |
| 2735 | break; | 2760 | break; |
| 2736 | case BC_TGETS: | 2761 | case BC_TGETS: |
| 2737 | | // RA = dst*8, RB = table*8, RC = str_const*8 (~) | 2762 | | // RA = dst*8, RB = table*8, RC = str_const*8 (~) |
| 2738 | | evlddx TAB:RB, BASE, RB | 2763 | | lwzux CARG1, RB, BASE |
| 2739 | | srwi TMP1, RC, 1 | 2764 | | srwi TMP1, RC, 1 |
| 2740 | | checktab TAB:RB | 2765 | | lwz TAB:RB, 4(RB) |
| 2741 | | subfic TMP1, TMP1, -4 | 2766 | | subfic TMP1, TMP1, -4 |
| 2767 | | checktab CARG1 | ||
| 2742 | | lwzx STR:RC, KBASE, TMP1 // KBASE-4-str_const*4 | 2768 | | lwzx STR:RC, KBASE, TMP1 // KBASE-4-str_const*4 |
| 2743 | | checkfail ->vmeta_tgets1 | 2769 | | bne ->vmeta_tgets1 |
| 2744 | |->BC_TGETS_Z: | 2770 | |->BC_TGETS_Z: |
| 2745 | | // TAB:RB = GCtab *, STR:RC = GCstr *, RA = dst*8 | 2771 | | // TAB:RB = GCtab *, STR:RC = GCstr *, RA = dst*8 |
| 2746 | | lwz TMP0, TAB:RB->hmask | 2772 | | lwz TMP0, TAB:RB->hmask |
| 2747 | | lwz TMP1, STR:RC->hash | 2773 | | lwz TMP1, STR:RC->hash |
| 2748 | | lwz NODE:TMP2, TAB:RB->node | 2774 | | lwz NODE:TMP2, TAB:RB->node |
| 2749 | | evmergelo STR:RC, TISSTR, STR:RC | ||
| 2750 | | and TMP1, TMP1, TMP0 // idx = str->hash & tab->hmask | 2775 | | and TMP1, TMP1, TMP0 // idx = str->hash & tab->hmask |
| 2751 | | slwi TMP0, TMP1, 5 | 2776 | | slwi TMP0, TMP1, 5 |
| 2752 | | slwi TMP1, TMP1, 3 | 2777 | | slwi TMP1, TMP1, 3 |
| 2753 | | sub TMP1, TMP0, TMP1 | 2778 | | sub TMP1, TMP0, TMP1 |
| 2754 | | add NODE:TMP2, NODE:TMP2, TMP1 // node = tab->node + (idx*32-idx*8) | 2779 | | add NODE:TMP2, NODE:TMP2, TMP1 // node = tab->node + (idx*32-idx*8) |
| 2755 | |1: | 2780 | |1: |
| 2756 | | evldd TMP0, NODE:TMP2->key | 2781 | | lwz CARG1, NODE:TMP2->key |
| 2757 | | evldd TMP1, NODE:TMP2->val | 2782 | | lwz TMP0, 4+offsetof(Node, key)(NODE:TMP2) |
| 2758 | | evcmpeq TMP0, STR:RC | 2783 | | lwz CARG2, NODE:TMP2->val |
| 2759 | | checkanyfail >4 | 2784 | | lwz TMP1, 4+offsetof(Node, val)(NODE:TMP2) |
| 2760 | | checknil TMP1 | 2785 | | checkstr CARG1; bne >4 |
| 2761 | | checkok >5 // Key found, but nil value? | 2786 | | cmpw TMP0, STR:RC; bne >4 |
| 2787 | | checknil CARG2; beq >5 // Key found, but nil value? | ||
| 2762 | |3: | 2788 | |3: |
| 2763 | | evstddx TMP1, BASE, RA | 2789 | | stwux CARG2, RA, BASE |
| 2790 | | stw TMP1, 4(RA) | ||
| 2764 | | ins_next | 2791 | | ins_next |
| 2765 | | | 2792 | | |
| 2766 | |4: // Follow hash chain. | 2793 | |4: // Follow hash chain. |
| @@ -2768,7 +2795,7 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2768 | | cmplwi NODE:TMP2, 0 | 2795 | | cmplwi NODE:TMP2, 0 |
| 2769 | | bne <1 | 2796 | | bne <1 |
| 2770 | | // End of hash chain: key not found, nil result. | 2797 | | // End of hash chain: key not found, nil result. |
| 2771 | | evmr TMP1, TISNIL | 2798 | | li CARG2, LJ_TNIL |
| 2772 | | | 2799 | | |
| 2773 | |5: // Check for __index if table value is nil. | 2800 | |5: // Check for __index if table value is nil. |
| 2774 | | lwz TAB:TMP2, TAB:RB->metatable | 2801 | | lwz TAB:TMP2, TAB:RB->metatable |
| @@ -2781,20 +2808,19 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2781 | break; | 2808 | break; |
| 2782 | case BC_TGETB: | 2809 | case BC_TGETB: |
| 2783 | | // RA = dst*8, RB = table*8, RC = index*8 | 2810 | | // RA = dst*8, RB = table*8, RC = index*8 |
| 2784 | | evlddx TAB:RB, BASE, RB | 2811 | | lwzux CARG1, RB, BASE |
| 2812 | | lwz TAB:RB, 4(RB) | ||
| 2785 | | srwi TMP0, RC, 3 | 2813 | | srwi TMP0, RC, 3 |
| 2786 | | checktab TAB:RB | 2814 | | checktab CARG1; bne ->vmeta_tgetb |
| 2787 | | checkfail ->vmeta_tgetb | ||
| 2788 | | lwz TMP1, TAB:RB->asize | 2815 | | lwz TMP1, TAB:RB->asize |
| 2789 | | lwz TMP2, TAB:RB->array | 2816 | | lwz TMP2, TAB:RB->array |
| 2790 | | cmplw TMP0, TMP1 | 2817 | | cmplw TMP0, TMP1; bge ->vmeta_tgetb |
| 2791 | | bge ->vmeta_tgetb | 2818 | | lwzx TMP1, TMP2, RC |
| 2792 | | evlddx TMP1, TMP2, RC | 2819 | | lfdx f0, TMP2, RC |
| 2793 | | checknil TMP1 | 2820 | | checknil TMP1; beq >5 |
| 2794 | | checkok >5 | ||
| 2795 | |1: | 2821 | |1: |
| 2796 | | ins_next1 | 2822 | | ins_next1 |
| 2797 | | evstddx TMP1, BASE, RA | 2823 | | stfdx f0, BASE, RA |
| 2798 | | ins_next2 | 2824 | | ins_next2 |
| 2799 | | | 2825 | | |
| 2800 | |5: // Check for __index if table value is nil. | 2826 | |5: // Check for __index if table value is nil. |
| @@ -2809,30 +2835,34 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2809 | 2835 | ||
| 2810 | case BC_TSETV: | 2836 | case BC_TSETV: |
| 2811 | | // RA = src*8, RB = table*8, RC = key*8 | 2837 | | // RA = src*8, RB = table*8, RC = key*8 |
| 2812 | | evlddx TAB:RB, BASE, RB | 2838 | | lwzux CARG1, RB, BASE |
| 2813 | | evlddx RC, BASE, RC | 2839 | | lwzux CARG2, RC, BASE |
| 2814 | | checktab TAB:RB | 2840 | | lwz TAB:RB, 4(RB) |
| 2815 | | checkfail ->vmeta_tsetv | 2841 | | lfd f0, 0(RC) |
| 2816 | | checknum RC | 2842 | | checktab CARG1 |
| 2817 | | checkfail >5 | 2843 | | checknum cr1, CARG2 |
| 2818 | | // Convert number key to integer | 2844 | | bne ->vmeta_tsetv |
| 2819 | | efdctsi TMP2, RC | 2845 | | bge cr1, >5 |
| 2820 | | evlddx SAVE0, BASE, RA | 2846 | | // Convert number key to integer, check for integerness and range. |
| 2847 | | fctiwz f1, f0 | ||
| 2848 | | fadd f2, f0, TOBIT | ||
| 2849 | | stfd f1, TMPD | ||
| 2821 | | lwz TMP0, TAB:RB->asize | 2850 | | lwz TMP0, TAB:RB->asize |
| 2822 | | efdcfsi TMP1, TMP2 | 2851 | | fsub f2, f2, TOBIT |
| 2823 | | cmplw cr0, TMP0, TMP2 | 2852 | | lwz TMP2, TMPD_LO |
| 2824 | | efdcmpeq cr1, RC, TMP1 | ||
| 2825 | | lwz TMP1, TAB:RB->array | 2853 | | lwz TMP1, TAB:RB->array |
| 2826 | | crand 4*cr0+gt, 4*cr0+gt, 4*cr1+gt | 2854 | | fcmpu cr1, f0, f2 |
| 2855 | | cmplw cr0, TMP0, TMP2 | ||
| 2856 | | crand 4*cr0+gt, 4*cr0+gt, 4*cr1+eq | ||
| 2827 | | slwi TMP0, TMP2, 3 | 2857 | | slwi TMP0, TMP2, 3 |
| 2828 | | ble ->vmeta_tsetv // Integer key and in array part? | 2858 | | ble ->vmeta_tsetv // Integer key and in array part? |
| 2829 | | lbz TMP3, TAB:RB->marked | 2859 | | lwzx TMP2, TMP1, TMP0 |
| 2830 | | evlddx TMP2, TMP1, TMP0 | 2860 | | lbz TMP3, TAB:RB->marked |
| 2831 | | checknil TMP2 | 2861 | | lfdx f14, BASE, RA |
| 2832 | | checkok >3 | 2862 | | checknil TMP2; beq >3 |
| 2833 | |1: | 2863 | |1: |
| 2834 | | andi. TMP2, TMP3, LJ_GC_BLACK // isblack(table) | 2864 | | andi. TMP2, TMP3, LJ_GC_BLACK // isblack(table) |
| 2835 | | evstddx SAVE0, TMP1, TMP0 | 2865 | | stfdx f14, TMP1, TMP0 |
| 2836 | | bne >7 | 2866 | | bne >7 |
| 2837 | |2: | 2867 | |2: |
| 2838 | | ins_next | 2868 | | ins_next |
| @@ -2847,46 +2877,55 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2847 | | b ->vmeta_tsetv | 2877 | | b ->vmeta_tsetv |
| 2848 | | | 2878 | | |
| 2849 | |5: | 2879 | |5: |
| 2850 | | checkstr STR:RC // String key? | 2880 | | checkstr CARG2; bne ->vmeta_tsetv |
| 2851 | | checkok ->BC_TSETS_Z | 2881 | | lwz STR:RC, 4(RC) |
| 2852 | | b ->vmeta_tsetv | 2882 | | b ->BC_TSETS_Z // String key? |
| 2853 | | | 2883 | | |
| 2854 | |7: // Possible table write barrier for the value. Skip valiswhite check. | 2884 | |7: // Possible table write barrier for the value. Skip valiswhite check. |
| 2855 | | barrierback TAB:RB, TMP3, TMP0 | 2885 | | barrierback TAB:RB, TMP3, TMP0 |
| 2856 | | b <2 | 2886 | | b <2 |
| 2857 | break; | 2887 | break; |
| 2888 | |1: | ||
| 2889 | | checkstr CARG1; bne >4 | ||
| 2890 | | cmpw TMP0, STR:RC; bne >4 | ||
| 2891 | | checknil CARG2; beq >5 // Key found, but nil value? | ||
| 2892 | |3: | ||
| 2893 | | stwux CARG2, RA, BASE | ||
| 2894 | | stw TMP1, 4(RA) | ||
| 2895 | | ins_next | ||
| 2858 | case BC_TSETS: | 2896 | case BC_TSETS: |
| 2859 | | // RA = src*8, RB = table*8, RC = str_const*8 (~) | 2897 | | // RA = src*8, RB = table*8, RC = str_const*8 (~) |
| 2860 | | evlddx TAB:RB, BASE, RB | 2898 | | lwzux CARG1, RB, BASE |
| 2861 | | srwi TMP1, RC, 1 | 2899 | | srwi TMP1, RC, 1 |
| 2862 | | checktab TAB:RB | 2900 | | lwz TAB:RB, 4(RB) |
| 2863 | | subfic TMP1, TMP1, -4 | 2901 | | subfic TMP1, TMP1, -4 |
| 2902 | | checktab CARG1 | ||
| 2864 | | lwzx STR:RC, KBASE, TMP1 // KBASE-4-str_const*4 | 2903 | | lwzx STR:RC, KBASE, TMP1 // KBASE-4-str_const*4 |
| 2865 | | checkfail ->vmeta_tsets1 | 2904 | | bne ->vmeta_tsets1 |
| 2866 | |->BC_TSETS_Z: | 2905 | |->BC_TSETS_Z: |
| 2867 | | // TAB:RB = GCtab *, STR:RC = GCstr *, RA = src*8 | 2906 | | // TAB:RB = GCtab *, STR:RC = GCstr *, RA = src*8 |
| 2868 | | lwz TMP0, TAB:RB->hmask | 2907 | | lwz TMP0, TAB:RB->hmask |
| 2869 | | lwz TMP1, STR:RC->hash | 2908 | | lwz TMP1, STR:RC->hash |
| 2870 | | lwz NODE:TMP2, TAB:RB->node | 2909 | | lwz NODE:TMP2, TAB:RB->node |
| 2871 | | evmergelo STR:RC, TISSTR, STR:RC | ||
| 2872 | | stb ZERO, TAB:RB->nomm // Clear metamethod cache. | 2910 | | stb ZERO, TAB:RB->nomm // Clear metamethod cache. |
| 2873 | | and TMP1, TMP1, TMP0 // idx = str->hash & tab->hmask | 2911 | | and TMP1, TMP1, TMP0 // idx = str->hash & tab->hmask |
| 2874 | | evlddx SAVE0, BASE, RA | 2912 | | lfdx f14, BASE, RA |
| 2875 | | slwi TMP0, TMP1, 5 | 2913 | | slwi TMP0, TMP1, 5 |
| 2876 | | slwi TMP1, TMP1, 3 | 2914 | | slwi TMP1, TMP1, 3 |
| 2877 | | sub TMP1, TMP0, TMP1 | 2915 | | sub TMP1, TMP0, TMP1 |
| 2878 | | lbz TMP3, TAB:RB->marked | 2916 | | lbz TMP3, TAB:RB->marked |
| 2879 | | add NODE:TMP2, NODE:TMP2, TMP1 // node = tab->node + (idx*32-idx*8) | 2917 | | add NODE:TMP2, NODE:TMP2, TMP1 // node = tab->node + (idx*32-idx*8) |
| 2880 | |1: | 2918 | |1: |
| 2881 | | evldd TMP0, NODE:TMP2->key | 2919 | | lwz CARG1, NODE:TMP2->key |
| 2882 | | evldd TMP1, NODE:TMP2->val | 2920 | | lwz TMP0, 4+offsetof(Node, key)(NODE:TMP2) |
| 2883 | | evcmpeq TMP0, STR:RC | 2921 | | lwz CARG2, NODE:TMP2->val |
| 2884 | | checkanyfail >5 | 2922 | | lwz TMP1, 4+offsetof(Node, val)(NODE:TMP2) |
| 2885 | | checknil TMP1 | 2923 | | checkstr CARG1; bne >5 |
| 2886 | | checkok >4 // Key found, but nil value? | 2924 | | cmpw TMP0, STR:RC; bne >5 |
| 2925 | | checknil CARG2; beq >4 // Key found, but nil value? | ||
| 2887 | |2: | 2926 | |2: |
| 2888 | | andi. TMP0, TMP3, LJ_GC_BLACK // isblack(table) | 2927 | | andi. TMP0, TMP3, LJ_GC_BLACK // isblack(table) |
| 2889 | | evstdd SAVE0, NODE:TMP2->val | 2928 | | stfd f14, NODE:TMP2->val |
| 2890 | | bne >7 | 2929 | | bne >7 |
| 2891 | |3: | 2930 | |3: |
| 2892 | | ins_next | 2931 | | ins_next |
| @@ -2918,12 +2957,14 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2918 | | andi. TMP0, TMP0, 1<<MM_newindex | 2957 | | andi. TMP0, TMP0, 1<<MM_newindex |
| 2919 | | beq ->vmeta_tsets // 'no __newindex' flag NOT set: check. | 2958 | | beq ->vmeta_tsets // 'no __newindex' flag NOT set: check. |
| 2920 | |6: | 2959 | |6: |
| 2921 | | mr CARG2, TAB:RB | 2960 | | li TMP0, LJ_TSTR |
| 2922 | | evstdd STR:RC, 0(CARG3) | 2961 | | stw STR:RC, 4(CARG3) |
| 2962 | | mr CARG2, TAB:RB | ||
| 2963 | | stw TMP0, 0(CARG3) | ||
| 2923 | | bl extern lj_tab_newkey // (lua_State *L, GCtab *t, TValue *k) | 2964 | | bl extern lj_tab_newkey // (lua_State *L, GCtab *t, TValue *k) |
| 2924 | | // Returns TValue *. | 2965 | | // Returns TValue *. |
| 2925 | | lwz BASE, L->base | 2966 | | lwz BASE, L->base |
| 2926 | | evstdd SAVE0, 0(CRET1) | 2967 | | stfd f14, 0(CRET1) |
| 2927 | | b <3 // No 2nd write barrier needed. | 2968 | | b <3 // No 2nd write barrier needed. |
| 2928 | | | 2969 | | |
| 2929 | |7: // Possible table write barrier for the value. Skip valiswhite check. | 2970 | |7: // Possible table write barrier for the value. Skip valiswhite check. |
| @@ -2932,22 +2973,21 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2932 | break; | 2973 | break; |
| 2933 | case BC_TSETB: | 2974 | case BC_TSETB: |
| 2934 | | // RA = src*8, RB = table*8, RC = index*8 | 2975 | | // RA = src*8, RB = table*8, RC = index*8 |
| 2935 | | evlddx TAB:RB, BASE, RB | 2976 | | lwzux CARG1, RB, BASE |
| 2977 | | lwz TAB:RB, 4(RB) | ||
| 2936 | | srwi TMP0, RC, 3 | 2978 | | srwi TMP0, RC, 3 |
| 2937 | | checktab TAB:RB | 2979 | | checktab CARG1; bne ->vmeta_tsetb |
| 2938 | | checkfail ->vmeta_tsetb | ||
| 2939 | | lwz TMP1, TAB:RB->asize | 2980 | | lwz TMP1, TAB:RB->asize |
| 2940 | | lwz TMP2, TAB:RB->array | 2981 | | lwz TMP2, TAB:RB->array |
| 2941 | | lbz TMP3, TAB:RB->marked | 2982 | | lbz TMP3, TAB:RB->marked |
| 2942 | | cmplw TMP0, TMP1 | 2983 | | cmplw TMP0, TMP1 |
| 2943 | | evlddx SAVE0, BASE, RA | 2984 | | lfdx f14, BASE, RA |
| 2944 | | bge ->vmeta_tsetb | 2985 | | bge ->vmeta_tsetb |
| 2945 | | evlddx TMP1, TMP2, RC | 2986 | | lwzx TMP1, TMP2, RC |
| 2946 | | checknil TMP1 | 2987 | | checknil TMP1; beq >5 |
| 2947 | | checkok >5 | ||
| 2948 | |1: | 2988 | |1: |
| 2949 | | andi. TMP0, TMP3, LJ_GC_BLACK // isblack(table) | 2989 | | andi. TMP0, TMP3, LJ_GC_BLACK // isblack(table) |
| 2950 | | evstddx SAVE0, TMP2, RC | 2990 | | stfdx f14, TMP2, RC |
| 2951 | | bne >7 | 2991 | | bne >7 |
| 2952 | |2: | 2992 | |2: |
| 2953 | | ins_next | 2993 | | ins_next |
| @@ -2987,10 +3027,10 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 2987 | | add TMP1, TMP1, TMP0 | 3027 | | add TMP1, TMP1, TMP0 |
| 2988 | | andi. TMP0, TMP3, LJ_GC_BLACK // isblack(table) | 3028 | | andi. TMP0, TMP3, LJ_GC_BLACK // isblack(table) |
| 2989 | |3: // Copy result slots to table. | 3029 | |3: // Copy result slots to table. |
| 2990 | | evldd TMP0, 0(RA) | 3030 | | lfd f0, 0(RA) |
| 2991 | | addi RA, RA, 8 | 3031 | | addi RA, RA, 8 |
| 2992 | | cmpw cr1, RA, TMP2 | 3032 | | cmpw cr1, RA, TMP2 |
| 2993 | | evstdd TMP0, 0(TMP1) | 3033 | | stfd f0, 0(TMP1) |
| 2994 | | addi TMP1, TMP1, 8 | 3034 | | addi TMP1, TMP1, 8 |
| 2995 | | blt cr1, <3 | 3035 | | blt cr1, <3 |
| 2996 | | bne >7 | 3036 | | bne >7 |
| @@ -3021,13 +3061,12 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3021 | break; | 3061 | break; |
| 3022 | case BC_CALL: | 3062 | case BC_CALL: |
| 3023 | | // RA = base*8, (RB = (nresults+1)*8,) RC = (nargs+1)*8 | 3063 | | // RA = base*8, (RB = (nresults+1)*8,) RC = (nargs+1)*8 |
| 3024 | | evlddx LFUNC:RB, BASE, RA | 3064 | | mr TMP2, BASE |
| 3025 | | mr TMP2, BASE | 3065 | | lwzux TMP0, BASE, RA |
| 3026 | | add BASE, BASE, RA | 3066 | | lwz LFUNC:RB, 4(BASE) |
| 3027 | | subi NARGS8:RC, NARGS8:RC, 8 | 3067 | | subi NARGS8:RC, NARGS8:RC, 8 |
| 3028 | | checkfunc LFUNC:RB | ||
| 3029 | | addi BASE, BASE, 8 | 3068 | | addi BASE, BASE, 8 |
| 3030 | | checkfail ->vmeta_call | 3069 | | checkfunc TMP0; bne ->vmeta_call |
| 3031 | | ins_call | 3070 | | ins_call |
| 3032 | break; | 3071 | break; |
| 3033 | 3072 | ||
| @@ -3038,13 +3077,13 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3038 | break; | 3077 | break; |
| 3039 | case BC_CALLT: | 3078 | case BC_CALLT: |
| 3040 | | // RA = base*8, (RB = 0,) RC = (nargs+1)*8 | 3079 | | // RA = base*8, (RB = 0,) RC = (nargs+1)*8 |
| 3041 | | evlddx LFUNC:RB, BASE, RA | 3080 | | lwzux TMP0, RA, BASE |
| 3042 | | add RA, BASE, RA | 3081 | | lwz LFUNC:RB, 4(RA) |
| 3043 | | lwz TMP1, FRAME_PC(BASE) | ||
| 3044 | | subi NARGS8:RC, NARGS8:RC, 8 | 3082 | | subi NARGS8:RC, NARGS8:RC, 8 |
| 3045 | | checkfunc LFUNC:RB | 3083 | | lwz TMP1, FRAME_PC(BASE) |
| 3084 | | checkfunc TMP0 | ||
| 3046 | | addi RA, RA, 8 | 3085 | | addi RA, RA, 8 |
| 3047 | | checkfail ->vmeta_callt | 3086 | | bne ->vmeta_callt |
| 3048 | |->BC_CALLT_Z: | 3087 | |->BC_CALLT_Z: |
| 3049 | | andi. TMP0, TMP1, FRAME_TYPE // Caveat: preserve cr0 until the crand. | 3088 | | andi. TMP0, TMP1, FRAME_TYPE // Caveat: preserve cr0 until the crand. |
| 3050 | | lbz TMP3, LFUNC:RB->ffid | 3089 | | lbz TMP3, LFUNC:RB->ffid |
| @@ -3058,9 +3097,9 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3058 | | beq cr1, >3 | 3097 | | beq cr1, >3 |
| 3059 | |2: | 3098 | |2: |
| 3060 | | addi TMP3, TMP2, 8 | 3099 | | addi TMP3, TMP2, 8 |
| 3061 | | evlddx TMP0, RA, TMP2 | 3100 | | lfdx f0, RA, TMP2 |
| 3062 | | cmplw cr1, TMP3, NARGS8:RC | 3101 | | cmplw cr1, TMP3, NARGS8:RC |
| 3063 | | evstddx TMP0, BASE, TMP2 | 3102 | | stfdx f0, BASE, TMP2 |
| 3064 | | mr TMP2, TMP3 | 3103 | | mr TMP2, TMP3 |
| 3065 | | bne cr1, <2 | 3104 | | bne cr1, <2 |
| 3066 | |3: | 3105 | |3: |
| @@ -3089,19 +3128,19 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3089 | 3128 | ||
| 3090 | case BC_ITERC: | 3129 | case BC_ITERC: |
| 3091 | | // RA = base*8, (RB = (nresults+1)*8, RC = (nargs+1)*8 ((2+1)*8)) | 3130 | | // RA = base*8, (RB = (nresults+1)*8, RC = (nargs+1)*8 ((2+1)*8)) |
| 3092 | | subi RA, RA, 24 // evldd doesn't support neg. offsets. | 3131 | | mr TMP2, BASE |
| 3093 | | mr TMP2, BASE | 3132 | | add BASE, BASE, RA |
| 3094 | | evlddx LFUNC:RB, BASE, RA | 3133 | | lwz TMP1, -24(BASE) |
| 3095 | | add BASE, BASE, RA | 3134 | | lwz LFUNC:RB, -20(BASE) |
| 3096 | | evldd TMP0, 8(BASE) | 3135 | | lfd f1, -8(BASE) |
| 3097 | | evldd TMP1, 16(BASE) | 3136 | | lfd f0, -16(BASE) |
| 3098 | | evstdd LFUNC:RB, 24(BASE) // Copy callable. | 3137 | | stw TMP1, 0(BASE) // Copy callable. |
| 3099 | | checkfunc LFUNC:RB | 3138 | | stw LFUNC:RB, 4(BASE) |
| 3100 | | evstdd TMP0, 32(BASE) // Copy state. | 3139 | | checkfunc TMP1 |
| 3140 | | stfd f1, 16(BASE) // Copy control var. | ||
| 3101 | | li NARGS8:RC, 16 // Iterators get 2 arguments. | 3141 | | li NARGS8:RC, 16 // Iterators get 2 arguments. |
| 3102 | | evstdd TMP1, 40(BASE) // Copy control var. | 3142 | | stfdu f0, 8(BASE) // Copy state. |
| 3103 | | addi BASE, BASE, 32 | 3143 | | bne ->vmeta_call |
| 3104 | | checkfail ->vmeta_call | ||
| 3105 | | ins_call | 3144 | | ins_call |
| 3106 | break; | 3145 | break; |
| 3107 | 3146 | ||
| @@ -3120,18 +3159,19 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3120 | | cmplw RC, TMP0 | 3159 | | cmplw RC, TMP0 |
| 3121 | | slwi TMP3, RC, 3 | 3160 | | slwi TMP3, RC, 3 |
| 3122 | | bge >5 // Index points after array part? | 3161 | | bge >5 // Index points after array part? |
| 3123 | | evlddx TMP2, TMP1, TMP3 | 3162 | | lwzx TMP2, TMP1, TMP3 |
| 3163 | | lfdx f0, TMP1, TMP3 | ||
| 3124 | | checknil TMP2 | 3164 | | checknil TMP2 |
| 3125 | | lwz INS, -4(PC) | 3165 | | lwz INS, -4(PC) |
| 3126 | | checkok >4 | 3166 | | beq >4 |
| 3127 | | efdcfsi TMP0, RC | 3167 | | tonum_u f1, RC |
| 3128 | | addi RC, RC, 1 | 3168 | | addi RC, RC, 1 |
| 3129 | | addis TMP3, PC, -(BCBIAS_J*4 >> 16) | 3169 | | addis TMP3, PC, -(BCBIAS_J*4 >> 16) |
| 3130 | | evstdd TMP2, 8(RA) | 3170 | | stfd f0, 8(RA) |
| 3131 | | decode_RD4 TMP1, INS | 3171 | | decode_RD4 TMP1, INS |
| 3132 | | stw RC, -4(RA) // Update control var. | 3172 | | stw RC, -4(RA) // Update control var. |
| 3133 | | add PC, TMP1, TMP3 | 3173 | | add PC, TMP1, TMP3 |
| 3134 | | evstdd TMP0, 0(RA) | 3174 | | stfd f1, 0(RA) |
| 3135 | |3: | 3175 | |3: |
| 3136 | | ins_next | 3176 | | ins_next |
| 3137 | | | 3177 | | |
| @@ -3149,17 +3189,18 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3149 | | bgt <3 | 3189 | | bgt <3 |
| 3150 | | slwi RB, RC, 3 | 3190 | | slwi RB, RC, 3 |
| 3151 | | sub TMP3, TMP3, RB | 3191 | | sub TMP3, TMP3, RB |
| 3152 | | evlddx RB, TMP2, TMP3 | 3192 | | lwzx RB, TMP2, TMP3 |
| 3193 | | lfdx f0, TMP2, TMP3 | ||
| 3153 | | add NODE:TMP3, TMP2, TMP3 | 3194 | | add NODE:TMP3, TMP2, TMP3 |
| 3154 | | checknil RB | 3195 | | checknil RB |
| 3155 | | lwz INS, -4(PC) | 3196 | | lwz INS, -4(PC) |
| 3156 | | checkok >7 | 3197 | | beq >7 |
| 3157 | | evldd TMP3, NODE:TMP3->key | 3198 | | lfd f1, NODE:TMP3->key |
| 3158 | | addis TMP2, PC, -(BCBIAS_J*4 >> 16) | 3199 | | addis TMP2, PC, -(BCBIAS_J*4 >> 16) |
| 3159 | | evstdd RB, 8(RA) | 3200 | | stfd f0, 8(RA) |
| 3160 | | add RC, RC, TMP0 | 3201 | | add RC, RC, TMP0 |
| 3161 | | decode_RD4 TMP1, INS | 3202 | | decode_RD4 TMP1, INS |
| 3162 | | evstdd TMP3, 0(RA) | 3203 | | stfd f1, 0(RA) |
| 3163 | | addi RC, RC, 1 | 3204 | | addi RC, RC, 1 |
| 3164 | | add PC, TMP1, TMP2 | 3205 | | add PC, TMP1, TMP2 |
| 3165 | | stw RC, -4(RA) // Update control var. | 3206 | | stw RC, -4(RA) // Update control var. |
| @@ -3173,11 +3214,10 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3173 | case BC_ISNEXT: | 3214 | case BC_ISNEXT: |
| 3174 | | // RA = base*8, RD = target (points to ITERN) | 3215 | | // RA = base*8, RD = target (points to ITERN) |
| 3175 | | add RA, BASE, RA | 3216 | | add RA, BASE, RA |
| 3176 | | li TMP2, -24 | 3217 | | lwz TMP0, -24(RA) |
| 3177 | | evlddx CFUNC:TMP1, RA, TMP2 | 3218 | | lwz CFUNC:TMP1, -20(RA) |
| 3178 | | lwz TMP2, -16(RA) | 3219 | | lwz TMP2, -16(RA) |
| 3179 | | lwz TMP3, -8(RA) | 3220 | | lwz TMP3, -8(RA) |
| 3180 | | evmergehi TMP0, CFUNC:TMP1, CFUNC:TMP1 | ||
| 3181 | | cmpwi cr0, TMP2, LJ_TTAB | 3221 | | cmpwi cr0, TMP2, LJ_TTAB |
| 3182 | | cmpwi cr1, TMP0, LJ_TFUNC | 3222 | | cmpwi cr1, TMP0, LJ_TFUNC |
| 3183 | | cmpwi cr6, TMP3, LJ_TNIL | 3223 | | cmpwi cr6, TMP3, LJ_TNIL |
| @@ -3218,16 +3258,16 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3218 | | subi TMP2, TMP2, 16 | 3258 | | subi TMP2, TMP2, 16 |
| 3219 | | ble >2 // No vararg slots? | 3259 | | ble >2 // No vararg slots? |
| 3220 | |1: // Copy vararg slots to destination slots. | 3260 | |1: // Copy vararg slots to destination slots. |
| 3221 | | evldd TMP0, 0(RC) | 3261 | | lfd f0, 0(RC) |
| 3222 | | addi RC, RC, 8 | 3262 | | addi RC, RC, 8 |
| 3223 | | evstdd TMP0, 0(RA) | 3263 | | stfd f0, 0(RA) |
| 3224 | | cmplw RA, TMP2 | 3264 | | cmplw RA, TMP2 |
| 3225 | | cmplw cr1, RC, TMP3 | 3265 | | cmplw cr1, RC, TMP3 |
| 3226 | | bge >3 // All destination slots filled? | 3266 | | bge >3 // All destination slots filled? |
| 3227 | | addi RA, RA, 8 | 3267 | | addi RA, RA, 8 |
| 3228 | | blt cr1, <1 // More vararg slots? | 3268 | | blt cr1, <1 // More vararg slots? |
| 3229 | |2: // Fill up remainder with nil. | 3269 | |2: // Fill up remainder with nil. |
| 3230 | | evstdd TISNIL, 0(RA) | 3270 | | stw TISNIL, 0(RA) |
| 3231 | | cmplw RA, TMP2 | 3271 | | cmplw RA, TMP2 |
| 3232 | | addi RA, RA, 8 | 3272 | | addi RA, RA, 8 |
| 3233 | | blt <2 | 3273 | | blt <2 |
| @@ -3243,9 +3283,9 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3243 | | addi MULTRES, TMP1, 8 | 3283 | | addi MULTRES, TMP1, 8 |
| 3244 | | bgt >7 | 3284 | | bgt >7 |
| 3245 | |6: | 3285 | |6: |
| 3246 | | evldd TMP0, 0(RC) | 3286 | | lfd f0, 0(RC) |
| 3247 | | addi RC, RC, 8 | 3287 | | addi RC, RC, 8 |
| 3248 | | evstdd TMP0, 0(RA) | 3288 | | stfd f0, 0(RA) |
| 3249 | | cmplw RC, TMP3 | 3289 | | cmplw RC, TMP3 |
| 3250 | | addi RA, RA, 8 | 3290 | | addi RA, RA, 8 |
| 3251 | | blt <6 // More vararg slots? | 3291 | | blt <6 // More vararg slots? |
| @@ -3296,14 +3336,14 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3296 | | li TMP1, 0 | 3336 | | li TMP1, 0 |
| 3297 | |2: | 3337 | |2: |
| 3298 | | addi TMP3, TMP1, 8 | 3338 | | addi TMP3, TMP1, 8 |
| 3299 | | evlddx TMP0, RA, TMP1 | 3339 | | lfdx f0, RA, TMP1 |
| 3300 | | cmpw TMP3, RC | 3340 | | cmpw TMP3, RC |
| 3301 | | evstddx TMP0, TMP2, TMP1 | 3341 | | stfdx f0, TMP2, TMP1 |
| 3302 | | beq >3 | 3342 | | beq >3 |
| 3303 | | addi TMP1, TMP3, 8 | 3343 | | addi TMP1, TMP3, 8 |
| 3304 | | evlddx TMP0, RA, TMP3 | 3344 | | lfdx f1, RA, TMP3 |
| 3305 | | cmpw TMP1, RC | 3345 | | cmpw TMP1, RC |
| 3306 | | evstddx TMP0, TMP2, TMP3 | 3346 | | stfdx f1, TMP2, TMP3 |
| 3307 | | bne <2 | 3347 | | bne <2 |
| 3308 | |3: | 3348 | |3: |
| 3309 | |5: | 3349 | |5: |
| @@ -3320,7 +3360,7 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3320 | |6: // Fill up results with nil. | 3360 | |6: // Fill up results with nil. |
| 3321 | | subi TMP1, RD, 8 | 3361 | | subi TMP1, RD, 8 |
| 3322 | | addi RD, RD, 8 | 3362 | | addi RD, RD, 8 |
| 3323 | | evstddx TISNIL, TMP2, TMP1 | 3363 | | stwx TISNIL, TMP2, TMP1 |
| 3324 | | b <5 | 3364 | | b <5 |
| 3325 | | | 3365 | | |
| 3326 | |->BC_RETV_Z: // Non-standard return case. | 3366 | |->BC_RETV_Z: // Non-standard return case. |
| @@ -3345,8 +3385,8 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3345 | | subi TMP2, BASE, 8 | 3385 | | subi TMP2, BASE, 8 |
| 3346 | | decode_RB8 RB, INS | 3386 | | decode_RB8 RB, INS |
| 3347 | if (op == BC_RET1) { | 3387 | if (op == BC_RET1) { |
| 3348 | | evldd TMP0, 0(RA) | 3388 | | lfd f0, 0(RA) |
| 3349 | | evstdd TMP0, 0(TMP2) | 3389 | | stfd f0, 0(TMP2) |
| 3350 | } | 3390 | } |
| 3351 | |5: | 3391 | |5: |
| 3352 | | cmplw RB, RD | 3392 | | cmplw RB, RD |
| @@ -3362,7 +3402,7 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3362 | |6: // Fill up results with nil. | 3402 | |6: // Fill up results with nil. |
| 3363 | | subi TMP1, RD, 8 | 3403 | | subi TMP1, RD, 8 |
| 3364 | | addi RD, RD, 8 | 3404 | | addi RD, RD, 8 |
| 3365 | | evstddx TISNIL, TMP2, TMP1 | 3405 | | stwx TISNIL, TMP2, TMP1 |
| 3366 | | b <5 | 3406 | | b <5 |
| 3367 | break; | 3407 | break; |
| 3368 | 3408 | ||
| @@ -3384,47 +3424,62 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3384 | case BC_IFORL: | 3424 | case BC_IFORL: |
| 3385 | | // RA = base*8, RD = target (after end of loop or start of loop) | 3425 | | // RA = base*8, RD = target (after end of loop or start of loop) |
| 3386 | vk = (op == BC_IFORL || op == BC_JFORL); | 3426 | vk = (op == BC_IFORL || op == BC_JFORL); |
| 3387 | | add RA, BASE, RA | ||
| 3388 | | evldd TMP1, FORL_IDX*8(RA) | ||
| 3389 | | evldd TMP3, FORL_STEP*8(RA) | ||
| 3390 | | evldd TMP2, FORL_STOP*8(RA) | ||
| 3391 | if (!vk) { | ||
| 3392 | | evcmpgtu cr0, TMP1, TISNUM | ||
| 3393 | | evcmpgtu cr7, TMP3, TISNUM | ||
| 3394 | | evcmpgtu cr1, TMP2, TISNUM | ||
| 3395 | | cror 4*cr0+lt, 4*cr0+lt, 4*cr7+lt | ||
| 3396 | | cror 4*cr0+lt, 4*cr0+lt, 4*cr1+lt | ||
| 3397 | | blt ->vmeta_for | ||
| 3398 | } | ||
| 3399 | if (vk) { | 3427 | if (vk) { |
| 3400 | | efdadd TMP1, TMP1, TMP3 | 3428 | | lfdux f1, RA, BASE |
| 3401 | | evstdd TMP1, FORL_IDX*8(RA) | 3429 | | lfd f3, FORL_STEP*8(RA) |
| 3430 | | lfd f2, FORL_STOP*8(RA) | ||
| 3431 | | lwz TMP3, FORL_STEP*8(RA) | ||
| 3432 | | fadd f1, f1, f3 | ||
| 3433 | | stfd f1, FORL_IDX*8(RA) | ||
| 3434 | } else { | ||
| 3435 | | lwzux TMP1, RA, BASE | ||
| 3436 | | lfd f1, FORL_IDX*8(RA) | ||
| 3437 | | lwz TMP3, FORL_STEP*8(RA) | ||
| 3438 | | lfd f3, FORL_STEP*8(RA) | ||
| 3439 | | lwz TMP2, FORL_STOP*8(RA) | ||
| 3440 | | lfd f2, FORL_STOP*8(RA) | ||
| 3441 | | cmplw cr0, TMP1, TISNUM | ||
| 3442 | | cmplw cr7, TMP3, TISNUM | ||
| 3443 | | cmplw cr1, TMP2, TISNUM | ||
| 3444 | | crand 4*cr0+lt, 4*cr0+lt, 4*cr7+lt | ||
| 3445 | | crand 4*cr0+lt, 4*cr0+lt, 4*cr1+lt | ||
| 3446 | | bge ->vmeta_for | ||
| 3402 | } | 3447 | } |
| 3403 | | evcmpgts TMP3, TISNIL | 3448 | | cmpwi cr3, TMP3, 0 |
| 3404 | | evstdd TMP1, FORL_EXT*8(RA) | ||
| 3405 | | bge >2 | ||
| 3406 | | efdcmpgt TMP1, TMP2 | ||
| 3407 | |1: | ||
| 3408 | if (op != BC_JFORL) { | 3449 | if (op != BC_JFORL) { |
| 3409 | | srwi RD, RD, 1 | 3450 | | srwi RD, RD, 1 |
| 3451 | } | ||
| 3452 | | stfd f1, FORL_EXT*8(RA) | ||
| 3453 | if (op != BC_JFORL) { | ||
| 3410 | | add RD, PC, RD | 3454 | | add RD, PC, RD |
| 3411 | if (op == BC_JFORI) { | ||
| 3412 | | addis PC, RD, -(BCBIAS_J*4 >> 16) | ||
| 3413 | } else { | ||
| 3414 | | addis RD, RD, -(BCBIAS_J*4 >> 16) | ||
| 3415 | } | ||
| 3416 | } | 3455 | } |
| 3456 | | fcmpu cr0, f1, f2 | ||
| 3457 | if (op == BC_JFORI) { | ||
| 3458 | | addis PC, RD, -(BCBIAS_J*4 >> 16) | ||
| 3459 | } | ||
| 3460 | | blt cr3, >5 | ||
| 3417 | if (op == BC_FORI) { | 3461 | if (op == BC_FORI) { |
| 3418 | | iselgt PC, RD, PC | 3462 | | bgt >3 |
| 3419 | } else if (op == BC_IFORL) { | 3463 | } else if (op == BC_IFORL) { |
| 3420 | | iselgt PC, PC, RD | 3464 | | bgt >2 |
| 3465 | |1: | ||
| 3466 | | addis PC, RD, -(BCBIAS_J*4 >> 16) | ||
| 3421 | } else { | 3467 | } else { |
| 3422 | | ble =>BC_JLOOP | 3468 | | ble =>BC_JLOOP |
| 3423 | } | 3469 | } |
| 3424 | | ins_next | ||
| 3425 | |2: | 3470 | |2: |
| 3426 | | efdcmpgt TMP2, TMP1 | 3471 | | ins_next |
| 3427 | | b <1 | 3472 | |5: // Negative step. |
| 3473 | if (op == BC_FORI) { | ||
| 3474 | | bge <2 | ||
| 3475 | |3: | ||
| 3476 | | addis PC, RD, -(BCBIAS_J*4 >> 16) | ||
| 3477 | } else if (op == BC_IFORL) { | ||
| 3478 | | bge <1 | ||
| 3479 | } else { | ||
| 3480 | | bge =>BC_JLOOP | ||
| 3481 | } | ||
| 3482 | | b <2 | ||
| 3428 | break; | 3483 | break; |
| 3429 | 3484 | ||
| 3430 | case BC_ITERL: | 3485 | case BC_ITERL: |
| @@ -3440,15 +3495,15 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3440 | #endif | 3495 | #endif |
| 3441 | case BC_IITERL: | 3496 | case BC_IITERL: |
| 3442 | | // RA = base*8, RD = target | 3497 | | // RA = base*8, RD = target |
| 3443 | | evlddx TMP1, BASE, RA | 3498 | | lwzux TMP1, RA, BASE |
| 3444 | | subi RA, RA, 8 | 3499 | | lwz TMP2, 4(RA) |
| 3445 | | checknil TMP1 | 3500 | | checknil TMP1; beq >1 // Stop if iterator returned nil. |
| 3446 | | checkok >1 // Stop if iterator returned nil. | ||
| 3447 | if (op == BC_JITERL) { | 3501 | if (op == BC_JITERL) { |
| 3448 | | NYI | 3502 | | NYI |
| 3449 | } else { | 3503 | } else { |
| 3450 | | branch_RD // Otherwise save control var + branch. | 3504 | | branch_RD // Otherwise save control var + branch. |
| 3451 | | evstddx TMP1, BASE, RA | 3505 | | stw TMP1, -8(RA) |
| 3506 | | stw TMP2, -4(RA) | ||
| 3452 | } | 3507 | } |
| 3453 | |1: | 3508 | |1: |
| 3454 | | ins_next | 3509 | | ins_next |
| @@ -3514,7 +3569,7 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3514 | } | 3569 | } |
| 3515 | | | 3570 | | |
| 3516 | |3: // Clear missing parameters. | 3571 | |3: // Clear missing parameters. |
| 3517 | | evstddx TISNIL, BASE, NARGS8:RC | 3572 | | stwx TISNIL, BASE, NARGS8:RC |
| 3518 | | addi NARGS8:RC, NARGS8:RC, 8 | 3573 | | addi NARGS8:RC, NARGS8:RC, 8 |
| 3519 | | b <2 | 3574 | | b <2 |
| 3520 | break; | 3575 | break; |
| @@ -3546,20 +3601,22 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 3546 | | beq >3 | 3601 | | beq >3 |
| 3547 | |1: | 3602 | |1: |
| 3548 | | cmplw RA, RC // Less args than parameters? | 3603 | | cmplw RA, RC // Less args than parameters? |
| 3549 | | evldd TMP0, 0(RA) | 3604 | | lwz TMP0, 0(RA) |
| 3605 | | lwz TMP3, 4(RA) | ||
| 3550 | | bge >4 | 3606 | | bge >4 |
| 3551 | | evstdd TISNIL, 0(RA) // Clear old fixarg slot (help the GC). | 3607 | | stw TISNIL, 0(RA) // Clear old fixarg slot (help the GC). |
| 3552 | | addi RA, RA, 8 | 3608 | | addi RA, RA, 8 |
| 3553 | |2: | 3609 | |2: |
| 3554 | | addic. TMP2, TMP2, -1 | 3610 | | addic. TMP2, TMP2, -1 |
| 3555 | | evstdd TMP0, 8(TMP1) | 3611 | | stw TMP0, 8(TMP1) |
| 3612 | | stw TMP3, 12(TMP1) | ||
| 3556 | | addi TMP1, TMP1, 8 | 3613 | | addi TMP1, TMP1, 8 |
| 3557 | | bne <1 | 3614 | | bne <1 |
| 3558 | |3: | 3615 | |3: |
| 3559 | | ins_next2 | 3616 | | ins_next2 |
| 3560 | | | 3617 | | |
| 3561 | |4: // Clear missing parameters. | 3618 | |4: // Clear missing parameters. |
| 3562 | | evmr TMP0, TISNIL | 3619 | | li TMP0, LJ_TNIL |
| 3563 | | b <2 | 3620 | | b <2 |
| 3564 | break; | 3621 | break; |
| 3565 | 3622 | ||
diff --git a/src/buildvm_ppc.h b/src/buildvm_ppc.h index 0a33c11c..b5d80346 100644 --- a/src/buildvm_ppc.h +++ b/src/buildvm_ppc.h | |||
| @@ -1 +1,6686 @@ | |||
| 1 | /* Placeholder file. */ | 1 | /* |
| 2 | ** This file has been pre-processed with DynASM. | ||
| 3 | ** http://luajit.org/dynasm.html | ||
| 4 | ** DynASM version 1.3.0, DynASM ppc version 1.3.0 | ||
| 5 | ** DO NOT EDIT! The original file is in "buildvm_ppc.dasc". | ||
| 6 | */ | ||
| 7 | |||
| 8 | #if DASM_VERSION != 10300 | ||
| 9 | #error "Version mismatch between DynASM and included encoding engine" | ||
| 10 | #endif | ||
| 11 | |||
| 12 | #define DASM_SECTION_CODE_OP 0 | ||
| 13 | #define DASM_SECTION_CODE_SUB 1 | ||
| 14 | #define DASM_MAXSECTION 2 | ||
| 15 | static const unsigned int build_actionlist[5561] = { | ||
| 16 | 0x00010001, | ||
| 17 | 0x00060014, | ||
| 18 | 0x72000000, | ||
| 19 | 0x00090200, | ||
| 20 | 0x39000000, | ||
| 21 | 0x00098200, | ||
| 22 | 0x41820000, | ||
| 23 | 0x00050815, | ||
| 24 | 0x8209fff8, | ||
| 25 | 0x7d2e4b78, | ||
| 26 | 0x9514fff8, | ||
| 27 | 0x00060016, | ||
| 28 | 0x72000000, | ||
| 29 | 0x00090200, | ||
| 30 | 0x398c0008, | ||
| 31 | 0x7d936378, | ||
| 32 | 0x41820000, | ||
| 33 | 0x00050817, | ||
| 34 | 0x00060018, | ||
| 35 | 0x2c000000, | ||
| 36 | 0x00098200, | ||
| 37 | 0x56090038, | ||
| 38 | 0x38000000, | ||
| 39 | 0x00098200, | ||
| 40 | 0x7d297050, | ||
| 41 | 0x40820000, | ||
| 42 | 0x00050814, | ||
| 43 | 0x350cfff8, | ||
| 44 | 0x91320000, | ||
| 45 | 0x00098200, | ||
| 46 | 0x81210018, | ||
| 47 | 0x39cefff8, | ||
| 48 | 0x90110000, | ||
| 49 | 0x00098200, | ||
| 50 | 0x55291800, | ||
| 51 | 0x000900a1, | ||
| 52 | 0x41820000, | ||
| 53 | 0x00050802, | ||
| 54 | 0x0006000b, | ||
| 55 | 0x3508fff8, | ||
| 56 | 0xc8140000, | ||
| 57 | 0x3a940008, | ||
| 58 | 0xd80e0000, | ||
| 59 | 0x39ce0008, | ||
| 60 | 0x40820000, | ||
| 61 | 0x0005080b, | ||
| 62 | 0x0006000c, | ||
| 63 | 0x7c096000, | ||
| 64 | 0x40820000, | ||
| 65 | 0x00050806, | ||
| 66 | 0x0006000d, | ||
| 67 | 0x91d20000, | ||
| 68 | 0x00098200, | ||
| 69 | 0x00060019, | ||
| 70 | 0x00000000, | ||
| 71 | 0x80010014, | ||
| 72 | 0x38600000, | ||
| 73 | 0x90120000, | ||
| 74 | 0x00098200, | ||
| 75 | 0x0006001a, | ||
| 76 | 0x80010104, | ||
| 77 | 0x81c10000, | ||
| 78 | 0x00098200, | ||
| 79 | 0xc9c10000, | ||
| 80 | 0x00098200, | ||
| 81 | 0x81e10000, | ||
| 82 | 0x00098200, | ||
| 83 | 0xc9e10000, | ||
| 84 | 0x00098200, | ||
| 85 | 0x82010000, | ||
| 86 | 0x00098200, | ||
| 87 | 0xca010000, | ||
| 88 | 0x00098200, | ||
| 89 | 0x82210000, | ||
| 90 | 0x00098200, | ||
| 91 | 0xca210000, | ||
| 92 | 0x00098200, | ||
| 93 | 0x82410000, | ||
| 94 | 0x00098200, | ||
| 95 | 0xca410000, | ||
| 96 | 0x00098200, | ||
| 97 | 0x82610000, | ||
| 98 | 0x00098200, | ||
| 99 | 0xca610000, | ||
| 100 | 0x00098200, | ||
| 101 | 0x7c0803a6, | ||
| 102 | 0x82810000, | ||
| 103 | 0x00098200, | ||
| 104 | 0xca810000, | ||
| 105 | 0x00098200, | ||
| 106 | 0x82a10000, | ||
| 107 | 0x00098200, | ||
| 108 | 0xcaa10000, | ||
| 109 | 0x00098200, | ||
| 110 | 0x82c10000, | ||
| 111 | 0x00098200, | ||
| 112 | 0xcac10000, | ||
| 113 | 0x00098200, | ||
| 114 | 0x82e10000, | ||
| 115 | 0x00098200, | ||
| 116 | 0xcae10000, | ||
| 117 | 0x00098200, | ||
| 118 | 0x00000000, | ||
| 119 | 0x83010000, | ||
| 120 | 0x00098200, | ||
| 121 | 0xcb010000, | ||
| 122 | 0x00098200, | ||
| 123 | 0x83210000, | ||
| 124 | 0x00098200, | ||
| 125 | 0xcb210000, | ||
| 126 | 0x00098200, | ||
| 127 | 0x83410000, | ||
| 128 | 0x00098200, | ||
| 129 | 0xcb410000, | ||
| 130 | 0x00098200, | ||
| 131 | 0x83610000, | ||
| 132 | 0x00098200, | ||
| 133 | 0xcb610000, | ||
| 134 | 0x00098200, | ||
| 135 | 0x83810000, | ||
| 136 | 0x00098200, | ||
| 137 | 0xcb810000, | ||
| 138 | 0x00098200, | ||
| 139 | 0x83a10000, | ||
| 140 | 0x00098200, | ||
| 141 | 0xcba10000, | ||
| 142 | 0x00098200, | ||
| 143 | 0x83c10000, | ||
| 144 | 0x00098200, | ||
| 145 | 0xcbc10000, | ||
| 146 | 0x00098200, | ||
| 147 | 0x83e10000, | ||
| 148 | 0x00098200, | ||
| 149 | 0xcbe10000, | ||
| 150 | 0x00098200, | ||
| 151 | 0x38210100, | ||
| 152 | 0x4e800020, | ||
| 153 | 0x00060010, | ||
| 154 | 0x40810000, | ||
| 155 | 0x00050807, | ||
| 156 | 0x81120000, | ||
| 157 | 0x00098200, | ||
| 158 | 0x7c0e4040, | ||
| 159 | 0x40800000, | ||
| 160 | 0x00050808, | ||
| 161 | 0x92ee0000, | ||
| 162 | 0x398c0008, | ||
| 163 | 0x39ce0008, | ||
| 164 | 0x48000000, | ||
| 165 | 0x0005000c, | ||
| 166 | 0x00060011, | ||
| 167 | 0x00000000, | ||
| 168 | 0x20c90000, | ||
| 169 | 0x7c096050, | ||
| 170 | 0x7d084110, | ||
| 171 | 0x7c004038, | ||
| 172 | 0x7dc07050, | ||
| 173 | 0x48000000, | ||
| 174 | 0x0005000d, | ||
| 175 | 0x00060012, | ||
| 176 | 0x91d20000, | ||
| 177 | 0x00098200, | ||
| 178 | 0x7d956378, | ||
| 179 | 0x7d244b78, | ||
| 180 | 0x7e439378, | ||
| 181 | 0x48000001, | ||
| 182 | 0x00030000, | ||
| 183 | 0x81210018, | ||
| 184 | 0x7eacab78, | ||
| 185 | 0x55291800, | ||
| 186 | 0x000900a1, | ||
| 187 | 0x81d20000, | ||
| 188 | 0x00098200, | ||
| 189 | 0x48000000, | ||
| 190 | 0x0005000c, | ||
| 191 | 0x0006001b, | ||
| 192 | 0x7c611b78, | ||
| 193 | 0x7c832378, | ||
| 194 | 0x0006001c, | ||
| 195 | 0x82410010, | ||
| 196 | 0x38000000, | ||
| 197 | 0x00098200, | ||
| 198 | 0x81120000, | ||
| 199 | 0x00098200, | ||
| 200 | 0x90080000, | ||
| 201 | 0x00098200, | ||
| 202 | 0x48000000, | ||
| 203 | 0x0005001a, | ||
| 204 | 0x0006001d, | ||
| 205 | 0x5461003a, | ||
| 206 | 0x0006001e, | ||
| 207 | 0x82410010, | ||
| 208 | 0x3ac00000, | ||
| 209 | 0x00098200, | ||
| 210 | 0x81d20000, | ||
| 211 | 0x00098200, | ||
| 212 | 0x3cc059c0, | ||
| 213 | 0x82320000, | ||
| 214 | 0x00098200, | ||
| 215 | 0x3b000000, | ||
| 216 | 0x90c10008, | ||
| 217 | 0x39000000, | ||
| 218 | 0x00098200, | ||
| 219 | 0x60c60004, | ||
| 220 | 0x3ae00000, | ||
| 221 | 0x00098200, | ||
| 222 | 0x38000000, | ||
| 223 | 0x00098200, | ||
| 224 | 0xc3c10008, | ||
| 225 | 0x820efff8, | ||
| 226 | 0x3a8efff8, | ||
| 227 | 0x90c10008, | ||
| 228 | 0x3a310000, | ||
| 229 | 0x00098200, | ||
| 230 | 0x00000000, | ||
| 231 | 0x91140000, | ||
| 232 | 0x39800010, | ||
| 233 | 0x90110000, | ||
| 234 | 0x00098200, | ||
| 235 | 0xc3e10008, | ||
| 236 | 0x48000000, | ||
| 237 | 0x00050016, | ||
| 238 | 0x0006001f, | ||
| 239 | 0x38800000, | ||
| 240 | 0x00098200, | ||
| 241 | 0x48000000, | ||
| 242 | 0x00050002, | ||
| 243 | 0x00060020, | ||
| 244 | 0x7d6e5a14, | ||
| 245 | 0x7e8ea050, | ||
| 246 | 0x91d20000, | ||
| 247 | 0x00098200, | ||
| 248 | 0x3a100004, | ||
| 249 | 0x91720000, | ||
| 250 | 0x00098200, | ||
| 251 | 0x568400fe, | ||
| 252 | 0x000900ab, | ||
| 253 | 0x0006000c, | ||
| 254 | 0x92010008, | ||
| 255 | 0x7e439378, | ||
| 256 | 0x48000001, | ||
| 257 | 0x00030000, | ||
| 258 | 0x81d20000, | ||
| 259 | 0x00098200, | ||
| 260 | 0x81720000, | ||
| 261 | 0x00098200, | ||
| 262 | 0x814efffc, | ||
| 263 | 0x7d6e5850, | ||
| 264 | 0x820a0000, | ||
| 265 | 0x00098200, | ||
| 266 | 0x80f00000, | ||
| 267 | 0x3a100004, | ||
| 268 | 0x54e815ba, | ||
| 269 | 0x54f4dd78, | ||
| 270 | 0x7c11402e, | ||
| 271 | 0x7e947214, | ||
| 272 | 0x7c0903a6, | ||
| 273 | 0x4e800420, | ||
| 274 | 0x00060021, | ||
| 275 | 0x9421ff00, | ||
| 276 | 0x91c10000, | ||
| 277 | 0x00098200, | ||
| 278 | 0xd9c10000, | ||
| 279 | 0x00098200, | ||
| 280 | 0x91e10000, | ||
| 281 | 0x00098200, | ||
| 282 | 0xd9e10000, | ||
| 283 | 0x00098200, | ||
| 284 | 0x92010000, | ||
| 285 | 0x00098200, | ||
| 286 | 0xda010000, | ||
| 287 | 0x00098200, | ||
| 288 | 0x92210000, | ||
| 289 | 0x00098200, | ||
| 290 | 0x00000000, | ||
| 291 | 0xda210000, | ||
| 292 | 0x00098200, | ||
| 293 | 0x92410000, | ||
| 294 | 0x00098200, | ||
| 295 | 0xda410000, | ||
| 296 | 0x00098200, | ||
| 297 | 0x92610000, | ||
| 298 | 0x00098200, | ||
| 299 | 0xda610000, | ||
| 300 | 0x00098200, | ||
| 301 | 0x7c0802a6, | ||
| 302 | 0x92810000, | ||
| 303 | 0x00098200, | ||
| 304 | 0xda810000, | ||
| 305 | 0x00098200, | ||
| 306 | 0x92a10000, | ||
| 307 | 0x00098200, | ||
| 308 | 0xdaa10000, | ||
| 309 | 0x00098200, | ||
| 310 | 0x92c10000, | ||
| 311 | 0x00098200, | ||
| 312 | 0xdac10000, | ||
| 313 | 0x00098200, | ||
| 314 | 0x92e10000, | ||
| 315 | 0x00098200, | ||
| 316 | 0xdae10000, | ||
| 317 | 0x00098200, | ||
| 318 | 0x93010000, | ||
| 319 | 0x00098200, | ||
| 320 | 0xdb010000, | ||
| 321 | 0x00098200, | ||
| 322 | 0x93210000, | ||
| 323 | 0x00098200, | ||
| 324 | 0xdb210000, | ||
| 325 | 0x00098200, | ||
| 326 | 0x90010104, | ||
| 327 | 0x93410000, | ||
| 328 | 0x00098200, | ||
| 329 | 0xdb410000, | ||
| 330 | 0x00098200, | ||
| 331 | 0x93610000, | ||
| 332 | 0x00098200, | ||
| 333 | 0xdb610000, | ||
| 334 | 0x00098200, | ||
| 335 | 0x93810000, | ||
| 336 | 0x00098200, | ||
| 337 | 0x00000000, | ||
| 338 | 0xdb810000, | ||
| 339 | 0x00098200, | ||
| 340 | 0x93a10000, | ||
| 341 | 0x00098200, | ||
| 342 | 0xdba10000, | ||
| 343 | 0x00098200, | ||
| 344 | 0x93c10000, | ||
| 345 | 0x00098200, | ||
| 346 | 0xdbc10000, | ||
| 347 | 0x00098200, | ||
| 348 | 0x93e10000, | ||
| 349 | 0x00098200, | ||
| 350 | 0xdbe10000, | ||
| 351 | 0x00098200, | ||
| 352 | 0x7c721b78, | ||
| 353 | 0x82320000, | ||
| 354 | 0x00098200, | ||
| 355 | 0x7c8e2378, | ||
| 356 | 0x89120000, | ||
| 357 | 0x00098200, | ||
| 358 | 0x92410010, | ||
| 359 | 0x3a000000, | ||
| 360 | 0x00098200, | ||
| 361 | 0x38010000, | ||
| 362 | 0x00098200, | ||
| 363 | 0x3a310000, | ||
| 364 | 0x00098200, | ||
| 365 | 0x90a10018, | ||
| 366 | 0x28080000, | ||
| 367 | 0x90a1001c, | ||
| 368 | 0x90120000, | ||
| 369 | 0x00098200, | ||
| 370 | 0x90a10014, | ||
| 371 | 0x90610008, | ||
| 372 | 0x41820000, | ||
| 373 | 0x00050803, | ||
| 374 | 0x7dd47378, | ||
| 375 | 0x81d20000, | ||
| 376 | 0x00098200, | ||
| 377 | 0x3ac00000, | ||
| 378 | 0x00098200, | ||
| 379 | 0x81120000, | ||
| 380 | 0x00098200, | ||
| 381 | 0x820efff8, | ||
| 382 | 0x3cc059c0, | ||
| 383 | 0x7d8e4050, | ||
| 384 | 0x98b20000, | ||
| 385 | 0x00098200, | ||
| 386 | 0x90c10008, | ||
| 387 | 0x72000000, | ||
| 388 | 0x00090200, | ||
| 389 | 0x60c60004, | ||
| 390 | 0xc3c10008, | ||
| 391 | 0x3b000000, | ||
| 392 | 0x90c10008, | ||
| 393 | 0x398c0008, | ||
| 394 | 0x3c004338, | ||
| 395 | 0x7d936378, | ||
| 396 | 0x90010020, | ||
| 397 | 0x38000000, | ||
| 398 | 0x00098200, | ||
| 399 | 0xc3e10008, | ||
| 400 | 0x3ae00000, | ||
| 401 | 0x00098200, | ||
| 402 | 0x90110000, | ||
| 403 | 0x00098200, | ||
| 404 | 0x00000000, | ||
| 405 | 0x41820000, | ||
| 406 | 0x00050817, | ||
| 407 | 0x48000000, | ||
| 408 | 0x00050018, | ||
| 409 | 0x00060022, | ||
| 410 | 0x9421ff00, | ||
| 411 | 0x91c10000, | ||
| 412 | 0x00098200, | ||
| 413 | 0xd9c10000, | ||
| 414 | 0x00098200, | ||
| 415 | 0x91e10000, | ||
| 416 | 0x00098200, | ||
| 417 | 0xd9e10000, | ||
| 418 | 0x00098200, | ||
| 419 | 0x92010000, | ||
| 420 | 0x00098200, | ||
| 421 | 0xda010000, | ||
| 422 | 0x00098200, | ||
| 423 | 0x92210000, | ||
| 424 | 0x00098200, | ||
| 425 | 0xda210000, | ||
| 426 | 0x00098200, | ||
| 427 | 0x92410000, | ||
| 428 | 0x00098200, | ||
| 429 | 0xda410000, | ||
| 430 | 0x00098200, | ||
| 431 | 0x92610000, | ||
| 432 | 0x00098200, | ||
| 433 | 0xda610000, | ||
| 434 | 0x00098200, | ||
| 435 | 0x7c0802a6, | ||
| 436 | 0x92810000, | ||
| 437 | 0x00098200, | ||
| 438 | 0xda810000, | ||
| 439 | 0x00098200, | ||
| 440 | 0x92a10000, | ||
| 441 | 0x00098200, | ||
| 442 | 0xdaa10000, | ||
| 443 | 0x00098200, | ||
| 444 | 0x92c10000, | ||
| 445 | 0x00098200, | ||
| 446 | 0xdac10000, | ||
| 447 | 0x00098200, | ||
| 448 | 0x92e10000, | ||
| 449 | 0x00098200, | ||
| 450 | 0x00000000, | ||
| 451 | 0xdae10000, | ||
| 452 | 0x00098200, | ||
| 453 | 0x93010000, | ||
| 454 | 0x00098200, | ||
| 455 | 0xdb010000, | ||
| 456 | 0x00098200, | ||
| 457 | 0x93210000, | ||
| 458 | 0x00098200, | ||
| 459 | 0xdb210000, | ||
| 460 | 0x00098200, | ||
| 461 | 0x90010104, | ||
| 462 | 0x93410000, | ||
| 463 | 0x00098200, | ||
| 464 | 0xdb410000, | ||
| 465 | 0x00098200, | ||
| 466 | 0x93610000, | ||
| 467 | 0x00098200, | ||
| 468 | 0xdb610000, | ||
| 469 | 0x00098200, | ||
| 470 | 0x93810000, | ||
| 471 | 0x00098200, | ||
| 472 | 0xdb810000, | ||
| 473 | 0x00098200, | ||
| 474 | 0x93a10000, | ||
| 475 | 0x00098200, | ||
| 476 | 0xdba10000, | ||
| 477 | 0x00098200, | ||
| 478 | 0x93c10000, | ||
| 479 | 0x00098200, | ||
| 480 | 0xdbc10000, | ||
| 481 | 0x00098200, | ||
| 482 | 0x93e10000, | ||
| 483 | 0x00098200, | ||
| 484 | 0xdbe10000, | ||
| 485 | 0x00098200, | ||
| 486 | 0x3a000000, | ||
| 487 | 0x00098200, | ||
| 488 | 0x90c1001c, | ||
| 489 | 0x48000000, | ||
| 490 | 0x00050001, | ||
| 491 | 0x00060023, | ||
| 492 | 0x9421ff00, | ||
| 493 | 0x91c10000, | ||
| 494 | 0x00098200, | ||
| 495 | 0xd9c10000, | ||
| 496 | 0x00098200, | ||
| 497 | 0x00000000, | ||
| 498 | 0x91e10000, | ||
| 499 | 0x00098200, | ||
| 500 | 0xd9e10000, | ||
| 501 | 0x00098200, | ||
| 502 | 0x92010000, | ||
| 503 | 0x00098200, | ||
| 504 | 0xda010000, | ||
| 505 | 0x00098200, | ||
| 506 | 0x92210000, | ||
| 507 | 0x00098200, | ||
| 508 | 0xda210000, | ||
| 509 | 0x00098200, | ||
| 510 | 0x92410000, | ||
| 511 | 0x00098200, | ||
| 512 | 0xda410000, | ||
| 513 | 0x00098200, | ||
| 514 | 0x92610000, | ||
| 515 | 0x00098200, | ||
| 516 | 0xda610000, | ||
| 517 | 0x00098200, | ||
| 518 | 0x7c0802a6, | ||
| 519 | 0x92810000, | ||
| 520 | 0x00098200, | ||
| 521 | 0xda810000, | ||
| 522 | 0x00098200, | ||
| 523 | 0x92a10000, | ||
| 524 | 0x00098200, | ||
| 525 | 0xdaa10000, | ||
| 526 | 0x00098200, | ||
| 527 | 0x92c10000, | ||
| 528 | 0x00098200, | ||
| 529 | 0xdac10000, | ||
| 530 | 0x00098200, | ||
| 531 | 0x92e10000, | ||
| 532 | 0x00098200, | ||
| 533 | 0xdae10000, | ||
| 534 | 0x00098200, | ||
| 535 | 0x93010000, | ||
| 536 | 0x00098200, | ||
| 537 | 0xdb010000, | ||
| 538 | 0x00098200, | ||
| 539 | 0x93210000, | ||
| 540 | 0x00098200, | ||
| 541 | 0xdb210000, | ||
| 542 | 0x00098200, | ||
| 543 | 0x00000000, | ||
| 544 | 0x90010104, | ||
| 545 | 0x93410000, | ||
| 546 | 0x00098200, | ||
| 547 | 0xdb410000, | ||
| 548 | 0x00098200, | ||
| 549 | 0x93610000, | ||
| 550 | 0x00098200, | ||
| 551 | 0xdb610000, | ||
| 552 | 0x00098200, | ||
| 553 | 0x93810000, | ||
| 554 | 0x00098200, | ||
| 555 | 0xdb810000, | ||
| 556 | 0x00098200, | ||
| 557 | 0x93a10000, | ||
| 558 | 0x00098200, | ||
| 559 | 0xdba10000, | ||
| 560 | 0x00098200, | ||
| 561 | 0x93c10000, | ||
| 562 | 0x00098200, | ||
| 563 | 0xdbc10000, | ||
| 564 | 0x00098200, | ||
| 565 | 0x93e10000, | ||
| 566 | 0x00098200, | ||
| 567 | 0xdbe10000, | ||
| 568 | 0x00098200, | ||
| 569 | 0x3a000000, | ||
| 570 | 0x00098200, | ||
| 571 | 0x0006000b, | ||
| 572 | 0x81030000, | ||
| 573 | 0x00098200, | ||
| 574 | 0x90a10018, | ||
| 575 | 0x7c721b78, | ||
| 576 | 0x90610010, | ||
| 577 | 0x7c8e2378, | ||
| 578 | 0x90320000, | ||
| 579 | 0x00098200, | ||
| 580 | 0x82320000, | ||
| 581 | 0x00098200, | ||
| 582 | 0x90610008, | ||
| 583 | 0x91010014, | ||
| 584 | 0x3a310000, | ||
| 585 | 0x00098200, | ||
| 586 | 0x0006000d, | ||
| 587 | 0x81320000, | ||
| 588 | 0x00098200, | ||
| 589 | 0x3ac00000, | ||
| 590 | 0x00098200, | ||
| 591 | 0x81120000, | ||
| 592 | 0x00098200, | ||
| 593 | 0x00000000, | ||
| 594 | 0x3cc059c0, | ||
| 595 | 0x7e107214, | ||
| 596 | 0x90c10008, | ||
| 597 | 0x3b000000, | ||
| 598 | 0x60c60004, | ||
| 599 | 0xc3c10008, | ||
| 600 | 0x7e098050, | ||
| 601 | 0x90c10008, | ||
| 602 | 0x3c004338, | ||
| 603 | 0x7d6e4050, | ||
| 604 | 0x90010020, | ||
| 605 | 0x38000000, | ||
| 606 | 0x00098200, | ||
| 607 | 0xc3e10008, | ||
| 608 | 0x3ae00000, | ||
| 609 | 0x00098200, | ||
| 610 | 0x90110000, | ||
| 611 | 0x00098200, | ||
| 612 | 0x00060024, | ||
| 613 | 0x800efff8, | ||
| 614 | 0x814efffc, | ||
| 615 | 0x2c000000, | ||
| 616 | 0x00098200, | ||
| 617 | 0x40820000, | ||
| 618 | 0x00050825, | ||
| 619 | 0x00060026, | ||
| 620 | 0x920efff8, | ||
| 621 | 0x820a0000, | ||
| 622 | 0x00098200, | ||
| 623 | 0x80f00000, | ||
| 624 | 0x3a100004, | ||
| 625 | 0x54e815ba, | ||
| 626 | 0x54f4dd78, | ||
| 627 | 0x7c11402e, | ||
| 628 | 0x7e947214, | ||
| 629 | 0x7c0903a6, | ||
| 630 | 0x4e800420, | ||
| 631 | 0x00060027, | ||
| 632 | 0x9421ff00, | ||
| 633 | 0x91c10000, | ||
| 634 | 0x00098200, | ||
| 635 | 0xd9c10000, | ||
| 636 | 0x00098200, | ||
| 637 | 0x91e10000, | ||
| 638 | 0x00098200, | ||
| 639 | 0xd9e10000, | ||
| 640 | 0x00098200, | ||
| 641 | 0x92010000, | ||
| 642 | 0x00098200, | ||
| 643 | 0xda010000, | ||
| 644 | 0x00098200, | ||
| 645 | 0x92210000, | ||
| 646 | 0x00098200, | ||
| 647 | 0xda210000, | ||
| 648 | 0x00098200, | ||
| 649 | 0x92410000, | ||
| 650 | 0x00098200, | ||
| 651 | 0xda410000, | ||
| 652 | 0x00098200, | ||
| 653 | 0x92610000, | ||
| 654 | 0x00098200, | ||
| 655 | 0xda610000, | ||
| 656 | 0x00098200, | ||
| 657 | 0x7c0802a6, | ||
| 658 | 0x92810000, | ||
| 659 | 0x00098200, | ||
| 660 | 0x00000000, | ||
| 661 | 0xda810000, | ||
| 662 | 0x00098200, | ||
| 663 | 0x92a10000, | ||
| 664 | 0x00098200, | ||
| 665 | 0xdaa10000, | ||
| 666 | 0x00098200, | ||
| 667 | 0x92c10000, | ||
| 668 | 0x00098200, | ||
| 669 | 0xdac10000, | ||
| 670 | 0x00098200, | ||
| 671 | 0x92e10000, | ||
| 672 | 0x00098200, | ||
| 673 | 0xdae10000, | ||
| 674 | 0x00098200, | ||
| 675 | 0x93010000, | ||
| 676 | 0x00098200, | ||
| 677 | 0xdb010000, | ||
| 678 | 0x00098200, | ||
| 679 | 0x93210000, | ||
| 680 | 0x00098200, | ||
| 681 | 0xdb210000, | ||
| 682 | 0x00098200, | ||
| 683 | 0x90010104, | ||
| 684 | 0x93410000, | ||
| 685 | 0x00098200, | ||
| 686 | 0xdb410000, | ||
| 687 | 0x00098200, | ||
| 688 | 0x93610000, | ||
| 689 | 0x00098200, | ||
| 690 | 0xdb610000, | ||
| 691 | 0x00098200, | ||
| 692 | 0x93810000, | ||
| 693 | 0x00098200, | ||
| 694 | 0xdb810000, | ||
| 695 | 0x00098200, | ||
| 696 | 0x93a10000, | ||
| 697 | 0x00098200, | ||
| 698 | 0xdba10000, | ||
| 699 | 0x00098200, | ||
| 700 | 0x93c10000, | ||
| 701 | 0x00098200, | ||
| 702 | 0xdbc10000, | ||
| 703 | 0x00098200, | ||
| 704 | 0x93e10000, | ||
| 705 | 0x00098200, | ||
| 706 | 0x00000000, | ||
| 707 | 0xdbe10000, | ||
| 708 | 0x00098200, | ||
| 709 | 0x7c721b78, | ||
| 710 | 0x80030000, | ||
| 711 | 0x00098200, | ||
| 712 | 0x90610010, | ||
| 713 | 0x81120000, | ||
| 714 | 0x00098200, | ||
| 715 | 0x90610008, | ||
| 716 | 0x7c080050, | ||
| 717 | 0x81120000, | ||
| 718 | 0x00098200, | ||
| 719 | 0x90320000, | ||
| 720 | 0x00098200, | ||
| 721 | 0x39200000, | ||
| 722 | 0x90010018, | ||
| 723 | 0x9121001c, | ||
| 724 | 0x91010014, | ||
| 725 | 0x7cc903a6, | ||
| 726 | 0x4e800421, | ||
| 727 | 0x7c6e1b79, | ||
| 728 | 0x82320000, | ||
| 729 | 0x00098200, | ||
| 730 | 0x3a000000, | ||
| 731 | 0x00098200, | ||
| 732 | 0x3a310000, | ||
| 733 | 0x00098200, | ||
| 734 | 0x40820000, | ||
| 735 | 0x0005080d, | ||
| 736 | 0x48000000, | ||
| 737 | 0x00050019, | ||
| 738 | 0x00060015, | ||
| 739 | 0x800efff4, | ||
| 740 | 0x7dca7378, | ||
| 741 | 0x7d2e4b78, | ||
| 742 | 0x8109fffc, | ||
| 743 | 0x28000000, | ||
| 744 | 0x820afff0, | ||
| 745 | 0x41820000, | ||
| 746 | 0x00050801, | ||
| 747 | 0x392cfff8, | ||
| 748 | 0x81080000, | ||
| 749 | 0x00098200, | ||
| 750 | 0x7ef4492e, | ||
| 751 | 0x81e80000, | ||
| 752 | 0x00098200, | ||
| 753 | 0x7c0903a6, | ||
| 754 | 0x4e800420, | ||
| 755 | 0x0006000b, | ||
| 756 | 0x390afff0, | ||
| 757 | 0x7d6e4050, | ||
| 758 | 0x48000000, | ||
| 759 | 0x00050028, | ||
| 760 | 0x00060029, | ||
| 761 | 0x80f0fffc, | ||
| 762 | 0x388afff0, | ||
| 763 | 0x54f55d78, | ||
| 764 | 0xc8140000, | ||
| 765 | 0x7d0eaa14, | ||
| 766 | 0x91d20000, | ||
| 767 | 0x00098200, | ||
| 768 | 0x7c082040, | ||
| 769 | 0x7ca82050, | ||
| 770 | 0x54f4dd78, | ||
| 771 | 0xd8040000, | ||
| 772 | 0x40820000, | ||
| 773 | 0x0005082a, | ||
| 774 | 0x7c0ea5ae, | ||
| 775 | 0x48000000, | ||
| 776 | 0x0005002b, | ||
| 777 | 0x0006002c, | ||
| 778 | 0x38b10000, | ||
| 779 | 0x00098200, | ||
| 780 | 0x00000000, | ||
| 781 | 0x38000000, | ||
| 782 | 0x00098200, | ||
| 783 | 0x54ea5d78, | ||
| 784 | 0x91650004, | ||
| 785 | 0x7c8e5214, | ||
| 786 | 0x90050000, | ||
| 787 | 0x48000000, | ||
| 788 | 0x00050001, | ||
| 789 | 0x0006002d, | ||
| 790 | 0x38910000, | ||
| 791 | 0x00098200, | ||
| 792 | 0x38000000, | ||
| 793 | 0x00098200, | ||
| 794 | 0x91440004, | ||
| 795 | 0x38b10000, | ||
| 796 | 0x00098200, | ||
| 797 | 0x90040000, | ||
| 798 | 0x39000000, | ||
| 799 | 0x00098200, | ||
| 800 | 0x91650004, | ||
| 801 | 0x91050000, | ||
| 802 | 0x48000000, | ||
| 803 | 0x00050001, | ||
| 804 | 0x0006002e, | ||
| 805 | 0x90010024, | ||
| 806 | 0xc8010020, | ||
| 807 | 0xfc00f028, | ||
| 808 | 0x54ea5d78, | ||
| 809 | 0x38b10000, | ||
| 810 | 0x00098200, | ||
| 811 | 0x7c8e5214, | ||
| 812 | 0xd8050000, | ||
| 813 | 0x48000000, | ||
| 814 | 0x00050001, | ||
| 815 | 0x0006002f, | ||
| 816 | 0x54ea5d78, | ||
| 817 | 0x54eb9d78, | ||
| 818 | 0x7c8e5214, | ||
| 819 | 0x7cae5a14, | ||
| 820 | 0x0006000b, | ||
| 821 | 0x91d20000, | ||
| 822 | 0x00098200, | ||
| 823 | 0x7e439378, | ||
| 824 | 0x92010008, | ||
| 825 | 0x48000001, | ||
| 826 | 0x00030001, | ||
| 827 | 0x28030000, | ||
| 828 | 0x41820000, | ||
| 829 | 0x00050803, | ||
| 830 | 0xc8030000, | ||
| 831 | 0x80f00000, | ||
| 832 | 0x3a100004, | ||
| 833 | 0x7c0ea5ae, | ||
| 834 | 0x54e815ba, | ||
| 835 | 0x54ea5d78, | ||
| 836 | 0x54ec9b78, | ||
| 837 | 0x7c11402e, | ||
| 838 | 0x54f4dd78, | ||
| 839 | 0x54eb9d78, | ||
| 840 | 0x7c0903a6, | ||
| 841 | 0x4e800420, | ||
| 842 | 0x0006000d, | ||
| 843 | 0x210e0000, | ||
| 844 | 0x00098200, | ||
| 845 | 0x81d20000, | ||
| 846 | 0x00098200, | ||
| 847 | 0x920efff0, | ||
| 848 | 0x7e087214, | ||
| 849 | 0x814efffc, | ||
| 850 | 0x39600010, | ||
| 851 | 0x48000000, | ||
| 852 | 0x00050026, | ||
| 853 | 0x00060030, | ||
| 854 | 0x38b10000, | ||
| 855 | 0x00098200, | ||
| 856 | 0x00000000, | ||
| 857 | 0x38000000, | ||
| 858 | 0x00098200, | ||
| 859 | 0x54ea5d78, | ||
| 860 | 0x91650004, | ||
| 861 | 0x7c8e5214, | ||
| 862 | 0x90050000, | ||
| 863 | 0x48000000, | ||
| 864 | 0x00050001, | ||
| 865 | 0x00060031, | ||
| 866 | 0x38910000, | ||
| 867 | 0x00098200, | ||
| 868 | 0x38000000, | ||
| 869 | 0x00098200, | ||
| 870 | 0x91440004, | ||
| 871 | 0x38b10000, | ||
| 872 | 0x00098200, | ||
| 873 | 0x90040000, | ||
| 874 | 0x39000000, | ||
| 875 | 0x00098200, | ||
| 876 | 0x91650004, | ||
| 877 | 0x91050000, | ||
| 878 | 0x48000000, | ||
| 879 | 0x00050001, | ||
| 880 | 0x00060032, | ||
| 881 | 0x90010024, | ||
| 882 | 0xc8010020, | ||
| 883 | 0xfc00f028, | ||
| 884 | 0x54ea5d78, | ||
| 885 | 0x38b10000, | ||
| 886 | 0x00098200, | ||
| 887 | 0x7c8e5214, | ||
| 888 | 0xd8050000, | ||
| 889 | 0x48000000, | ||
| 890 | 0x00050001, | ||
| 891 | 0x00060033, | ||
| 892 | 0x54ea5d78, | ||
| 893 | 0x54eb9d78, | ||
| 894 | 0x7c8e5214, | ||
| 895 | 0x7cae5a14, | ||
| 896 | 0x0006000b, | ||
| 897 | 0x91d20000, | ||
| 898 | 0x00098200, | ||
| 899 | 0x7e439378, | ||
| 900 | 0x92010008, | ||
| 901 | 0x48000001, | ||
| 902 | 0x00030002, | ||
| 903 | 0x28030000, | ||
| 904 | 0x7c0ea4ae, | ||
| 905 | 0x41820000, | ||
| 906 | 0x00050803, | ||
| 907 | 0x80f00000, | ||
| 908 | 0x3a100004, | ||
| 909 | 0xd8030000, | ||
| 910 | 0x54e815ba, | ||
| 911 | 0x54ea5d78, | ||
| 912 | 0x54ec9b78, | ||
| 913 | 0x7c11402e, | ||
| 914 | 0x54f4dd78, | ||
| 915 | 0x54eb9d78, | ||
| 916 | 0x7c0903a6, | ||
| 917 | 0x4e800420, | ||
| 918 | 0x0006000d, | ||
| 919 | 0x210e0000, | ||
| 920 | 0x00098200, | ||
| 921 | 0x81d20000, | ||
| 922 | 0x00098200, | ||
| 923 | 0x920efff0, | ||
| 924 | 0x7e087214, | ||
| 925 | 0x814efffc, | ||
| 926 | 0x39600018, | ||
| 927 | 0xd80e0010, | ||
| 928 | 0x48000000, | ||
| 929 | 0x00050026, | ||
| 930 | 0x00060034, | ||
| 931 | 0x7e439378, | ||
| 932 | 0x3a10fffc, | ||
| 933 | 0x7c8ea214, | ||
| 934 | 0x92010008, | ||
| 935 | 0x7cae6214, | ||
| 936 | 0x91d20000, | ||
| 937 | 0x00098200, | ||
| 938 | 0x00000000, | ||
| 939 | 0x54e6063e, | ||
| 940 | 0x48000001, | ||
| 941 | 0x00030003, | ||
| 942 | 0x0006000d, | ||
| 943 | 0x28030001, | ||
| 944 | 0x41810000, | ||
| 945 | 0x00050835, | ||
| 946 | 0x20630000, | ||
| 947 | 0x0006000e, | ||
| 948 | 0x80f00000, | ||
| 949 | 0x3a100004, | ||
| 950 | 0x54e993ba, | ||
| 951 | 0x3d290000, | ||
| 952 | 0x00098200, | ||
| 953 | 0x7d291838, | ||
| 954 | 0x7e104a14, | ||
| 955 | 0x0006002b, | ||
| 956 | 0x80f00000, | ||
| 957 | 0x3a100004, | ||
| 958 | 0x54e815ba, | ||
| 959 | 0x54ea5d78, | ||
| 960 | 0x54ec9b78, | ||
| 961 | 0x7c11402e, | ||
| 962 | 0x54f4dd78, | ||
| 963 | 0x54eb9d78, | ||
| 964 | 0x7c0903a6, | ||
| 965 | 0x4e800420, | ||
| 966 | 0x00060036, | ||
| 967 | 0x80f0fffc, | ||
| 968 | 0xc8140000, | ||
| 969 | 0x54e8dd78, | ||
| 970 | 0x7c0e45ae, | ||
| 971 | 0x48000000, | ||
| 972 | 0x0005002b, | ||
| 973 | 0x00060037, | ||
| 974 | 0x80140000, | ||
| 975 | 0x20000000, | ||
| 976 | 0x00098200, | ||
| 977 | 0x7c631910, | ||
| 978 | 0x7c6318f8, | ||
| 979 | 0x48000000, | ||
| 980 | 0x0005000e, | ||
| 981 | 0x00060038, | ||
| 982 | 0x80140000, | ||
| 983 | 0x20000000, | ||
| 984 | 0x00098200, | ||
| 985 | 0x7c631910, | ||
| 986 | 0x48000000, | ||
| 987 | 0x0005000e, | ||
| 988 | 0x00060039, | ||
| 989 | 0x3a10fffc, | ||
| 990 | 0x91d20000, | ||
| 991 | 0x00098200, | ||
| 992 | 0x7e439378, | ||
| 993 | 0x92010008, | ||
| 994 | 0x48000001, | ||
| 995 | 0x00030004, | ||
| 996 | 0x48000000, | ||
| 997 | 0x0005000d, | ||
| 998 | 0x0006003a, | ||
| 999 | 0x7cae5214, | ||
| 1000 | 0x7ccf5a14, | ||
| 1001 | 0x48000000, | ||
| 1002 | 0x00050001, | ||
| 1003 | 0x0006003b, | ||
| 1004 | 0x7caf5a14, | ||
| 1005 | 0x7cce5214, | ||
| 1006 | 0x48000000, | ||
| 1007 | 0x00050001, | ||
| 1008 | 0x0006003c, | ||
| 1009 | 0x00000000, | ||
| 1010 | 0x7d856378, | ||
| 1011 | 0x7d866378, | ||
| 1012 | 0x48000000, | ||
| 1013 | 0x00050001, | ||
| 1014 | 0x0006003d, | ||
| 1015 | 0x7cae5214, | ||
| 1016 | 0x7cce5a14, | ||
| 1017 | 0x0006000b, | ||
| 1018 | 0x7c8ea214, | ||
| 1019 | 0x91d20000, | ||
| 1020 | 0x00098200, | ||
| 1021 | 0x7e439378, | ||
| 1022 | 0x92010008, | ||
| 1023 | 0x54e7063e, | ||
| 1024 | 0x48000001, | ||
| 1025 | 0x00030005, | ||
| 1026 | 0x28030000, | ||
| 1027 | 0x41820000, | ||
| 1028 | 0x0005082b, | ||
| 1029 | 0x00060035, | ||
| 1030 | 0x7d0e1850, | ||
| 1031 | 0x9203fff0, | ||
| 1032 | 0x7dc97378, | ||
| 1033 | 0x3a080000, | ||
| 1034 | 0x00098200, | ||
| 1035 | 0x7c6e1b78, | ||
| 1036 | 0x39600010, | ||
| 1037 | 0x48000000, | ||
| 1038 | 0x00050024, | ||
| 1039 | 0x0006003e, | ||
| 1040 | 0x00000000, | ||
| 1041 | 0x7c751b78, | ||
| 1042 | 0x00000000, | ||
| 1043 | 0x7d846378, | ||
| 1044 | 0x91d20000, | ||
| 1045 | 0x00098200, | ||
| 1046 | 0x7e439378, | ||
| 1047 | 0x92010008, | ||
| 1048 | 0x48000001, | ||
| 1049 | 0x00030006, | ||
| 1050 | 0x00000000, | ||
| 1051 | 0x28030000, | ||
| 1052 | 0x40820000, | ||
| 1053 | 0x00050835, | ||
| 1054 | 0x7ea3ab78, | ||
| 1055 | 0x48000000, | ||
| 1056 | 0x0005003f, | ||
| 1057 | 0x00000000, | ||
| 1058 | 0x48000000, | ||
| 1059 | 0x00050035, | ||
| 1060 | 0x00000000, | ||
| 1061 | 0x00060025, | ||
| 1062 | 0x7e439378, | ||
| 1063 | 0x91320000, | ||
| 1064 | 0x00098200, | ||
| 1065 | 0x388efff8, | ||
| 1066 | 0x92010008, | ||
| 1067 | 0x7cae5a14, | ||
| 1068 | 0x7d755b78, | ||
| 1069 | 0x48000001, | ||
| 1070 | 0x00030007, | ||
| 1071 | 0x814efffc, | ||
| 1072 | 0x39750008, | ||
| 1073 | 0x920efff8, | ||
| 1074 | 0x820a0000, | ||
| 1075 | 0x00098200, | ||
| 1076 | 0x80f00000, | ||
| 1077 | 0x3a100004, | ||
| 1078 | 0x54e815ba, | ||
| 1079 | 0x54f4dd78, | ||
| 1080 | 0x7c11402e, | ||
| 1081 | 0x7e947214, | ||
| 1082 | 0x7c0903a6, | ||
| 1083 | 0x4e800420, | ||
| 1084 | 0x00060040, | ||
| 1085 | 0x7e439378, | ||
| 1086 | 0x91d20000, | ||
| 1087 | 0x00098200, | ||
| 1088 | 0x3894fff8, | ||
| 1089 | 0x92010008, | ||
| 1090 | 0x7cb45a14, | ||
| 1091 | 0x7d755b78, | ||
| 1092 | 0x48000001, | ||
| 1093 | 0x00030007, | ||
| 1094 | 0x810efff8, | ||
| 1095 | 0x39750008, | ||
| 1096 | 0x8154fffc, | ||
| 1097 | 0x48000000, | ||
| 1098 | 0x00050041, | ||
| 1099 | 0x00060042, | ||
| 1100 | 0x7e439378, | ||
| 1101 | 0x91d20000, | ||
| 1102 | 0x00098200, | ||
| 1103 | 0x7e84a378, | ||
| 1104 | 0x92010008, | ||
| 1105 | 0x7cf53b78, | ||
| 1106 | 0x48000001, | ||
| 1107 | 0x00030008, | ||
| 1108 | 0x00000000, | ||
| 1109 | 0x56a0063e, | ||
| 1110 | 0x00000000, | ||
| 1111 | 0x56b4dd78, | ||
| 1112 | 0x00000000, | ||
| 1113 | 0x2c000000, | ||
| 1114 | 0x00098200, | ||
| 1115 | 0x00000000, | ||
| 1116 | 0x56ac9b78, | ||
| 1117 | 0x00000000, | ||
| 1118 | 0x41820000, | ||
| 1119 | 0x00070800, | ||
| 1120 | 0x00000000, | ||
| 1121 | 0x48000000, | ||
| 1122 | 0x00070000, | ||
| 1123 | 0x00060043, | ||
| 1124 | 0x280b0008, | ||
| 1125 | 0x80ae0000, | ||
| 1126 | 0x806e0004, | ||
| 1127 | 0x41800000, | ||
| 1128 | 0x00050844, | ||
| 1129 | 0x39000000, | ||
| 1130 | 0x00098200, | ||
| 1131 | 0x3a8efff8, | ||
| 1132 | 0x7c854040, | ||
| 1133 | 0x820efff8, | ||
| 1134 | 0x40840000, | ||
| 1135 | 0x00050844, | ||
| 1136 | 0x90b40000, | ||
| 1137 | 0x398b0008, | ||
| 1138 | 0x90740004, | ||
| 1139 | 0x41820000, | ||
| 1140 | 0x00050845, | ||
| 1141 | 0x39000008, | ||
| 1142 | 0x396bfff8, | ||
| 1143 | 0x0006000b, | ||
| 1144 | 0x7c085840, | ||
| 1145 | 0x7c0e44ae, | ||
| 1146 | 0x7c1445ae, | ||
| 1147 | 0x39080008, | ||
| 1148 | 0x40820000, | ||
| 1149 | 0x0005080b, | ||
| 1150 | 0x48000000, | ||
| 1151 | 0x00050045, | ||
| 1152 | 0x00060046, | ||
| 1153 | 0x280b0008, | ||
| 1154 | 0x806e0000, | ||
| 1155 | 0x41800000, | ||
| 1156 | 0x00050844, | ||
| 1157 | 0x7c161810, | ||
| 1158 | 0x7d231910, | ||
| 1159 | 0x7d280338, | ||
| 1160 | 0x39080000, | ||
| 1161 | 0x00098200, | ||
| 1162 | 0x55081800, | ||
| 1163 | 0x000900a1, | ||
| 1164 | 0x392a0000, | ||
| 1165 | 0x00098200, | ||
| 1166 | 0x7c2944ae, | ||
| 1167 | 0x48000000, | ||
| 1168 | 0x00050047, | ||
| 1169 | 0x00060048, | ||
| 1170 | 0x280b0008, | ||
| 1171 | 0x80ae0000, | ||
| 1172 | 0x806e0004, | ||
| 1173 | 0x41800000, | ||
| 1174 | 0x00050844, | ||
| 1175 | 0x2c050000, | ||
| 1176 | 0x00098200, | ||
| 1177 | 0x40820000, | ||
| 1178 | 0x00050806, | ||
| 1179 | 0x0006000b, | ||
| 1180 | 0x80630000, | ||
| 1181 | 0x00098200, | ||
| 1182 | 0x0006000c, | ||
| 1183 | 0x00000000, | ||
| 1184 | 0x38a00000, | ||
| 1185 | 0x00098200, | ||
| 1186 | 0x28030000, | ||
| 1187 | 0x81710000, | ||
| 1188 | 0x00098200, | ||
| 1189 | 0x41820000, | ||
| 1190 | 0x00050849, | ||
| 1191 | 0x80030000, | ||
| 1192 | 0x00098200, | ||
| 1193 | 0x38a00000, | ||
| 1194 | 0x00098200, | ||
| 1195 | 0x810b0000, | ||
| 1196 | 0x00098200, | ||
| 1197 | 0x81230000, | ||
| 1198 | 0x00098200, | ||
| 1199 | 0x7d080038, | ||
| 1200 | 0x55002800, | ||
| 1201 | 0x000900a1, | ||
| 1202 | 0x55081800, | ||
| 1203 | 0x000900a1, | ||
| 1204 | 0x7d080050, | ||
| 1205 | 0x7d294214, | ||
| 1206 | 0x0006000d, | ||
| 1207 | 0x80c90000, | ||
| 1208 | 0x00098200, | ||
| 1209 | 0x80090000, | ||
| 1210 | 0x00098200, | ||
| 1211 | 0x80890000, | ||
| 1212 | 0x00098200, | ||
| 1213 | 0x81090000, | ||
| 1214 | 0x00098200, | ||
| 1215 | 0x2c060000, | ||
| 1216 | 0x00098200, | ||
| 1217 | 0x40820000, | ||
| 1218 | 0x00050804, | ||
| 1219 | 0x7c005800, | ||
| 1220 | 0x41820000, | ||
| 1221 | 0x00050805, | ||
| 1222 | 0x0006000e, | ||
| 1223 | 0x81290000, | ||
| 1224 | 0x00098200, | ||
| 1225 | 0x28090000, | ||
| 1226 | 0x41820000, | ||
| 1227 | 0x00050849, | ||
| 1228 | 0x48000000, | ||
| 1229 | 0x0005000d, | ||
| 1230 | 0x0006000f, | ||
| 1231 | 0x00000000, | ||
| 1232 | 0x2c040000, | ||
| 1233 | 0x00098200, | ||
| 1234 | 0x41820000, | ||
| 1235 | 0x00050849, | ||
| 1236 | 0x7c852378, | ||
| 1237 | 0x7d034378, | ||
| 1238 | 0x48000000, | ||
| 1239 | 0x00050049, | ||
| 1240 | 0x00060010, | ||
| 1241 | 0x2c050000, | ||
| 1242 | 0x00098200, | ||
| 1243 | 0x41820000, | ||
| 1244 | 0x0005080b, | ||
| 1245 | 0x7c162810, | ||
| 1246 | 0x7d252910, | ||
| 1247 | 0x7d280338, | ||
| 1248 | 0x39080000, | ||
| 1249 | 0x00098200, | ||
| 1250 | 0x55081000, | ||
| 1251 | 0x000900a1, | ||
| 1252 | 0x39310000, | ||
| 1253 | 0x00098200, | ||
| 1254 | 0x7c69402e, | ||
| 1255 | 0x48000000, | ||
| 1256 | 0x0005000c, | ||
| 1257 | 0x0006004a, | ||
| 1258 | 0x280b0010, | ||
| 1259 | 0x80ae0000, | ||
| 1260 | 0x80ce0008, | ||
| 1261 | 0x806e0004, | ||
| 1262 | 0x808e000c, | ||
| 1263 | 0x41800000, | ||
| 1264 | 0x00050844, | ||
| 1265 | 0x2c050000, | ||
| 1266 | 0x00098200, | ||
| 1267 | 0x40820000, | ||
| 1268 | 0x00050844, | ||
| 1269 | 0x81030000, | ||
| 1270 | 0x00098200, | ||
| 1271 | 0x2c060000, | ||
| 1272 | 0x00098200, | ||
| 1273 | 0x40820000, | ||
| 1274 | 0x00050844, | ||
| 1275 | 0x28080000, | ||
| 1276 | 0x88c30000, | ||
| 1277 | 0x00098200, | ||
| 1278 | 0x40820000, | ||
| 1279 | 0x00050844, | ||
| 1280 | 0x70c00000, | ||
| 1281 | 0x00090200, | ||
| 1282 | 0x90830000, | ||
| 1283 | 0x00098200, | ||
| 1284 | 0x41820000, | ||
| 1285 | 0x00050849, | ||
| 1286 | 0x00000000, | ||
| 1287 | 0x80110000, | ||
| 1288 | 0x00098200, | ||
| 1289 | 0x54c607b8, | ||
| 1290 | 0x90710000, | ||
| 1291 | 0x00098200, | ||
| 1292 | 0x98c30000, | ||
| 1293 | 0x00098200, | ||
| 1294 | 0x90030000, | ||
| 1295 | 0x00098200, | ||
| 1296 | 0x48000000, | ||
| 1297 | 0x00050049, | ||
| 1298 | 0x0006004b, | ||
| 1299 | 0x280b0008, | ||
| 1300 | 0x80ce0000, | ||
| 1301 | 0x808e0004, | ||
| 1302 | 0x41800000, | ||
| 1303 | 0x00050844, | ||
| 1304 | 0x2c060000, | ||
| 1305 | 0x00098200, | ||
| 1306 | 0x40820000, | ||
| 1307 | 0x00050844, | ||
| 1308 | 0x38ae0008, | ||
| 1309 | 0x7e439378, | ||
| 1310 | 0x48000001, | ||
| 1311 | 0x00030009, | ||
| 1312 | 0xc8230000, | ||
| 1313 | 0x48000000, | ||
| 1314 | 0x00050047, | ||
| 1315 | 0x0006004c, | ||
| 1316 | 0x280b0008, | ||
| 1317 | 0x806e0000, | ||
| 1318 | 0xc82e0000, | ||
| 1319 | 0x40820000, | ||
| 1320 | 0x00050844, | ||
| 1321 | 0x7c03b040, | ||
| 1322 | 0x41810000, | ||
| 1323 | 0x00050844, | ||
| 1324 | 0x48000000, | ||
| 1325 | 0x00050047, | ||
| 1326 | 0x0006004d, | ||
| 1327 | 0x280b0008, | ||
| 1328 | 0x80ae0000, | ||
| 1329 | 0x806e0004, | ||
| 1330 | 0x41800000, | ||
| 1331 | 0x00050844, | ||
| 1332 | 0x2c050000, | ||
| 1333 | 0x00098200, | ||
| 1334 | 0x41820000, | ||
| 1335 | 0x00050849, | ||
| 1336 | 0x80110000, | ||
| 1337 | 0x00098200, | ||
| 1338 | 0x7c05b040, | ||
| 1339 | 0x28800000, | ||
| 1340 | 0x91d20000, | ||
| 1341 | 0x00098200, | ||
| 1342 | 0x4c413342, | ||
| 1343 | 0x92010008, | ||
| 1344 | 0x41820000, | ||
| 1345 | 0x00050844, | ||
| 1346 | 0x00000000, | ||
| 1347 | 0x80110000, | ||
| 1348 | 0x00098200, | ||
| 1349 | 0x81110000, | ||
| 1350 | 0x00098200, | ||
| 1351 | 0x7c004040, | ||
| 1352 | 0x40800001, | ||
| 1353 | 0x0005084e, | ||
| 1354 | 0x7e439378, | ||
| 1355 | 0x7dc47378, | ||
| 1356 | 0x48000001, | ||
| 1357 | 0x0003000a, | ||
| 1358 | 0x38a00000, | ||
| 1359 | 0x00098200, | ||
| 1360 | 0x48000000, | ||
| 1361 | 0x00050049, | ||
| 1362 | 0x0006004f, | ||
| 1363 | 0x280b0008, | ||
| 1364 | 0x806e0000, | ||
| 1365 | 0x808e0004, | ||
| 1366 | 0x41800000, | ||
| 1367 | 0x00050844, | ||
| 1368 | 0x7eee592e, | ||
| 1369 | 0x2c030000, | ||
| 1370 | 0x00098200, | ||
| 1371 | 0x820efff8, | ||
| 1372 | 0x40820000, | ||
| 1373 | 0x00050844, | ||
| 1374 | 0x91d20000, | ||
| 1375 | 0x00098200, | ||
| 1376 | 0x7e439378, | ||
| 1377 | 0x91d20000, | ||
| 1378 | 0x00098200, | ||
| 1379 | 0x38ae0008, | ||
| 1380 | 0x92010008, | ||
| 1381 | 0x48000001, | ||
| 1382 | 0x0003000b, | ||
| 1383 | 0x28030000, | ||
| 1384 | 0x38a00000, | ||
| 1385 | 0x00098200, | ||
| 1386 | 0x41820000, | ||
| 1387 | 0x00050849, | ||
| 1388 | 0xc80e0008, | ||
| 1389 | 0x3a8efff8, | ||
| 1390 | 0xc82e0010, | ||
| 1391 | 0xd8140000, | ||
| 1392 | 0x39800000, | ||
| 1393 | 0x00098200, | ||
| 1394 | 0xd8340008, | ||
| 1395 | 0x48000000, | ||
| 1396 | 0x00050045, | ||
| 1397 | 0x00060050, | ||
| 1398 | 0x280b0008, | ||
| 1399 | 0x80ae0000, | ||
| 1400 | 0x806e0004, | ||
| 1401 | 0x41800000, | ||
| 1402 | 0x00050844, | ||
| 1403 | 0x2c050000, | ||
| 1404 | 0x00098200, | ||
| 1405 | 0x820efff8, | ||
| 1406 | 0x40820000, | ||
| 1407 | 0x00050844, | ||
| 1408 | 0x00000000, | ||
| 1409 | 0x81230000, | ||
| 1410 | 0x00098200, | ||
| 1411 | 0xc80a0000, | ||
| 1412 | 0x00098200, | ||
| 1413 | 0x28090000, | ||
| 1414 | 0x3a8efff8, | ||
| 1415 | 0x40820000, | ||
| 1416 | 0x00050844, | ||
| 1417 | 0x00000000, | ||
| 1418 | 0xc80a0000, | ||
| 1419 | 0x00098200, | ||
| 1420 | 0x3a8efff8, | ||
| 1421 | 0x00000000, | ||
| 1422 | 0x92ee0008, | ||
| 1423 | 0x39800000, | ||
| 1424 | 0x00098200, | ||
| 1425 | 0xd8140000, | ||
| 1426 | 0x48000000, | ||
| 1427 | 0x00050045, | ||
| 1428 | 0x00060051, | ||
| 1429 | 0x280b0010, | ||
| 1430 | 0x80ae0000, | ||
| 1431 | 0x806e0004, | ||
| 1432 | 0x80ce0008, | ||
| 1433 | 0xc84e0008, | ||
| 1434 | 0x41800000, | ||
| 1435 | 0x00050844, | ||
| 1436 | 0x2c050000, | ||
| 1437 | 0x00098200, | ||
| 1438 | 0x7c86b040, | ||
| 1439 | 0x820efff8, | ||
| 1440 | 0x3c003ff0, | ||
| 1441 | 0x9301000c, | ||
| 1442 | 0x40820000, | ||
| 1443 | 0x00050844, | ||
| 1444 | 0x90010008, | ||
| 1445 | 0x40840000, | ||
| 1446 | 0x00050844, | ||
| 1447 | 0xc8210008, | ||
| 1448 | 0xfc00101e, | ||
| 1449 | 0xd8010008, | ||
| 1450 | 0x8121000c, | ||
| 1451 | 0x80030000, | ||
| 1452 | 0x00098200, | ||
| 1453 | 0x81030000, | ||
| 1454 | 0x00098200, | ||
| 1455 | 0xfc42082a, | ||
| 1456 | 0x39290001, | ||
| 1457 | 0x3a8efff8, | ||
| 1458 | 0x7c004840, | ||
| 1459 | 0x55261800, | ||
| 1460 | 0x000900a1, | ||
| 1461 | 0xd8540000, | ||
| 1462 | 0x40810000, | ||
| 1463 | 0x00050802, | ||
| 1464 | 0x7d28302e, | ||
| 1465 | 0x7c0834ae, | ||
| 1466 | 0x0006000b, | ||
| 1467 | 0x2c090000, | ||
| 1468 | 0x00098200, | ||
| 1469 | 0x39800000, | ||
| 1470 | 0x00098200, | ||
| 1471 | 0x41820000, | ||
| 1472 | 0x00050845, | ||
| 1473 | 0x39800000, | ||
| 1474 | 0x00098200, | ||
| 1475 | 0xd8140008, | ||
| 1476 | 0x48000000, | ||
| 1477 | 0x00050045, | ||
| 1478 | 0x0006000c, | ||
| 1479 | 0x80030000, | ||
| 1480 | 0x00098200, | ||
| 1481 | 0x28000000, | ||
| 1482 | 0x39800000, | ||
| 1483 | 0x00098200, | ||
| 1484 | 0x41820000, | ||
| 1485 | 0x00050845, | ||
| 1486 | 0x7d244b78, | ||
| 1487 | 0x48000001, | ||
| 1488 | 0x0003000c, | ||
| 1489 | 0x00000000, | ||
| 1490 | 0x28030000, | ||
| 1491 | 0x39800000, | ||
| 1492 | 0x00098200, | ||
| 1493 | 0x41820000, | ||
| 1494 | 0x00050845, | ||
| 1495 | 0x81230000, | ||
| 1496 | 0xc8030000, | ||
| 1497 | 0x48000000, | ||
| 1498 | 0x0005000b, | ||
| 1499 | 0x00060052, | ||
| 1500 | 0x280b0008, | ||
| 1501 | 0x80ae0000, | ||
| 1502 | 0x806e0004, | ||
| 1503 | 0x41800000, | ||
| 1504 | 0x00050844, | ||
| 1505 | 0x2c050000, | ||
| 1506 | 0x00098200, | ||
| 1507 | 0x820efff8, | ||
| 1508 | 0x40820000, | ||
| 1509 | 0x00050844, | ||
| 1510 | 0x00000000, | ||
| 1511 | 0x81230000, | ||
| 1512 | 0x00098200, | ||
| 1513 | 0xc80a0000, | ||
| 1514 | 0x00098200, | ||
| 1515 | 0x28090000, | ||
| 1516 | 0x3a8efff8, | ||
| 1517 | 0x40820000, | ||
| 1518 | 0x00050844, | ||
| 1519 | 0x00000000, | ||
| 1520 | 0xc80a0000, | ||
| 1521 | 0x00098200, | ||
| 1522 | 0x3a8efff8, | ||
| 1523 | 0x00000000, | ||
| 1524 | 0x930e0008, | ||
| 1525 | 0x930e000c, | ||
| 1526 | 0x39800000, | ||
| 1527 | 0x00098200, | ||
| 1528 | 0xd8140000, | ||
| 1529 | 0x48000000, | ||
| 1530 | 0x00050045, | ||
| 1531 | 0x00060053, | ||
| 1532 | 0x280b0008, | ||
| 1533 | 0x88d10000, | ||
| 1534 | 0x00098200, | ||
| 1535 | 0x41800000, | ||
| 1536 | 0x00050844, | ||
| 1537 | 0x7dc97378, | ||
| 1538 | 0x39ce0008, | ||
| 1539 | 0x54c607fe, | ||
| 1540 | 0x000900ab, | ||
| 1541 | 0x396bfff8, | ||
| 1542 | 0x3a060000, | ||
| 1543 | 0x00098200, | ||
| 1544 | 0x48000000, | ||
| 1545 | 0x00050024, | ||
| 1546 | 0x00060054, | ||
| 1547 | 0x280b0010, | ||
| 1548 | 0x80ce0008, | ||
| 1549 | 0xc84e0008, | ||
| 1550 | 0x80ae0000, | ||
| 1551 | 0xc82e0000, | ||
| 1552 | 0x41800000, | ||
| 1553 | 0x00050844, | ||
| 1554 | 0x89110000, | ||
| 1555 | 0x00098200, | ||
| 1556 | 0x7dc97378, | ||
| 1557 | 0x2c060000, | ||
| 1558 | 0x00098200, | ||
| 1559 | 0x40820000, | ||
| 1560 | 0x00050844, | ||
| 1561 | 0x39ce0010, | ||
| 1562 | 0x550807fe, | ||
| 1563 | 0x000900ab, | ||
| 1564 | 0xd8490000, | ||
| 1565 | 0x396bfff0, | ||
| 1566 | 0xd8290008, | ||
| 1567 | 0x3a080000, | ||
| 1568 | 0x00098200, | ||
| 1569 | 0x48000000, | ||
| 1570 | 0x00050024, | ||
| 1571 | 0x00060055, | ||
| 1572 | 0x280b0008, | ||
| 1573 | 0x80ae0000, | ||
| 1574 | 0x806e0004, | ||
| 1575 | 0x41800000, | ||
| 1576 | 0x00050844, | ||
| 1577 | 0x2c050000, | ||
| 1578 | 0x00098200, | ||
| 1579 | 0x40820000, | ||
| 1580 | 0x00050844, | ||
| 1581 | 0x88030000, | ||
| 1582 | 0x00098200, | ||
| 1583 | 0x81030000, | ||
| 1584 | 0x00098200, | ||
| 1585 | 0x00000000, | ||
| 1586 | 0x80830000, | ||
| 1587 | 0x00098200, | ||
| 1588 | 0x28000000, | ||
| 1589 | 0x00090200, | ||
| 1590 | 0x81230000, | ||
| 1591 | 0x00098200, | ||
| 1592 | 0x28880000, | ||
| 1593 | 0x80030000, | ||
| 1594 | 0x00098200, | ||
| 1595 | 0x7f844840, | ||
| 1596 | 0x820efff8, | ||
| 1597 | 0x4f013342, | ||
| 1598 | 0x7d245a14, | ||
| 1599 | 0x4f3e1102, | ||
| 1600 | 0x7c890040, | ||
| 1601 | 0x4f18cb82, | ||
| 1602 | 0x92010008, | ||
| 1603 | 0x4f182b82, | ||
| 1604 | 0x91d20000, | ||
| 1605 | 0x00098200, | ||
| 1606 | 0x41980000, | ||
| 1607 | 0x00050844, | ||
| 1608 | 0x0006000b, | ||
| 1609 | 0x39ce0008, | ||
| 1610 | 0x396bfff8, | ||
| 1611 | 0x3929fff8, | ||
| 1612 | 0x91230000, | ||
| 1613 | 0x00098200, | ||
| 1614 | 0x39000000, | ||
| 1615 | 0x91d20000, | ||
| 1616 | 0x00098200, | ||
| 1617 | 0x0006000c, | ||
| 1618 | 0x7c085800, | ||
| 1619 | 0x7c0e44ae, | ||
| 1620 | 0x41820000, | ||
| 1621 | 0x00050803, | ||
| 1622 | 0x7c0445ae, | ||
| 1623 | 0x39080008, | ||
| 1624 | 0x48000000, | ||
| 1625 | 0x0005000c, | ||
| 1626 | 0x0006000d, | ||
| 1627 | 0x38a00000, | ||
| 1628 | 0x7c751b78, | ||
| 1629 | 0x38c00000, | ||
| 1630 | 0x48000001, | ||
| 1631 | 0x00050021, | ||
| 1632 | 0x0006000e, | ||
| 1633 | 0x81350000, | ||
| 1634 | 0x00098200, | ||
| 1635 | 0x28030000, | ||
| 1636 | 0x00090200, | ||
| 1637 | 0x80d50000, | ||
| 1638 | 0x00098200, | ||
| 1639 | 0x38000000, | ||
| 1640 | 0x00098200, | ||
| 1641 | 0x81d20000, | ||
| 1642 | 0x00098200, | ||
| 1643 | 0x90110000, | ||
| 1644 | 0x00098200, | ||
| 1645 | 0x41810000, | ||
| 1646 | 0x00050808, | ||
| 1647 | 0x00000000, | ||
| 1648 | 0x7d893050, | ||
| 1649 | 0x80120000, | ||
| 1650 | 0x00098200, | ||
| 1651 | 0x280c0000, | ||
| 1652 | 0x7d0e6214, | ||
| 1653 | 0x41820000, | ||
| 1654 | 0x00050806, | ||
| 1655 | 0x7c080040, | ||
| 1656 | 0x39000000, | ||
| 1657 | 0x41810000, | ||
| 1658 | 0x00050809, | ||
| 1659 | 0x38ccfff8, | ||
| 1660 | 0x91350000, | ||
| 1661 | 0x00098200, | ||
| 1662 | 0x0006000f, | ||
| 1663 | 0x7c083040, | ||
| 1664 | 0x7c0944ae, | ||
| 1665 | 0x7c0e45ae, | ||
| 1666 | 0x39080008, | ||
| 1667 | 0x40820000, | ||
| 1668 | 0x0005080f, | ||
| 1669 | 0x00060010, | ||
| 1670 | 0x72000000, | ||
| 1671 | 0x00090200, | ||
| 1672 | 0x39000000, | ||
| 1673 | 0x00098200, | ||
| 1674 | 0x3a8efff8, | ||
| 1675 | 0x910efff8, | ||
| 1676 | 0x398c0010, | ||
| 1677 | 0x00060011, | ||
| 1678 | 0x92010008, | ||
| 1679 | 0x7d936378, | ||
| 1680 | 0x41820000, | ||
| 1681 | 0x00050817, | ||
| 1682 | 0x48000000, | ||
| 1683 | 0x00050018, | ||
| 1684 | 0x00060012, | ||
| 1685 | 0x72000000, | ||
| 1686 | 0x00090200, | ||
| 1687 | 0x38c6fff8, | ||
| 1688 | 0x39000000, | ||
| 1689 | 0x00098200, | ||
| 1690 | 0xc8060000, | ||
| 1691 | 0x90d50000, | ||
| 1692 | 0x00098200, | ||
| 1693 | 0x39800000, | ||
| 1694 | 0x00098200, | ||
| 1695 | 0x910efff8, | ||
| 1696 | 0x3a8efff8, | ||
| 1697 | 0xd80e0000, | ||
| 1698 | 0x48000000, | ||
| 1699 | 0x00050011, | ||
| 1700 | 0x00060013, | ||
| 1701 | 0x7e439378, | ||
| 1702 | 0x558400fe, | ||
| 1703 | 0x000900ab, | ||
| 1704 | 0x48000001, | ||
| 1705 | 0x00030000, | ||
| 1706 | 0x38600000, | ||
| 1707 | 0x48000000, | ||
| 1708 | 0x0005000e, | ||
| 1709 | 0x00060056, | ||
| 1710 | 0x00000000, | ||
| 1711 | 0x806a0000, | ||
| 1712 | 0x00098200, | ||
| 1713 | 0x88030000, | ||
| 1714 | 0x00098200, | ||
| 1715 | 0x81030000, | ||
| 1716 | 0x00098200, | ||
| 1717 | 0x80830000, | ||
| 1718 | 0x00098200, | ||
| 1719 | 0x28000000, | ||
| 1720 | 0x00090200, | ||
| 1721 | 0x81230000, | ||
| 1722 | 0x00098200, | ||
| 1723 | 0x28880000, | ||
| 1724 | 0x80030000, | ||
| 1725 | 0x00098200, | ||
| 1726 | 0x7f844840, | ||
| 1727 | 0x820efff8, | ||
| 1728 | 0x4f013342, | ||
| 1729 | 0x7d245a14, | ||
| 1730 | 0x4f3e1102, | ||
| 1731 | 0x7c890040, | ||
| 1732 | 0x4f18cb82, | ||
| 1733 | 0x92010008, | ||
| 1734 | 0x4f182b82, | ||
| 1735 | 0x91d20000, | ||
| 1736 | 0x00098200, | ||
| 1737 | 0x41980000, | ||
| 1738 | 0x00050844, | ||
| 1739 | 0x0006000b, | ||
| 1740 | 0x91230000, | ||
| 1741 | 0x00098200, | ||
| 1742 | 0x39000000, | ||
| 1743 | 0x91d20000, | ||
| 1744 | 0x00098200, | ||
| 1745 | 0x0006000c, | ||
| 1746 | 0x7c085800, | ||
| 1747 | 0x7c0e44ae, | ||
| 1748 | 0x41820000, | ||
| 1749 | 0x00050803, | ||
| 1750 | 0x7c0445ae, | ||
| 1751 | 0x39080008, | ||
| 1752 | 0x48000000, | ||
| 1753 | 0x0005000c, | ||
| 1754 | 0x0006000d, | ||
| 1755 | 0x38a00000, | ||
| 1756 | 0x7c751b78, | ||
| 1757 | 0x38c00000, | ||
| 1758 | 0x48000001, | ||
| 1759 | 0x00050021, | ||
| 1760 | 0x0006000e, | ||
| 1761 | 0x81350000, | ||
| 1762 | 0x00098200, | ||
| 1763 | 0x28030000, | ||
| 1764 | 0x00090200, | ||
| 1765 | 0x80d50000, | ||
| 1766 | 0x00098200, | ||
| 1767 | 0x38000000, | ||
| 1768 | 0x00098200, | ||
| 1769 | 0x00000000, | ||
| 1770 | 0x81d20000, | ||
| 1771 | 0x00098200, | ||
| 1772 | 0x90110000, | ||
| 1773 | 0x00098200, | ||
| 1774 | 0x41810000, | ||
| 1775 | 0x00050808, | ||
| 1776 | 0x7d893050, | ||
| 1777 | 0x80120000, | ||
| 1778 | 0x00098200, | ||
| 1779 | 0x280c0000, | ||
| 1780 | 0x7d0e6214, | ||
| 1781 | 0x41820000, | ||
| 1782 | 0x00050806, | ||
| 1783 | 0x7c080040, | ||
| 1784 | 0x39000000, | ||
| 1785 | 0x41810000, | ||
| 1786 | 0x00050809, | ||
| 1787 | 0x38ccfff8, | ||
| 1788 | 0x91350000, | ||
| 1789 | 0x00098200, | ||
| 1790 | 0x0006000f, | ||
| 1791 | 0x7c083040, | ||
| 1792 | 0x7c0944ae, | ||
| 1793 | 0x7c0e45ae, | ||
| 1794 | 0x39080008, | ||
| 1795 | 0x40820000, | ||
| 1796 | 0x0005080f, | ||
| 1797 | 0x00060010, | ||
| 1798 | 0x72000000, | ||
| 1799 | 0x00090200, | ||
| 1800 | 0x7dd47378, | ||
| 1801 | 0x398c0008, | ||
| 1802 | 0x00060011, | ||
| 1803 | 0x92010008, | ||
| 1804 | 0x7d936378, | ||
| 1805 | 0x41820000, | ||
| 1806 | 0x00050817, | ||
| 1807 | 0x48000000, | ||
| 1808 | 0x00050018, | ||
| 1809 | 0x00060012, | ||
| 1810 | 0x7e439378, | ||
| 1811 | 0x7ea4ab78, | ||
| 1812 | 0x48000001, | ||
| 1813 | 0x0003000d, | ||
| 1814 | 0x00060013, | ||
| 1815 | 0x7e439378, | ||
| 1816 | 0x558400fe, | ||
| 1817 | 0x000900ab, | ||
| 1818 | 0x48000001, | ||
| 1819 | 0x00030000, | ||
| 1820 | 0x38600000, | ||
| 1821 | 0x48000000, | ||
| 1822 | 0x0005000e, | ||
| 1823 | 0x00060057, | ||
| 1824 | 0x80120000, | ||
| 1825 | 0x00098200, | ||
| 1826 | 0x00000000, | ||
| 1827 | 0x7d0e5a14, | ||
| 1828 | 0x91d20000, | ||
| 1829 | 0x00098200, | ||
| 1830 | 0x70000000, | ||
| 1831 | 0x00090200, | ||
| 1832 | 0x91120000, | ||
| 1833 | 0x00098200, | ||
| 1834 | 0x38600000, | ||
| 1835 | 0x00098200, | ||
| 1836 | 0x41820000, | ||
| 1837 | 0x00050844, | ||
| 1838 | 0x93120000, | ||
| 1839 | 0x00098200, | ||
| 1840 | 0x98720000, | ||
| 1841 | 0x00098200, | ||
| 1842 | 0x48000000, | ||
| 1843 | 0x0005001a, | ||
| 1844 | 0x00060058, | ||
| 1845 | 0x280b0008, | ||
| 1846 | 0x80ae0000, | ||
| 1847 | 0x806e0004, | ||
| 1848 | 0x41800000, | ||
| 1849 | 0x00050844, | ||
| 1850 | 0x7c05b040, | ||
| 1851 | 0x40800000, | ||
| 1852 | 0x00050844, | ||
| 1853 | 0x54a5007e, | ||
| 1854 | 0x00060049, | ||
| 1855 | 0x820efff8, | ||
| 1856 | 0x90aefff8, | ||
| 1857 | 0x3a8efff8, | ||
| 1858 | 0x906efffc, | ||
| 1859 | 0x00060059, | ||
| 1860 | 0x39800000, | ||
| 1861 | 0x00098200, | ||
| 1862 | 0x00060045, | ||
| 1863 | 0x72000000, | ||
| 1864 | 0x00090200, | ||
| 1865 | 0x7d936378, | ||
| 1866 | 0x40820000, | ||
| 1867 | 0x00050818, | ||
| 1868 | 0x80f0fffc, | ||
| 1869 | 0x54ea5d78, | ||
| 1870 | 0x0006000f, | ||
| 1871 | 0x7c0a6040, | ||
| 1872 | 0x54e0dd78, | ||
| 1873 | 0x41810000, | ||
| 1874 | 0x00050806, | ||
| 1875 | 0x80f00000, | ||
| 1876 | 0x3a100004, | ||
| 1877 | 0x7dc0a050, | ||
| 1878 | 0x54e815ba, | ||
| 1879 | 0x54ea5d78, | ||
| 1880 | 0x54ec9b78, | ||
| 1881 | 0x7c11402e, | ||
| 1882 | 0x54f4dd78, | ||
| 1883 | 0x54eb9d78, | ||
| 1884 | 0x7c0903a6, | ||
| 1885 | 0x4e800420, | ||
| 1886 | 0x00060010, | ||
| 1887 | 0x390cfff8, | ||
| 1888 | 0x398c0008, | ||
| 1889 | 0x7ef4412e, | ||
| 1890 | 0x48000000, | ||
| 1891 | 0x0005000f, | ||
| 1892 | 0x0006005a, | ||
| 1893 | 0x00000000, | ||
| 1894 | 0x280b0008, | ||
| 1895 | 0x80ae0000, | ||
| 1896 | 0xc82e0000, | ||
| 1897 | 0x41800000, | ||
| 1898 | 0x00050844, | ||
| 1899 | 0x7c05b040, | ||
| 1900 | 0x40800000, | ||
| 1901 | 0x00050844, | ||
| 1902 | 0x48000001, | ||
| 1903 | 0x0003000e, | ||
| 1904 | 0x48000000, | ||
| 1905 | 0x00050047, | ||
| 1906 | 0x0006005b, | ||
| 1907 | 0x280b0008, | ||
| 1908 | 0x80ae0000, | ||
| 1909 | 0xc82e0000, | ||
| 1910 | 0x41800000, | ||
| 1911 | 0x00050844, | ||
| 1912 | 0x7c05b040, | ||
| 1913 | 0x40800000, | ||
| 1914 | 0x00050844, | ||
| 1915 | 0x48000001, | ||
| 1916 | 0x0003000f, | ||
| 1917 | 0x48000000, | ||
| 1918 | 0x00050047, | ||
| 1919 | 0x0006005c, | ||
| 1920 | 0x280b0008, | ||
| 1921 | 0x80ae0000, | ||
| 1922 | 0xc82e0000, | ||
| 1923 | 0x41800000, | ||
| 1924 | 0x00050844, | ||
| 1925 | 0x7c05b040, | ||
| 1926 | 0x40800000, | ||
| 1927 | 0x00050844, | ||
| 1928 | 0x48000001, | ||
| 1929 | 0x00030010, | ||
| 1930 | 0x48000000, | ||
| 1931 | 0x00050047, | ||
| 1932 | 0x0006005d, | ||
| 1933 | 0x280b0008, | ||
| 1934 | 0x80ae0000, | ||
| 1935 | 0xc82e0000, | ||
| 1936 | 0x41800000, | ||
| 1937 | 0x00050844, | ||
| 1938 | 0x7c05b040, | ||
| 1939 | 0x40800000, | ||
| 1940 | 0x00050844, | ||
| 1941 | 0x48000001, | ||
| 1942 | 0x00030011, | ||
| 1943 | 0x48000000, | ||
| 1944 | 0x00050047, | ||
| 1945 | 0x0006005e, | ||
| 1946 | 0x280b0008, | ||
| 1947 | 0x80ae0000, | ||
| 1948 | 0xc82e0000, | ||
| 1949 | 0x41800000, | ||
| 1950 | 0x00050844, | ||
| 1951 | 0x7c05b040, | ||
| 1952 | 0x40800000, | ||
| 1953 | 0x00050844, | ||
| 1954 | 0x00000000, | ||
| 1955 | 0x48000001, | ||
| 1956 | 0x00030012, | ||
| 1957 | 0x48000000, | ||
| 1958 | 0x00050047, | ||
| 1959 | 0x0006005f, | ||
| 1960 | 0x280b0008, | ||
| 1961 | 0x80ae0000, | ||
| 1962 | 0xc82e0000, | ||
| 1963 | 0x41800000, | ||
| 1964 | 0x00050844, | ||
| 1965 | 0x7c05b040, | ||
| 1966 | 0x40800000, | ||
| 1967 | 0x00050844, | ||
| 1968 | 0x48000001, | ||
| 1969 | 0x00030013, | ||
| 1970 | 0x48000000, | ||
| 1971 | 0x00050047, | ||
| 1972 | 0x00060060, | ||
| 1973 | 0x280b0008, | ||
| 1974 | 0x80ae0000, | ||
| 1975 | 0xc82e0000, | ||
| 1976 | 0x41800000, | ||
| 1977 | 0x00050844, | ||
| 1978 | 0x7c05b040, | ||
| 1979 | 0x40800000, | ||
| 1980 | 0x00050844, | ||
| 1981 | 0x48000001, | ||
| 1982 | 0x00030014, | ||
| 1983 | 0x48000000, | ||
| 1984 | 0x00050047, | ||
| 1985 | 0x00060061, | ||
| 1986 | 0x280b0008, | ||
| 1987 | 0x80ae0000, | ||
| 1988 | 0xc82e0000, | ||
| 1989 | 0x41800000, | ||
| 1990 | 0x00050844, | ||
| 1991 | 0x7c05b040, | ||
| 1992 | 0x40800000, | ||
| 1993 | 0x00050844, | ||
| 1994 | 0x48000001, | ||
| 1995 | 0x00030015, | ||
| 1996 | 0x48000000, | ||
| 1997 | 0x00050047, | ||
| 1998 | 0x00060062, | ||
| 1999 | 0x280b0008, | ||
| 2000 | 0x80ae0000, | ||
| 2001 | 0xc82e0000, | ||
| 2002 | 0x41800000, | ||
| 2003 | 0x00050844, | ||
| 2004 | 0x7c05b040, | ||
| 2005 | 0x40800000, | ||
| 2006 | 0x00050844, | ||
| 2007 | 0x48000001, | ||
| 2008 | 0x00030016, | ||
| 2009 | 0x48000000, | ||
| 2010 | 0x00050047, | ||
| 2011 | 0x00060063, | ||
| 2012 | 0x00000000, | ||
| 2013 | 0x280b0008, | ||
| 2014 | 0x80ae0000, | ||
| 2015 | 0xc82e0000, | ||
| 2016 | 0x41800000, | ||
| 2017 | 0x00050844, | ||
| 2018 | 0x7c05b040, | ||
| 2019 | 0x40800000, | ||
| 2020 | 0x00050844, | ||
| 2021 | 0x48000001, | ||
| 2022 | 0x00030017, | ||
| 2023 | 0x48000000, | ||
| 2024 | 0x00050047, | ||
| 2025 | 0x00060064, | ||
| 2026 | 0x280b0008, | ||
| 2027 | 0x80ae0000, | ||
| 2028 | 0xc82e0000, | ||
| 2029 | 0x41800000, | ||
| 2030 | 0x00050844, | ||
| 2031 | 0x7c05b040, | ||
| 2032 | 0x40800000, | ||
| 2033 | 0x00050844, | ||
| 2034 | 0x48000001, | ||
| 2035 | 0x00030018, | ||
| 2036 | 0x48000000, | ||
| 2037 | 0x00050047, | ||
| 2038 | 0x00060065, | ||
| 2039 | 0x280b0008, | ||
| 2040 | 0x80ae0000, | ||
| 2041 | 0xc82e0000, | ||
| 2042 | 0x41800000, | ||
| 2043 | 0x00050844, | ||
| 2044 | 0x7c05b040, | ||
| 2045 | 0x40800000, | ||
| 2046 | 0x00050844, | ||
| 2047 | 0x48000001, | ||
| 2048 | 0x00030019, | ||
| 2049 | 0x48000000, | ||
| 2050 | 0x00050047, | ||
| 2051 | 0x00060066, | ||
| 2052 | 0x280b0008, | ||
| 2053 | 0x80ae0000, | ||
| 2054 | 0xc82e0000, | ||
| 2055 | 0x41800000, | ||
| 2056 | 0x00050844, | ||
| 2057 | 0x7c05b040, | ||
| 2058 | 0x40800000, | ||
| 2059 | 0x00050844, | ||
| 2060 | 0x48000001, | ||
| 2061 | 0x0003001a, | ||
| 2062 | 0x48000000, | ||
| 2063 | 0x00050047, | ||
| 2064 | 0x00060067, | ||
| 2065 | 0x280b0008, | ||
| 2066 | 0x80ae0000, | ||
| 2067 | 0xc82e0000, | ||
| 2068 | 0x41800000, | ||
| 2069 | 0x00050844, | ||
| 2070 | 0x7c05b040, | ||
| 2071 | 0x40800000, | ||
| 2072 | 0x00050844, | ||
| 2073 | 0x00000000, | ||
| 2074 | 0x48000001, | ||
| 2075 | 0x0003001b, | ||
| 2076 | 0x48000000, | ||
| 2077 | 0x00050047, | ||
| 2078 | 0x00060068, | ||
| 2079 | 0x280b0008, | ||
| 2080 | 0x80ae0000, | ||
| 2081 | 0xc82e0000, | ||
| 2082 | 0x41800000, | ||
| 2083 | 0x00050844, | ||
| 2084 | 0x7c05b040, | ||
| 2085 | 0x40800000, | ||
| 2086 | 0x00050844, | ||
| 2087 | 0x48000001, | ||
| 2088 | 0x0003001c, | ||
| 2089 | 0x48000000, | ||
| 2090 | 0x00050047, | ||
| 2091 | 0x00060069, | ||
| 2092 | 0x280b0010, | ||
| 2093 | 0x80ae0000, | ||
| 2094 | 0xc82e0000, | ||
| 2095 | 0x80ce0008, | ||
| 2096 | 0xc84e0008, | ||
| 2097 | 0x41800000, | ||
| 2098 | 0x00050844, | ||
| 2099 | 0x7c05b040, | ||
| 2100 | 0x40800000, | ||
| 2101 | 0x00050844, | ||
| 2102 | 0x7c06b040, | ||
| 2103 | 0x40800000, | ||
| 2104 | 0x00050844, | ||
| 2105 | 0x48000001, | ||
| 2106 | 0x0003001d, | ||
| 2107 | 0x48000000, | ||
| 2108 | 0x00050047, | ||
| 2109 | 0x0006006a, | ||
| 2110 | 0x280b0010, | ||
| 2111 | 0x80ae0000, | ||
| 2112 | 0xc82e0000, | ||
| 2113 | 0x80ce0008, | ||
| 2114 | 0xc84e0008, | ||
| 2115 | 0x41800000, | ||
| 2116 | 0x00050844, | ||
| 2117 | 0x7c05b040, | ||
| 2118 | 0x40800000, | ||
| 2119 | 0x00050844, | ||
| 2120 | 0x7c06b040, | ||
| 2121 | 0x40800000, | ||
| 2122 | 0x00050844, | ||
| 2123 | 0x48000001, | ||
| 2124 | 0x0003001e, | ||
| 2125 | 0x48000000, | ||
| 2126 | 0x00050047, | ||
| 2127 | 0x0006006b, | ||
| 2128 | 0x280b0010, | ||
| 2129 | 0x80ae0000, | ||
| 2130 | 0xc82e0000, | ||
| 2131 | 0x80ce0008, | ||
| 2132 | 0xc84e0008, | ||
| 2133 | 0x41800000, | ||
| 2134 | 0x00050844, | ||
| 2135 | 0x7c05b040, | ||
| 2136 | 0x40800000, | ||
| 2137 | 0x00050844, | ||
| 2138 | 0x00000000, | ||
| 2139 | 0x7c06b040, | ||
| 2140 | 0x40800000, | ||
| 2141 | 0x00050844, | ||
| 2142 | 0x48000001, | ||
| 2143 | 0x0003001f, | ||
| 2144 | 0x48000000, | ||
| 2145 | 0x00050047, | ||
| 2146 | 0x0006006c, | ||
| 2147 | 0x0006006d, | ||
| 2148 | 0x280b0008, | ||
| 2149 | 0x80ae0000, | ||
| 2150 | 0xc82e0000, | ||
| 2151 | 0x41800000, | ||
| 2152 | 0x00050844, | ||
| 2153 | 0x7c05b040, | ||
| 2154 | 0x40800000, | ||
| 2155 | 0x00050844, | ||
| 2156 | 0xc84a0000, | ||
| 2157 | 0x00098200, | ||
| 2158 | 0xfc2100b2, | ||
| 2159 | 0x48000000, | ||
| 2160 | 0x00050047, | ||
| 2161 | 0x0006006e, | ||
| 2162 | 0x280b0010, | ||
| 2163 | 0x80ae0000, | ||
| 2164 | 0xc82e0000, | ||
| 2165 | 0x80ce0008, | ||
| 2166 | 0xc84e0008, | ||
| 2167 | 0x41800000, | ||
| 2168 | 0x00050844, | ||
| 2169 | 0x7c05b040, | ||
| 2170 | 0x40800000, | ||
| 2171 | 0x00050844, | ||
| 2172 | 0x7c06b040, | ||
| 2173 | 0x40800000, | ||
| 2174 | 0x00050844, | ||
| 2175 | 0xfc40101e, | ||
| 2176 | 0xd8410008, | ||
| 2177 | 0x8061000c, | ||
| 2178 | 0x48000001, | ||
| 2179 | 0x00030020, | ||
| 2180 | 0x48000000, | ||
| 2181 | 0x00050047, | ||
| 2182 | 0x0006006f, | ||
| 2183 | 0x280b0008, | ||
| 2184 | 0x80ae0000, | ||
| 2185 | 0xc82e0000, | ||
| 2186 | 0x41800000, | ||
| 2187 | 0x00050844, | ||
| 2188 | 0x7c05b040, | ||
| 2189 | 0x40800000, | ||
| 2190 | 0x00050844, | ||
| 2191 | 0x38710000, | ||
| 2192 | 0x00098200, | ||
| 2193 | 0x820efff8, | ||
| 2194 | 0x48000001, | ||
| 2195 | 0x00030021, | ||
| 2196 | 0x81110000, | ||
| 2197 | 0x00098200, | ||
| 2198 | 0x3a8efff8, | ||
| 2199 | 0x6d088000, | ||
| 2200 | 0x91010024, | ||
| 2201 | 0xc8410020, | ||
| 2202 | 0xfc42f828, | ||
| 2203 | 0xd8340000, | ||
| 2204 | 0x39800000, | ||
| 2205 | 0x00098200, | ||
| 2206 | 0x00000000, | ||
| 2207 | 0xd8540008, | ||
| 2208 | 0x48000000, | ||
| 2209 | 0x00050045, | ||
| 2210 | 0x00060070, | ||
| 2211 | 0x280b0008, | ||
| 2212 | 0x80ae0000, | ||
| 2213 | 0xc82e0000, | ||
| 2214 | 0x41800000, | ||
| 2215 | 0x00050844, | ||
| 2216 | 0x7c05b040, | ||
| 2217 | 0x40800000, | ||
| 2218 | 0x00050844, | ||
| 2219 | 0x386efff8, | ||
| 2220 | 0x820efff8, | ||
| 2221 | 0x48000001, | ||
| 2222 | 0x00030022, | ||
| 2223 | 0x3a8efff8, | ||
| 2224 | 0xd82e0000, | ||
| 2225 | 0x39800000, | ||
| 2226 | 0x00098200, | ||
| 2227 | 0x48000000, | ||
| 2228 | 0x00050045, | ||
| 2229 | 0x00060071, | ||
| 2230 | 0x280b0008, | ||
| 2231 | 0x80ae0000, | ||
| 2232 | 0xc82e0000, | ||
| 2233 | 0x41800000, | ||
| 2234 | 0x00050844, | ||
| 2235 | 0x7c05b040, | ||
| 2236 | 0x40800000, | ||
| 2237 | 0x00050844, | ||
| 2238 | 0x39000008, | ||
| 2239 | 0x0006000b, | ||
| 2240 | 0x7c8e402e, | ||
| 2241 | 0x7c4e44ae, | ||
| 2242 | 0x7c885840, | ||
| 2243 | 0x7c04b040, | ||
| 2244 | 0x40840000, | ||
| 2245 | 0x00050847, | ||
| 2246 | 0x40800000, | ||
| 2247 | 0x00050844, | ||
| 2248 | 0xfc011028, | ||
| 2249 | 0x39080008, | ||
| 2250 | 0xfc2008ae, | ||
| 2251 | 0x48000000, | ||
| 2252 | 0x0005000b, | ||
| 2253 | 0x00060072, | ||
| 2254 | 0x280b0008, | ||
| 2255 | 0x80ae0000, | ||
| 2256 | 0xc82e0000, | ||
| 2257 | 0x41800000, | ||
| 2258 | 0x00050844, | ||
| 2259 | 0x7c05b040, | ||
| 2260 | 0x40800000, | ||
| 2261 | 0x00050844, | ||
| 2262 | 0x39000008, | ||
| 2263 | 0x0006000b, | ||
| 2264 | 0x7c8e402e, | ||
| 2265 | 0x7c4e44ae, | ||
| 2266 | 0x7c885840, | ||
| 2267 | 0x7c04b040, | ||
| 2268 | 0x40840000, | ||
| 2269 | 0x00050847, | ||
| 2270 | 0x40800000, | ||
| 2271 | 0x00050844, | ||
| 2272 | 0xfc011028, | ||
| 2273 | 0x39080008, | ||
| 2274 | 0xfc20106e, | ||
| 2275 | 0x48000000, | ||
| 2276 | 0x0005000b, | ||
| 2277 | 0x00060073, | ||
| 2278 | 0x00000000, | ||
| 2279 | 0x280b0008, | ||
| 2280 | 0x80ae0000, | ||
| 2281 | 0x806e0004, | ||
| 2282 | 0x41800000, | ||
| 2283 | 0x00050844, | ||
| 2284 | 0x2c050000, | ||
| 2285 | 0x00098200, | ||
| 2286 | 0x40820000, | ||
| 2287 | 0x00050844, | ||
| 2288 | 0x80630000, | ||
| 2289 | 0x00098200, | ||
| 2290 | 0x48000000, | ||
| 2291 | 0x00050074, | ||
| 2292 | 0x00060075, | ||
| 2293 | 0x280b0008, | ||
| 2294 | 0x80ae0000, | ||
| 2295 | 0x806e0004, | ||
| 2296 | 0x40820000, | ||
| 2297 | 0x00050844, | ||
| 2298 | 0x2c050000, | ||
| 2299 | 0x00098200, | ||
| 2300 | 0x40820000, | ||
| 2301 | 0x00050844, | ||
| 2302 | 0x80030000, | ||
| 2303 | 0x00098200, | ||
| 2304 | 0x89030000, | ||
| 2305 | 0x00098200, | ||
| 2306 | 0x30c0ffff, | ||
| 2307 | 0x7d860110, | ||
| 2308 | 0x91010024, | ||
| 2309 | 0x398c0001, | ||
| 2310 | 0xc8010020, | ||
| 2311 | 0x3a8efff8, | ||
| 2312 | 0x820efff8, | ||
| 2313 | 0xfc00f028, | ||
| 2314 | 0x558c1800, | ||
| 2315 | 0x000900a1, | ||
| 2316 | 0xd8140000, | ||
| 2317 | 0x48000000, | ||
| 2318 | 0x00050045, | ||
| 2319 | 0x00060076, | ||
| 2320 | 0x80110000, | ||
| 2321 | 0x00098200, | ||
| 2322 | 0x81110000, | ||
| 2323 | 0x00098200, | ||
| 2324 | 0x7c004040, | ||
| 2325 | 0x40800001, | ||
| 2326 | 0x0005084e, | ||
| 2327 | 0x280b0008, | ||
| 2328 | 0x80ae0000, | ||
| 2329 | 0xc82e0000, | ||
| 2330 | 0x40820000, | ||
| 2331 | 0x00050844, | ||
| 2332 | 0x7c05b040, | ||
| 2333 | 0x40800000, | ||
| 2334 | 0x00050844, | ||
| 2335 | 0xfc20081e, | ||
| 2336 | 0xd8210008, | ||
| 2337 | 0x8001000c, | ||
| 2338 | 0x3881000f, | ||
| 2339 | 0x38a00001, | ||
| 2340 | 0x280000ff, | ||
| 2341 | 0x41810000, | ||
| 2342 | 0x00050844, | ||
| 2343 | 0x00060077, | ||
| 2344 | 0x7e439378, | ||
| 2345 | 0x91d20000, | ||
| 2346 | 0x00098200, | ||
| 2347 | 0x00000000, | ||
| 2348 | 0x92010008, | ||
| 2349 | 0x48000001, | ||
| 2350 | 0x00030023, | ||
| 2351 | 0x81d20000, | ||
| 2352 | 0x00098200, | ||
| 2353 | 0x38a00000, | ||
| 2354 | 0x00098200, | ||
| 2355 | 0x48000000, | ||
| 2356 | 0x00050049, | ||
| 2357 | 0x00060078, | ||
| 2358 | 0x80110000, | ||
| 2359 | 0x00098200, | ||
| 2360 | 0x81110000, | ||
| 2361 | 0x00098200, | ||
| 2362 | 0x7c004040, | ||
| 2363 | 0x40800001, | ||
| 2364 | 0x0005084e, | ||
| 2365 | 0x280b0010, | ||
| 2366 | 0x80ae0010, | ||
| 2367 | 0xc80e0010, | ||
| 2368 | 0x800e0000, | ||
| 2369 | 0x806e0004, | ||
| 2370 | 0x41800000, | ||
| 2371 | 0x00050844, | ||
| 2372 | 0x808e0008, | ||
| 2373 | 0xc82e0008, | ||
| 2374 | 0x3920ffff, | ||
| 2375 | 0x41820000, | ||
| 2376 | 0x00050801, | ||
| 2377 | 0x7c05b040, | ||
| 2378 | 0x40800000, | ||
| 2379 | 0x00050844, | ||
| 2380 | 0xfc00001e, | ||
| 2381 | 0xd8010008, | ||
| 2382 | 0x8121000c, | ||
| 2383 | 0x0006000b, | ||
| 2384 | 0x7c04b040, | ||
| 2385 | 0x40800000, | ||
| 2386 | 0x00050844, | ||
| 2387 | 0x2c000000, | ||
| 2388 | 0x00098200, | ||
| 2389 | 0x40820000, | ||
| 2390 | 0x00050844, | ||
| 2391 | 0xfc20081e, | ||
| 2392 | 0xd8210008, | ||
| 2393 | 0x8101000c, | ||
| 2394 | 0x80030000, | ||
| 2395 | 0x00098200, | ||
| 2396 | 0x7c004840, | ||
| 2397 | 0x38c90001, | ||
| 2398 | 0x41800000, | ||
| 2399 | 0x00050805, | ||
| 2400 | 0x0006000c, | ||
| 2401 | 0x2c080000, | ||
| 2402 | 0x7cc80214, | ||
| 2403 | 0x40810000, | ||
| 2404 | 0x00050807, | ||
| 2405 | 0x0006000d, | ||
| 2406 | 0x7ca84850, | ||
| 2407 | 0x38830000, | ||
| 2408 | 0x00098200, | ||
| 2409 | 0x7ca0fe70, | ||
| 2410 | 0x38a50001, | ||
| 2411 | 0x7c844214, | ||
| 2412 | 0x7ca50078, | ||
| 2413 | 0x48000000, | ||
| 2414 | 0x00050077, | ||
| 2415 | 0x0006000f, | ||
| 2416 | 0x00000000, | ||
| 2417 | 0x7c890050, | ||
| 2418 | 0x7c84fe70, | ||
| 2419 | 0x7cc62078, | ||
| 2420 | 0x7d203214, | ||
| 2421 | 0x48000000, | ||
| 2422 | 0x0005000c, | ||
| 2423 | 0x00060011, | ||
| 2424 | 0x30a8ffff, | ||
| 2425 | 0x7ca52910, | ||
| 2426 | 0x7cc4fe70, | ||
| 2427 | 0x7cc62878, | ||
| 2428 | 0x7cc82078, | ||
| 2429 | 0x39080001, | ||
| 2430 | 0x48000000, | ||
| 2431 | 0x0005000d, | ||
| 2432 | 0x00060079, | ||
| 2433 | 0x80110000, | ||
| 2434 | 0x00098200, | ||
| 2435 | 0x81110000, | ||
| 2436 | 0x00098200, | ||
| 2437 | 0x7c004040, | ||
| 2438 | 0x40800001, | ||
| 2439 | 0x0005084e, | ||
| 2440 | 0x280b0010, | ||
| 2441 | 0x80ae0000, | ||
| 2442 | 0x806e0004, | ||
| 2443 | 0x80ce0008, | ||
| 2444 | 0xc84e0008, | ||
| 2445 | 0x41800000, | ||
| 2446 | 0x00050844, | ||
| 2447 | 0x2c050000, | ||
| 2448 | 0x00098200, | ||
| 2449 | 0x40820000, | ||
| 2450 | 0x00050844, | ||
| 2451 | 0x7c06b040, | ||
| 2452 | 0x40800000, | ||
| 2453 | 0x00050844, | ||
| 2454 | 0xfc40101e, | ||
| 2455 | 0xd8410008, | ||
| 2456 | 0x80a1000c, | ||
| 2457 | 0x80030000, | ||
| 2458 | 0x00098200, | ||
| 2459 | 0x2c050000, | ||
| 2460 | 0x81110000, | ||
| 2461 | 0x00098200, | ||
| 2462 | 0x40810000, | ||
| 2463 | 0x00050802, | ||
| 2464 | 0x28000001, | ||
| 2465 | 0x3925ffff, | ||
| 2466 | 0x41800000, | ||
| 2467 | 0x00050802, | ||
| 2468 | 0x7c882840, | ||
| 2469 | 0x40820000, | ||
| 2470 | 0x00050844, | ||
| 2471 | 0x88030000, | ||
| 2472 | 0x00098200, | ||
| 2473 | 0x80910000, | ||
| 2474 | 0x00098200, | ||
| 2475 | 0x41840000, | ||
| 2476 | 0x00050844, | ||
| 2477 | 0x0006000b, | ||
| 2478 | 0x28090000, | ||
| 2479 | 0x7c0449ae, | ||
| 2480 | 0x3929ffff, | ||
| 2481 | 0x40820000, | ||
| 2482 | 0x0005080b, | ||
| 2483 | 0x48000000, | ||
| 2484 | 0x00050077, | ||
| 2485 | 0x0006000c, | ||
| 2486 | 0x00000000, | ||
| 2487 | 0x38710000, | ||
| 2488 | 0x00098200, | ||
| 2489 | 0x38a00000, | ||
| 2490 | 0x00098200, | ||
| 2491 | 0x48000000, | ||
| 2492 | 0x00050049, | ||
| 2493 | 0x0006007a, | ||
| 2494 | 0x80110000, | ||
| 2495 | 0x00098200, | ||
| 2496 | 0x81110000, | ||
| 2497 | 0x00098200, | ||
| 2498 | 0x7c004040, | ||
| 2499 | 0x40800001, | ||
| 2500 | 0x0005084e, | ||
| 2501 | 0x280b0008, | ||
| 2502 | 0x80ae0000, | ||
| 2503 | 0x806e0004, | ||
| 2504 | 0x41800000, | ||
| 2505 | 0x00050844, | ||
| 2506 | 0x2c050000, | ||
| 2507 | 0x00098200, | ||
| 2508 | 0x81110000, | ||
| 2509 | 0x00098200, | ||
| 2510 | 0x40820000, | ||
| 2511 | 0x00050844, | ||
| 2512 | 0x80a30000, | ||
| 2513 | 0x00098200, | ||
| 2514 | 0x38630000, | ||
| 2515 | 0x00098200, | ||
| 2516 | 0x80910000, | ||
| 2517 | 0x00098200, | ||
| 2518 | 0x39200000, | ||
| 2519 | 0x7c082840, | ||
| 2520 | 0x38c5ffff, | ||
| 2521 | 0x41800000, | ||
| 2522 | 0x00050844, | ||
| 2523 | 0x0006000b, | ||
| 2524 | 0x2c060000, | ||
| 2525 | 0x7d0348ae, | ||
| 2526 | 0x41800000, | ||
| 2527 | 0x00050877, | ||
| 2528 | 0x7d0431ae, | ||
| 2529 | 0x38c6ffff, | ||
| 2530 | 0x39290001, | ||
| 2531 | 0x48000000, | ||
| 2532 | 0x0005000b, | ||
| 2533 | 0x0006007b, | ||
| 2534 | 0x80110000, | ||
| 2535 | 0x00098200, | ||
| 2536 | 0x81110000, | ||
| 2537 | 0x00098200, | ||
| 2538 | 0x7c004040, | ||
| 2539 | 0x40800001, | ||
| 2540 | 0x0005084e, | ||
| 2541 | 0x00000000, | ||
| 2542 | 0x280b0008, | ||
| 2543 | 0x80ae0000, | ||
| 2544 | 0x806e0004, | ||
| 2545 | 0x41800000, | ||
| 2546 | 0x00050844, | ||
| 2547 | 0x2c050000, | ||
| 2548 | 0x00098200, | ||
| 2549 | 0x81110000, | ||
| 2550 | 0x00098200, | ||
| 2551 | 0x40820000, | ||
| 2552 | 0x00050844, | ||
| 2553 | 0x80a30000, | ||
| 2554 | 0x00098200, | ||
| 2555 | 0x38630000, | ||
| 2556 | 0x00098200, | ||
| 2557 | 0x80910000, | ||
| 2558 | 0x00098200, | ||
| 2559 | 0x7c082840, | ||
| 2560 | 0x39200000, | ||
| 2561 | 0x41800000, | ||
| 2562 | 0x00050844, | ||
| 2563 | 0x0006000b, | ||
| 2564 | 0x7c092840, | ||
| 2565 | 0x7d0348ae, | ||
| 2566 | 0x40800000, | ||
| 2567 | 0x00050877, | ||
| 2568 | 0x3808ffbf, | ||
| 2569 | 0x69060020, | ||
| 2570 | 0x3000ffe6, | ||
| 2571 | 0x7cc63110, | ||
| 2572 | 0x70c60020, | ||
| 2573 | 0x7d083278, | ||
| 2574 | 0x7d0449ae, | ||
| 2575 | 0x39290001, | ||
| 2576 | 0x48000000, | ||
| 2577 | 0x0005000b, | ||
| 2578 | 0x0006007c, | ||
| 2579 | 0x80110000, | ||
| 2580 | 0x00098200, | ||
| 2581 | 0x81110000, | ||
| 2582 | 0x00098200, | ||
| 2583 | 0x7c004040, | ||
| 2584 | 0x40800001, | ||
| 2585 | 0x0005084e, | ||
| 2586 | 0x280b0008, | ||
| 2587 | 0x80ae0000, | ||
| 2588 | 0x806e0004, | ||
| 2589 | 0x41800000, | ||
| 2590 | 0x00050844, | ||
| 2591 | 0x2c050000, | ||
| 2592 | 0x00098200, | ||
| 2593 | 0x81110000, | ||
| 2594 | 0x00098200, | ||
| 2595 | 0x40820000, | ||
| 2596 | 0x00050844, | ||
| 2597 | 0x80a30000, | ||
| 2598 | 0x00098200, | ||
| 2599 | 0x38630000, | ||
| 2600 | 0x00098200, | ||
| 2601 | 0x80910000, | ||
| 2602 | 0x00098200, | ||
| 2603 | 0x00000000, | ||
| 2604 | 0x7c082840, | ||
| 2605 | 0x39200000, | ||
| 2606 | 0x41800000, | ||
| 2607 | 0x00050844, | ||
| 2608 | 0x0006000b, | ||
| 2609 | 0x7c092840, | ||
| 2610 | 0x7d0348ae, | ||
| 2611 | 0x40800000, | ||
| 2612 | 0x00050877, | ||
| 2613 | 0x3808ff9f, | ||
| 2614 | 0x69060020, | ||
| 2615 | 0x3000ffe6, | ||
| 2616 | 0x7cc63110, | ||
| 2617 | 0x70c60020, | ||
| 2618 | 0x7d083278, | ||
| 2619 | 0x7d0449ae, | ||
| 2620 | 0x39290001, | ||
| 2621 | 0x48000000, | ||
| 2622 | 0x0005000b, | ||
| 2623 | 0x0006007d, | ||
| 2624 | 0x280b0008, | ||
| 2625 | 0x80ae0000, | ||
| 2626 | 0x806e0004, | ||
| 2627 | 0x41800000, | ||
| 2628 | 0x00050844, | ||
| 2629 | 0x2c050000, | ||
| 2630 | 0x00098200, | ||
| 2631 | 0x40820000, | ||
| 2632 | 0x00050844, | ||
| 2633 | 0x48000001, | ||
| 2634 | 0x00030024, | ||
| 2635 | 0x48000000, | ||
| 2636 | 0x00050074, | ||
| 2637 | 0x0006007e, | ||
| 2638 | 0x280b0008, | ||
| 2639 | 0x80ae0000, | ||
| 2640 | 0xc82e0000, | ||
| 2641 | 0x41800000, | ||
| 2642 | 0x00050844, | ||
| 2643 | 0x7c05b040, | ||
| 2644 | 0x40800000, | ||
| 2645 | 0x00050844, | ||
| 2646 | 0xfc21f02a, | ||
| 2647 | 0xd8210008, | ||
| 2648 | 0x8061000c, | ||
| 2649 | 0x00060074, | ||
| 2650 | 0x6c638000, | ||
| 2651 | 0x90610024, | ||
| 2652 | 0xc8210020, | ||
| 2653 | 0xfc21f828, | ||
| 2654 | 0x00060047, | ||
| 2655 | 0x820efff8, | ||
| 2656 | 0x3a8efff8, | ||
| 2657 | 0xd82efff8, | ||
| 2658 | 0x48000000, | ||
| 2659 | 0x00050059, | ||
| 2660 | 0x0006007f, | ||
| 2661 | 0x280b0008, | ||
| 2662 | 0x80ae0000, | ||
| 2663 | 0xc82e0000, | ||
| 2664 | 0x41800000, | ||
| 2665 | 0x00050844, | ||
| 2666 | 0x7c05b040, | ||
| 2667 | 0x40800000, | ||
| 2668 | 0x00050844, | ||
| 2669 | 0xfc21f02a, | ||
| 2670 | 0xd8210008, | ||
| 2671 | 0x8061000c, | ||
| 2672 | 0x39000008, | ||
| 2673 | 0x0006000b, | ||
| 2674 | 0x7cce402e, | ||
| 2675 | 0x7c885840, | ||
| 2676 | 0x7c2e44ae, | ||
| 2677 | 0x7c06b040, | ||
| 2678 | 0x40840000, | ||
| 2679 | 0x00050874, | ||
| 2680 | 0xfc21f02a, | ||
| 2681 | 0x40800000, | ||
| 2682 | 0x00050844, | ||
| 2683 | 0x00000000, | ||
| 2684 | 0xd8210008, | ||
| 2685 | 0x8081000c, | ||
| 2686 | 0x7c632038, | ||
| 2687 | 0x39080008, | ||
| 2688 | 0x48000000, | ||
| 2689 | 0x0005000b, | ||
| 2690 | 0x00060080, | ||
| 2691 | 0x280b0008, | ||
| 2692 | 0x80ae0000, | ||
| 2693 | 0xc82e0000, | ||
| 2694 | 0x41800000, | ||
| 2695 | 0x00050844, | ||
| 2696 | 0x7c05b040, | ||
| 2697 | 0x40800000, | ||
| 2698 | 0x00050844, | ||
| 2699 | 0xfc21f02a, | ||
| 2700 | 0xd8210008, | ||
| 2701 | 0x8061000c, | ||
| 2702 | 0x39000008, | ||
| 2703 | 0x0006000b, | ||
| 2704 | 0x7cce402e, | ||
| 2705 | 0x7c885840, | ||
| 2706 | 0x7c2e44ae, | ||
| 2707 | 0x7c06b040, | ||
| 2708 | 0x40840000, | ||
| 2709 | 0x00050874, | ||
| 2710 | 0xfc21f02a, | ||
| 2711 | 0x40800000, | ||
| 2712 | 0x00050844, | ||
| 2713 | 0xd8210008, | ||
| 2714 | 0x8081000c, | ||
| 2715 | 0x7c632378, | ||
| 2716 | 0x39080008, | ||
| 2717 | 0x48000000, | ||
| 2718 | 0x0005000b, | ||
| 2719 | 0x00060081, | ||
| 2720 | 0x280b0008, | ||
| 2721 | 0x80ae0000, | ||
| 2722 | 0xc82e0000, | ||
| 2723 | 0x41800000, | ||
| 2724 | 0x00050844, | ||
| 2725 | 0x7c05b040, | ||
| 2726 | 0x40800000, | ||
| 2727 | 0x00050844, | ||
| 2728 | 0xfc21f02a, | ||
| 2729 | 0xd8210008, | ||
| 2730 | 0x8061000c, | ||
| 2731 | 0x39000008, | ||
| 2732 | 0x0006000b, | ||
| 2733 | 0x7cce402e, | ||
| 2734 | 0x7c885840, | ||
| 2735 | 0x7c2e44ae, | ||
| 2736 | 0x7c06b040, | ||
| 2737 | 0x40840000, | ||
| 2738 | 0x00050874, | ||
| 2739 | 0xfc21f02a, | ||
| 2740 | 0x40800000, | ||
| 2741 | 0x00050844, | ||
| 2742 | 0xd8210008, | ||
| 2743 | 0x8081000c, | ||
| 2744 | 0x7c632278, | ||
| 2745 | 0x39080008, | ||
| 2746 | 0x48000000, | ||
| 2747 | 0x0005000b, | ||
| 2748 | 0x00060082, | ||
| 2749 | 0x280b0008, | ||
| 2750 | 0x80ae0000, | ||
| 2751 | 0xc82e0000, | ||
| 2752 | 0x41800000, | ||
| 2753 | 0x00050844, | ||
| 2754 | 0x7c05b040, | ||
| 2755 | 0x40800000, | ||
| 2756 | 0x00050844, | ||
| 2757 | 0xfc21f02a, | ||
| 2758 | 0xd8210008, | ||
| 2759 | 0x8061000c, | ||
| 2760 | 0x5460403e, | ||
| 2761 | 0x5060c00e, | ||
| 2762 | 0x5060c42e, | ||
| 2763 | 0x7c030378, | ||
| 2764 | 0x48000000, | ||
| 2765 | 0x00050074, | ||
| 2766 | 0x00060083, | ||
| 2767 | 0x280b0008, | ||
| 2768 | 0x80ae0000, | ||
| 2769 | 0xc82e0000, | ||
| 2770 | 0x41800000, | ||
| 2771 | 0x00050844, | ||
| 2772 | 0x7c05b040, | ||
| 2773 | 0x40800000, | ||
| 2774 | 0x00050844, | ||
| 2775 | 0x00000000, | ||
| 2776 | 0xfc21f02a, | ||
| 2777 | 0xd8210008, | ||
| 2778 | 0x8061000c, | ||
| 2779 | 0x7c6318f8, | ||
| 2780 | 0x48000000, | ||
| 2781 | 0x00050074, | ||
| 2782 | 0x00060084, | ||
| 2783 | 0x280b0010, | ||
| 2784 | 0x80ae0000, | ||
| 2785 | 0xc82e0000, | ||
| 2786 | 0x80ce0008, | ||
| 2787 | 0xc84e0008, | ||
| 2788 | 0x41800000, | ||
| 2789 | 0x00050844, | ||
| 2790 | 0x7c05b040, | ||
| 2791 | 0x40800000, | ||
| 2792 | 0x00050844, | ||
| 2793 | 0x7c06b040, | ||
| 2794 | 0x40800000, | ||
| 2795 | 0x00050844, | ||
| 2796 | 0xfc21f02a, | ||
| 2797 | 0xfc42f02a, | ||
| 2798 | 0xd8210008, | ||
| 2799 | 0x8061000c, | ||
| 2800 | 0xd8410008, | ||
| 2801 | 0x8081000c, | ||
| 2802 | 0x548406fe, | ||
| 2803 | 0x7c632030, | ||
| 2804 | 0x48000000, | ||
| 2805 | 0x00050074, | ||
| 2806 | 0x00060085, | ||
| 2807 | 0x280b0010, | ||
| 2808 | 0x80ae0000, | ||
| 2809 | 0xc82e0000, | ||
| 2810 | 0x80ce0008, | ||
| 2811 | 0xc84e0008, | ||
| 2812 | 0x41800000, | ||
| 2813 | 0x00050844, | ||
| 2814 | 0x7c05b040, | ||
| 2815 | 0x40800000, | ||
| 2816 | 0x00050844, | ||
| 2817 | 0x7c06b040, | ||
| 2818 | 0x40800000, | ||
| 2819 | 0x00050844, | ||
| 2820 | 0xfc21f02a, | ||
| 2821 | 0xfc42f02a, | ||
| 2822 | 0xd8210008, | ||
| 2823 | 0x8061000c, | ||
| 2824 | 0xd8410008, | ||
| 2825 | 0x8081000c, | ||
| 2826 | 0x548406fe, | ||
| 2827 | 0x7c632430, | ||
| 2828 | 0x48000000, | ||
| 2829 | 0x00050074, | ||
| 2830 | 0x00060086, | ||
| 2831 | 0x280b0010, | ||
| 2832 | 0x80ae0000, | ||
| 2833 | 0xc82e0000, | ||
| 2834 | 0x80ce0008, | ||
| 2835 | 0xc84e0008, | ||
| 2836 | 0x41800000, | ||
| 2837 | 0x00050844, | ||
| 2838 | 0x7c05b040, | ||
| 2839 | 0x40800000, | ||
| 2840 | 0x00050844, | ||
| 2841 | 0x7c06b040, | ||
| 2842 | 0x40800000, | ||
| 2843 | 0x00050844, | ||
| 2844 | 0xfc21f02a, | ||
| 2845 | 0xfc42f02a, | ||
| 2846 | 0xd8210008, | ||
| 2847 | 0x8061000c, | ||
| 2848 | 0xd8410008, | ||
| 2849 | 0x8081000c, | ||
| 2850 | 0x548406fe, | ||
| 2851 | 0x7c632630, | ||
| 2852 | 0x48000000, | ||
| 2853 | 0x00050074, | ||
| 2854 | 0x00060087, | ||
| 2855 | 0x280b0010, | ||
| 2856 | 0x80ae0000, | ||
| 2857 | 0xc82e0000, | ||
| 2858 | 0x80ce0008, | ||
| 2859 | 0xc84e0008, | ||
| 2860 | 0x41800000, | ||
| 2861 | 0x00050844, | ||
| 2862 | 0x7c05b040, | ||
| 2863 | 0x40800000, | ||
| 2864 | 0x00050844, | ||
| 2865 | 0x7c06b040, | ||
| 2866 | 0x40800000, | ||
| 2867 | 0x00050844, | ||
| 2868 | 0xfc21f02a, | ||
| 2869 | 0xfc42f02a, | ||
| 2870 | 0xd8210008, | ||
| 2871 | 0x8061000c, | ||
| 2872 | 0xd8410008, | ||
| 2873 | 0x8081000c, | ||
| 2874 | 0x5c63203e, | ||
| 2875 | 0x48000000, | ||
| 2876 | 0x00050074, | ||
| 2877 | 0x00060088, | ||
| 2878 | 0x00000000, | ||
| 2879 | 0x280b0010, | ||
| 2880 | 0x80ae0000, | ||
| 2881 | 0xc82e0000, | ||
| 2882 | 0x80ce0008, | ||
| 2883 | 0xc84e0008, | ||
| 2884 | 0x41800000, | ||
| 2885 | 0x00050844, | ||
| 2886 | 0x7c05b040, | ||
| 2887 | 0x40800000, | ||
| 2888 | 0x00050844, | ||
| 2889 | 0x7c06b040, | ||
| 2890 | 0x40800000, | ||
| 2891 | 0x00050844, | ||
| 2892 | 0xfc21f02a, | ||
| 2893 | 0xfc42f02a, | ||
| 2894 | 0xd8210008, | ||
| 2895 | 0x8061000c, | ||
| 2896 | 0xd8410008, | ||
| 2897 | 0x8081000c, | ||
| 2898 | 0x7c8400d0, | ||
| 2899 | 0x5c63203e, | ||
| 2900 | 0x48000000, | ||
| 2901 | 0x00050074, | ||
| 2902 | 0x00060044, | ||
| 2903 | 0x80ca0000, | ||
| 2904 | 0x00098200, | ||
| 2905 | 0x7d0e5a14, | ||
| 2906 | 0x820efff8, | ||
| 2907 | 0x38080000, | ||
| 2908 | 0x00098200, | ||
| 2909 | 0x81320000, | ||
| 2910 | 0x00098200, | ||
| 2911 | 0x92010008, | ||
| 2912 | 0x7c004840, | ||
| 2913 | 0x91d20000, | ||
| 2914 | 0x00098200, | ||
| 2915 | 0x91120000, | ||
| 2916 | 0x00098200, | ||
| 2917 | 0x7e439378, | ||
| 2918 | 0x41810000, | ||
| 2919 | 0x00050805, | ||
| 2920 | 0x7cc903a6, | ||
| 2921 | 0x4e800421, | ||
| 2922 | 0x81d20000, | ||
| 2923 | 0x00098200, | ||
| 2924 | 0x2c030000, | ||
| 2925 | 0x546c1800, | ||
| 2926 | 0x000900a1, | ||
| 2927 | 0x3a8efff8, | ||
| 2928 | 0x41810000, | ||
| 2929 | 0x00050845, | ||
| 2930 | 0x0006000b, | ||
| 2931 | 0x80120000, | ||
| 2932 | 0x00098200, | ||
| 2933 | 0x814efffc, | ||
| 2934 | 0x7d6e0050, | ||
| 2935 | 0x40820000, | ||
| 2936 | 0x00050828, | ||
| 2937 | 0x820a0000, | ||
| 2938 | 0x00098200, | ||
| 2939 | 0x80f00000, | ||
| 2940 | 0x3a100004, | ||
| 2941 | 0x54e815ba, | ||
| 2942 | 0x54f4dd78, | ||
| 2943 | 0x7c11402e, | ||
| 2944 | 0x7e947214, | ||
| 2945 | 0x7c0903a6, | ||
| 2946 | 0x4e800420, | ||
| 2947 | 0x00060028, | ||
| 2948 | 0x72000000, | ||
| 2949 | 0x00090200, | ||
| 2950 | 0x56080038, | ||
| 2951 | 0x40820000, | ||
| 2952 | 0x00050803, | ||
| 2953 | 0x80f0fffc, | ||
| 2954 | 0x54e8dd78, | ||
| 2955 | 0x0006000d, | ||
| 2956 | 0x00000000, | ||
| 2957 | 0x7d287050, | ||
| 2958 | 0x48000000, | ||
| 2959 | 0x00050024, | ||
| 2960 | 0x0006000f, | ||
| 2961 | 0x38800000, | ||
| 2962 | 0x00098200, | ||
| 2963 | 0x48000001, | ||
| 2964 | 0x00030000, | ||
| 2965 | 0x81d20000, | ||
| 2966 | 0x00098200, | ||
| 2967 | 0x7c000000, | ||
| 2968 | 0x48000000, | ||
| 2969 | 0x0005000b, | ||
| 2970 | 0x0006004e, | ||
| 2971 | 0x7ea802a6, | ||
| 2972 | 0x91d20000, | ||
| 2973 | 0x00098200, | ||
| 2974 | 0x7c0e5a14, | ||
| 2975 | 0x92010008, | ||
| 2976 | 0x90120000, | ||
| 2977 | 0x00098200, | ||
| 2978 | 0x7e439378, | ||
| 2979 | 0x48000001, | ||
| 2980 | 0x00030025, | ||
| 2981 | 0x81d20000, | ||
| 2982 | 0x00098200, | ||
| 2983 | 0x7ea803a6, | ||
| 2984 | 0x80120000, | ||
| 2985 | 0x00098200, | ||
| 2986 | 0x7d6e0050, | ||
| 2987 | 0x814efffc, | ||
| 2988 | 0x4e800020, | ||
| 2989 | 0x00060089, | ||
| 2990 | 0x00000000, | ||
| 2991 | 0x7c810808, | ||
| 2992 | 0x00000000, | ||
| 2993 | 0x0006008a, | ||
| 2994 | 0x88d10000, | ||
| 2995 | 0x00098200, | ||
| 2996 | 0x70c00000, | ||
| 2997 | 0x00090200, | ||
| 2998 | 0x41820000, | ||
| 2999 | 0x00050801, | ||
| 3000 | 0x0006000f, | ||
| 3001 | 0x39080000, | ||
| 3002 | 0x00098200, | ||
| 3003 | 0x7c11402e, | ||
| 3004 | 0x7c0903a6, | ||
| 3005 | 0x4e800420, | ||
| 3006 | 0x0006008b, | ||
| 3007 | 0x88d10000, | ||
| 3008 | 0x00098200, | ||
| 3009 | 0x81310000, | ||
| 3010 | 0x00098200, | ||
| 3011 | 0x70c00000, | ||
| 3012 | 0x00090200, | ||
| 3013 | 0x54c007c0, | ||
| 3014 | 0x000900ab, | ||
| 3015 | 0x40820000, | ||
| 3016 | 0x0005080f, | ||
| 3017 | 0x2c800000, | ||
| 3018 | 0x3529ffff, | ||
| 3019 | 0x41860000, | ||
| 3020 | 0x0005080f, | ||
| 3021 | 0x91310000, | ||
| 3022 | 0x00098200, | ||
| 3023 | 0x41820000, | ||
| 3024 | 0x00050801, | ||
| 3025 | 0x40840000, | ||
| 3026 | 0x0005080f, | ||
| 3027 | 0x0006000b, | ||
| 3028 | 0x7e439378, | ||
| 3029 | 0x9261000c, | ||
| 3030 | 0x7e048378, | ||
| 3031 | 0x91d20000, | ||
| 3032 | 0x00098200, | ||
| 3033 | 0x48000001, | ||
| 3034 | 0x00030026, | ||
| 3035 | 0x0006000d, | ||
| 3036 | 0x81d20000, | ||
| 3037 | 0x00098200, | ||
| 3038 | 0x0006000e, | ||
| 3039 | 0x00000000, | ||
| 3040 | 0x80f0fffc, | ||
| 3041 | 0x54e815ba, | ||
| 3042 | 0x54ea5d78, | ||
| 3043 | 0x39080000, | ||
| 3044 | 0x00098200, | ||
| 3045 | 0x54ec9b78, | ||
| 3046 | 0x7c11402e, | ||
| 3047 | 0x54f4dd78, | ||
| 3048 | 0x54eb9d78, | ||
| 3049 | 0x7c0903a6, | ||
| 3050 | 0x4e800420, | ||
| 3051 | 0x0006008c, | ||
| 3052 | 0x3a100004, | ||
| 3053 | 0x826affec, | ||
| 3054 | 0x48000000, | ||
| 3055 | 0x0005000e, | ||
| 3056 | 0x0006008d, | ||
| 3057 | 0x00000000, | ||
| 3058 | 0x7c810808, | ||
| 3059 | 0x00000000, | ||
| 3060 | 0x0006008e, | ||
| 3061 | 0x7e048378, | ||
| 3062 | 0x00000000, | ||
| 3063 | 0x48000000, | ||
| 3064 | 0x00050001, | ||
| 3065 | 0x00000000, | ||
| 3066 | 0x0006008f, | ||
| 3067 | 0x00000000, | ||
| 3068 | 0x62040001, | ||
| 3069 | 0x0006000b, | ||
| 3070 | 0x00000000, | ||
| 3071 | 0x7c0e5a14, | ||
| 3072 | 0x92010008, | ||
| 3073 | 0x7e439378, | ||
| 3074 | 0x91d20000, | ||
| 3075 | 0x00098200, | ||
| 3076 | 0x7e8ea050, | ||
| 3077 | 0x90120000, | ||
| 3078 | 0x00098200, | ||
| 3079 | 0x48000001, | ||
| 3080 | 0x00030027, | ||
| 3081 | 0x81d20000, | ||
| 3082 | 0x00098200, | ||
| 3083 | 0x80120000, | ||
| 3084 | 0x00098200, | ||
| 3085 | 0x93010008, | ||
| 3086 | 0x7d6e0050, | ||
| 3087 | 0x7e8ea214, | ||
| 3088 | 0x814efffc, | ||
| 3089 | 0x7c6903a6, | ||
| 3090 | 0x4e800420, | ||
| 3091 | 0x00060090, | ||
| 3092 | 0x00000000, | ||
| 3093 | 0x7c810808, | ||
| 3094 | 0x00000000, | ||
| 3095 | 0x00060091, | ||
| 3096 | 0x00000000, | ||
| 3097 | 0x7c810808, | ||
| 3098 | 0x00000000, | ||
| 3099 | 0x00060092, | ||
| 3100 | 0x48000000, | ||
| 3101 | 0x0003000e, | ||
| 3102 | 0x00060093, | ||
| 3103 | 0x48000000, | ||
| 3104 | 0x0003000f, | ||
| 3105 | 0x00060094, | ||
| 3106 | 0x00000000, | ||
| 3107 | 0x48000000, | ||
| 3108 | 0x00030028, | ||
| 3109 | 0x00000000, | ||
| 3110 | 0x00060095, | ||
| 3111 | 0x00000000, | ||
| 3112 | 0x7c810808, | ||
| 3113 | 0x00000000, | ||
| 3114 | 0x00060096, | ||
| 3115 | 0x00000000, | ||
| 3116 | 0x7c810808, | ||
| 3117 | 0x00000000, | ||
| 3118 | 0x00060097, | ||
| 3119 | 0x28030001, | ||
| 3120 | 0x41820000, | ||
| 3121 | 0x00050801, | ||
| 3122 | 0x41810000, | ||
| 3123 | 0x00050802, | ||
| 3124 | 0xfc21102a, | ||
| 3125 | 0x4e800020, | ||
| 3126 | 0x0006000b, | ||
| 3127 | 0xfc211028, | ||
| 3128 | 0x4e800020, | ||
| 3129 | 0x0006000c, | ||
| 3130 | 0x28030003, | ||
| 3131 | 0x41820000, | ||
| 3132 | 0x00050801, | ||
| 3133 | 0x41810000, | ||
| 3134 | 0x00050802, | ||
| 3135 | 0xfc2100b2, | ||
| 3136 | 0x4e800020, | ||
| 3137 | 0x0006000b, | ||
| 3138 | 0xfc211024, | ||
| 3139 | 0x4e800020, | ||
| 3140 | 0x0006000c, | ||
| 3141 | 0x28030005, | ||
| 3142 | 0x41820000, | ||
| 3143 | 0x00050801, | ||
| 3144 | 0x41810000, | ||
| 3145 | 0x00050802, | ||
| 3146 | 0x9421ffe0, | ||
| 3147 | 0xd9c10010, | ||
| 3148 | 0xd9e10018, | ||
| 3149 | 0x7c0802a6, | ||
| 3150 | 0xfdc00890, | ||
| 3151 | 0xfc211024, | ||
| 3152 | 0x90010024, | ||
| 3153 | 0xfde01090, | ||
| 3154 | 0x48000001, | ||
| 3155 | 0x0003000e, | ||
| 3156 | 0x80010024, | ||
| 3157 | 0xfc2103f2, | ||
| 3158 | 0x7c0803a6, | ||
| 3159 | 0xfc2e0828, | ||
| 3160 | 0xc9c10010, | ||
| 3161 | 0xc9e10018, | ||
| 3162 | 0x38210020, | ||
| 3163 | 0x4e800020, | ||
| 3164 | 0x0006000b, | ||
| 3165 | 0x48000000, | ||
| 3166 | 0x0003001d, | ||
| 3167 | 0x0006000c, | ||
| 3168 | 0x28030007, | ||
| 3169 | 0x41820000, | ||
| 3170 | 0x00050801, | ||
| 3171 | 0x41810000, | ||
| 3172 | 0x00050802, | ||
| 3173 | 0xfc200850, | ||
| 3174 | 0x4e800020, | ||
| 3175 | 0x0006000b, | ||
| 3176 | 0xfc200a10, | ||
| 3177 | 0x4e800020, | ||
| 3178 | 0x0006000c, | ||
| 3179 | 0x7c810808, | ||
| 3180 | 0x00060098, | ||
| 3181 | 0x00000000, | ||
| 3182 | 0x7c810808, | ||
| 3183 | 0x00000000, | ||
| 3184 | 0x00080000, | ||
| 3185 | 0x00000000, | ||
| 3186 | 0x7c0ea02e, | ||
| 3187 | 0x3a100004, | ||
| 3188 | 0x7c0ea4ae, | ||
| 3189 | 0x7d0e602e, | ||
| 3190 | 0x7c00b040, | ||
| 3191 | 0x8130fffc, | ||
| 3192 | 0x7c2e64ae, | ||
| 3193 | 0x7c88b040, | ||
| 3194 | 0x552993ba, | ||
| 3195 | 0x40800000, | ||
| 3196 | 0x00050834, | ||
| 3197 | 0x3d290000, | ||
| 3198 | 0x00098200, | ||
| 3199 | 0x40840000, | ||
| 3200 | 0x00050834, | ||
| 3201 | 0xfc000800, | ||
| 3202 | 0x00000000, | ||
| 3203 | 0x40800000, | ||
| 3204 | 0x00050801, | ||
| 3205 | 0x00000000, | ||
| 3206 | 0x41800000, | ||
| 3207 | 0x00050801, | ||
| 3208 | 0x00000000, | ||
| 3209 | 0x4c001382, | ||
| 3210 | 0x40800000, | ||
| 3211 | 0x00050801, | ||
| 3212 | 0x00000000, | ||
| 3213 | 0x4c001382, | ||
| 3214 | 0x41800000, | ||
| 3215 | 0x00050801, | ||
| 3216 | 0x00000000, | ||
| 3217 | 0x7e104a14, | ||
| 3218 | 0x0006000b, | ||
| 3219 | 0x80f00000, | ||
| 3220 | 0x3a100004, | ||
| 3221 | 0x54e815ba, | ||
| 3222 | 0x54ea5d78, | ||
| 3223 | 0x54ec9b78, | ||
| 3224 | 0x7c11402e, | ||
| 3225 | 0x54f4dd78, | ||
| 3226 | 0x54eb9d78, | ||
| 3227 | 0x7c0903a6, | ||
| 3228 | 0x4e800420, | ||
| 3229 | 0x00000000, | ||
| 3230 | 0x7c14706e, | ||
| 3231 | 0x81300000, | ||
| 3232 | 0xc8140000, | ||
| 3233 | 0x3a100004, | ||
| 3234 | 0x7d0c706e, | ||
| 3235 | 0x7c00b040, | ||
| 3236 | 0x552993ba, | ||
| 3237 | 0xc82c0000, | ||
| 3238 | 0x7c88b040, | ||
| 3239 | 0x3d290000, | ||
| 3240 | 0x00098200, | ||
| 3241 | 0x40800000, | ||
| 3242 | 0x00050805, | ||
| 3243 | 0x40840000, | ||
| 3244 | 0x00050805, | ||
| 3245 | 0xfc000800, | ||
| 3246 | 0x00000000, | ||
| 3247 | 0x40820000, | ||
| 3248 | 0x00050801, | ||
| 3249 | 0x7e104a14, | ||
| 3250 | 0x00000000, | ||
| 3251 | 0x41820000, | ||
| 3252 | 0x00050801, | ||
| 3253 | 0x7e104a14, | ||
| 3254 | 0x00000000, | ||
| 3255 | 0x0006000b, | ||
| 3256 | 0x80f00000, | ||
| 3257 | 0x3a100004, | ||
| 3258 | 0x54e815ba, | ||
| 3259 | 0x54ea5d78, | ||
| 3260 | 0x54ec9b78, | ||
| 3261 | 0x7c11402e, | ||
| 3262 | 0x54f4dd78, | ||
| 3263 | 0x54eb9d78, | ||
| 3264 | 0x7c0903a6, | ||
| 3265 | 0x4e800420, | ||
| 3266 | 0x0006000f, | ||
| 3267 | 0x80940004, | ||
| 3268 | 0x80ac0004, | ||
| 3269 | 0x7c0600f8, | ||
| 3270 | 0x7c004040, | ||
| 3271 | 0x28860000, | ||
| 3272 | 0x00090200, | ||
| 3273 | 0x2b060000, | ||
| 3274 | 0x00090200, | ||
| 3275 | 0x7e842840, | ||
| 3276 | 0x4c222902, | ||
| 3277 | 0x4c161342, | ||
| 3278 | 0x4c42b202, | ||
| 3279 | 0x7e158378, | ||
| 3280 | 0x4c420b82, | ||
| 3281 | 0x4c000b82, | ||
| 3282 | 0x00000000, | ||
| 3283 | 0x40820000, | ||
| 3284 | 0x00050806, | ||
| 3285 | 0x7e104a14, | ||
| 3286 | 0x00060010, | ||
| 3287 | 0x00000000, | ||
| 3288 | 0x41820000, | ||
| 3289 | 0x00050806, | ||
| 3290 | 0x7e104a14, | ||
| 3291 | 0x00060010, | ||
| 3292 | 0x00000000, | ||
| 3293 | 0x41800000, | ||
| 3294 | 0x0005080b, | ||
| 3295 | 0x41980000, | ||
| 3296 | 0x0005080b, | ||
| 3297 | 0x81240000, | ||
| 3298 | 0x00098200, | ||
| 3299 | 0x38c00000, | ||
| 3300 | 0x00098200, | ||
| 3301 | 0x28090000, | ||
| 3302 | 0x41820000, | ||
| 3303 | 0x0005080b, | ||
| 3304 | 0x89290000, | ||
| 3305 | 0x00098200, | ||
| 3306 | 0x71290000, | ||
| 3307 | 0x00090200, | ||
| 3308 | 0x40820000, | ||
| 3309 | 0x0005080b, | ||
| 3310 | 0x7eb0ab78, | ||
| 3311 | 0x48000000, | ||
| 3312 | 0x00050039, | ||
| 3313 | 0x00000000, | ||
| 3314 | 0x7c14706e, | ||
| 3315 | 0x558c007e, | ||
| 3316 | 0x000900ab, | ||
| 3317 | 0x80d40004, | ||
| 3318 | 0x80f00000, | ||
| 3319 | 0x218cfffc, | ||
| 3320 | 0x3a100004, | ||
| 3321 | 0x7d0f602e, | ||
| 3322 | 0x20000000, | ||
| 3323 | 0x00098200, | ||
| 3324 | 0x7d064050, | ||
| 3325 | 0x7c004378, | ||
| 3326 | 0x54e993ba, | ||
| 3327 | 0x20000000, | ||
| 3328 | 0x3d290000, | ||
| 3329 | 0x00098200, | ||
| 3330 | 0x7d084110, | ||
| 3331 | 0x00000000, | ||
| 3332 | 0x7d294078, | ||
| 3333 | 0x00000000, | ||
| 3334 | 0x7d294038, | ||
| 3335 | 0x00000000, | ||
| 3336 | 0x7e104a14, | ||
| 3337 | 0x80f00000, | ||
| 3338 | 0x3a100004, | ||
| 3339 | 0x54e815ba, | ||
| 3340 | 0x54ea5d78, | ||
| 3341 | 0x54ec9b78, | ||
| 3342 | 0x7c11402e, | ||
| 3343 | 0x54f4dd78, | ||
| 3344 | 0x54eb9d78, | ||
| 3345 | 0x7c0903a6, | ||
| 3346 | 0x4e800420, | ||
| 3347 | 0x00000000, | ||
| 3348 | 0x7c0ea02e, | ||
| 3349 | 0x7c0ea4ae, | ||
| 3350 | 0x3a100004, | ||
| 3351 | 0x7c2f64ae, | ||
| 3352 | 0x80f0fffc, | ||
| 3353 | 0x7c00b040, | ||
| 3354 | 0x40800000, | ||
| 3355 | 0x00050805, | ||
| 3356 | 0xfc000800, | ||
| 3357 | 0x54e993ba, | ||
| 3358 | 0x3d290000, | ||
| 3359 | 0x00098200, | ||
| 3360 | 0x00000000, | ||
| 3361 | 0x40820000, | ||
| 3362 | 0x00050805, | ||
| 3363 | 0x7e104a14, | ||
| 3364 | 0x0006000f, | ||
| 3365 | 0x00000000, | ||
| 3366 | 0x41820000, | ||
| 3367 | 0x00050802, | ||
| 3368 | 0x0006000b, | ||
| 3369 | 0x7e104a14, | ||
| 3370 | 0x0006000c, | ||
| 3371 | 0x00000000, | ||
| 3372 | 0x80f00000, | ||
| 3373 | 0x3a100004, | ||
| 3374 | 0x54e815ba, | ||
| 3375 | 0x54ea5d78, | ||
| 3376 | 0x54ec9b78, | ||
| 3377 | 0x7c11402e, | ||
| 3378 | 0x54f4dd78, | ||
| 3379 | 0x54eb9d78, | ||
| 3380 | 0x7c0903a6, | ||
| 3381 | 0x4e800420, | ||
| 3382 | 0x00000000, | ||
| 3383 | 0x0006000f, | ||
| 3384 | 0x54e993ba, | ||
| 3385 | 0x3d290000, | ||
| 3386 | 0x00098200, | ||
| 3387 | 0x48000000, | ||
| 3388 | 0x0005000b, | ||
| 3389 | 0x00000000, | ||
| 3390 | 0x7c0ea02e, | ||
| 3391 | 0x558800fe, | ||
| 3392 | 0x000900ab, | ||
| 3393 | 0x80f00000, | ||
| 3394 | 0x7d0840f8, | ||
| 3395 | 0x3a100004, | ||
| 3396 | 0x7c080050, | ||
| 3397 | 0x54e993ba, | ||
| 3398 | 0x3000ffff, | ||
| 3399 | 0x3d290000, | ||
| 3400 | 0x00098200, | ||
| 3401 | 0x7d084110, | ||
| 3402 | 0x00000000, | ||
| 3403 | 0x7d294038, | ||
| 3404 | 0x00000000, | ||
| 3405 | 0x7d294078, | ||
| 3406 | 0x00000000, | ||
| 3407 | 0x7e104a14, | ||
| 3408 | 0x80f00000, | ||
| 3409 | 0x3a100004, | ||
| 3410 | 0x54e815ba, | ||
| 3411 | 0x54ea5d78, | ||
| 3412 | 0x54ec9b78, | ||
| 3413 | 0x7c11402e, | ||
| 3414 | 0x54f4dd78, | ||
| 3415 | 0x54eb9d78, | ||
| 3416 | 0x7c0903a6, | ||
| 3417 | 0x4e800420, | ||
| 3418 | 0x00000000, | ||
| 3419 | 0x7c0e602e, | ||
| 3420 | 0x80f00000, | ||
| 3421 | 0x3a100004, | ||
| 3422 | 0x00000000, | ||
| 3423 | 0x20000000, | ||
| 3424 | 0x00098200, | ||
| 3425 | 0x54e993ba, | ||
| 3426 | 0x7d084110, | ||
| 3427 | 0x3d290000, | ||
| 3428 | 0x00098200, | ||
| 3429 | 0x00000000, | ||
| 3430 | 0x7d294078, | ||
| 3431 | 0x00000000, | ||
| 3432 | 0x7d294038, | ||
| 3433 | 0x00000000, | ||
| 3434 | 0x7e104a14, | ||
| 3435 | 0x00000000, | ||
| 3436 | 0x39000000, | ||
| 3437 | 0x00098200, | ||
| 3438 | 0x7c0e64ae, | ||
| 3439 | 0x7c004040, | ||
| 3440 | 0x00000000, | ||
| 3441 | 0x40800000, | ||
| 3442 | 0x00050801, | ||
| 3443 | 0x00000000, | ||
| 3444 | 0x41800000, | ||
| 3445 | 0x00050801, | ||
| 3446 | 0x00000000, | ||
| 3447 | 0x3e100000, | ||
| 3448 | 0x00098200, | ||
| 3449 | 0x54e993ba, | ||
| 3450 | 0x7c0ea5ae, | ||
| 3451 | 0x7e104a14, | ||
| 3452 | 0x0006000b, | ||
| 3453 | 0x00000000, | ||
| 3454 | 0x80f00000, | ||
| 3455 | 0x3a100004, | ||
| 3456 | 0x54e815ba, | ||
| 3457 | 0x54ea5d78, | ||
| 3458 | 0x54ec9b78, | ||
| 3459 | 0x7c11402e, | ||
| 3460 | 0x54f4dd78, | ||
| 3461 | 0x54eb9d78, | ||
| 3462 | 0x7c0903a6, | ||
| 3463 | 0x4e800420, | ||
| 3464 | 0x00000000, | ||
| 3465 | 0x80f00000, | ||
| 3466 | 0x3a100004, | ||
| 3467 | 0x7c0e64ae, | ||
| 3468 | 0x7c0ea5ae, | ||
| 3469 | 0x54e815ba, | ||
| 3470 | 0x54ea5d78, | ||
| 3471 | 0x54ec9b78, | ||
| 3472 | 0x7c11402e, | ||
| 3473 | 0x54f4dd78, | ||
| 3474 | 0x54eb9d78, | ||
| 3475 | 0x7c0903a6, | ||
| 3476 | 0x4e800420, | ||
| 3477 | 0x00000000, | ||
| 3478 | 0x80f00000, | ||
| 3479 | 0x3a100004, | ||
| 3480 | 0x7c0e602e, | ||
| 3481 | 0x21000000, | ||
| 3482 | 0x00098200, | ||
| 3483 | 0x7c004114, | ||
| 3484 | 0x7c0ea12e, | ||
| 3485 | 0x54e815ba, | ||
| 3486 | 0x54ea5d78, | ||
| 3487 | 0x54ec9b78, | ||
| 3488 | 0x7c11402e, | ||
| 3489 | 0x54f4dd78, | ||
| 3490 | 0x54eb9d78, | ||
| 3491 | 0x7c0903a6, | ||
| 3492 | 0x4e800420, | ||
| 3493 | 0x00000000, | ||
| 3494 | 0x7d0c706e, | ||
| 3495 | 0x800c0004, | ||
| 3496 | 0x7c08b040, | ||
| 3497 | 0x40800000, | ||
| 3498 | 0x0005083c, | ||
| 3499 | 0x6d088000, | ||
| 3500 | 0x80f00000, | ||
| 3501 | 0x3a100004, | ||
| 3502 | 0x7d14716e, | ||
| 3503 | 0x90140004, | ||
| 3504 | 0x54e815ba, | ||
| 3505 | 0x54ea5d78, | ||
| 3506 | 0x54ec9b78, | ||
| 3507 | 0x7c11402e, | ||
| 3508 | 0x54f4dd78, | ||
| 3509 | 0x54eb9d78, | ||
| 3510 | 0x7c0903a6, | ||
| 3511 | 0x4e800420, | ||
| 3512 | 0x00000000, | ||
| 3513 | 0x7c0c706e, | ||
| 3514 | 0x806c0004, | ||
| 3515 | 0x2c000000, | ||
| 3516 | 0x00098200, | ||
| 3517 | 0x40820000, | ||
| 3518 | 0x00050802, | ||
| 3519 | 0x80630000, | ||
| 3520 | 0x00098200, | ||
| 3521 | 0x0006000b, | ||
| 3522 | 0x90610024, | ||
| 3523 | 0xc8010020, | ||
| 3524 | 0xfc00f028, | ||
| 3525 | 0x80f00000, | ||
| 3526 | 0x3a100004, | ||
| 3527 | 0x7c0ea5ae, | ||
| 3528 | 0x54e815ba, | ||
| 3529 | 0x54ea5d78, | ||
| 3530 | 0x54ec9b78, | ||
| 3531 | 0x7c11402e, | ||
| 3532 | 0x54f4dd78, | ||
| 3533 | 0x54eb9d78, | ||
| 3534 | 0x7c0903a6, | ||
| 3535 | 0x4e800420, | ||
| 3536 | 0x0006000c, | ||
| 3537 | 0x2c000000, | ||
| 3538 | 0x00098200, | ||
| 3539 | 0x40820000, | ||
| 3540 | 0x0005083e, | ||
| 3541 | 0x00000000, | ||
| 3542 | 0x81230000, | ||
| 3543 | 0x00098200, | ||
| 3544 | 0x28090000, | ||
| 3545 | 0x40820000, | ||
| 3546 | 0x00050809, | ||
| 3547 | 0x0006000d, | ||
| 3548 | 0x00000000, | ||
| 3549 | 0x0006003f, | ||
| 3550 | 0x48000001, | ||
| 3551 | 0x00030024, | ||
| 3552 | 0x48000000, | ||
| 3553 | 0x0005000b, | ||
| 3554 | 0x00000000, | ||
| 3555 | 0x00060013, | ||
| 3556 | 0x88090000, | ||
| 3557 | 0x00098200, | ||
| 3558 | 0x70000000, | ||
| 3559 | 0x00090200, | ||
| 3560 | 0x40820000, | ||
| 3561 | 0x0005080d, | ||
| 3562 | 0x48000000, | ||
| 3563 | 0x0005003e, | ||
| 3564 | 0x00000000, | ||
| 3565 | 0x7c6e502e, | ||
| 3566 | 0x7c0e54ae, | ||
| 3567 | 0x7c2f5cae, | ||
| 3568 | 0x7c03b040, | ||
| 3569 | 0x40800000, | ||
| 3570 | 0x0005083a, | ||
| 3571 | 0x00000000, | ||
| 3572 | 0x7c6e502e, | ||
| 3573 | 0x7c2e54ae, | ||
| 3574 | 0x7c0f5cae, | ||
| 3575 | 0x7c03b040, | ||
| 3576 | 0x40800000, | ||
| 3577 | 0x0005083b, | ||
| 3578 | 0x00000000, | ||
| 3579 | 0x7c6e502e, | ||
| 3580 | 0x7c8e582e, | ||
| 3581 | 0x7c0e54ae, | ||
| 3582 | 0x7c2e5cae, | ||
| 3583 | 0x7c03b040, | ||
| 3584 | 0x7c84b040, | ||
| 3585 | 0x4c002202, | ||
| 3586 | 0x40800000, | ||
| 3587 | 0x0005083d, | ||
| 3588 | 0x00000000, | ||
| 3589 | 0x80f00000, | ||
| 3590 | 0x3a100004, | ||
| 3591 | 0xfc00082a, | ||
| 3592 | 0x7c0ea5ae, | ||
| 3593 | 0x54e815ba, | ||
| 3594 | 0x54ea5d78, | ||
| 3595 | 0x54ec9b78, | ||
| 3596 | 0x7c11402e, | ||
| 3597 | 0x54f4dd78, | ||
| 3598 | 0x54eb9d78, | ||
| 3599 | 0x7c0903a6, | ||
| 3600 | 0x4e800420, | ||
| 3601 | 0x00000000, | ||
| 3602 | 0x7c6e502e, | ||
| 3603 | 0x7c0e54ae, | ||
| 3604 | 0x7c2f5cae, | ||
| 3605 | 0x7c03b040, | ||
| 3606 | 0x40800000, | ||
| 3607 | 0x0005083a, | ||
| 3608 | 0x00000000, | ||
| 3609 | 0x7c6e502e, | ||
| 3610 | 0x7c2e54ae, | ||
| 3611 | 0x7c0f5cae, | ||
| 3612 | 0x7c03b040, | ||
| 3613 | 0x40800000, | ||
| 3614 | 0x0005083b, | ||
| 3615 | 0x00000000, | ||
| 3616 | 0x7c6e502e, | ||
| 3617 | 0x7c8e582e, | ||
| 3618 | 0x7c0e54ae, | ||
| 3619 | 0x7c2e5cae, | ||
| 3620 | 0x7c03b040, | ||
| 3621 | 0x7c84b040, | ||
| 3622 | 0x4c002202, | ||
| 3623 | 0x40800000, | ||
| 3624 | 0x0005083d, | ||
| 3625 | 0x00000000, | ||
| 3626 | 0x80f00000, | ||
| 3627 | 0x3a100004, | ||
| 3628 | 0xfc000828, | ||
| 3629 | 0x7c0ea5ae, | ||
| 3630 | 0x54e815ba, | ||
| 3631 | 0x54ea5d78, | ||
| 3632 | 0x54ec9b78, | ||
| 3633 | 0x7c11402e, | ||
| 3634 | 0x54f4dd78, | ||
| 3635 | 0x54eb9d78, | ||
| 3636 | 0x7c0903a6, | ||
| 3637 | 0x4e800420, | ||
| 3638 | 0x00000000, | ||
| 3639 | 0x7c6e502e, | ||
| 3640 | 0x7c0e54ae, | ||
| 3641 | 0x7c2f5cae, | ||
| 3642 | 0x7c03b040, | ||
| 3643 | 0x40800000, | ||
| 3644 | 0x0005083a, | ||
| 3645 | 0x00000000, | ||
| 3646 | 0x7c6e502e, | ||
| 3647 | 0x7c2e54ae, | ||
| 3648 | 0x7c0f5cae, | ||
| 3649 | 0x7c03b040, | ||
| 3650 | 0x40800000, | ||
| 3651 | 0x0005083b, | ||
| 3652 | 0x00000000, | ||
| 3653 | 0x7c6e502e, | ||
| 3654 | 0x7c8e582e, | ||
| 3655 | 0x7c0e54ae, | ||
| 3656 | 0x7c2e5cae, | ||
| 3657 | 0x7c03b040, | ||
| 3658 | 0x7c84b040, | ||
| 3659 | 0x4c002202, | ||
| 3660 | 0x40800000, | ||
| 3661 | 0x0005083d, | ||
| 3662 | 0x00000000, | ||
| 3663 | 0x80f00000, | ||
| 3664 | 0x3a100004, | ||
| 3665 | 0xfc000072, | ||
| 3666 | 0x7c0ea5ae, | ||
| 3667 | 0x54e815ba, | ||
| 3668 | 0x54ea5d78, | ||
| 3669 | 0x54ec9b78, | ||
| 3670 | 0x7c11402e, | ||
| 3671 | 0x54f4dd78, | ||
| 3672 | 0x54eb9d78, | ||
| 3673 | 0x7c0903a6, | ||
| 3674 | 0x4e800420, | ||
| 3675 | 0x00000000, | ||
| 3676 | 0x7c6e502e, | ||
| 3677 | 0x7c0e54ae, | ||
| 3678 | 0x7c2f5cae, | ||
| 3679 | 0x7c03b040, | ||
| 3680 | 0x40800000, | ||
| 3681 | 0x0005083a, | ||
| 3682 | 0x00000000, | ||
| 3683 | 0x7c6e502e, | ||
| 3684 | 0x7c2e54ae, | ||
| 3685 | 0x7c0f5cae, | ||
| 3686 | 0x7c03b040, | ||
| 3687 | 0x40800000, | ||
| 3688 | 0x0005083b, | ||
| 3689 | 0x00000000, | ||
| 3690 | 0x7c6e502e, | ||
| 3691 | 0x7c8e582e, | ||
| 3692 | 0x7c0e54ae, | ||
| 3693 | 0x7c2e5cae, | ||
| 3694 | 0x7c03b040, | ||
| 3695 | 0x7c84b040, | ||
| 3696 | 0x4c002202, | ||
| 3697 | 0x40800000, | ||
| 3698 | 0x0005083d, | ||
| 3699 | 0x00000000, | ||
| 3700 | 0x80f00000, | ||
| 3701 | 0x3a100004, | ||
| 3702 | 0xfc000824, | ||
| 3703 | 0x7c0ea5ae, | ||
| 3704 | 0x54e815ba, | ||
| 3705 | 0x54ea5d78, | ||
| 3706 | 0x54ec9b78, | ||
| 3707 | 0x7c11402e, | ||
| 3708 | 0x54f4dd78, | ||
| 3709 | 0x54eb9d78, | ||
| 3710 | 0x7c0903a6, | ||
| 3711 | 0x4e800420, | ||
| 3712 | 0x00000000, | ||
| 3713 | 0x7c6e502e, | ||
| 3714 | 0x7dce54ae, | ||
| 3715 | 0x7def5cae, | ||
| 3716 | 0x7c03b040, | ||
| 3717 | 0x40800000, | ||
| 3718 | 0x0005083a, | ||
| 3719 | 0x00000000, | ||
| 3720 | 0x7c6e502e, | ||
| 3721 | 0x7dee54ae, | ||
| 3722 | 0x7dcf5cae, | ||
| 3723 | 0x7c03b040, | ||
| 3724 | 0x40800000, | ||
| 3725 | 0x0005083b, | ||
| 3726 | 0x00000000, | ||
| 3727 | 0x7c6e502e, | ||
| 3728 | 0x7c8e582e, | ||
| 3729 | 0x7dce54ae, | ||
| 3730 | 0x7dee5cae, | ||
| 3731 | 0x7c03b040, | ||
| 3732 | 0x7c84b040, | ||
| 3733 | 0x4c002202, | ||
| 3734 | 0x40800000, | ||
| 3735 | 0x0005083d, | ||
| 3736 | 0x00000000, | ||
| 3737 | 0x00060099, | ||
| 3738 | 0xfc2e7824, | ||
| 3739 | 0x48000001, | ||
| 3740 | 0x0003000e, | ||
| 3741 | 0xfc0103f2, | ||
| 3742 | 0x80f00000, | ||
| 3743 | 0x3a100004, | ||
| 3744 | 0xfc0e0028, | ||
| 3745 | 0x7c0ea5ae, | ||
| 3746 | 0x54e815ba, | ||
| 3747 | 0x54ea5d78, | ||
| 3748 | 0x54ec9b78, | ||
| 3749 | 0x7c11402e, | ||
| 3750 | 0x54f4dd78, | ||
| 3751 | 0x54eb9d78, | ||
| 3752 | 0x7c0903a6, | ||
| 3753 | 0x4e800420, | ||
| 3754 | 0x00000000, | ||
| 3755 | 0x7c6e502e, | ||
| 3756 | 0x7dce54ae, | ||
| 3757 | 0x7def5cae, | ||
| 3758 | 0x7c03b040, | ||
| 3759 | 0x40800000, | ||
| 3760 | 0x0005083a, | ||
| 3761 | 0x00000000, | ||
| 3762 | 0x7c6e502e, | ||
| 3763 | 0x7dee54ae, | ||
| 3764 | 0x7dcf5cae, | ||
| 3765 | 0x7c03b040, | ||
| 3766 | 0x40800000, | ||
| 3767 | 0x0005083b, | ||
| 3768 | 0x00000000, | ||
| 3769 | 0x7c6e502e, | ||
| 3770 | 0x7c8e582e, | ||
| 3771 | 0x7dce54ae, | ||
| 3772 | 0x7dee5cae, | ||
| 3773 | 0x7c03b040, | ||
| 3774 | 0x7c84b040, | ||
| 3775 | 0x4c002202, | ||
| 3776 | 0x40800000, | ||
| 3777 | 0x0005083d, | ||
| 3778 | 0x00000000, | ||
| 3779 | 0x48000000, | ||
| 3780 | 0x00050099, | ||
| 3781 | 0x00000000, | ||
| 3782 | 0x7c6e502e, | ||
| 3783 | 0x7c2e54ae, | ||
| 3784 | 0x7c8e582e, | ||
| 3785 | 0x7c4e5cae, | ||
| 3786 | 0x7c03b040, | ||
| 3787 | 0x7c84b040, | ||
| 3788 | 0x4c002202, | ||
| 3789 | 0x40800000, | ||
| 3790 | 0x0005083d, | ||
| 3791 | 0x48000001, | ||
| 3792 | 0x0003001d, | ||
| 3793 | 0x7c2ea5ae, | ||
| 3794 | 0x80f00000, | ||
| 3795 | 0x3a100004, | ||
| 3796 | 0x54e815ba, | ||
| 3797 | 0x54ea5d78, | ||
| 3798 | 0x54ec9b78, | ||
| 3799 | 0x7c11402e, | ||
| 3800 | 0x54f4dd78, | ||
| 3801 | 0x54eb9d78, | ||
| 3802 | 0x7c0903a6, | ||
| 3803 | 0x4e800420, | ||
| 3804 | 0x00000000, | ||
| 3805 | 0x7caa5850, | ||
| 3806 | 0x91d20000, | ||
| 3807 | 0x00098200, | ||
| 3808 | 0x7c8e5a14, | ||
| 3809 | 0x7d555378, | ||
| 3810 | 0x0006002a, | ||
| 3811 | 0x92010008, | ||
| 3812 | 0x7e439378, | ||
| 3813 | 0x54a500fe, | ||
| 3814 | 0x000900ab, | ||
| 3815 | 0x48000001, | ||
| 3816 | 0x00030029, | ||
| 3817 | 0x28030000, | ||
| 3818 | 0x81d20000, | ||
| 3819 | 0x00098200, | ||
| 3820 | 0x40820000, | ||
| 3821 | 0x00050835, | ||
| 3822 | 0x7c0eacae, | ||
| 3823 | 0x7c0ea5ae, | ||
| 3824 | 0x80f00000, | ||
| 3825 | 0x3a100004, | ||
| 3826 | 0x54e815ba, | ||
| 3827 | 0x54ea5d78, | ||
| 3828 | 0x54ec9b78, | ||
| 3829 | 0x7c11402e, | ||
| 3830 | 0x54f4dd78, | ||
| 3831 | 0x54eb9d78, | ||
| 3832 | 0x7c0903a6, | ||
| 3833 | 0x4e800420, | ||
| 3834 | 0x00000000, | ||
| 3835 | 0x5588007e, | ||
| 3836 | 0x000900ab, | ||
| 3837 | 0x2108fffc, | ||
| 3838 | 0x7c0f402e, | ||
| 3839 | 0x39200000, | ||
| 3840 | 0x00098200, | ||
| 3841 | 0x80f00000, | ||
| 3842 | 0x3a100004, | ||
| 3843 | 0x7d34716e, | ||
| 3844 | 0x90140004, | ||
| 3845 | 0x54e815ba, | ||
| 3846 | 0x54ea5d78, | ||
| 3847 | 0x54ec9b78, | ||
| 3848 | 0x7c11402e, | ||
| 3849 | 0x54f4dd78, | ||
| 3850 | 0x54eb9d78, | ||
| 3851 | 0x7c0903a6, | ||
| 3852 | 0x4e800420, | ||
| 3853 | 0x00000000, | ||
| 3854 | 0x5588007e, | ||
| 3855 | 0x000900ab, | ||
| 3856 | 0x2108fffc, | ||
| 3857 | 0x7c0f402e, | ||
| 3858 | 0x39200000, | ||
| 3859 | 0x00098200, | ||
| 3860 | 0x80f00000, | ||
| 3861 | 0x3a100004, | ||
| 3862 | 0x7d34716e, | ||
| 3863 | 0x90140004, | ||
| 3864 | 0x54e815ba, | ||
| 3865 | 0x54ea5d78, | ||
| 3866 | 0x54ec9b78, | ||
| 3867 | 0x7c11402e, | ||
| 3868 | 0x54f4dd78, | ||
| 3869 | 0x54eb9d78, | ||
| 3870 | 0x7c0903a6, | ||
| 3871 | 0x4e800420, | ||
| 3872 | 0x00000000, | ||
| 3873 | 0x558c6800, | ||
| 3874 | 0x000900a1, | ||
| 3875 | 0x7d8c8670, | ||
| 3876 | 0x6d8c8000, | ||
| 3877 | 0x91810024, | ||
| 3878 | 0xc8010020, | ||
| 3879 | 0xfc00f828, | ||
| 3880 | 0x80f00000, | ||
| 3881 | 0x3a100004, | ||
| 3882 | 0x7c0ea5ae, | ||
| 3883 | 0x54e815ba, | ||
| 3884 | 0x54ea5d78, | ||
| 3885 | 0x54ec9b78, | ||
| 3886 | 0x7c11402e, | ||
| 3887 | 0x54f4dd78, | ||
| 3888 | 0x54eb9d78, | ||
| 3889 | 0x7c0903a6, | ||
| 3890 | 0x4e800420, | ||
| 3891 | 0x00000000, | ||
| 3892 | 0x7c0f64ae, | ||
| 3893 | 0x80f00000, | ||
| 3894 | 0x3a100004, | ||
| 3895 | 0x7c0ea5ae, | ||
| 3896 | 0x54e815ba, | ||
| 3897 | 0x54ea5d78, | ||
| 3898 | 0x54ec9b78, | ||
| 3899 | 0x7c11402e, | ||
| 3900 | 0x54f4dd78, | ||
| 3901 | 0x54eb9d78, | ||
| 3902 | 0x7c0903a6, | ||
| 3903 | 0x4e800420, | ||
| 3904 | 0x00000000, | ||
| 3905 | 0x558800fe, | ||
| 3906 | 0x000900ab, | ||
| 3907 | 0x7d0040f8, | ||
| 3908 | 0x80f00000, | ||
| 3909 | 0x3a100004, | ||
| 3910 | 0x7c0ea12e, | ||
| 3911 | 0x54e815ba, | ||
| 3912 | 0x54ea5d78, | ||
| 3913 | 0x54ec9b78, | ||
| 3914 | 0x7c11402e, | ||
| 3915 | 0x54f4dd78, | ||
| 3916 | 0x54eb9d78, | ||
| 3917 | 0x7c0903a6, | ||
| 3918 | 0x4e800420, | ||
| 3919 | 0x00000000, | ||
| 3920 | 0x7eeea12e, | ||
| 3921 | 0x3a940008, | ||
| 3922 | 0x0006000b, | ||
| 3923 | 0x7eeea12e, | ||
| 3924 | 0x7c146000, | ||
| 3925 | 0x3a940008, | ||
| 3926 | 0x41800000, | ||
| 3927 | 0x0005080b, | ||
| 3928 | 0x80f00000, | ||
| 3929 | 0x3a100004, | ||
| 3930 | 0x54e815ba, | ||
| 3931 | 0x54ea5d78, | ||
| 3932 | 0x54ec9b78, | ||
| 3933 | 0x7c11402e, | ||
| 3934 | 0x54f4dd78, | ||
| 3935 | 0x54eb9d78, | ||
| 3936 | 0x7c0903a6, | ||
| 3937 | 0x4e800420, | ||
| 3938 | 0x00000000, | ||
| 3939 | 0x80f00000, | ||
| 3940 | 0x3a100004, | ||
| 3941 | 0x814efffc, | ||
| 3942 | 0x558c007e, | ||
| 3943 | 0x000900ab, | ||
| 3944 | 0x398c0000, | ||
| 3945 | 0x00098200, | ||
| 3946 | 0x7d4a602e, | ||
| 3947 | 0x810a0000, | ||
| 3948 | 0x00098200, | ||
| 3949 | 0xc8080000, | ||
| 3950 | 0x7c0ea5ae, | ||
| 3951 | 0x54e815ba, | ||
| 3952 | 0x54ea5d78, | ||
| 3953 | 0x54ec9b78, | ||
| 3954 | 0x7c11402e, | ||
| 3955 | 0x54f4dd78, | ||
| 3956 | 0x54eb9d78, | ||
| 3957 | 0x7c0903a6, | ||
| 3958 | 0x4e800420, | ||
| 3959 | 0x00000000, | ||
| 3960 | 0x814efffc, | ||
| 3961 | 0x5694007e, | ||
| 3962 | 0x000900ab, | ||
| 3963 | 0x3a940000, | ||
| 3964 | 0x00098200, | ||
| 3965 | 0x7c0c74ee, | ||
| 3966 | 0x7d4aa02e, | ||
| 3967 | 0x88ca0000, | ||
| 3968 | 0x00098200, | ||
| 3969 | 0x808a0000, | ||
| 3970 | 0x00098200, | ||
| 3971 | 0x70c60000, | ||
| 3972 | 0x00090200, | ||
| 3973 | 0x880a0000, | ||
| 3974 | 0x00098200, | ||
| 3975 | 0x812c0000, | ||
| 3976 | 0xd8040000, | ||
| 3977 | 0x28800000, | ||
| 3978 | 0x810c0004, | ||
| 3979 | 0x4c423382, | ||
| 3980 | 0x39290000, | ||
| 3981 | 0x00098200, | ||
| 3982 | 0x40820000, | ||
| 3983 | 0x00050802, | ||
| 3984 | 0x0006000b, | ||
| 3985 | 0x80f00000, | ||
| 3986 | 0x3a100004, | ||
| 3987 | 0x54e815ba, | ||
| 3988 | 0x54ea5d78, | ||
| 3989 | 0x54ec9b78, | ||
| 3990 | 0x7c11402e, | ||
| 3991 | 0x54f4dd78, | ||
| 3992 | 0x54eb9d78, | ||
| 3993 | 0x7c0903a6, | ||
| 3994 | 0x4e800420, | ||
| 3995 | 0x0006000c, | ||
| 3996 | 0x28090000, | ||
| 3997 | 0x00090200, | ||
| 3998 | 0x40800000, | ||
| 3999 | 0x0005080b, | ||
| 4000 | 0x88c80000, | ||
| 4001 | 0x00098200, | ||
| 4002 | 0x70c60000, | ||
| 4003 | 0x00090200, | ||
| 4004 | 0x38710000, | ||
| 4005 | 0x00098200, | ||
| 4006 | 0x41820000, | ||
| 4007 | 0x0005080b, | ||
| 4008 | 0x48000001, | ||
| 4009 | 0x0003002a, | ||
| 4010 | 0x48000000, | ||
| 4011 | 0x0005000b, | ||
| 4012 | 0x00000000, | ||
| 4013 | 0x80f00000, | ||
| 4014 | 0x3a100004, | ||
| 4015 | 0x814efffc, | ||
| 4016 | 0x5588007e, | ||
| 4017 | 0x000900ab, | ||
| 4018 | 0x5694007e, | ||
| 4019 | 0x000900ab, | ||
| 4020 | 0x2108fffc, | ||
| 4021 | 0x3a940000, | ||
| 4022 | 0x00098200, | ||
| 4023 | 0x7d0f402e, | ||
| 4024 | 0x7d4aa02e, | ||
| 4025 | 0x88ca0000, | ||
| 4026 | 0x00098200, | ||
| 4027 | 0x808a0000, | ||
| 4028 | 0x00098200, | ||
| 4029 | 0x70c60000, | ||
| 4030 | 0x00090200, | ||
| 4031 | 0x88c80000, | ||
| 4032 | 0x00098200, | ||
| 4033 | 0x892a0000, | ||
| 4034 | 0x00098200, | ||
| 4035 | 0x38000000, | ||
| 4036 | 0x00098200, | ||
| 4037 | 0x91040004, | ||
| 4038 | 0x90040000, | ||
| 4039 | 0x40820000, | ||
| 4040 | 0x00050802, | ||
| 4041 | 0x0006000b, | ||
| 4042 | 0x54e815ba, | ||
| 4043 | 0x54ea5d78, | ||
| 4044 | 0x54ec9b78, | ||
| 4045 | 0x7c11402e, | ||
| 4046 | 0x54f4dd78, | ||
| 4047 | 0x54eb9d78, | ||
| 4048 | 0x7c0903a6, | ||
| 4049 | 0x4e800420, | ||
| 4050 | 0x0006000c, | ||
| 4051 | 0x70c60000, | ||
| 4052 | 0x00090200, | ||
| 4053 | 0x28890000, | ||
| 4054 | 0x4c423382, | ||
| 4055 | 0x38710000, | ||
| 4056 | 0x00098200, | ||
| 4057 | 0x41820000, | ||
| 4058 | 0x0005080b, | ||
| 4059 | 0x48000001, | ||
| 4060 | 0x0003002a, | ||
| 4061 | 0x48000000, | ||
| 4062 | 0x0005000b, | ||
| 4063 | 0x00000000, | ||
| 4064 | 0x80f00000, | ||
| 4065 | 0x3a100004, | ||
| 4066 | 0x814efffc, | ||
| 4067 | 0x5694007e, | ||
| 4068 | 0x000900ab, | ||
| 4069 | 0x3a940000, | ||
| 4070 | 0x00098200, | ||
| 4071 | 0x7c0f64ae, | ||
| 4072 | 0x7d4aa02e, | ||
| 4073 | 0x810a0000, | ||
| 4074 | 0x00098200, | ||
| 4075 | 0xd8080000, | ||
| 4076 | 0x54e815ba, | ||
| 4077 | 0x54ea5d78, | ||
| 4078 | 0x54ec9b78, | ||
| 4079 | 0x7c11402e, | ||
| 4080 | 0x54f4dd78, | ||
| 4081 | 0x54eb9d78, | ||
| 4082 | 0x7c0903a6, | ||
| 4083 | 0x4e800420, | ||
| 4084 | 0x00000000, | ||
| 4085 | 0x80f00000, | ||
| 4086 | 0x3a100004, | ||
| 4087 | 0x814efffc, | ||
| 4088 | 0x5694007e, | ||
| 4089 | 0x000900ab, | ||
| 4090 | 0x3a940000, | ||
| 4091 | 0x00098200, | ||
| 4092 | 0x558000fe, | ||
| 4093 | 0x000900ab, | ||
| 4094 | 0x7d4aa02e, | ||
| 4095 | 0x7c0000f8, | ||
| 4096 | 0x810a0000, | ||
| 4097 | 0x00098200, | ||
| 4098 | 0x90080000, | ||
| 4099 | 0x54e815ba, | ||
| 4100 | 0x54ea5d78, | ||
| 4101 | 0x54ec9b78, | ||
| 4102 | 0x7c11402e, | ||
| 4103 | 0x54f4dd78, | ||
| 4104 | 0x54eb9d78, | ||
| 4105 | 0x7c0903a6, | ||
| 4106 | 0x4e800420, | ||
| 4107 | 0x00000000, | ||
| 4108 | 0x81120000, | ||
| 4109 | 0x00098200, | ||
| 4110 | 0x5580007e, | ||
| 4111 | 0x000900ab, | ||
| 4112 | 0x7e100214, | ||
| 4113 | 0x3e100000, | ||
| 4114 | 0x00098200, | ||
| 4115 | 0x91d20000, | ||
| 4116 | 0x00098200, | ||
| 4117 | 0x28080000, | ||
| 4118 | 0x7e439378, | ||
| 4119 | 0x41820000, | ||
| 4120 | 0x00050801, | ||
| 4121 | 0x7c8ea214, | ||
| 4122 | 0x48000001, | ||
| 4123 | 0x0003002b, | ||
| 4124 | 0x81d20000, | ||
| 4125 | 0x00098200, | ||
| 4126 | 0x0006000b, | ||
| 4127 | 0x80f00000, | ||
| 4128 | 0x3a100004, | ||
| 4129 | 0x54e815ba, | ||
| 4130 | 0x54ea5d78, | ||
| 4131 | 0x54ec9b78, | ||
| 4132 | 0x7c11402e, | ||
| 4133 | 0x54f4dd78, | ||
| 4134 | 0x54eb9d78, | ||
| 4135 | 0x7c0903a6, | ||
| 4136 | 0x4e800420, | ||
| 4137 | 0x00000000, | ||
| 4138 | 0x5588007e, | ||
| 4139 | 0x000900ab, | ||
| 4140 | 0x91d20000, | ||
| 4141 | 0x00098200, | ||
| 4142 | 0x2108fffc, | ||
| 4143 | 0x92010008, | ||
| 4144 | 0x7c8f402e, | ||
| 4145 | 0x7e439378, | ||
| 4146 | 0x80aefffc, | ||
| 4147 | 0x48000001, | ||
| 4148 | 0x0003002c, | ||
| 4149 | 0x81d20000, | ||
| 4150 | 0x00098200, | ||
| 4151 | 0x38000000, | ||
| 4152 | 0x00098200, | ||
| 4153 | 0x7c14716e, | ||
| 4154 | 0x90740004, | ||
| 4155 | 0x80f00000, | ||
| 4156 | 0x3a100004, | ||
| 4157 | 0x54e815ba, | ||
| 4158 | 0x54ea5d78, | ||
| 4159 | 0x54ec9b78, | ||
| 4160 | 0x7c11402e, | ||
| 4161 | 0x54f4dd78, | ||
| 4162 | 0x54eb9d78, | ||
| 4163 | 0x7c0903a6, | ||
| 4164 | 0x4e800420, | ||
| 4165 | 0x00000000, | ||
| 4166 | 0x80110000, | ||
| 4167 | 0x00098200, | ||
| 4168 | 0x7e439378, | ||
| 4169 | 0x81110000, | ||
| 4170 | 0x00098200, | ||
| 4171 | 0x91d20000, | ||
| 4172 | 0x00098200, | ||
| 4173 | 0x7c004040, | ||
| 4174 | 0x92010008, | ||
| 4175 | 0x40800000, | ||
| 4176 | 0x00050805, | ||
| 4177 | 0x0006000b, | ||
| 4178 | 0x00000000, | ||
| 4179 | 0x5584ed7e, | ||
| 4180 | 0x558596fe, | ||
| 4181 | 0x2c0407ff, | ||
| 4182 | 0x41820000, | ||
| 4183 | 0x00050803, | ||
| 4184 | 0x0006000c, | ||
| 4185 | 0x48000001, | ||
| 4186 | 0x0003002d, | ||
| 4187 | 0x00000000, | ||
| 4188 | 0x5588007e, | ||
| 4189 | 0x000900ab, | ||
| 4190 | 0x2108fffc, | ||
| 4191 | 0x7c8f402e, | ||
| 4192 | 0x48000001, | ||
| 4193 | 0x0003002e, | ||
| 4194 | 0x00000000, | ||
| 4195 | 0x81d20000, | ||
| 4196 | 0x00098200, | ||
| 4197 | 0x38000000, | ||
| 4198 | 0x00098200, | ||
| 4199 | 0x7c14716e, | ||
| 4200 | 0x90740004, | ||
| 4201 | 0x80f00000, | ||
| 4202 | 0x3a100004, | ||
| 4203 | 0x54e815ba, | ||
| 4204 | 0x54ea5d78, | ||
| 4205 | 0x54ec9b78, | ||
| 4206 | 0x7c11402e, | ||
| 4207 | 0x54f4dd78, | ||
| 4208 | 0x54eb9d78, | ||
| 4209 | 0x7c0903a6, | ||
| 4210 | 0x4e800420, | ||
| 4211 | 0x00000000, | ||
| 4212 | 0x0006000d, | ||
| 4213 | 0x38800801, | ||
| 4214 | 0x48000000, | ||
| 4215 | 0x0005000c, | ||
| 4216 | 0x00000000, | ||
| 4217 | 0x0006000f, | ||
| 4218 | 0x7d956378, | ||
| 4219 | 0x48000001, | ||
| 4220 | 0x0003002f, | ||
| 4221 | 0x7eacab78, | ||
| 4222 | 0x7e439378, | ||
| 4223 | 0x48000000, | ||
| 4224 | 0x0005000b, | ||
| 4225 | 0x00000000, | ||
| 4226 | 0x812efffc, | ||
| 4227 | 0x5588007e, | ||
| 4228 | 0x000900ab, | ||
| 4229 | 0x81490000, | ||
| 4230 | 0x00098200, | ||
| 4231 | 0x2108fffc, | ||
| 4232 | 0x7d6f402e, | ||
| 4233 | 0x00000000, | ||
| 4234 | 0x48000000, | ||
| 4235 | 0x0005009a, | ||
| 4236 | 0x00000000, | ||
| 4237 | 0x48000000, | ||
| 4238 | 0x0005009b, | ||
| 4239 | 0x00000000, | ||
| 4240 | 0x7c6a706e, | ||
| 4241 | 0x7c8b706e, | ||
| 4242 | 0x814a0004, | ||
| 4243 | 0xc80b0000, | ||
| 4244 | 0x2c030000, | ||
| 4245 | 0x00098200, | ||
| 4246 | 0x7c84b040, | ||
| 4247 | 0x40820000, | ||
| 4248 | 0x0005082f, | ||
| 4249 | 0x40840000, | ||
| 4250 | 0x00050805, | ||
| 4251 | 0xfc20001e, | ||
| 4252 | 0xfc40f02a, | ||
| 4253 | 0xd8210008, | ||
| 4254 | 0x800a0000, | ||
| 4255 | 0x00098200, | ||
| 4256 | 0xfc42f028, | ||
| 4257 | 0x8121000c, | ||
| 4258 | 0x810a0000, | ||
| 4259 | 0x00098200, | ||
| 4260 | 0xfc801000, | ||
| 4261 | 0x7c004840, | ||
| 4262 | 0x4c213202, | ||
| 4263 | 0x55291800, | ||
| 4264 | 0x000900a1, | ||
| 4265 | 0x40810000, | ||
| 4266 | 0x0005082f, | ||
| 4267 | 0x7c08482e, | ||
| 4268 | 0x7dc84cae, | ||
| 4269 | 0x2c000000, | ||
| 4270 | 0x00098200, | ||
| 4271 | 0x41820000, | ||
| 4272 | 0x00050802, | ||
| 4273 | 0x0006000b, | ||
| 4274 | 0x80f00000, | ||
| 4275 | 0x3a100004, | ||
| 4276 | 0x7dcea5ae, | ||
| 4277 | 0x54e815ba, | ||
| 4278 | 0x54ea5d78, | ||
| 4279 | 0x54ec9b78, | ||
| 4280 | 0x7c11402e, | ||
| 4281 | 0x54f4dd78, | ||
| 4282 | 0x54eb9d78, | ||
| 4283 | 0x7c0903a6, | ||
| 4284 | 0x4e800420, | ||
| 4285 | 0x0006000c, | ||
| 4286 | 0x812a0000, | ||
| 4287 | 0x00098200, | ||
| 4288 | 0x28090000, | ||
| 4289 | 0x41820000, | ||
| 4290 | 0x0005080b, | ||
| 4291 | 0x88090000, | ||
| 4292 | 0x00098200, | ||
| 4293 | 0x70000000, | ||
| 4294 | 0x00090200, | ||
| 4295 | 0x40820000, | ||
| 4296 | 0x0005080b, | ||
| 4297 | 0x48000000, | ||
| 4298 | 0x0005002f, | ||
| 4299 | 0x0006000f, | ||
| 4300 | 0x2c040000, | ||
| 4301 | 0x00098200, | ||
| 4302 | 0x40820000, | ||
| 4303 | 0x0005082f, | ||
| 4304 | 0x816b0004, | ||
| 4305 | 0x48000000, | ||
| 4306 | 0x0005009a, | ||
| 4307 | 0x00000000, | ||
| 4308 | 0x7c6a706e, | ||
| 4309 | 0x5568007e, | ||
| 4310 | 0x000900ab, | ||
| 4311 | 0x814a0004, | ||
| 4312 | 0x2108fffc, | ||
| 4313 | 0x2c030000, | ||
| 4314 | 0x00098200, | ||
| 4315 | 0x7d6f402e, | ||
| 4316 | 0x40820000, | ||
| 4317 | 0x0005082c, | ||
| 4318 | 0x0006009a, | ||
| 4319 | 0x800a0000, | ||
| 4320 | 0x00098200, | ||
| 4321 | 0x810b0000, | ||
| 4322 | 0x00098200, | ||
| 4323 | 0x812a0000, | ||
| 4324 | 0x00098200, | ||
| 4325 | 0x7d080038, | ||
| 4326 | 0x55002800, | ||
| 4327 | 0x000900a1, | ||
| 4328 | 0x55081800, | ||
| 4329 | 0x000900a1, | ||
| 4330 | 0x7d080050, | ||
| 4331 | 0x7d294214, | ||
| 4332 | 0x0006000b, | ||
| 4333 | 0x80690000, | ||
| 4334 | 0x00098200, | ||
| 4335 | 0x80090000, | ||
| 4336 | 0x00098200, | ||
| 4337 | 0x80890000, | ||
| 4338 | 0x00098200, | ||
| 4339 | 0x81090000, | ||
| 4340 | 0x00098200, | ||
| 4341 | 0x2c030000, | ||
| 4342 | 0x00098200, | ||
| 4343 | 0x40820000, | ||
| 4344 | 0x00050804, | ||
| 4345 | 0x7c005800, | ||
| 4346 | 0x40820000, | ||
| 4347 | 0x00050804, | ||
| 4348 | 0x2c040000, | ||
| 4349 | 0x00098200, | ||
| 4350 | 0x41820000, | ||
| 4351 | 0x00050805, | ||
| 4352 | 0x0006000d, | ||
| 4353 | 0x7c94716e, | ||
| 4354 | 0x91140004, | ||
| 4355 | 0x80f00000, | ||
| 4356 | 0x3a100004, | ||
| 4357 | 0x54e815ba, | ||
| 4358 | 0x54ea5d78, | ||
| 4359 | 0x54ec9b78, | ||
| 4360 | 0x7c11402e, | ||
| 4361 | 0x54f4dd78, | ||
| 4362 | 0x54eb9d78, | ||
| 4363 | 0x7c0903a6, | ||
| 4364 | 0x4e800420, | ||
| 4365 | 0x0006000e, | ||
| 4366 | 0x81290000, | ||
| 4367 | 0x00098200, | ||
| 4368 | 0x00000000, | ||
| 4369 | 0x28090000, | ||
| 4370 | 0x40820000, | ||
| 4371 | 0x0005080b, | ||
| 4372 | 0x38800000, | ||
| 4373 | 0x00098200, | ||
| 4374 | 0x0006000f, | ||
| 4375 | 0x812a0000, | ||
| 4376 | 0x00098200, | ||
| 4377 | 0x28090000, | ||
| 4378 | 0x41820000, | ||
| 4379 | 0x0005080d, | ||
| 4380 | 0x88090000, | ||
| 4381 | 0x00098200, | ||
| 4382 | 0x70000000, | ||
| 4383 | 0x00090200, | ||
| 4384 | 0x40820000, | ||
| 4385 | 0x0005080d, | ||
| 4386 | 0x48000000, | ||
| 4387 | 0x0005002d, | ||
| 4388 | 0x00000000, | ||
| 4389 | 0x7c6a706e, | ||
| 4390 | 0x814a0004, | ||
| 4391 | 0x556000fe, | ||
| 4392 | 0x000900ab, | ||
| 4393 | 0x2c030000, | ||
| 4394 | 0x00098200, | ||
| 4395 | 0x40820000, | ||
| 4396 | 0x0005082e, | ||
| 4397 | 0x810a0000, | ||
| 4398 | 0x00098200, | ||
| 4399 | 0x812a0000, | ||
| 4400 | 0x00098200, | ||
| 4401 | 0x7c004040, | ||
| 4402 | 0x40800000, | ||
| 4403 | 0x0005082e, | ||
| 4404 | 0x7d09582e, | ||
| 4405 | 0x7c095cae, | ||
| 4406 | 0x2c080000, | ||
| 4407 | 0x00098200, | ||
| 4408 | 0x41820000, | ||
| 4409 | 0x00050805, | ||
| 4410 | 0x0006000b, | ||
| 4411 | 0x80f00000, | ||
| 4412 | 0x3a100004, | ||
| 4413 | 0x7c0ea5ae, | ||
| 4414 | 0x54e815ba, | ||
| 4415 | 0x54ea5d78, | ||
| 4416 | 0x54ec9b78, | ||
| 4417 | 0x7c11402e, | ||
| 4418 | 0x54f4dd78, | ||
| 4419 | 0x54eb9d78, | ||
| 4420 | 0x7c0903a6, | ||
| 4421 | 0x4e800420, | ||
| 4422 | 0x0006000f, | ||
| 4423 | 0x812a0000, | ||
| 4424 | 0x00098200, | ||
| 4425 | 0x28090000, | ||
| 4426 | 0x41820000, | ||
| 4427 | 0x0005080b, | ||
| 4428 | 0x89290000, | ||
| 4429 | 0x00098200, | ||
| 4430 | 0x71290000, | ||
| 4431 | 0x00090200, | ||
| 4432 | 0x40820000, | ||
| 4433 | 0x0005080b, | ||
| 4434 | 0x48000000, | ||
| 4435 | 0x0005002e, | ||
| 4436 | 0x00000000, | ||
| 4437 | 0x7c6a706e, | ||
| 4438 | 0x7c8b706e, | ||
| 4439 | 0x814a0004, | ||
| 4440 | 0xc80b0000, | ||
| 4441 | 0x2c030000, | ||
| 4442 | 0x00098200, | ||
| 4443 | 0x7c84b040, | ||
| 4444 | 0x40820000, | ||
| 4445 | 0x00050833, | ||
| 4446 | 0x40840000, | ||
| 4447 | 0x00050805, | ||
| 4448 | 0xfc20001e, | ||
| 4449 | 0xfc40f02a, | ||
| 4450 | 0xd8210008, | ||
| 4451 | 0x800a0000, | ||
| 4452 | 0x00098200, | ||
| 4453 | 0xfc42f028, | ||
| 4454 | 0x8121000c, | ||
| 4455 | 0x810a0000, | ||
| 4456 | 0x00098200, | ||
| 4457 | 0xfc801000, | ||
| 4458 | 0x7c004840, | ||
| 4459 | 0x4c213202, | ||
| 4460 | 0x55201800, | ||
| 4461 | 0x000900a1, | ||
| 4462 | 0x40810000, | ||
| 4463 | 0x00050833, | ||
| 4464 | 0x7d28002e, | ||
| 4465 | 0x88ca0000, | ||
| 4466 | 0x00098200, | ||
| 4467 | 0x7dcea4ae, | ||
| 4468 | 0x2c090000, | ||
| 4469 | 0x00098200, | ||
| 4470 | 0x41820000, | ||
| 4471 | 0x00050803, | ||
| 4472 | 0x0006000b, | ||
| 4473 | 0x70c90000, | ||
| 4474 | 0x00090200, | ||
| 4475 | 0x7dc805ae, | ||
| 4476 | 0x40820000, | ||
| 4477 | 0x00050807, | ||
| 4478 | 0x0006000c, | ||
| 4479 | 0x80f00000, | ||
| 4480 | 0x3a100004, | ||
| 4481 | 0x54e815ba, | ||
| 4482 | 0x54ea5d78, | ||
| 4483 | 0x54ec9b78, | ||
| 4484 | 0x7c11402e, | ||
| 4485 | 0x54f4dd78, | ||
| 4486 | 0x54eb9d78, | ||
| 4487 | 0x7c0903a6, | ||
| 4488 | 0x4e800420, | ||
| 4489 | 0x0006000d, | ||
| 4490 | 0x812a0000, | ||
| 4491 | 0x00098200, | ||
| 4492 | 0x28090000, | ||
| 4493 | 0x41820000, | ||
| 4494 | 0x0005080b, | ||
| 4495 | 0x89290000, | ||
| 4496 | 0x00098200, | ||
| 4497 | 0x71290000, | ||
| 4498 | 0x00090200, | ||
| 4499 | 0x40820000, | ||
| 4500 | 0x0005080b, | ||
| 4501 | 0x48000000, | ||
| 4502 | 0x00050033, | ||
| 4503 | 0x0006000f, | ||
| 4504 | 0x00000000, | ||
| 4505 | 0x2c040000, | ||
| 4506 | 0x00098200, | ||
| 4507 | 0x40820000, | ||
| 4508 | 0x00050833, | ||
| 4509 | 0x816b0004, | ||
| 4510 | 0x48000000, | ||
| 4511 | 0x0005009b, | ||
| 4512 | 0x00060011, | ||
| 4513 | 0x80110000, | ||
| 4514 | 0x00098200, | ||
| 4515 | 0x54c607b8, | ||
| 4516 | 0x91510000, | ||
| 4517 | 0x00098200, | ||
| 4518 | 0x98ca0000, | ||
| 4519 | 0x00098200, | ||
| 4520 | 0x900a0000, | ||
| 4521 | 0x00098200, | ||
| 4522 | 0x48000000, | ||
| 4523 | 0x0005000c, | ||
| 4524 | 0x00000000, | ||
| 4525 | 0x0006000b, | ||
| 4526 | 0x2c030000, | ||
| 4527 | 0x00098200, | ||
| 4528 | 0x40820000, | ||
| 4529 | 0x00050804, | ||
| 4530 | 0x7c005800, | ||
| 4531 | 0x40820000, | ||
| 4532 | 0x00050804, | ||
| 4533 | 0x2c040000, | ||
| 4534 | 0x00098200, | ||
| 4535 | 0x41820000, | ||
| 4536 | 0x00050805, | ||
| 4537 | 0x0006000d, | ||
| 4538 | 0x7c94716e, | ||
| 4539 | 0x91140004, | ||
| 4540 | 0x80f00000, | ||
| 4541 | 0x3a100004, | ||
| 4542 | 0x54e815ba, | ||
| 4543 | 0x54ea5d78, | ||
| 4544 | 0x54ec9b78, | ||
| 4545 | 0x7c11402e, | ||
| 4546 | 0x54f4dd78, | ||
| 4547 | 0x54eb9d78, | ||
| 4548 | 0x7c0903a6, | ||
| 4549 | 0x4e800420, | ||
| 4550 | 0x00000000, | ||
| 4551 | 0x7c6a706e, | ||
| 4552 | 0x5568007e, | ||
| 4553 | 0x000900ab, | ||
| 4554 | 0x814a0004, | ||
| 4555 | 0x2108fffc, | ||
| 4556 | 0x2c030000, | ||
| 4557 | 0x00098200, | ||
| 4558 | 0x7d6f402e, | ||
| 4559 | 0x40820000, | ||
| 4560 | 0x00050830, | ||
| 4561 | 0x0006009b, | ||
| 4562 | 0x800a0000, | ||
| 4563 | 0x00098200, | ||
| 4564 | 0x810b0000, | ||
| 4565 | 0x00098200, | ||
| 4566 | 0x812a0000, | ||
| 4567 | 0x00098200, | ||
| 4568 | 0x9b0a0000, | ||
| 4569 | 0x00098200, | ||
| 4570 | 0x7d080038, | ||
| 4571 | 0x7dcea4ae, | ||
| 4572 | 0x55002800, | ||
| 4573 | 0x000900a1, | ||
| 4574 | 0x55081800, | ||
| 4575 | 0x000900a1, | ||
| 4576 | 0x7d080050, | ||
| 4577 | 0x88ca0000, | ||
| 4578 | 0x00098200, | ||
| 4579 | 0x7d294214, | ||
| 4580 | 0x0006000b, | ||
| 4581 | 0x80690000, | ||
| 4582 | 0x00098200, | ||
| 4583 | 0x80090000, | ||
| 4584 | 0x00098200, | ||
| 4585 | 0x80890000, | ||
| 4586 | 0x00098200, | ||
| 4587 | 0x81090000, | ||
| 4588 | 0x00098200, | ||
| 4589 | 0x2c030000, | ||
| 4590 | 0x00098200, | ||
| 4591 | 0x40820000, | ||
| 4592 | 0x00050805, | ||
| 4593 | 0x7c005800, | ||
| 4594 | 0x40820000, | ||
| 4595 | 0x00050805, | ||
| 4596 | 0x2c040000, | ||
| 4597 | 0x00098200, | ||
| 4598 | 0x41820000, | ||
| 4599 | 0x00050804, | ||
| 4600 | 0x0006000c, | ||
| 4601 | 0x00000000, | ||
| 4602 | 0x70c00000, | ||
| 4603 | 0x00090200, | ||
| 4604 | 0xd9c90000, | ||
| 4605 | 0x00098200, | ||
| 4606 | 0x40820000, | ||
| 4607 | 0x00050807, | ||
| 4608 | 0x0006000d, | ||
| 4609 | 0x80f00000, | ||
| 4610 | 0x3a100004, | ||
| 4611 | 0x54e815ba, | ||
| 4612 | 0x54ea5d78, | ||
| 4613 | 0x54ec9b78, | ||
| 4614 | 0x7c11402e, | ||
| 4615 | 0x54f4dd78, | ||
| 4616 | 0x54eb9d78, | ||
| 4617 | 0x7c0903a6, | ||
| 4618 | 0x4e800420, | ||
| 4619 | 0x0006000e, | ||
| 4620 | 0x810a0000, | ||
| 4621 | 0x00098200, | ||
| 4622 | 0x28080000, | ||
| 4623 | 0x41820000, | ||
| 4624 | 0x0005080c, | ||
| 4625 | 0x88080000, | ||
| 4626 | 0x00098200, | ||
| 4627 | 0x70000000, | ||
| 4628 | 0x00090200, | ||
| 4629 | 0x40820000, | ||
| 4630 | 0x0005080c, | ||
| 4631 | 0x48000000, | ||
| 4632 | 0x00050031, | ||
| 4633 | 0x0006000f, | ||
| 4634 | 0x81290000, | ||
| 4635 | 0x00098200, | ||
| 4636 | 0x28090000, | ||
| 4637 | 0x40820000, | ||
| 4638 | 0x0005080b, | ||
| 4639 | 0x810a0000, | ||
| 4640 | 0x00098200, | ||
| 4641 | 0x38b10000, | ||
| 4642 | 0x00098200, | ||
| 4643 | 0x92010008, | ||
| 4644 | 0x7e439378, | ||
| 4645 | 0x28080000, | ||
| 4646 | 0x91d20000, | ||
| 4647 | 0x00098200, | ||
| 4648 | 0x41820000, | ||
| 4649 | 0x00050806, | ||
| 4650 | 0x88080000, | ||
| 4651 | 0x00098200, | ||
| 4652 | 0x70000000, | ||
| 4653 | 0x00090200, | ||
| 4654 | 0x41820000, | ||
| 4655 | 0x00050831, | ||
| 4656 | 0x00060010, | ||
| 4657 | 0x00000000, | ||
| 4658 | 0x38000000, | ||
| 4659 | 0x00098200, | ||
| 4660 | 0x91650004, | ||
| 4661 | 0x7d445378, | ||
| 4662 | 0x90050000, | ||
| 4663 | 0x48000001, | ||
| 4664 | 0x00030030, | ||
| 4665 | 0x81d20000, | ||
| 4666 | 0x00098200, | ||
| 4667 | 0xd9c30000, | ||
| 4668 | 0x48000000, | ||
| 4669 | 0x0005000d, | ||
| 4670 | 0x00060011, | ||
| 4671 | 0x80110000, | ||
| 4672 | 0x00098200, | ||
| 4673 | 0x54c607b8, | ||
| 4674 | 0x91510000, | ||
| 4675 | 0x00098200, | ||
| 4676 | 0x98ca0000, | ||
| 4677 | 0x00098200, | ||
| 4678 | 0x900a0000, | ||
| 4679 | 0x00098200, | ||
| 4680 | 0x48000000, | ||
| 4681 | 0x0005000d, | ||
| 4682 | 0x00000000, | ||
| 4683 | 0x7c6a706e, | ||
| 4684 | 0x814a0004, | ||
| 4685 | 0x556000fe, | ||
| 4686 | 0x000900ab, | ||
| 4687 | 0x2c030000, | ||
| 4688 | 0x00098200, | ||
| 4689 | 0x40820000, | ||
| 4690 | 0x00050832, | ||
| 4691 | 0x810a0000, | ||
| 4692 | 0x00098200, | ||
| 4693 | 0x812a0000, | ||
| 4694 | 0x00098200, | ||
| 4695 | 0x88ca0000, | ||
| 4696 | 0x00098200, | ||
| 4697 | 0x7c004040, | ||
| 4698 | 0x7dcea4ae, | ||
| 4699 | 0x40800000, | ||
| 4700 | 0x00050832, | ||
| 4701 | 0x7d09582e, | ||
| 4702 | 0x2c080000, | ||
| 4703 | 0x00098200, | ||
| 4704 | 0x41820000, | ||
| 4705 | 0x00050805, | ||
| 4706 | 0x0006000b, | ||
| 4707 | 0x70c00000, | ||
| 4708 | 0x00090200, | ||
| 4709 | 0x7dc95dae, | ||
| 4710 | 0x40820000, | ||
| 4711 | 0x00050807, | ||
| 4712 | 0x0006000c, | ||
| 4713 | 0x80f00000, | ||
| 4714 | 0x3a100004, | ||
| 4715 | 0x54e815ba, | ||
| 4716 | 0x54ea5d78, | ||
| 4717 | 0x54ec9b78, | ||
| 4718 | 0x7c11402e, | ||
| 4719 | 0x54f4dd78, | ||
| 4720 | 0x54eb9d78, | ||
| 4721 | 0x7c0903a6, | ||
| 4722 | 0x4e800420, | ||
| 4723 | 0x0006000f, | ||
| 4724 | 0x810a0000, | ||
| 4725 | 0x00098200, | ||
| 4726 | 0x28080000, | ||
| 4727 | 0x41820000, | ||
| 4728 | 0x0005080b, | ||
| 4729 | 0x89080000, | ||
| 4730 | 0x00098200, | ||
| 4731 | 0x71080000, | ||
| 4732 | 0x00090200, | ||
| 4733 | 0x40820000, | ||
| 4734 | 0x0005080b, | ||
| 4735 | 0x48000000, | ||
| 4736 | 0x00050032, | ||
| 4737 | 0x00060011, | ||
| 4738 | 0x80110000, | ||
| 4739 | 0x00098200, | ||
| 4740 | 0x00000000, | ||
| 4741 | 0x54c607b8, | ||
| 4742 | 0x91510000, | ||
| 4743 | 0x00098200, | ||
| 4744 | 0x98ca0000, | ||
| 4745 | 0x00098200, | ||
| 4746 | 0x900a0000, | ||
| 4747 | 0x00098200, | ||
| 4748 | 0x48000000, | ||
| 4749 | 0x0005000c, | ||
| 4750 | 0x00000000, | ||
| 4751 | 0x7e8ea214, | ||
| 4752 | 0x0006000b, | ||
| 4753 | 0x7ccf6214, | ||
| 4754 | 0x8094fffc, | ||
| 4755 | 0x3413fff8, | ||
| 4756 | 0x80c60004, | ||
| 4757 | 0x540500fe, | ||
| 4758 | 0x000900ab, | ||
| 4759 | 0x41820000, | ||
| 4760 | 0x00050804, | ||
| 4761 | 0x7ca53214, | ||
| 4762 | 0x81240000, | ||
| 4763 | 0x00098200, | ||
| 4764 | 0x54c81800, | ||
| 4765 | 0x000900a1, | ||
| 4766 | 0x88c40000, | ||
| 4767 | 0x00098200, | ||
| 4768 | 0x7c054840, | ||
| 4769 | 0x7d340214, | ||
| 4770 | 0x80040000, | ||
| 4771 | 0x00098200, | ||
| 4772 | 0x41810000, | ||
| 4773 | 0x00050805, | ||
| 4774 | 0x7d080214, | ||
| 4775 | 0x70c00000, | ||
| 4776 | 0x00090200, | ||
| 4777 | 0x0006000d, | ||
| 4778 | 0xc8140000, | ||
| 4779 | 0x3a940008, | ||
| 4780 | 0x7c944800, | ||
| 4781 | 0xd8080000, | ||
| 4782 | 0x39080008, | ||
| 4783 | 0x41840000, | ||
| 4784 | 0x0005080d, | ||
| 4785 | 0x40820000, | ||
| 4786 | 0x00050807, | ||
| 4787 | 0x0006000e, | ||
| 4788 | 0x80f00000, | ||
| 4789 | 0x3a100004, | ||
| 4790 | 0x54e815ba, | ||
| 4791 | 0x54ea5d78, | ||
| 4792 | 0x54ec9b78, | ||
| 4793 | 0x7c11402e, | ||
| 4794 | 0x54f4dd78, | ||
| 4795 | 0x54eb9d78, | ||
| 4796 | 0x7c0903a6, | ||
| 4797 | 0x4e800420, | ||
| 4798 | 0x0006000f, | ||
| 4799 | 0x91d20000, | ||
| 4800 | 0x00098200, | ||
| 4801 | 0x7e439378, | ||
| 4802 | 0x92010008, | ||
| 4803 | 0x7d956378, | ||
| 4804 | 0x48000001, | ||
| 4805 | 0x00030031, | ||
| 4806 | 0x7eacab78, | ||
| 4807 | 0x48000000, | ||
| 4808 | 0x0005000b, | ||
| 4809 | 0x00060011, | ||
| 4810 | 0x80110000, | ||
| 4811 | 0x00098200, | ||
| 4812 | 0x54c607b8, | ||
| 4813 | 0x91510000, | ||
| 4814 | 0x00098200, | ||
| 4815 | 0x98ca0000, | ||
| 4816 | 0x00098200, | ||
| 4817 | 0x900a0000, | ||
| 4818 | 0x00098200, | ||
| 4819 | 0x00000000, | ||
| 4820 | 0x48000000, | ||
| 4821 | 0x0005000e, | ||
| 4822 | 0x00000000, | ||
| 4823 | 0x7d6b9a14, | ||
| 4824 | 0x00000000, | ||
| 4825 | 0x7dc97378, | ||
| 4826 | 0x7c0ea06e, | ||
| 4827 | 0x814e0004, | ||
| 4828 | 0x396bfff8, | ||
| 4829 | 0x39ce0008, | ||
| 4830 | 0x2c000000, | ||
| 4831 | 0x00098200, | ||
| 4832 | 0x40820000, | ||
| 4833 | 0x00050825, | ||
| 4834 | 0x920efff8, | ||
| 4835 | 0x820a0000, | ||
| 4836 | 0x00098200, | ||
| 4837 | 0x80f00000, | ||
| 4838 | 0x3a100004, | ||
| 4839 | 0x54e815ba, | ||
| 4840 | 0x54f4dd78, | ||
| 4841 | 0x7c11402e, | ||
| 4842 | 0x7e947214, | ||
| 4843 | 0x7c0903a6, | ||
| 4844 | 0x4e800420, | ||
| 4845 | 0x00000000, | ||
| 4846 | 0x7d6b9a14, | ||
| 4847 | 0x00000000, | ||
| 4848 | 0x7c14706e, | ||
| 4849 | 0x81540004, | ||
| 4850 | 0x396bfff8, | ||
| 4851 | 0x810efff8, | ||
| 4852 | 0x2c000000, | ||
| 4853 | 0x00098200, | ||
| 4854 | 0x3a940008, | ||
| 4855 | 0x40820000, | ||
| 4856 | 0x00050840, | ||
| 4857 | 0x00060041, | ||
| 4858 | 0x71000000, | ||
| 4859 | 0x00090200, | ||
| 4860 | 0x88ca0000, | ||
| 4861 | 0x00098200, | ||
| 4862 | 0x69090000, | ||
| 4863 | 0x00090200, | ||
| 4864 | 0x288b0000, | ||
| 4865 | 0x40820000, | ||
| 4866 | 0x00050807, | ||
| 4867 | 0x0006000b, | ||
| 4868 | 0x914efffc, | ||
| 4869 | 0x39200000, | ||
| 4870 | 0x2b860001, | ||
| 4871 | 0x41860000, | ||
| 4872 | 0x00050803, | ||
| 4873 | 0x0006000c, | ||
| 4874 | 0x38c90008, | ||
| 4875 | 0x7c144cae, | ||
| 4876 | 0x7c865840, | ||
| 4877 | 0x7c0e4dae, | ||
| 4878 | 0x7cc93378, | ||
| 4879 | 0x40860000, | ||
| 4880 | 0x0005080c, | ||
| 4881 | 0x0006000d, | ||
| 4882 | 0x4c42ea02, | ||
| 4883 | 0x41820000, | ||
| 4884 | 0x00050805, | ||
| 4885 | 0x0006000e, | ||
| 4886 | 0x820a0000, | ||
| 4887 | 0x00098200, | ||
| 4888 | 0x80f00000, | ||
| 4889 | 0x3a100004, | ||
| 4890 | 0x54e815ba, | ||
| 4891 | 0x54f4dd78, | ||
| 4892 | 0x7c11402e, | ||
| 4893 | 0x7e947214, | ||
| 4894 | 0x7c0903a6, | ||
| 4895 | 0x4e800420, | ||
| 4896 | 0x0006000f, | ||
| 4897 | 0x80e8fffc, | ||
| 4898 | 0x54f4dd78, | ||
| 4899 | 0x7d147050, | ||
| 4900 | 0x81080000, | ||
| 4901 | 0x00098200, | ||
| 4902 | 0x81080000, | ||
| 4903 | 0x00098200, | ||
| 4904 | 0x81e80000, | ||
| 4905 | 0x00098200, | ||
| 4906 | 0x48000000, | ||
| 4907 | 0x0005000e, | ||
| 4908 | 0x00060011, | ||
| 4909 | 0x71200000, | ||
| 4910 | 0x00090200, | ||
| 4911 | 0x00000000, | ||
| 4912 | 0x40820000, | ||
| 4913 | 0x0005080b, | ||
| 4914 | 0x7dc97050, | ||
| 4915 | 0x810efff8, | ||
| 4916 | 0x71000000, | ||
| 4917 | 0x00090200, | ||
| 4918 | 0x48000000, | ||
| 4919 | 0x0005000b, | ||
| 4920 | 0x00000000, | ||
| 4921 | 0x7dc97378, | ||
| 4922 | 0x7dcea214, | ||
| 4923 | 0x810effe8, | ||
| 4924 | 0x814effec, | ||
| 4925 | 0xc82efff8, | ||
| 4926 | 0xc80efff0, | ||
| 4927 | 0x910e0000, | ||
| 4928 | 0x914e0004, | ||
| 4929 | 0x2c080000, | ||
| 4930 | 0x00098200, | ||
| 4931 | 0xd82e0010, | ||
| 4932 | 0x39600010, | ||
| 4933 | 0xdc0e0008, | ||
| 4934 | 0x40820000, | ||
| 4935 | 0x00050825, | ||
| 4936 | 0x920efff8, | ||
| 4937 | 0x820a0000, | ||
| 4938 | 0x00098200, | ||
| 4939 | 0x80f00000, | ||
| 4940 | 0x3a100004, | ||
| 4941 | 0x54e815ba, | ||
| 4942 | 0x54f4dd78, | ||
| 4943 | 0x7c11402e, | ||
| 4944 | 0x7e947214, | ||
| 4945 | 0x7c0903a6, | ||
| 4946 | 0x4e800420, | ||
| 4947 | 0x00000000, | ||
| 4948 | 0x7e8ea214, | ||
| 4949 | 0x8154fff4, | ||
| 4950 | 0x8174fffc, | ||
| 4951 | 0x800a0000, | ||
| 4952 | 0x00098200, | ||
| 4953 | 0x810a0000, | ||
| 4954 | 0x00098200, | ||
| 4955 | 0x3a100004, | ||
| 4956 | 0x0006000b, | ||
| 4957 | 0x7c0b0040, | ||
| 4958 | 0x55661800, | ||
| 4959 | 0x000900a1, | ||
| 4960 | 0x40800000, | ||
| 4961 | 0x00050805, | ||
| 4962 | 0x7d28302e, | ||
| 4963 | 0x7c0834ae, | ||
| 4964 | 0x2c090000, | ||
| 4965 | 0x00098200, | ||
| 4966 | 0x80f0fffc, | ||
| 4967 | 0x41820000, | ||
| 4968 | 0x00050804, | ||
| 4969 | 0x91610024, | ||
| 4970 | 0xc8210020, | ||
| 4971 | 0xfc21f028, | ||
| 4972 | 0x396b0001, | ||
| 4973 | 0x3cd00000, | ||
| 4974 | 0x00098200, | ||
| 4975 | 0xd8140008, | ||
| 4976 | 0x54e893ba, | ||
| 4977 | 0x9174fffc, | ||
| 4978 | 0x7e083214, | ||
| 4979 | 0xd8340000, | ||
| 4980 | 0x0006000d, | ||
| 4981 | 0x80f00000, | ||
| 4982 | 0x3a100004, | ||
| 4983 | 0x54e815ba, | ||
| 4984 | 0x54ea5d78, | ||
| 4985 | 0x54ec9b78, | ||
| 4986 | 0x7c11402e, | ||
| 4987 | 0x54f4dd78, | ||
| 4988 | 0x54eb9d78, | ||
| 4989 | 0x7c0903a6, | ||
| 4990 | 0x4e800420, | ||
| 4991 | 0x0006000e, | ||
| 4992 | 0x396b0001, | ||
| 4993 | 0x48000000, | ||
| 4994 | 0x0005000b, | ||
| 4995 | 0x0006000f, | ||
| 4996 | 0x810a0000, | ||
| 4997 | 0x00098200, | ||
| 4998 | 0x7d605850, | ||
| 4999 | 0x812a0000, | ||
| 5000 | 0x00098200, | ||
| 5001 | 0x00060010, | ||
| 5002 | 0x7c0b4040, | ||
| 5003 | 0x55662800, | ||
| 5004 | 0x000900a1, | ||
| 5005 | 0x41810000, | ||
| 5006 | 0x0005080d, | ||
| 5007 | 0x556a1800, | ||
| 5008 | 0x000900a1, | ||
| 5009 | 0x7cca3050, | ||
| 5010 | 0x7d49302e, | ||
| 5011 | 0x7c0934ae, | ||
| 5012 | 0x7cc93214, | ||
| 5013 | 0x2c0a0000, | ||
| 5014 | 0x00098200, | ||
| 5015 | 0x80f0fffc, | ||
| 5016 | 0x41820000, | ||
| 5017 | 0x00050807, | ||
| 5018 | 0xc8260000, | ||
| 5019 | 0x00098200, | ||
| 5020 | 0x3d300000, | ||
| 5021 | 0x00098200, | ||
| 5022 | 0x00000000, | ||
| 5023 | 0xd8140008, | ||
| 5024 | 0x7d6b0214, | ||
| 5025 | 0x54e893ba, | ||
| 5026 | 0xd8340000, | ||
| 5027 | 0x396b0001, | ||
| 5028 | 0x7e084a14, | ||
| 5029 | 0x9174fffc, | ||
| 5030 | 0x48000000, | ||
| 5031 | 0x0005000d, | ||
| 5032 | 0x00060011, | ||
| 5033 | 0x396b0001, | ||
| 5034 | 0x48000000, | ||
| 5035 | 0x00050010, | ||
| 5036 | 0x00000000, | ||
| 5037 | 0x7e8ea214, | ||
| 5038 | 0x8014ffe8, | ||
| 5039 | 0x8114ffec, | ||
| 5040 | 0x8134fff0, | ||
| 5041 | 0x80d4fff8, | ||
| 5042 | 0x2c090000, | ||
| 5043 | 0x00098200, | ||
| 5044 | 0x2c800000, | ||
| 5045 | 0x00098200, | ||
| 5046 | 0x2f060000, | ||
| 5047 | 0x00098200, | ||
| 5048 | 0x40860000, | ||
| 5049 | 0x00050805, | ||
| 5050 | 0x89080000, | ||
| 5051 | 0x00098200, | ||
| 5052 | 0x4c42d202, | ||
| 5053 | 0x2f880000, | ||
| 5054 | 0x00098200, | ||
| 5055 | 0x5580007e, | ||
| 5056 | 0x000900ab, | ||
| 5057 | 0x4c42f202, | ||
| 5058 | 0x7cd00214, | ||
| 5059 | 0x40820000, | ||
| 5060 | 0x00050805, | ||
| 5061 | 0x9314fffc, | ||
| 5062 | 0x3e060000, | ||
| 5063 | 0x00098200, | ||
| 5064 | 0x0006000b, | ||
| 5065 | 0x80f00000, | ||
| 5066 | 0x3a100004, | ||
| 5067 | 0x54e815ba, | ||
| 5068 | 0x54ea5d78, | ||
| 5069 | 0x54ec9b78, | ||
| 5070 | 0x7c11402e, | ||
| 5071 | 0x54f4dd78, | ||
| 5072 | 0x54eb9d78, | ||
| 5073 | 0x7c0903a6, | ||
| 5074 | 0x4e800420, | ||
| 5075 | 0x0006000f, | ||
| 5076 | 0x38000000, | ||
| 5077 | 0x00098200, | ||
| 5078 | 0x39000000, | ||
| 5079 | 0x00098200, | ||
| 5080 | 0x9810ffff, | ||
| 5081 | 0x3e060000, | ||
| 5082 | 0x00098200, | ||
| 5083 | 0x99100003, | ||
| 5084 | 0x48000000, | ||
| 5085 | 0x0005000b, | ||
| 5086 | 0x00000000, | ||
| 5087 | 0x800efff8, | ||
| 5088 | 0x7d6e5a14, | ||
| 5089 | 0x7e8ea214, | ||
| 5090 | 0x396b0000, | ||
| 5091 | 0x00098200, | ||
| 5092 | 0x7d345214, | ||
| 5093 | 0x38cefff8, | ||
| 5094 | 0x7d605850, | ||
| 5095 | 0x288a0000, | ||
| 5096 | 0x7d0b3051, | ||
| 5097 | 0x41860000, | ||
| 5098 | 0x00050805, | ||
| 5099 | 0x3929fff0, | ||
| 5100 | 0x40810000, | ||
| 5101 | 0x00050802, | ||
| 5102 | 0x0006000b, | ||
| 5103 | 0xc80b0000, | ||
| 5104 | 0x396b0008, | ||
| 5105 | 0xd8140000, | ||
| 5106 | 0x7c144840, | ||
| 5107 | 0x7c8b3040, | ||
| 5108 | 0x40800000, | ||
| 5109 | 0x00050803, | ||
| 5110 | 0x3a940008, | ||
| 5111 | 0x41840000, | ||
| 5112 | 0x0005080b, | ||
| 5113 | 0x0006000c, | ||
| 5114 | 0x92f40000, | ||
| 5115 | 0x7c144840, | ||
| 5116 | 0x3a940008, | ||
| 5117 | 0x41800000, | ||
| 5118 | 0x0005080c, | ||
| 5119 | 0x0006000d, | ||
| 5120 | 0x80f00000, | ||
| 5121 | 0x3a100004, | ||
| 5122 | 0x54e815ba, | ||
| 5123 | 0x54ea5d78, | ||
| 5124 | 0x54ec9b78, | ||
| 5125 | 0x7c11402e, | ||
| 5126 | 0x54f4dd78, | ||
| 5127 | 0x54eb9d78, | ||
| 5128 | 0x7c0903a6, | ||
| 5129 | 0x4e800420, | ||
| 5130 | 0x0006000f, | ||
| 5131 | 0x80120000, | ||
| 5132 | 0x00098200, | ||
| 5133 | 0x3a600008, | ||
| 5134 | 0x40810000, | ||
| 5135 | 0x0005080d, | ||
| 5136 | 0x7d344214, | ||
| 5137 | 0x7c090040, | ||
| 5138 | 0x3a680008, | ||
| 5139 | 0x41810000, | ||
| 5140 | 0x00050807, | ||
| 5141 | 0x00060010, | ||
| 5142 | 0xc80b0000, | ||
| 5143 | 0x396b0008, | ||
| 5144 | 0xd8140000, | ||
| 5145 | 0x7c0b3040, | ||
| 5146 | 0x3a940008, | ||
| 5147 | 0x41800000, | ||
| 5148 | 0x00050810, | ||
| 5149 | 0x48000000, | ||
| 5150 | 0x0005000d, | ||
| 5151 | 0x00060011, | ||
| 5152 | 0x7e439378, | ||
| 5153 | 0x92920000, | ||
| 5154 | 0x00098200, | ||
| 5155 | 0x7eae5850, | ||
| 5156 | 0x91d20000, | ||
| 5157 | 0x00098200, | ||
| 5158 | 0x7e8ea050, | ||
| 5159 | 0x92010008, | ||
| 5160 | 0x550400fe, | ||
| 5161 | 0x000900ab, | ||
| 5162 | 0x48000001, | ||
| 5163 | 0x00030000, | ||
| 5164 | 0x81d20000, | ||
| 5165 | 0x00098200, | ||
| 5166 | 0x00000000, | ||
| 5167 | 0x7e8ea214, | ||
| 5168 | 0x7d6eaa14, | ||
| 5169 | 0x38cefff8, | ||
| 5170 | 0x48000000, | ||
| 5171 | 0x00050010, | ||
| 5172 | 0x00000000, | ||
| 5173 | 0x7d8c9a14, | ||
| 5174 | 0x00000000, | ||
| 5175 | 0x820efff8, | ||
| 5176 | 0x7e8ea214, | ||
| 5177 | 0x7d936378, | ||
| 5178 | 0x0006000b, | ||
| 5179 | 0x72000000, | ||
| 5180 | 0x00090200, | ||
| 5181 | 0x6a080000, | ||
| 5182 | 0x00090200, | ||
| 5183 | 0x40820000, | ||
| 5184 | 0x0005089c, | ||
| 5185 | 0x00060017, | ||
| 5186 | 0x80f0fffc, | ||
| 5187 | 0x2c0c0008, | ||
| 5188 | 0x392efff8, | ||
| 5189 | 0x396cfff8, | ||
| 5190 | 0x54ea5d78, | ||
| 5191 | 0x41820000, | ||
| 5192 | 0x00050803, | ||
| 5193 | 0x39000000, | ||
| 5194 | 0x0006000c, | ||
| 5195 | 0x38c80008, | ||
| 5196 | 0x7c1444ae, | ||
| 5197 | 0x7c065800, | ||
| 5198 | 0x7c0945ae, | ||
| 5199 | 0x41820000, | ||
| 5200 | 0x00050803, | ||
| 5201 | 0x39060008, | ||
| 5202 | 0x7c3434ae, | ||
| 5203 | 0x7c085800, | ||
| 5204 | 0x7c2935ae, | ||
| 5205 | 0x40820000, | ||
| 5206 | 0x0005080c, | ||
| 5207 | 0x0006000d, | ||
| 5208 | 0x0006000f, | ||
| 5209 | 0x7c0a6040, | ||
| 5210 | 0x54f4dd78, | ||
| 5211 | 0x41810000, | ||
| 5212 | 0x00050806, | ||
| 5213 | 0x7dd44850, | ||
| 5214 | 0x810efffc, | ||
| 5215 | 0x80f00000, | ||
| 5216 | 0x3a100004, | ||
| 5217 | 0x81080000, | ||
| 5218 | 0x00098200, | ||
| 5219 | 0x81e80000, | ||
| 5220 | 0x00098200, | ||
| 5221 | 0x54e815ba, | ||
| 5222 | 0x54ea5d78, | ||
| 5223 | 0x54ec9b78, | ||
| 5224 | 0x7c11402e, | ||
| 5225 | 0x54f4dd78, | ||
| 5226 | 0x54eb9d78, | ||
| 5227 | 0x7c0903a6, | ||
| 5228 | 0x4e800420, | ||
| 5229 | 0x00060010, | ||
| 5230 | 0x390cfff8, | ||
| 5231 | 0x398c0008, | ||
| 5232 | 0x7ee9412e, | ||
| 5233 | 0x48000000, | ||
| 5234 | 0x0005000f, | ||
| 5235 | 0x0006009c, | ||
| 5236 | 0x71090000, | ||
| 5237 | 0x00090200, | ||
| 5238 | 0x40820000, | ||
| 5239 | 0x00050818, | ||
| 5240 | 0x7dc87050, | ||
| 5241 | 0x820efff8, | ||
| 5242 | 0x48000000, | ||
| 5243 | 0x0005000b, | ||
| 5244 | 0x00000000, | ||
| 5245 | 0x820efff8, | ||
| 5246 | 0x7e8ea214, | ||
| 5247 | 0x7d936378, | ||
| 5248 | 0x72000000, | ||
| 5249 | 0x00090200, | ||
| 5250 | 0x6a080000, | ||
| 5251 | 0x00090200, | ||
| 5252 | 0x40820000, | ||
| 5253 | 0x0005089c, | ||
| 5254 | 0x80f0fffc, | ||
| 5255 | 0x392efff8, | ||
| 5256 | 0x54ea5d78, | ||
| 5257 | 0x00000000, | ||
| 5258 | 0xc8140000, | ||
| 5259 | 0xd8090000, | ||
| 5260 | 0x00000000, | ||
| 5261 | 0x0006000f, | ||
| 5262 | 0x7c0a6040, | ||
| 5263 | 0x54f4dd78, | ||
| 5264 | 0x41810000, | ||
| 5265 | 0x00050806, | ||
| 5266 | 0x7dd44850, | ||
| 5267 | 0x810efffc, | ||
| 5268 | 0x80f00000, | ||
| 5269 | 0x3a100004, | ||
| 5270 | 0x81080000, | ||
| 5271 | 0x00098200, | ||
| 5272 | 0x81e80000, | ||
| 5273 | 0x00098200, | ||
| 5274 | 0x54e815ba, | ||
| 5275 | 0x54ea5d78, | ||
| 5276 | 0x54ec9b78, | ||
| 5277 | 0x7c11402e, | ||
| 5278 | 0x54f4dd78, | ||
| 5279 | 0x54eb9d78, | ||
| 5280 | 0x7c0903a6, | ||
| 5281 | 0x4e800420, | ||
| 5282 | 0x00060010, | ||
| 5283 | 0x390cfff8, | ||
| 5284 | 0x398c0008, | ||
| 5285 | 0x7ee9412e, | ||
| 5286 | 0x48000000, | ||
| 5287 | 0x0005000f, | ||
| 5288 | 0x00000000, | ||
| 5289 | 0x7c810808, | ||
| 5290 | 0x00000000, | ||
| 5291 | 0x7c3474ee, | ||
| 5292 | 0xc8740000, | ||
| 5293 | 0x00098200, | ||
| 5294 | 0xc8540000, | ||
| 5295 | 0x00098200, | ||
| 5296 | 0x80d40000, | ||
| 5297 | 0x00098200, | ||
| 5298 | 0xfc21182a, | ||
| 5299 | 0xd8340000, | ||
| 5300 | 0x00098200, | ||
| 5301 | 0x00000000, | ||
| 5302 | 0x7d14706e, | ||
| 5303 | 0xc8340000, | ||
| 5304 | 0x00098200, | ||
| 5305 | 0x80d40000, | ||
| 5306 | 0x00098200, | ||
| 5307 | 0xc8740000, | ||
| 5308 | 0x00098200, | ||
| 5309 | 0x81340000, | ||
| 5310 | 0x00098200, | ||
| 5311 | 0xc8540000, | ||
| 5312 | 0x00098200, | ||
| 5313 | 0x7c08b040, | ||
| 5314 | 0x7f86b040, | ||
| 5315 | 0x7c89b040, | ||
| 5316 | 0x4c00e202, | ||
| 5317 | 0x4c002202, | ||
| 5318 | 0x40800000, | ||
| 5319 | 0x00050842, | ||
| 5320 | 0x00000000, | ||
| 5321 | 0x2d860000, | ||
| 5322 | 0x00000000, | ||
| 5323 | 0x558c007e, | ||
| 5324 | 0x000900ab, | ||
| 5325 | 0x00000000, | ||
| 5326 | 0xd8340000, | ||
| 5327 | 0x00098200, | ||
| 5328 | 0x00000000, | ||
| 5329 | 0x7d906214, | ||
| 5330 | 0x00000000, | ||
| 5331 | 0xfc011000, | ||
| 5332 | 0x00000000, | ||
| 5333 | 0x3e0c0000, | ||
| 5334 | 0x00098200, | ||
| 5335 | 0x00000000, | ||
| 5336 | 0x418c0000, | ||
| 5337 | 0x00050805, | ||
| 5338 | 0x00000000, | ||
| 5339 | 0x41810000, | ||
| 5340 | 0x00050803, | ||
| 5341 | 0x00000000, | ||
| 5342 | 0x41810000, | ||
| 5343 | 0x00050802, | ||
| 5344 | 0x0006000b, | ||
| 5345 | 0x3e0c0000, | ||
| 5346 | 0x00098200, | ||
| 5347 | 0x00000000, | ||
| 5348 | 0x40810000, | ||
| 5349 | 0x00070800, | ||
| 5350 | 0x00000000, | ||
| 5351 | 0x0006000c, | ||
| 5352 | 0x80f00000, | ||
| 5353 | 0x3a100004, | ||
| 5354 | 0x54e815ba, | ||
| 5355 | 0x54ea5d78, | ||
| 5356 | 0x54ec9b78, | ||
| 5357 | 0x7c11402e, | ||
| 5358 | 0x54f4dd78, | ||
| 5359 | 0x54eb9d78, | ||
| 5360 | 0x7c0903a6, | ||
| 5361 | 0x4e800420, | ||
| 5362 | 0x0006000f, | ||
| 5363 | 0x00000000, | ||
| 5364 | 0x40800000, | ||
| 5365 | 0x0005080c, | ||
| 5366 | 0x0006000d, | ||
| 5367 | 0x3e0c0000, | ||
| 5368 | 0x00098200, | ||
| 5369 | 0x00000000, | ||
| 5370 | 0x40800000, | ||
| 5371 | 0x0005080b, | ||
| 5372 | 0x00000000, | ||
| 5373 | 0x40800000, | ||
| 5374 | 0x00070800, | ||
| 5375 | 0x00000000, | ||
| 5376 | 0x48000000, | ||
| 5377 | 0x0005000c, | ||
| 5378 | 0x00000000, | ||
| 5379 | 0x7c810808, | ||
| 5380 | 0x00000000, | ||
| 5381 | 0x7d14706e, | ||
| 5382 | 0x81340004, | ||
| 5383 | 0x2c080000, | ||
| 5384 | 0x00098200, | ||
| 5385 | 0x41820000, | ||
| 5386 | 0x00050801, | ||
| 5387 | 0x00000000, | ||
| 5388 | 0x7c810808, | ||
| 5389 | 0x00000000, | ||
| 5390 | 0x5580007e, | ||
| 5391 | 0x000900ab, | ||
| 5392 | 0x7e100214, | ||
| 5393 | 0x3e100000, | ||
| 5394 | 0x00098200, | ||
| 5395 | 0x9114fff8, | ||
| 5396 | 0x9134fffc, | ||
| 5397 | 0x00000000, | ||
| 5398 | 0x0006000b, | ||
| 5399 | 0x80f00000, | ||
| 5400 | 0x3a100004, | ||
| 5401 | 0x54e815ba, | ||
| 5402 | 0x54ea5d78, | ||
| 5403 | 0x54ec9b78, | ||
| 5404 | 0x7c11402e, | ||
| 5405 | 0x54f4dd78, | ||
| 5406 | 0x54eb9d78, | ||
| 5407 | 0x7c0903a6, | ||
| 5408 | 0x4e800420, | ||
| 5409 | 0x00000000, | ||
| 5410 | 0x7c810808, | ||
| 5411 | 0x00000000, | ||
| 5412 | 0x80f00000, | ||
| 5413 | 0x3a100004, | ||
| 5414 | 0x54e815ba, | ||
| 5415 | 0x54ea5d78, | ||
| 5416 | 0x54ec9b78, | ||
| 5417 | 0x7c11402e, | ||
| 5418 | 0x54f4dd78, | ||
| 5419 | 0x54eb9d78, | ||
| 5420 | 0x7c0903a6, | ||
| 5421 | 0x4e800420, | ||
| 5422 | 0x00000000, | ||
| 5423 | 0x7c810808, | ||
| 5424 | 0x00000000, | ||
| 5425 | 0x5580007e, | ||
| 5426 | 0x000900ab, | ||
| 5427 | 0x7e100214, | ||
| 5428 | 0x3e100000, | ||
| 5429 | 0x00098200, | ||
| 5430 | 0x80f00000, | ||
| 5431 | 0x3a100004, | ||
| 5432 | 0x54e815ba, | ||
| 5433 | 0x54ea5d78, | ||
| 5434 | 0x54ec9b78, | ||
| 5435 | 0x7c11402e, | ||
| 5436 | 0x54f4dd78, | ||
| 5437 | 0x54eb9d78, | ||
| 5438 | 0x7c0903a6, | ||
| 5439 | 0x4e800420, | ||
| 5440 | 0x00000000, | ||
| 5441 | 0x7c810808, | ||
| 5442 | 0x00000000, | ||
| 5443 | 0x81320000, | ||
| 5444 | 0x00098200, | ||
| 5445 | 0x89100000, | ||
| 5446 | 0x00098200, | ||
| 5447 | 0x81f00000, | ||
| 5448 | 0x00098200, | ||
| 5449 | 0x7c144840, | ||
| 5450 | 0x55081800, | ||
| 5451 | 0x000900a1, | ||
| 5452 | 0x41810000, | ||
| 5453 | 0x00050820, | ||
| 5454 | 0x80f00000, | ||
| 5455 | 0x3a100004, | ||
| 5456 | 0x0006000c, | ||
| 5457 | 0x7c0b4040, | ||
| 5458 | 0x40810000, | ||
| 5459 | 0x00050803, | ||
| 5460 | 0x00000000, | ||
| 5461 | 0x7c810808, | ||
| 5462 | 0x00000000, | ||
| 5463 | 0x54e815ba, | ||
| 5464 | 0x54ea5d78, | ||
| 5465 | 0x54ec9b78, | ||
| 5466 | 0x7c11402e, | ||
| 5467 | 0x54f4dd78, | ||
| 5468 | 0x54eb9d78, | ||
| 5469 | 0x7c0903a6, | ||
| 5470 | 0x4e800420, | ||
| 5471 | 0x00000000, | ||
| 5472 | 0x0006000d, | ||
| 5473 | 0x7eee592e, | ||
| 5474 | 0x396b0008, | ||
| 5475 | 0x48000000, | ||
| 5476 | 0x0005000c, | ||
| 5477 | 0x00000000, | ||
| 5478 | 0x7c810808, | ||
| 5479 | 0x00000000, | ||
| 5480 | 0x81320000, | ||
| 5481 | 0x00098200, | ||
| 5482 | 0x7d0e5a14, | ||
| 5483 | 0x7c145a14, | ||
| 5484 | 0x91480004, | ||
| 5485 | 0x38cb0000, | ||
| 5486 | 0x00098200, | ||
| 5487 | 0x81f00000, | ||
| 5488 | 0x00098200, | ||
| 5489 | 0x7c004840, | ||
| 5490 | 0x90c80000, | ||
| 5491 | 0x40800000, | ||
| 5492 | 0x00050820, | ||
| 5493 | 0x89300000, | ||
| 5494 | 0x00098200, | ||
| 5495 | 0x7dd47378, | ||
| 5496 | 0x7d0b4378, | ||
| 5497 | 0x80f00000, | ||
| 5498 | 0x3a100004, | ||
| 5499 | 0x2c090000, | ||
| 5500 | 0x39c80008, | ||
| 5501 | 0x41820000, | ||
| 5502 | 0x00050803, | ||
| 5503 | 0x0006000b, | ||
| 5504 | 0x7c145840, | ||
| 5505 | 0x80140000, | ||
| 5506 | 0x80d40004, | ||
| 5507 | 0x40800000, | ||
| 5508 | 0x00050804, | ||
| 5509 | 0x92f40000, | ||
| 5510 | 0x3a940008, | ||
| 5511 | 0x0006000c, | ||
| 5512 | 0x3529ffff, | ||
| 5513 | 0x90080008, | ||
| 5514 | 0x90c8000c, | ||
| 5515 | 0x39080008, | ||
| 5516 | 0x40820000, | ||
| 5517 | 0x0005080b, | ||
| 5518 | 0x0006000d, | ||
| 5519 | 0x54e815ba, | ||
| 5520 | 0x54ea5d78, | ||
| 5521 | 0x54ec9b78, | ||
| 5522 | 0x7c11402e, | ||
| 5523 | 0x54f4dd78, | ||
| 5524 | 0x54eb9d78, | ||
| 5525 | 0x7c0903a6, | ||
| 5526 | 0x4e800420, | ||
| 5527 | 0x0006000e, | ||
| 5528 | 0x38000000, | ||
| 5529 | 0x00098200, | ||
| 5530 | 0x48000000, | ||
| 5531 | 0x0005000c, | ||
| 5532 | 0x00000000, | ||
| 5533 | 0x80ca0000, | ||
| 5534 | 0x00098200, | ||
| 5535 | 0x00000000, | ||
| 5536 | 0x80d10000, | ||
| 5537 | 0x00098200, | ||
| 5538 | 0x00000000, | ||
| 5539 | 0x7d145a14, | ||
| 5540 | 0x81320000, | ||
| 5541 | 0x00098200, | ||
| 5542 | 0x7d6e5a14, | ||
| 5543 | 0x91d20000, | ||
| 5544 | 0x00098200, | ||
| 5545 | 0x7c084840, | ||
| 5546 | 0x91720000, | ||
| 5547 | 0x00098200, | ||
| 5548 | 0x38000000, | ||
| 5549 | 0x00098200, | ||
| 5550 | 0x7cc903a6, | ||
| 5551 | 0x00000000, | ||
| 5552 | 0x808a0000, | ||
| 5553 | 0x00098200, | ||
| 5554 | 0x00000000, | ||
| 5555 | 0x7e439378, | ||
| 5556 | 0x41810000, | ||
| 5557 | 0x0005081f, | ||
| 5558 | 0x90110000, | ||
| 5559 | 0x00098200, | ||
| 5560 | 0x4e800421, | ||
| 5561 | 0x81120000, | ||
| 5562 | 0x00098200, | ||
| 5563 | 0x546c1800, | ||
| 5564 | 0x000900a1, | ||
| 5565 | 0x81d20000, | ||
| 5566 | 0x00098200, | ||
| 5567 | 0x38000000, | ||
| 5568 | 0x00098200, | ||
| 5569 | 0x820efff8, | ||
| 5570 | 0x7e8c4050, | ||
| 5571 | 0x90110000, | ||
| 5572 | 0x00098200, | ||
| 5573 | 0x48000000, | ||
| 5574 | 0x00050016, | ||
| 5575 | 0x00000000, | ||
| 5576 | 0x00010000 | ||
| 5577 | }; | ||
| 5578 | |||
| 5579 | enum { | ||
| 5580 | GLOB_vm_returnp, | ||
| 5581 | GLOB_cont_dispatch, | ||
| 5582 | GLOB_vm_returnc, | ||
| 5583 | GLOB_BC_RET_Z, | ||
| 5584 | GLOB_vm_return, | ||
| 5585 | GLOB_vm_leave_cp, | ||
| 5586 | GLOB_vm_leave_unw, | ||
| 5587 | GLOB_vm_unwind_c, | ||
| 5588 | GLOB_vm_unwind_c_eh, | ||
| 5589 | GLOB_vm_unwind_ff, | ||
| 5590 | GLOB_vm_unwind_ff_eh, | ||
| 5591 | GLOB_vm_growstack_c, | ||
| 5592 | GLOB_vm_growstack_l, | ||
| 5593 | GLOB_vm_resume, | ||
| 5594 | GLOB_vm_pcall, | ||
| 5595 | GLOB_vm_call, | ||
| 5596 | GLOB_vm_call_dispatch, | ||
| 5597 | GLOB_vmeta_call, | ||
| 5598 | GLOB_vm_call_dispatch_f, | ||
| 5599 | GLOB_vm_cpcall, | ||
| 5600 | GLOB_vm_call_tail, | ||
| 5601 | GLOB_cont_cat, | ||
| 5602 | GLOB_BC_CAT_Z, | ||
| 5603 | GLOB_cont_nop, | ||
| 5604 | GLOB_vmeta_tgets1, | ||
| 5605 | GLOB_vmeta_tgets, | ||
| 5606 | GLOB_vmeta_tgetb, | ||
| 5607 | GLOB_vmeta_tgetv, | ||
| 5608 | GLOB_vmeta_tsets1, | ||
| 5609 | GLOB_vmeta_tsets, | ||
| 5610 | GLOB_vmeta_tsetb, | ||
| 5611 | GLOB_vmeta_tsetv, | ||
| 5612 | GLOB_vmeta_comp, | ||
| 5613 | GLOB_vmeta_binop, | ||
| 5614 | GLOB_cont_ra, | ||
| 5615 | GLOB_cont_condt, | ||
| 5616 | GLOB_cont_condf, | ||
| 5617 | GLOB_vmeta_equal, | ||
| 5618 | GLOB_vmeta_arith_vn, | ||
| 5619 | GLOB_vmeta_arith_nv, | ||
| 5620 | GLOB_vmeta_unm, | ||
| 5621 | GLOB_vmeta_arith_vv, | ||
| 5622 | GLOB_vmeta_len, | ||
| 5623 | GLOB_BC_LEN_Z, | ||
| 5624 | GLOB_vmeta_callt, | ||
| 5625 | GLOB_BC_CALLT_Z, | ||
| 5626 | GLOB_vmeta_for, | ||
| 5627 | GLOB_ff_assert, | ||
| 5628 | GLOB_fff_fallback, | ||
| 5629 | GLOB_fff_res, | ||
| 5630 | GLOB_ff_type, | ||
| 5631 | GLOB_fff_resn, | ||
| 5632 | GLOB_ff_getmetatable, | ||
| 5633 | GLOB_fff_restv, | ||
| 5634 | GLOB_ff_setmetatable, | ||
| 5635 | GLOB_ff_rawget, | ||
| 5636 | GLOB_ff_tonumber, | ||
| 5637 | GLOB_ff_tostring, | ||
| 5638 | GLOB_fff_gcstep, | ||
| 5639 | GLOB_ff_next, | ||
| 5640 | GLOB_ff_pairs, | ||
| 5641 | GLOB_ff_ipairs_aux, | ||
| 5642 | GLOB_ff_ipairs, | ||
| 5643 | GLOB_ff_pcall, | ||
| 5644 | GLOB_ff_xpcall, | ||
| 5645 | GLOB_ff_coroutine_resume, | ||
| 5646 | GLOB_ff_coroutine_wrap_aux, | ||
| 5647 | GLOB_ff_coroutine_yield, | ||
| 5648 | GLOB_ff_math_abs, | ||
| 5649 | GLOB_fff_res1, | ||
| 5650 | GLOB_ff_math_floor, | ||
| 5651 | GLOB_ff_math_ceil, | ||
| 5652 | GLOB_ff_math_sqrt, | ||
| 5653 | GLOB_ff_math_log, | ||
| 5654 | GLOB_ff_math_log10, | ||
| 5655 | GLOB_ff_math_exp, | ||
| 5656 | GLOB_ff_math_sin, | ||
| 5657 | GLOB_ff_math_cos, | ||
| 5658 | GLOB_ff_math_tan, | ||
| 5659 | GLOB_ff_math_asin, | ||
| 5660 | GLOB_ff_math_acos, | ||
| 5661 | GLOB_ff_math_atan, | ||
| 5662 | GLOB_ff_math_sinh, | ||
| 5663 | GLOB_ff_math_cosh, | ||
| 5664 | GLOB_ff_math_tanh, | ||
| 5665 | GLOB_ff_math_pow, | ||
| 5666 | GLOB_ff_math_atan2, | ||
| 5667 | GLOB_ff_math_fmod, | ||
| 5668 | GLOB_ff_math_deg, | ||
| 5669 | GLOB_ff_math_rad, | ||
| 5670 | GLOB_ff_math_ldexp, | ||
| 5671 | GLOB_ff_math_frexp, | ||
| 5672 | GLOB_ff_math_modf, | ||
| 5673 | GLOB_ff_math_min, | ||
| 5674 | GLOB_ff_math_max, | ||
| 5675 | GLOB_ff_string_len, | ||
| 5676 | GLOB_fff_resi, | ||
| 5677 | GLOB_ff_string_byte, | ||
| 5678 | GLOB_ff_string_char, | ||
| 5679 | GLOB_fff_newstr, | ||
| 5680 | GLOB_ff_string_sub, | ||
| 5681 | GLOB_ff_string_rep, | ||
| 5682 | GLOB_ff_string_reverse, | ||
| 5683 | GLOB_ff_string_lower, | ||
| 5684 | GLOB_ff_string_upper, | ||
| 5685 | GLOB_ff_table_getn, | ||
| 5686 | GLOB_ff_bit_tobit, | ||
| 5687 | GLOB_ff_bit_band, | ||
| 5688 | GLOB_ff_bit_bor, | ||
| 5689 | GLOB_ff_bit_bxor, | ||
| 5690 | GLOB_ff_bit_bswap, | ||
| 5691 | GLOB_ff_bit_bnot, | ||
| 5692 | GLOB_ff_bit_lshift, | ||
| 5693 | GLOB_ff_bit_rshift, | ||
| 5694 | GLOB_ff_bit_arshift, | ||
| 5695 | GLOB_ff_bit_rol, | ||
| 5696 | GLOB_ff_bit_ror, | ||
| 5697 | GLOB_vm_record, | ||
| 5698 | GLOB_vm_rethook, | ||
| 5699 | GLOB_vm_inshook, | ||
| 5700 | GLOB_cont_hook, | ||
| 5701 | GLOB_vm_hotloop, | ||
| 5702 | GLOB_vm_callhook, | ||
| 5703 | GLOB_vm_hotcall, | ||
| 5704 | GLOB_vm_exit_handler, | ||
| 5705 | GLOB_vm_exit_interp, | ||
| 5706 | GLOB_vm_floor, | ||
| 5707 | GLOB_vm_ceil, | ||
| 5708 | GLOB_vm_trunc, | ||
| 5709 | GLOB_vm_powi, | ||
| 5710 | GLOB_vm_foldfpm, | ||
| 5711 | GLOB_vm_foldarith, | ||
| 5712 | GLOB_vm_ffi_call, | ||
| 5713 | GLOB_BC_MODVN_Z, | ||
| 5714 | GLOB_BC_TGETS_Z, | ||
| 5715 | GLOB_BC_TSETS_Z, | ||
| 5716 | GLOB_BC_RETV_Z, | ||
| 5717 | GLOB__MAX | ||
| 5718 | }; | ||
| 5719 | static const char *const globnames[] = { | ||
| 5720 | "vm_returnp", | ||
| 5721 | "cont_dispatch", | ||
| 5722 | "vm_returnc", | ||
| 5723 | "BC_RET_Z", | ||
| 5724 | "vm_return", | ||
| 5725 | "vm_leave_cp", | ||
| 5726 | "vm_leave_unw", | ||
| 5727 | "vm_unwind_c", | ||
| 5728 | "vm_unwind_c_eh", | ||
| 5729 | "vm_unwind_ff", | ||
| 5730 | "vm_unwind_ff_eh", | ||
| 5731 | "vm_growstack_c", | ||
| 5732 | "vm_growstack_l", | ||
| 5733 | "vm_resume", | ||
| 5734 | "vm_pcall", | ||
| 5735 | "vm_call", | ||
| 5736 | "vm_call_dispatch", | ||
| 5737 | "vmeta_call", | ||
| 5738 | "vm_call_dispatch_f", | ||
| 5739 | "vm_cpcall", | ||
| 5740 | "vm_call_tail", | ||
| 5741 | "cont_cat", | ||
| 5742 | "BC_CAT_Z", | ||
| 5743 | "cont_nop", | ||
| 5744 | "vmeta_tgets1", | ||
| 5745 | "vmeta_tgets", | ||
| 5746 | "vmeta_tgetb", | ||
| 5747 | "vmeta_tgetv", | ||
| 5748 | "vmeta_tsets1", | ||
| 5749 | "vmeta_tsets", | ||
| 5750 | "vmeta_tsetb", | ||
| 5751 | "vmeta_tsetv", | ||
| 5752 | "vmeta_comp", | ||
| 5753 | "vmeta_binop", | ||
| 5754 | "cont_ra", | ||
| 5755 | "cont_condt", | ||
| 5756 | "cont_condf", | ||
| 5757 | "vmeta_equal", | ||
| 5758 | "vmeta_arith_vn", | ||
| 5759 | "vmeta_arith_nv", | ||
| 5760 | "vmeta_unm", | ||
| 5761 | "vmeta_arith_vv", | ||
| 5762 | "vmeta_len", | ||
| 5763 | "BC_LEN_Z", | ||
| 5764 | "vmeta_callt", | ||
| 5765 | "BC_CALLT_Z", | ||
| 5766 | "vmeta_for", | ||
| 5767 | "ff_assert", | ||
| 5768 | "fff_fallback", | ||
| 5769 | "fff_res", | ||
| 5770 | "ff_type", | ||
| 5771 | "fff_resn", | ||
| 5772 | "ff_getmetatable", | ||
| 5773 | "fff_restv", | ||
| 5774 | "ff_setmetatable", | ||
| 5775 | "ff_rawget", | ||
| 5776 | "ff_tonumber", | ||
| 5777 | "ff_tostring", | ||
| 5778 | "fff_gcstep", | ||
| 5779 | "ff_next", | ||
| 5780 | "ff_pairs", | ||
| 5781 | "ff_ipairs_aux", | ||
| 5782 | "ff_ipairs", | ||
| 5783 | "ff_pcall", | ||
| 5784 | "ff_xpcall", | ||
| 5785 | "ff_coroutine_resume", | ||
| 5786 | "ff_coroutine_wrap_aux", | ||
| 5787 | "ff_coroutine_yield", | ||
| 5788 | "ff_math_abs", | ||
| 5789 | "fff_res1", | ||
| 5790 | "ff_math_floor", | ||
| 5791 | "ff_math_ceil", | ||
| 5792 | "ff_math_sqrt", | ||
| 5793 | "ff_math_log", | ||
| 5794 | "ff_math_log10", | ||
| 5795 | "ff_math_exp", | ||
| 5796 | "ff_math_sin", | ||
| 5797 | "ff_math_cos", | ||
| 5798 | "ff_math_tan", | ||
| 5799 | "ff_math_asin", | ||
| 5800 | "ff_math_acos", | ||
| 5801 | "ff_math_atan", | ||
| 5802 | "ff_math_sinh", | ||
| 5803 | "ff_math_cosh", | ||
| 5804 | "ff_math_tanh", | ||
| 5805 | "ff_math_pow", | ||
| 5806 | "ff_math_atan2", | ||
| 5807 | "ff_math_fmod", | ||
| 5808 | "ff_math_deg", | ||
| 5809 | "ff_math_rad", | ||
| 5810 | "ff_math_ldexp", | ||
| 5811 | "ff_math_frexp", | ||
| 5812 | "ff_math_modf", | ||
| 5813 | "ff_math_min", | ||
| 5814 | "ff_math_max", | ||
| 5815 | "ff_string_len", | ||
| 5816 | "fff_resi", | ||
| 5817 | "ff_string_byte", | ||
| 5818 | "ff_string_char", | ||
| 5819 | "fff_newstr", | ||
| 5820 | "ff_string_sub", | ||
| 5821 | "ff_string_rep", | ||
| 5822 | "ff_string_reverse", | ||
| 5823 | "ff_string_lower", | ||
| 5824 | "ff_string_upper", | ||
| 5825 | "ff_table_getn", | ||
| 5826 | "ff_bit_tobit", | ||
| 5827 | "ff_bit_band", | ||
| 5828 | "ff_bit_bor", | ||
| 5829 | "ff_bit_bxor", | ||
| 5830 | "ff_bit_bswap", | ||
| 5831 | "ff_bit_bnot", | ||
| 5832 | "ff_bit_lshift", | ||
| 5833 | "ff_bit_rshift", | ||
| 5834 | "ff_bit_arshift", | ||
| 5835 | "ff_bit_rol", | ||
| 5836 | "ff_bit_ror", | ||
| 5837 | "vm_record", | ||
| 5838 | "vm_rethook", | ||
| 5839 | "vm_inshook", | ||
| 5840 | "cont_hook", | ||
| 5841 | "vm_hotloop", | ||
| 5842 | "vm_callhook", | ||
| 5843 | "vm_hotcall", | ||
| 5844 | "vm_exit_handler", | ||
| 5845 | "vm_exit_interp", | ||
| 5846 | "vm_floor", | ||
| 5847 | "vm_ceil", | ||
| 5848 | "vm_trunc", | ||
| 5849 | "vm_powi", | ||
| 5850 | "vm_foldfpm", | ||
| 5851 | "vm_foldarith", | ||
| 5852 | "vm_ffi_call", | ||
| 5853 | "BC_MODVN_Z", | ||
| 5854 | "BC_TGETS_Z", | ||
| 5855 | "BC_TSETS_Z", | ||
| 5856 | "BC_RETV_Z", | ||
| 5857 | (const char *)0 | ||
| 5858 | }; | ||
| 5859 | static const char *const extnames[] = { | ||
| 5860 | "lj_state_growstack", | ||
| 5861 | "lj_meta_tget", | ||
| 5862 | "lj_meta_tset", | ||
| 5863 | "lj_meta_comp", | ||
| 5864 | "lj_meta_equal", | ||
| 5865 | "lj_meta_arith", | ||
| 5866 | "lj_meta_len", | ||
| 5867 | "lj_meta_call", | ||
| 5868 | "lj_meta_for", | ||
| 5869 | "lj_tab_get", | ||
| 5870 | "lj_str_fromnum", | ||
| 5871 | "lj_tab_next", | ||
| 5872 | "lj_tab_getinth", | ||
| 5873 | "lj_ffh_coroutine_wrap_err", | ||
| 5874 | "floor", | ||
| 5875 | "ceil", | ||
| 5876 | "sqrt", | ||
| 5877 | "log", | ||
| 5878 | "log10", | ||
| 5879 | "exp", | ||
| 5880 | "sin", | ||
| 5881 | "cos", | ||
| 5882 | "tan", | ||
| 5883 | "asin", | ||
| 5884 | "acos", | ||
| 5885 | "atan", | ||
| 5886 | "sinh", | ||
| 5887 | "cosh", | ||
| 5888 | "tanh", | ||
| 5889 | "pow", | ||
| 5890 | "atan2", | ||
| 5891 | "fmod", | ||
| 5892 | "ldexp", | ||
| 5893 | "frexp", | ||
| 5894 | "modf", | ||
| 5895 | "lj_str_new", | ||
| 5896 | "lj_tab_len", | ||
| 5897 | "lj_gc_step", | ||
| 5898 | "lj_dispatch_ins", | ||
| 5899 | "lj_dispatch_call", | ||
| 5900 | "trunc", | ||
| 5901 | "lj_meta_cat", | ||
| 5902 | "lj_gc_barrieruv", | ||
| 5903 | "lj_func_closeuv", | ||
| 5904 | "lj_func_newL_gc", | ||
| 5905 | "lj_tab_new", | ||
| 5906 | "lj_tab_dup", | ||
| 5907 | "lj_gc_step_fixtop", | ||
| 5908 | "lj_tab_newkey", | ||
| 5909 | "lj_tab_reasize", | ||
| 5910 | (const char *)0 | ||
| 5911 | }; | ||
| 5912 | #define Dt1(_V) (int)(ptrdiff_t)&(((lua_State *)0)_V) | ||
| 5913 | #define Dt2(_V) (int)(ptrdiff_t)&(((global_State *)0)_V) | ||
| 5914 | #define Dt3(_V) (int)(ptrdiff_t)&(((TValue *)0)_V) | ||
| 5915 | #define Dt4(_V) (int)(ptrdiff_t)&(((GCobj *)0)_V) | ||
| 5916 | #define Dt5(_V) (int)(ptrdiff_t)&(((GCstr *)0)_V) | ||
| 5917 | #define Dt6(_V) (int)(ptrdiff_t)&(((GCtab *)0)_V) | ||
| 5918 | #define Dt7(_V) (int)(ptrdiff_t)&(((GCfuncL *)0)_V) | ||
| 5919 | #define Dt8(_V) (int)(ptrdiff_t)&(((GCfuncC *)0)_V) | ||
| 5920 | #define Dt9(_V) (int)(ptrdiff_t)&(((GCproto *)0)_V) | ||
| 5921 | #define DtA(_V) (int)(ptrdiff_t)&(((GCupval *)0)_V) | ||
| 5922 | #define DtB(_V) (int)(ptrdiff_t)&(((Node *)0)_V) | ||
| 5923 | #define DtC(_V) (int)(ptrdiff_t)&(((int *)0)_V) | ||
| 5924 | #define DtD(_V) (int)(ptrdiff_t)&(((GCtrace *)0)_V) | ||
| 5925 | #define DISPATCH_GL(field) (GG_DISP2G + (int)offsetof(global_State, field)) | ||
| 5926 | #define DISPATCH_J(field) (GG_DISP2J + (int)offsetof(jit_State, field)) | ||
| 5927 | #define PC2PROTO(field) ((int)offsetof(GCproto, field)-(int)sizeof(GCproto)) | ||
| 5928 | |||
| 5929 | /* Generate subroutines used by opcodes and other parts of the VM. */ | ||
| 5930 | /* The .code_sub section should be last to help static branch prediction. */ | ||
| 5931 | static void build_subroutines(BuildCtx *ctx) | ||
| 5932 | { | ||
| 5933 | dasm_put(Dst, 0); | ||
| 5934 | dasm_put(Dst, 1, FRAME_P, LJ_TTRUE, FRAME_TYPE, FRAME_C, ~LJ_VMST_C, Dt1(->base), DISPATCH_GL(vmstate), 31-3, Dt1(->top)); | ||
| 5935 | dasm_put(Dst, 55, Dt1(->cframe), 184+(14-14)*4, 40+(14-14)*8, 184+(15-14)*4, 40+(15-14)*8, 184+(16-14)*4, 40+(16-14)*8, 184+(17-14)*4, 40+(17-14)*8, 184+(18-14)*4, 40+(18-14)*8, 184+(19-14)*4, 40+(19-14)*8, 184+(20-14)*4, 40+(20-14)*8, 184+(21-14)*4, 40+(21-14)*8, 184+(22-14)*4, 40+(22-14)*8, 184+(23-14)*4, 40+(23-14)*8); | ||
| 5936 | dasm_put(Dst, 103, 184+(24-14)*4, 40+(24-14)*8, 184+(25-14)*4, 40+(25-14)*8, 184+(26-14)*4, 40+(26-14)*8, 184+(27-14)*4, 40+(27-14)*8, 184+(28-14)*4, 40+(28-14)*8, 184+(29-14)*4, 40+(29-14)*8, 184+(30-14)*4, 40+(30-14)*8, 184+(31-14)*4, 40+(31-14)*8, Dt1(->maxstack)); | ||
| 5937 | dasm_put(Dst, 152, 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); | ||
| 5938 | dasm_put(Dst, 215, DISPATCH_GL(vmstate), LUA_MINSTACK, Dt1(->base), Dt1(->top), 32-3, Dt1(->base), Dt1(->top), Dt7(->pc), 184+(14-14)*4, 40+(14-14)*8, 184+(15-14)*4, 40+(15-14)*8, 184+(16-14)*4, 40+(16-14)*8, 184+(17-14)*4); | ||
| 5939 | dasm_put(Dst, 275, 40+(17-14)*8, 184+(18-14)*4, 40+(18-14)*8, 184+(19-14)*4, 40+(19-14)*8, 184+(20-14)*4, 40+(20-14)*8, 184+(21-14)*4, 40+(21-14)*8, 184+(22-14)*4, 40+(22-14)*8, 184+(23-14)*4, 40+(23-14)*8, 184+(24-14)*4, 40+(24-14)*8, 184+(25-14)*4, 40+(25-14)*8, 184+(26-14)*4, 40+(26-14)*8, 184+(27-14)*4, 40+(27-14)*8, 184+(28-14)*4); | ||
| 5940 | dasm_put(Dst, 322, 40+(28-14)*8, 184+(29-14)*4, 40+(29-14)*8, 184+(30-14)*4, 40+(30-14)*8, 184+(31-14)*4, 40+(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)); | ||
| 5941 | dasm_put(Dst, 389, 184+(14-14)*4, 40+(14-14)*8, 184+(15-14)*4, 40+(15-14)*8, 184+(16-14)*4, 40+(16-14)*8, 184+(17-14)*4, 40+(17-14)*8, 184+(18-14)*4, 40+(18-14)*8, 184+(19-14)*4, 40+(19-14)*8, 184+(20-14)*4, 40+(20-14)*8, 184+(21-14)*4, 40+(21-14)*8, 184+(22-14)*4, 40+(22-14)*8, 184+(23-14)*4); | ||
| 5942 | dasm_put(Dst, 435, 40+(23-14)*8, 184+(24-14)*4, 40+(24-14)*8, 184+(25-14)*4, 40+(25-14)*8, 184+(26-14)*4, 40+(26-14)*8, 184+(27-14)*4, 40+(27-14)*8, 184+(28-14)*4, 40+(28-14)*8, 184+(29-14)*4, 40+(29-14)*8, 184+(30-14)*4, 40+(30-14)*8, 184+(31-14)*4, 40+(31-14)*8, FRAME_CP, 184+(14-14)*4, 40+(14-14)*8); | ||
| 5943 | dasm_put(Dst, 482, 184+(15-14)*4, 40+(15-14)*8, 184+(16-14)*4, 40+(16-14)*8, 184+(17-14)*4, 40+(17-14)*8, 184+(18-14)*4, 40+(18-14)*8, 184+(19-14)*4, 40+(19-14)*8, 184+(20-14)*4, 40+(20-14)*8, 184+(21-14)*4, 40+(21-14)*8, 184+(22-14)*4, 40+(22-14)*8, 184+(23-14)*4, 40+(23-14)*8, 184+(24-14)*4, 40+(24-14)*8, 184+(25-14)*4, 40+(25-14)*8); | ||
| 5944 | dasm_put(Dst, 528, 184+(26-14)*4, 40+(26-14)*8, 184+(27-14)*4, 40+(27-14)*8, 184+(28-14)*4, 40+(28-14)*8, 184+(29-14)*4, 40+(29-14)*8, 184+(30-14)*4, 40+(30-14)*8, 184+(31-14)*4, 40+(31-14)*8, FRAME_C, Dt1(->cframe), Dt1(->cframe), Dt1(->glref), GG_G2DISP, Dt1(->base), LJ_TISNUM, Dt1(->top)); | ||
| 5945 | dasm_put(Dst, 578, ~LJ_VMST_INTERP, LJ_TNIL, DISPATCH_GL(vmstate), LJ_TFUNC, Dt7(->pc), 184+(14-14)*4, 40+(14-14)*8, 184+(15-14)*4, 40+(15-14)*8, 184+(16-14)*4, 40+(16-14)*8, 184+(17-14)*4, 40+(17-14)*8, 184+(18-14)*4, 40+(18-14)*8, 184+(19-14)*4, 40+(19-14)*8, 184+(20-14)*4); | ||
| 5946 | dasm_put(Dst, 645, 40+(20-14)*8, 184+(21-14)*4, 40+(21-14)*8, 184+(22-14)*4, 40+(22-14)*8, 184+(23-14)*4, 40+(23-14)*8, 184+(24-14)*4, 40+(24-14)*8, 184+(25-14)*4, 40+(25-14)*8, 184+(26-14)*4, 40+(26-14)*8, 184+(27-14)*4, 40+(27-14)*8, 184+(28-14)*4, 40+(28-14)*8, 184+(29-14)*4, 40+(29-14)*8, 184+(30-14)*4, 40+(30-14)*8, 184+(31-14)*4); | ||
| 5947 | dasm_put(Dst, 691, 40+(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)); | ||
| 5948 | dasm_put(Dst, 765, LJ_TSTR, DISPATCH_GL(tmptv), LJ_TTAB, DISPATCH_GL(tmptv2), LJ_TSTR, DISPATCH_GL(tmptv), Dt1(->base), FRAME_CONT, Dt1(->top), DISPATCH_GL(tmptv)); | ||
| 5949 | dasm_put(Dst, 841, LJ_TSTR, DISPATCH_GL(tmptv), LJ_TTAB, DISPATCH_GL(tmptv2), LJ_TSTR, DISPATCH_GL(tmptv), Dt1(->base), FRAME_CONT, Dt1(->top), Dt1(->base)); | ||
| 5950 | dasm_put(Dst, 923, -(BCBIAS_J*4 >> 16), LJ_TTRUE, LJ_TTRUE, Dt1(->base)); | ||
| 5951 | dasm_put(Dst, 994, Dt1(->base), FRAME_CONT); | ||
| 5952 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | ||
| 5953 | dasm_put(Dst, 1025); | ||
| 5954 | #endif | ||
| 5955 | dasm_put(Dst, 1027, Dt1(->base)); | ||
| 5956 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | ||
| 5957 | dasm_put(Dst, 1035); | ||
| 5958 | #else | ||
| 5959 | dasm_put(Dst, 1042); | ||
| 5960 | #endif | ||
| 5961 | dasm_put(Dst, 1045, Dt1(->base), Dt7(->pc), Dt1(->base), Dt1(->base)); | ||
| 5962 | #if LJ_HASJIT | ||
| 5963 | dasm_put(Dst, 1093); | ||
| 5964 | #endif | ||
| 5965 | dasm_put(Dst, 1095); | ||
| 5966 | #if LJ_HASJIT | ||
| 5967 | dasm_put(Dst, 1097, BC_JFORI); | ||
| 5968 | #endif | ||
| 5969 | dasm_put(Dst, 1100); | ||
| 5970 | #if LJ_HASJIT | ||
| 5971 | dasm_put(Dst, 1102, BC_JFORI); | ||
| 5972 | #endif | ||
| 5973 | dasm_put(Dst, 1105, BC_FORI, LJ_TFALSE, ~LJ_TISNUM+1, 31-3, Dt8(->upvalue), LJ_TTAB, Dt6(->metatable)); | ||
| 5974 | dasm_put(Dst, 1168, 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)); | ||
| 5975 | dasm_put(Dst, 1216, 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)); | ||
| 5976 | dasm_put(Dst, 1271, DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist), LJ_TTAB, LJ_TSTR, DISPATCH_GL(gcroot[GCROOT_BASEMT_NUM]), Dt1(->base)); | ||
| 5977 | dasm_put(Dst, 1331, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, LJ_TTAB, Dt1(->base), Dt1(->top), LJ_TNIL, (2+1)*8, LJ_TTAB); | ||
| 5978 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | ||
| 5979 | dasm_put(Dst, 1393, Dt6(->metatable), Dt8(->upvalue[0])); | ||
| 5980 | #else | ||
| 5981 | dasm_put(Dst, 1402, Dt8(->upvalue[0])); | ||
| 5982 | #endif | ||
| 5983 | dasm_put(Dst, 1406, (3+1)*8, LJ_TTAB, Dt6(->asize), Dt6(->array), 31-3, LJ_TNIL, (0+1)*8, (2+1)*8, Dt6(->hmask), (0+1)*8); | ||
| 5984 | dasm_put(Dst, 1474, (0+1)*8, LJ_TTAB); | ||
| 5985 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | ||
| 5986 | dasm_put(Dst, 1495, Dt6(->metatable), Dt8(->upvalue[0])); | ||
| 5987 | #else | ||
| 5988 | dasm_put(Dst, 1504, Dt8(->upvalue[0])); | ||
| 5989 | #endif | ||
| 5990 | dasm_put(Dst, 1508, (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)); | ||
| 5991 | dasm_put(Dst, 1570, 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)); | ||
| 5992 | dasm_put(Dst, 1632, Dt1(->maxstack), Dt1(->top), FRAME_TYPE, LJ_TTRUE, FRAME_TYPE, LJ_TFALSE, Dt1(->top), (2+1)*8, 32-3); | ||
| 5993 | dasm_put(Dst, 1695, 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); | ||
| 5994 | dasm_put(Dst, 1754, Dt1(->base), DISPATCH_GL(vmstate), Dt1(->maxstack), Dt1(->top), FRAME_TYPE, 32-3, Dt1(->cframe)); | ||
| 5995 | dasm_put(Dst, 1811, Dt1(->base), CFRAME_RESUME, Dt1(->top), LUA_YIELD, Dt1(->cframe), Dt1(->status), (1+1)*8, FRAME_TYPE); | ||
| 5996 | dasm_put(Dst, 1878); | ||
| 5997 | dasm_put(Dst, 1939); | ||
| 5998 | dasm_put(Dst, 1997); | ||
| 5999 | dasm_put(Dst, 2058); | ||
| 6000 | dasm_put(Dst, 2123, Dt8(->upvalue[0]), DISPATCH_GL(tmptv), DISPATCH_GL(tmptv), (2+1)*8); | ||
| 6001 | dasm_put(Dst, 2191, (2+1)*8); | ||
| 6002 | dasm_put(Dst, 2263, LJ_TSTR, Dt5(->len), LJ_TSTR, Dt5(->len), Dt5([1]), 31-3, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), Dt1(->base)); | ||
| 6003 | dasm_put(Dst, 2332, Dt1(->base), LJ_TSTR, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, Dt5(->len), sizeof(GCstr)-1); | ||
| 6004 | dasm_put(Dst, 2401, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, Dt5(->len), DISPATCH_GL(tmpbuf.sz), Dt5([1]), DISPATCH_GL(tmpbuf.buf)); | ||
| 6005 | dasm_put(Dst, 2471, DISPATCH_GL(strempty), LJ_TSTR, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, DISPATCH_GL(tmpbuf.sz), Dt5(->len), sizeof(GCstr), DISPATCH_GL(tmpbuf.buf), DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); | ||
| 6006 | dasm_put(Dst, 2526, LJ_TSTR, DISPATCH_GL(tmpbuf.sz), 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)); | ||
| 6007 | dasm_put(Dst, 2588, LJ_TTAB); | ||
| 6008 | dasm_put(Dst, 2668); | ||
| 6009 | dasm_put(Dst, 2760); | ||
| 6010 | dasm_put(Dst, 2863, Dt8(->f), 8*LUA_MINSTACK, Dt1(->maxstack), Dt1(->base), Dt1(->top), Dt1(->base), 31-3, Dt1(->top), Dt7(->pc), FRAME_TYPE); | ||
| 6011 | dasm_put(Dst, 2941, LUA_MINSTACK, Dt1(->base), Dt1(->base), Dt1(->top), Dt1(->base), Dt1(->top)); | ||
| 6012 | #if LJ_HASJIT | ||
| 6013 | dasm_put(Dst, 2975); | ||
| 6014 | #endif | ||
| 6015 | dasm_put(Dst, 2977, 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)); | ||
| 6016 | dasm_put(Dst, 3024, GG_DISP2STATIC); | ||
| 6017 | #if LJ_HASJIT | ||
| 6018 | dasm_put(Dst, 3042); | ||
| 6019 | #endif | ||
| 6020 | dasm_put(Dst, 3044); | ||
| 6021 | #if LJ_HASJIT | ||
| 6022 | dasm_put(Dst, 3047); | ||
| 6023 | #endif | ||
| 6024 | dasm_put(Dst, 3050); | ||
| 6025 | #if LJ_HASJIT | ||
| 6026 | dasm_put(Dst, 3052); | ||
| 6027 | #endif | ||
| 6028 | dasm_put(Dst, 3055, Dt1(->base), Dt1(->top), Dt1(->base), Dt1(->top)); | ||
| 6029 | #if LJ_HASJIT | ||
| 6030 | dasm_put(Dst, 3077); | ||
| 6031 | #endif | ||
| 6032 | dasm_put(Dst, 3079); | ||
| 6033 | #if LJ_HASJIT | ||
| 6034 | dasm_put(Dst, 3081); | ||
| 6035 | #endif | ||
| 6036 | dasm_put(Dst, 3083); | ||
| 6037 | #if LJ_HASJIT | ||
| 6038 | dasm_put(Dst, 3091); | ||
| 6039 | #endif | ||
| 6040 | dasm_put(Dst, 3094); | ||
| 6041 | #if LJ_HASJIT | ||
| 6042 | dasm_put(Dst, 3096); | ||
| 6043 | #endif | ||
| 6044 | dasm_put(Dst, 3098); | ||
| 6045 | #if LJ_HASJIT | ||
| 6046 | dasm_put(Dst, 3100); | ||
| 6047 | #endif | ||
| 6048 | dasm_put(Dst, 3102); | ||
| 6049 | #if LJ_HASFFI | ||
| 6050 | dasm_put(Dst, 3166); | ||
| 6051 | #endif | ||
| 6052 | } | ||
| 6053 | |||
| 6054 | /* Generate the code for a single instruction. */ | ||
| 6055 | static void build_ins(BuildCtx *ctx, BCOp op, int defop) | ||
| 6056 | { | ||
| 6057 | int vk = 0; | ||
| 6058 | dasm_put(Dst, 3168, defop); | ||
| 6059 | |||
| 6060 | switch (op) { | ||
| 6061 | |||
| 6062 | /* -- Comparison ops ---------------------------------------------------- */ | ||
| 6063 | |||
| 6064 | /* Remember: all ops branch for a true comparison, fall through otherwise. */ | ||
| 6065 | |||
| 6066 | case BC_ISLT: case BC_ISGE: case BC_ISLE: case BC_ISGT: | ||
| 6067 | dasm_put(Dst, 3170, -(BCBIAS_J*4 >> 16)); | ||
| 6068 | if (op == BC_ISLT) { | ||
| 6069 | dasm_put(Dst, 3187); | ||
| 6070 | } else if (op == BC_ISGE) { | ||
| 6071 | dasm_put(Dst, 3190); | ||
| 6072 | } else if (op == BC_ISLE) { | ||
| 6073 | dasm_put(Dst, 3193); | ||
| 6074 | } else { | ||
| 6075 | dasm_put(Dst, 3197); | ||
| 6076 | } | ||
| 6077 | dasm_put(Dst, 3201); | ||
| 6078 | break; | ||
| 6079 | |||
| 6080 | case BC_ISEQV: case BC_ISNEV: | ||
| 6081 | vk = op == BC_ISEQV; | ||
| 6082 | dasm_put(Dst, 3214, -(BCBIAS_J*4 >> 16)); | ||
| 6083 | if (vk) { | ||
| 6084 | dasm_put(Dst, 3231); | ||
| 6085 | } else { | ||
| 6086 | dasm_put(Dst, 3235); | ||
| 6087 | } | ||
| 6088 | dasm_put(Dst, 3239, ~LJ_TISPRI, ~LJ_TISTABUD); | ||
| 6089 | if (vk) { | ||
| 6090 | dasm_put(Dst, 3267); | ||
| 6091 | } else { | ||
| 6092 | dasm_put(Dst, 3272); | ||
| 6093 | } | ||
| 6094 | dasm_put(Dst, 3277, Dt6(->metatable), 1-vk, Dt6(->nomm), 1<<MM_eq); | ||
| 6095 | break; | ||
| 6096 | |||
| 6097 | case BC_ISEQS: case BC_ISNES: | ||
| 6098 | vk = op == BC_ISEQS; | ||
| 6099 | dasm_put(Dst, 3298, 32-1, LJ_TSTR, -(BCBIAS_J*4 >> 16)); | ||
| 6100 | if (vk) { | ||
| 6101 | dasm_put(Dst, 3316); | ||
| 6102 | } else { | ||
| 6103 | dasm_put(Dst, 3318); | ||
| 6104 | } | ||
| 6105 | dasm_put(Dst, 3320); | ||
| 6106 | break; | ||
| 6107 | |||
| 6108 | case BC_ISEQN: case BC_ISNEN: | ||
| 6109 | vk = op == BC_ISEQN; | ||
| 6110 | dasm_put(Dst, 3332, -(BCBIAS_J*4 >> 16)); | ||
| 6111 | if (vk) { | ||
| 6112 | dasm_put(Dst, 3345); | ||
| 6113 | } else { | ||
| 6114 | dasm_put(Dst, 3350); | ||
| 6115 | } | ||
| 6116 | dasm_put(Dst, 3356); | ||
| 6117 | if (!vk) { | ||
| 6118 | dasm_put(Dst, 3367, -(BCBIAS_J*4 >> 16)); | ||
| 6119 | } | ||
| 6120 | break; | ||
| 6121 | |||
| 6122 | case BC_ISEQP: case BC_ISNEP: | ||
| 6123 | vk = op == BC_ISEQP; | ||
| 6124 | dasm_put(Dst, 3374, 32-3, -(BCBIAS_J*4 >> 16)); | ||
| 6125 | if (vk) { | ||
| 6126 | dasm_put(Dst, 3387); | ||
| 6127 | } else { | ||
| 6128 | dasm_put(Dst, 3389); | ||
| 6129 | } | ||
| 6130 | dasm_put(Dst, 3391); | ||
| 6131 | break; | ||
| 6132 | |||
| 6133 | /* -- Unary test and copy ops ------------------------------------------- */ | ||
| 6134 | |||
| 6135 | case BC_ISTC: case BC_ISFC: case BC_IST: case BC_ISF: | ||
| 6136 | dasm_put(Dst, 3403); | ||
| 6137 | if (op == BC_IST || op == BC_ISF) { | ||
| 6138 | dasm_put(Dst, 3407, LJ_TTRUE, -(BCBIAS_J*4 >> 16)); | ||
| 6139 | if (op == BC_IST) { | ||
| 6140 | dasm_put(Dst, 3414); | ||
| 6141 | } else { | ||
| 6142 | dasm_put(Dst, 3416); | ||
| 6143 | } | ||
| 6144 | dasm_put(Dst, 3418); | ||
| 6145 | } else { | ||
| 6146 | dasm_put(Dst, 3420, LJ_TFALSE); | ||
| 6147 | if (op == BC_ISTC) { | ||
| 6148 | dasm_put(Dst, 3425); | ||
| 6149 | } else { | ||
| 6150 | dasm_put(Dst, 3428); | ||
| 6151 | } | ||
| 6152 | dasm_put(Dst, 3431, -(BCBIAS_J*4 >> 16)); | ||
| 6153 | } | ||
| 6154 | dasm_put(Dst, 3438); | ||
| 6155 | break; | ||
| 6156 | |||
| 6157 | /* -- Unary ops --------------------------------------------------------- */ | ||
| 6158 | |||
| 6159 | case BC_MOV: | ||
| 6160 | dasm_put(Dst, 3449); | ||
| 6161 | break; | ||
| 6162 | case BC_NOT: | ||
| 6163 | dasm_put(Dst, 3462, LJ_TTRUE); | ||
| 6164 | break; | ||
| 6165 | case BC_UNM: | ||
| 6166 | dasm_put(Dst, 3478); | ||
| 6167 | break; | ||
| 6168 | case BC_LEN: | ||
| 6169 | dasm_put(Dst, 3497, LJ_TSTR, Dt5(->len), LJ_TTAB); | ||
| 6170 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | ||
| 6171 | dasm_put(Dst, 3526, Dt6(->metatable)); | ||
| 6172 | #endif | ||
| 6173 | dasm_put(Dst, 3533); | ||
| 6174 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | ||
| 6175 | dasm_put(Dst, 3539, Dt6(->nomm), 1<<MM_len); | ||
| 6176 | #endif | ||
| 6177 | break; | ||
| 6178 | |||
| 6179 | /* -- Binary ops -------------------------------------------------------- */ | ||
| 6180 | |||
| 6181 | |||
| 6182 | case BC_ADDVN: case BC_ADDNV: case BC_ADDVV: | ||
| 6183 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | ||
| 6184 | switch (vk) { | ||
| 6185 | case 0: | ||
| 6186 | dasm_put(Dst, 3549); | ||
| 6187 | break; | ||
| 6188 | case 1: | ||
| 6189 | dasm_put(Dst, 3556); | ||
| 6190 | break; | ||
| 6191 | default: | ||
| 6192 | dasm_put(Dst, 3563); | ||
| 6193 | break; | ||
| 6194 | } | ||
| 6195 | dasm_put(Dst, 3573); | ||
| 6196 | break; | ||
| 6197 | case BC_SUBVN: case BC_SUBNV: case BC_SUBVV: | ||
| 6198 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | ||
| 6199 | switch (vk) { | ||
| 6200 | case 0: | ||
| 6201 | dasm_put(Dst, 3586); | ||
| 6202 | break; | ||
| 6203 | case 1: | ||
| 6204 | dasm_put(Dst, 3593); | ||
| 6205 | break; | ||
| 6206 | default: | ||
| 6207 | dasm_put(Dst, 3600); | ||
| 6208 | break; | ||
| 6209 | } | ||
| 6210 | dasm_put(Dst, 3610); | ||
| 6211 | break; | ||
| 6212 | case BC_MULVN: case BC_MULNV: case BC_MULVV: | ||
| 6213 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | ||
| 6214 | switch (vk) { | ||
| 6215 | case 0: | ||
| 6216 | dasm_put(Dst, 3623); | ||
| 6217 | break; | ||
| 6218 | case 1: | ||
| 6219 | dasm_put(Dst, 3630); | ||
| 6220 | break; | ||
| 6221 | default: | ||
| 6222 | dasm_put(Dst, 3637); | ||
| 6223 | break; | ||
| 6224 | } | ||
| 6225 | dasm_put(Dst, 3647); | ||
| 6226 | break; | ||
| 6227 | case BC_DIVVN: case BC_DIVNV: case BC_DIVVV: | ||
| 6228 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | ||
| 6229 | switch (vk) { | ||
| 6230 | case 0: | ||
| 6231 | dasm_put(Dst, 3660); | ||
| 6232 | break; | ||
| 6233 | case 1: | ||
| 6234 | dasm_put(Dst, 3667); | ||
| 6235 | break; | ||
| 6236 | default: | ||
| 6237 | dasm_put(Dst, 3674); | ||
| 6238 | break; | ||
| 6239 | } | ||
| 6240 | dasm_put(Dst, 3684); | ||
| 6241 | break; | ||
| 6242 | case BC_MODVN: | ||
| 6243 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | ||
| 6244 | switch (vk) { | ||
| 6245 | case 0: | ||
| 6246 | dasm_put(Dst, 3697); | ||
| 6247 | break; | ||
| 6248 | case 1: | ||
| 6249 | dasm_put(Dst, 3704); | ||
| 6250 | break; | ||
| 6251 | default: | ||
| 6252 | dasm_put(Dst, 3711); | ||
| 6253 | break; | ||
| 6254 | } | ||
| 6255 | dasm_put(Dst, 3721); | ||
| 6256 | break; | ||
| 6257 | case BC_MODNV: case BC_MODVV: | ||
| 6258 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | ||
| 6259 | switch (vk) { | ||
| 6260 | case 0: | ||
| 6261 | dasm_put(Dst, 3739); | ||
| 6262 | break; | ||
| 6263 | case 1: | ||
| 6264 | dasm_put(Dst, 3746); | ||
| 6265 | break; | ||
| 6266 | default: | ||
| 6267 | dasm_put(Dst, 3753); | ||
| 6268 | break; | ||
| 6269 | } | ||
| 6270 | dasm_put(Dst, 3763); | ||
| 6271 | break; | ||
| 6272 | case BC_POW: | ||
| 6273 | dasm_put(Dst, 3766); | ||
| 6274 | break; | ||
| 6275 | |||
| 6276 | case BC_CAT: | ||
| 6277 | dasm_put(Dst, 3789, Dt1(->base), 32-3, Dt1(->base)); | ||
| 6278 | break; | ||
| 6279 | |||
| 6280 | /* -- Constant ops ------------------------------------------------------ */ | ||
| 6281 | |||
| 6282 | case BC_KSTR: | ||
| 6283 | dasm_put(Dst, 3819, 32-1, LJ_TSTR); | ||
| 6284 | break; | ||
| 6285 | case BC_KCDATA: | ||
| 6286 | #if LJ_HASFFI | ||
| 6287 | dasm_put(Dst, 3838, 32-1, LJ_TCDATA); | ||
| 6288 | #endif | ||
| 6289 | break; | ||
| 6290 | case BC_KSHORT: | ||
| 6291 | dasm_put(Dst, 3857, 31-13); | ||
| 6292 | break; | ||
| 6293 | case BC_KNUM: | ||
| 6294 | dasm_put(Dst, 3876); | ||
| 6295 | break; | ||
| 6296 | case BC_KPRI: | ||
| 6297 | dasm_put(Dst, 3889, 32-3); | ||
| 6298 | break; | ||
| 6299 | case BC_KNIL: | ||
| 6300 | dasm_put(Dst, 3904); | ||
| 6301 | break; | ||
| 6302 | |||
| 6303 | /* -- Upvalue and function ops ------------------------------------------ */ | ||
| 6304 | |||
| 6305 | case BC_UGET: | ||
| 6306 | dasm_put(Dst, 3923, 32-1, offsetof(GCfuncL, uvptr), DtA(->v)); | ||
| 6307 | break; | ||
| 6308 | case BC_USETV: | ||
| 6309 | dasm_put(Dst, 3944, 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); | ||
| 6310 | break; | ||
| 6311 | case BC_USETS: | ||
| 6312 | dasm_put(Dst, 3997, 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); | ||
| 6313 | break; | ||
| 6314 | case BC_USETN: | ||
| 6315 | dasm_put(Dst, 4048, 32-1, offsetof(GCfuncL, uvptr), DtA(->v)); | ||
| 6316 | break; | ||
| 6317 | case BC_USETP: | ||
| 6318 | dasm_put(Dst, 4069, 32-1, offsetof(GCfuncL, uvptr), 32-3, DtA(->v)); | ||
| 6319 | break; | ||
| 6320 | |||
| 6321 | case BC_UCLO: | ||
| 6322 | dasm_put(Dst, 4092, Dt1(->openupval), 32-1, -(BCBIAS_J*4 >> 16), Dt1(->base), Dt1(->base)); | ||
| 6323 | break; | ||
| 6324 | |||
| 6325 | case BC_FNEW: | ||
| 6326 | dasm_put(Dst, 4122, 32-1, Dt1(->base), Dt1(->base), LJ_TFUNC); | ||
| 6327 | break; | ||
| 6328 | |||
| 6329 | /* -- Table ops --------------------------------------------------------- */ | ||
| 6330 | |||
| 6331 | case BC_TNEW: | ||
| 6332 | case BC_TDUP: | ||
| 6333 | dasm_put(Dst, 4150, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), Dt1(->base)); | ||
| 6334 | if (op == BC_TNEW) { | ||
| 6335 | dasm_put(Dst, 4163); | ||
| 6336 | } else { | ||
| 6337 | dasm_put(Dst, 4172, 32-1); | ||
| 6338 | } | ||
| 6339 | dasm_put(Dst, 4179, Dt1(->base), LJ_TTAB); | ||
| 6340 | if (op == BC_TNEW) { | ||
| 6341 | dasm_put(Dst, 4196); | ||
| 6342 | } | ||
| 6343 | dasm_put(Dst, 4201); | ||
| 6344 | break; | ||
| 6345 | |||
| 6346 | case BC_GGET: | ||
| 6347 | case BC_GSET: | ||
| 6348 | dasm_put(Dst, 4210, 32-1, Dt7(->env)); | ||
| 6349 | if (op == BC_GGET) { | ||
| 6350 | dasm_put(Dst, 4218); | ||
| 6351 | } else { | ||
| 6352 | dasm_put(Dst, 4221); | ||
| 6353 | } | ||
| 6354 | break; | ||
| 6355 | |||
| 6356 | case BC_TGETV: | ||
| 6357 | dasm_put(Dst, 4224, LJ_TTAB, Dt6(->asize), Dt6(->array), 31-3, LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index, LJ_TSTR); | ||
| 6358 | break; | ||
| 6359 | case BC_TGETS: | ||
| 6360 | dasm_put(Dst, 4292, 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)); | ||
| 6361 | dasm_put(Dst, 4353, LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index); | ||
| 6362 | break; | ||
| 6363 | case BC_TGETB: | ||
| 6364 | dasm_put(Dst, 4373, 32-3, LJ_TTAB, Dt6(->asize), Dt6(->array), LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index); | ||
| 6365 | break; | ||
| 6366 | |||
| 6367 | case BC_TSETV: | ||
| 6368 | dasm_put(Dst, 4421, LJ_TTAB, Dt6(->asize), Dt6(->array), 31-3, Dt6(->marked), LJ_TNIL, LJ_GC_BLACK, Dt6(->metatable), Dt6(->nomm), 1<<MM_newindex); | ||
| 6369 | dasm_put(Dst, 4489, LJ_TSTR, DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); | ||
| 6370 | break; | ||
| 6371 | dasm_put(Dst, 4509, LJ_TSTR, LJ_TNIL); | ||
| 6372 | case BC_TSETS: | ||
| 6373 | dasm_put(Dst, 4535, 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); | ||
| 6374 | dasm_put(Dst, 4586, 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); | ||
| 6375 | dasm_put(Dst, 4642, LJ_TSTR, Dt1(->base), DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); | ||
| 6376 | break; | ||
| 6377 | case BC_TSETB: | ||
| 6378 | dasm_put(Dst, 4667, 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)); | ||
| 6379 | dasm_put(Dst, 4725, DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); | ||
| 6380 | break; | ||
| 6381 | |||
| 6382 | case BC_TSETM: | ||
| 6383 | dasm_put(Dst, 4735, 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)); | ||
| 6384 | dasm_put(Dst, 4804); | ||
| 6385 | break; | ||
| 6386 | |||
| 6387 | /* -- Calls and vararg handling ----------------------------------------- */ | ||
| 6388 | |||
| 6389 | case BC_CALLM: | ||
| 6390 | dasm_put(Dst, 4807); | ||
| 6391 | break; | ||
| 6392 | case BC_CALL: | ||
| 6393 | dasm_put(Dst, 4809, LJ_TFUNC, Dt7(->pc)); | ||
| 6394 | break; | ||
| 6395 | |||
| 6396 | case BC_CALLMT: | ||
| 6397 | dasm_put(Dst, 4830); | ||
| 6398 | break; | ||
| 6399 | case BC_CALLT: | ||
| 6400 | dasm_put(Dst, 4832, LJ_TFUNC, FRAME_TYPE, Dt7(->ffid), FRAME_VARG, Dt7(->pc), -4-8, Dt7(->pc), PC2PROTO(k), FRAME_TYPEP); | ||
| 6401 | dasm_put(Dst, 4896, FRAME_TYPE); | ||
| 6402 | break; | ||
| 6403 | |||
| 6404 | case BC_ITERC: | ||
| 6405 | dasm_put(Dst, 4905, LJ_TFUNC, Dt7(->pc)); | ||
| 6406 | break; | ||
| 6407 | |||
| 6408 | case BC_ITERN: | ||
| 6409 | #if LJ_HASJIT | ||
| 6410 | #endif | ||
| 6411 | dasm_put(Dst, 4932, Dt6(->asize), Dt6(->array), 31-3, LJ_TNIL, -(BCBIAS_J*4 >> 16), Dt6(->hmask), Dt6(->node), 31-5, 31-3, LJ_TNIL, DtB(->key), -(BCBIAS_J*4 >> 16)); | ||
| 6412 | dasm_put(Dst, 5007); | ||
| 6413 | break; | ||
| 6414 | |||
| 6415 | case BC_ISNEXT: | ||
| 6416 | dasm_put(Dst, 5021, 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)); | ||
| 6417 | break; | ||
| 6418 | |||
| 6419 | case BC_VARG: | ||
| 6420 | dasm_put(Dst, 5071, FRAME_VARG, Dt1(->maxstack), Dt1(->top), Dt1(->base), 32-3, Dt1(->base)); | ||
| 6421 | dasm_put(Dst, 5151); | ||
| 6422 | break; | ||
| 6423 | |||
| 6424 | /* -- Returns ----------------------------------------------------------- */ | ||
| 6425 | |||
| 6426 | case BC_RETM: | ||
| 6427 | dasm_put(Dst, 5157); | ||
| 6428 | break; | ||
| 6429 | |||
| 6430 | case BC_RET: | ||
| 6431 | dasm_put(Dst, 5159, FRAME_TYPE, FRAME_VARG, Dt7(->pc), PC2PROTO(k), FRAME_TYPEP); | ||
| 6432 | break; | ||
| 6433 | |||
| 6434 | case BC_RET0: case BC_RET1: | ||
| 6435 | dasm_put(Dst, 5229, FRAME_TYPE, FRAME_VARG); | ||
| 6436 | if (op == BC_RET1) { | ||
| 6437 | dasm_put(Dst, 5242); | ||
| 6438 | } | ||
| 6439 | dasm_put(Dst, 5245, Dt7(->pc), PC2PROTO(k)); | ||
| 6440 | break; | ||
| 6441 | |||
| 6442 | /* -- Loops and branches ------------------------------------------------ */ | ||
| 6443 | |||
| 6444 | case BC_FORL: | ||
| 6445 | #if LJ_HASJIT | ||
| 6446 | dasm_put(Dst, 5273); | ||
| 6447 | #endif | ||
| 6448 | break; | ||
| 6449 | |||
| 6450 | case BC_JFORI: | ||
| 6451 | case BC_JFORL: | ||
| 6452 | #if !LJ_HASJIT | ||
| 6453 | break; | ||
| 6454 | #endif | ||
| 6455 | case BC_FORI: | ||
| 6456 | case BC_IFORL: | ||
| 6457 | vk = (op == BC_IFORL || op == BC_JFORL); | ||
| 6458 | if (vk) { | ||
| 6459 | dasm_put(Dst, 5275, FORL_STEP*8, FORL_STOP*8, FORL_STEP*8, FORL_IDX*8); | ||
| 6460 | } else { | ||
| 6461 | dasm_put(Dst, 5286, FORL_IDX*8, FORL_STEP*8, FORL_STEP*8, FORL_STOP*8, FORL_STOP*8); | ||
| 6462 | } | ||
| 6463 | dasm_put(Dst, 5305); | ||
| 6464 | if (op != BC_JFORL) { | ||
| 6465 | dasm_put(Dst, 5307, 32-1); | ||
| 6466 | } | ||
| 6467 | dasm_put(Dst, 5310, FORL_EXT*8); | ||
| 6468 | if (op != BC_JFORL) { | ||
| 6469 | dasm_put(Dst, 5313); | ||
| 6470 | } | ||
| 6471 | dasm_put(Dst, 5315); | ||
| 6472 | if (op == BC_JFORI) { | ||
| 6473 | dasm_put(Dst, 5317, -(BCBIAS_J*4 >> 16)); | ||
| 6474 | } | ||
| 6475 | dasm_put(Dst, 5320); | ||
| 6476 | if (op == BC_FORI) { | ||
| 6477 | dasm_put(Dst, 5323); | ||
| 6478 | } else if (op == BC_IFORL) { | ||
| 6479 | dasm_put(Dst, 5326, -(BCBIAS_J*4 >> 16)); | ||
| 6480 | } else { | ||
| 6481 | dasm_put(Dst, 5332, BC_JLOOP); | ||
| 6482 | } | ||
| 6483 | dasm_put(Dst, 5335); | ||
| 6484 | if (op == BC_FORI) { | ||
| 6485 | dasm_put(Dst, 5348, -(BCBIAS_J*4 >> 16)); | ||
| 6486 | } else if (op == BC_IFORL) { | ||
| 6487 | dasm_put(Dst, 5354); | ||
| 6488 | } else { | ||
| 6489 | dasm_put(Dst, 5357, BC_JLOOP); | ||
| 6490 | } | ||
| 6491 | dasm_put(Dst, 5360); | ||
| 6492 | break; | ||
| 6493 | |||
| 6494 | case BC_ITERL: | ||
| 6495 | #if LJ_HASJIT | ||
| 6496 | dasm_put(Dst, 5363); | ||
| 6497 | #endif | ||
| 6498 | break; | ||
| 6499 | |||
| 6500 | case BC_JITERL: | ||
| 6501 | #if !LJ_HASJIT | ||
| 6502 | break; | ||
| 6503 | #endif | ||
| 6504 | case BC_IITERL: | ||
| 6505 | dasm_put(Dst, 5365, LJ_TNIL); | ||
| 6506 | if (op == BC_JITERL) { | ||
| 6507 | dasm_put(Dst, 5372); | ||
| 6508 | } else { | ||
| 6509 | dasm_put(Dst, 5374, 32-1, -(BCBIAS_J*4 >> 16)); | ||
| 6510 | } | ||
| 6511 | dasm_put(Dst, 5382); | ||
| 6512 | break; | ||
| 6513 | |||
| 6514 | case BC_LOOP: | ||
| 6515 | #if LJ_HASJIT | ||
| 6516 | dasm_put(Dst, 5394); | ||
| 6517 | #endif | ||
| 6518 | break; | ||
| 6519 | |||
| 6520 | case BC_ILOOP: | ||
| 6521 | dasm_put(Dst, 5396); | ||
| 6522 | break; | ||
| 6523 | |||
| 6524 | case BC_JLOOP: | ||
| 6525 | #if LJ_HASJIT | ||
| 6526 | dasm_put(Dst, 5407); | ||
| 6527 | #endif | ||
| 6528 | break; | ||
| 6529 | |||
| 6530 | case BC_JMP: | ||
| 6531 | dasm_put(Dst, 5409, 32-1, -(BCBIAS_J*4 >> 16)); | ||
| 6532 | break; | ||
| 6533 | |||
| 6534 | /* -- Function headers -------------------------------------------------- */ | ||
| 6535 | |||
| 6536 | case BC_FUNCF: | ||
| 6537 | #if LJ_HASJIT | ||
| 6538 | dasm_put(Dst, 5425); | ||
| 6539 | #endif | ||
| 6540 | case BC_FUNCV: /* NYI: compiled vararg functions. */ | ||
| 6541 | break; | ||
| 6542 | |||
| 6543 | case BC_JFUNCF: | ||
| 6544 | #if !LJ_HASJIT | ||
| 6545 | break; | ||
| 6546 | #endif | ||
| 6547 | case BC_IFUNCF: | ||
| 6548 | dasm_put(Dst, 5427, Dt1(->maxstack), -4+PC2PROTO(numparams), -4+PC2PROTO(k), 31-3); | ||
| 6549 | if (op == BC_JFUNCF) { | ||
| 6550 | dasm_put(Dst, 5445); | ||
| 6551 | } else { | ||
| 6552 | dasm_put(Dst, 5447); | ||
| 6553 | } | ||
| 6554 | dasm_put(Dst, 5456); | ||
| 6555 | break; | ||
| 6556 | |||
| 6557 | case BC_JFUNCV: | ||
| 6558 | #if !LJ_HASJIT | ||
| 6559 | break; | ||
| 6560 | #endif | ||
| 6561 | dasm_put(Dst, 5462); | ||
| 6562 | break; /* NYI: compiled vararg functions. */ | ||
| 6563 | |||
| 6564 | case BC_IFUNCV: | ||
| 6565 | dasm_put(Dst, 5464, Dt1(->maxstack), 8+FRAME_VARG, -4+PC2PROTO(k), -4+PC2PROTO(numparams), LJ_TNIL); | ||
| 6566 | break; | ||
| 6567 | |||
| 6568 | case BC_FUNCC: | ||
| 6569 | case BC_FUNCCW: | ||
| 6570 | if (op == BC_FUNCC) { | ||
| 6571 | dasm_put(Dst, 5517, Dt8(->f)); | ||
| 6572 | } else { | ||
| 6573 | dasm_put(Dst, 5520, DISPATCH_GL(wrapf)); | ||
| 6574 | } | ||
| 6575 | dasm_put(Dst, 5523, Dt1(->maxstack), Dt1(->base), Dt1(->top), ~LJ_VMST_C); | ||
| 6576 | if (op == BC_FUNCCW) { | ||
| 6577 | dasm_put(Dst, 5536, Dt8(->f)); | ||
| 6578 | } | ||
| 6579 | dasm_put(Dst, 5539, DISPATCH_GL(vmstate), Dt1(->top), 31-3, Dt1(->base), ~LJ_VMST_INTERP, DISPATCH_GL(vmstate)); | ||
| 6580 | break; | ||
| 6581 | |||
| 6582 | /* ---------------------------------------------------------------------- */ | ||
| 6583 | |||
| 6584 | default: | ||
| 6585 | fprintf(stderr, "Error: undefined opcode BC_%s\n", bc_names[op]); | ||
| 6586 | exit(2); | ||
| 6587 | break; | ||
| 6588 | } | ||
| 6589 | } | ||
| 6590 | |||
| 6591 | static int build_backend(BuildCtx *ctx) | ||
| 6592 | { | ||
| 6593 | int op; | ||
| 6594 | |||
| 6595 | dasm_growpc(Dst, BC__MAX); | ||
| 6596 | |||
| 6597 | build_subroutines(ctx); | ||
| 6598 | |||
| 6599 | dasm_put(Dst, 5560); | ||
| 6600 | for (op = 0; op < BC__MAX; op++) | ||
| 6601 | build_ins(ctx, (BCOp)op, op); | ||
| 6602 | |||
| 6603 | return BC__MAX; | ||
| 6604 | } | ||
| 6605 | |||
| 6606 | /* Emit pseudo frame-info for all assembler functions. */ | ||
| 6607 | static void emit_asm_debug(BuildCtx *ctx) | ||
| 6608 | { | ||
| 6609 | int i; | ||
| 6610 | switch (ctx->mode) { | ||
| 6611 | case BUILD_elfasm: | ||
| 6612 | fprintf(ctx->fp, "\t.section .debug_frame,\"\",@progbits\n"); | ||
| 6613 | fprintf(ctx->fp, | ||
| 6614 | ".Lframe0:\n" | ||
| 6615 | "\t.long .LECIE0-.LSCIE0\n" | ||
| 6616 | ".LSCIE0:\n" | ||
| 6617 | "\t.long 0xffffffff\n" | ||
| 6618 | "\t.byte 0x1\n" | ||
| 6619 | "\t.string \"\"\n" | ||
| 6620 | "\t.uleb128 0x1\n" | ||
| 6621 | "\t.sleb128 -4\n" | ||
| 6622 | "\t.byte 65\n" | ||
| 6623 | "\t.byte 0xc\n\t.uleb128 1\n\t.uleb128 0\n" | ||
| 6624 | "\t.align 2\n" | ||
| 6625 | ".LECIE0:\n\n"); | ||
| 6626 | fprintf(ctx->fp, | ||
| 6627 | ".LSFDE0:\n" | ||
| 6628 | "\t.long .LEFDE0-.LASFDE0\n" | ||
| 6629 | ".LASFDE0:\n" | ||
| 6630 | "\t.long .Lframe0\n" | ||
| 6631 | "\t.long .Lbegin\n" | ||
| 6632 | "\t.long %d\n" | ||
| 6633 | "\t.byte 0xe\n\t.uleb128 %d\n" | ||
| 6634 | "\t.byte 0x11\n\t.uleb128 65\n\t.sleb128 -1\n", | ||
| 6635 | (int)ctx->codesz, CFRAME_SIZE); | ||
| 6636 | for (i = 14; i <= 31; i++) | ||
| 6637 | fprintf(ctx->fp, | ||
| 6638 | "\t.byte %d\n\t.uleb128 %d\n" | ||
| 6639 | "\t.byte %d\n\t.uleb128 %d\n", | ||
| 6640 | 0x80+i, 37+(31-i), 0x80+32+i, 2+2*(31-i)); | ||
| 6641 | fprintf(ctx->fp, | ||
| 6642 | "\t.align 2\n" | ||
| 6643 | ".LEFDE0:\n\n"); | ||
| 6644 | fprintf(ctx->fp, "\t.section .eh_frame,\"a\",@progbits\n"); | ||
| 6645 | fprintf(ctx->fp, | ||
| 6646 | ".Lframe1:\n" | ||
| 6647 | "\t.long .LECIE1-.LSCIE1\n" | ||
| 6648 | ".LSCIE1:\n" | ||
| 6649 | "\t.long 0\n" | ||
| 6650 | "\t.byte 0x1\n" | ||
| 6651 | "\t.string \"zPR\"\n" | ||
| 6652 | "\t.uleb128 0x1\n" | ||
| 6653 | "\t.sleb128 -4\n" | ||
| 6654 | "\t.byte 65\n" | ||
| 6655 | "\t.uleb128 6\n" /* augmentation length */ | ||
| 6656 | "\t.byte 0x1b\n" /* pcrel|sdata4 */ | ||
| 6657 | "\t.long lj_err_unwind_dwarf-.\n" | ||
| 6658 | "\t.byte 0x1b\n" /* pcrel|sdata4 */ | ||
| 6659 | "\t.byte 0xc\n\t.uleb128 1\n\t.uleb128 0\n" | ||
| 6660 | "\t.align 2\n" | ||
| 6661 | ".LECIE1:\n\n"); | ||
| 6662 | fprintf(ctx->fp, | ||
| 6663 | ".LSFDE1:\n" | ||
| 6664 | "\t.long .LEFDE1-.LASFDE1\n" | ||
| 6665 | ".LASFDE1:\n" | ||
| 6666 | "\t.long .LASFDE1-.Lframe1\n" | ||
| 6667 | "\t.long .Lbegin-.\n" | ||
| 6668 | "\t.long %d\n" | ||
| 6669 | "\t.uleb128 0\n" /* augmentation length */ | ||
| 6670 | "\t.byte 0xe\n\t.uleb128 %d\n" | ||
| 6671 | "\t.byte 0x11\n\t.uleb128 65\n\t.sleb128 -1\n", | ||
| 6672 | (int)ctx->codesz, CFRAME_SIZE); | ||
| 6673 | for (i = 14; i <= 31; i++) | ||
| 6674 | fprintf(ctx->fp, | ||
| 6675 | "\t.byte %d\n\t.uleb128 %d\n" | ||
| 6676 | "\t.byte %d\n\t.uleb128 %d\n", | ||
| 6677 | 0x80+i, 37+(31-i), 0x80+32+i, 2+2*(31-i)); | ||
| 6678 | fprintf(ctx->fp, | ||
| 6679 | "\t.align 2\n" | ||
| 6680 | ".LEFDE1:\n\n"); | ||
| 6681 | break; | ||
| 6682 | default: | ||
| 6683 | break; | ||
| 6684 | } | ||
| 6685 | } | ||
| 6686 | |||
diff --git a/src/lj_arch.h b/src/lj_arch.h index 03da79a6..826c54c1 100644 --- a/src/lj_arch.h +++ b/src/lj_arch.h | |||
| @@ -166,8 +166,6 @@ | |||
| 166 | #define LJ_ARCH_NOFFI 1 /* NYI: comparisons, calls. */ | 166 | #define LJ_ARCH_NOFFI 1 /* NYI: comparisons, calls. */ |
| 167 | #define LJ_ARCH_NOJIT 1 | 167 | #define LJ_ARCH_NOJIT 1 |
| 168 | 168 | ||
| 169 | #error "No support for plain PowerPC CPUs (yet)" | ||
| 170 | |||
| 171 | #elif LUAJIT_TARGET == LUAJIT_ARCH_PPCSPE | 169 | #elif LUAJIT_TARGET == LUAJIT_ARCH_PPCSPE |
| 172 | 170 | ||
| 173 | #define LJ_ARCH_NAME "ppcspe" | 171 | #define LJ_ARCH_NAME "ppcspe" |
diff --git a/src/lj_frame.h b/src/lj_frame.h index f09b73d0..2baf44a8 100644 --- a/src/lj_frame.h +++ b/src/lj_frame.h | |||
| @@ -104,8 +104,8 @@ enum { | |||
| 104 | #define CFRAME_OFS_NRES 24 | 104 | #define CFRAME_OFS_NRES 24 |
| 105 | #define CFRAME_OFS_PREV 20 | 105 | #define CFRAME_OFS_PREV 20 |
| 106 | #define CFRAME_OFS_L 16 | 106 | #define CFRAME_OFS_L 16 |
| 107 | #define CFRAME_OFS_PC 12 | 107 | #define CFRAME_OFS_PC 8 |
| 108 | #define CFRAME_OFS_MULTRES 8 | 108 | #define CFRAME_OFS_MULTRES 12 |
| 109 | #define CFRAME_SIZE 256 | 109 | #define CFRAME_SIZE 256 |
| 110 | #define CFRAME_SHIFT_MULTRES 3 | 110 | #define CFRAME_SHIFT_MULTRES 3 |
| 111 | #elif LJ_TARGET_PPCSPE | 111 | #elif LJ_TARGET_PPCSPE |
