diff options
| author | Mike Pall <mike> | 2011-08-10 21:54:03 +0200 |
|---|---|---|
| committer | Mike Pall <mike> | 2011-08-10 21:56:10 +0200 |
| commit | d84207b8b6b906f9ec6eb1861a9319fb574dd1f8 (patch) | |
| tree | 9642365632ac206e834672e4b7dc81802cdbd2ff /src | |
| parent | 5385809d306bb56f2c0efe0940718b5dd1612b24 (diff) | |
| download | luajit-d84207b8b6b906f9ec6eb1861a9319fb574dd1f8.tar.gz luajit-d84207b8b6b906f9ec6eb1861a9319fb574dd1f8.tar.bz2 luajit-d84207b8b6b906f9ec6eb1861a9319fb574dd1f8.zip | |
PPC: Save/restore cr2, cr3 and cr4 when entering/leaving VM.
Diffstat (limited to 'src')
| -rw-r--r-- | src/buildvm_ppc.dasc | 50 | ||||
| -rw-r--r-- | src/buildvm_ppc.h | 1911 | ||||
| -rw-r--r-- | src/lj_frame.h | 14 |
3 files changed, 1017 insertions, 958 deletions
diff --git a/src/buildvm_ppc.dasc b/src/buildvm_ppc.dasc index 8fb77489..ad209ce6 100644 --- a/src/buildvm_ppc.dasc +++ b/src/buildvm_ppc.dasc | |||
| @@ -62,26 +62,28 @@ | |||
| 62 | |.define CRET2, r4 | 62 | |.define CRET2, r4 |
| 63 | | | 63 | | |
| 64 | |// Stack layout while in interpreter. Must match with lj_frame.h. | 64 | |// Stack layout while in interpreter. Must match with lj_frame.h. |
| 65 | |.define SAVE_LR, 260(sp) | 65 | |.define SAVE_LR, 276(sp) |
| 66 | |.define CFRAME_SPACE, 256 // Delta for sp. | 66 | |.define CFRAME_SPACE, 272 // Delta for sp. |
| 67 | |// Back chain for sp: 256(sp) <-- sp entering interpreter | 67 | |// Back chain for sp: 272(sp) <-- sp entering interpreter |
| 68 | |.define SAVE_GPR_, 184 // .. 184+18*4: 32 bit GPR saves. | 68 | |.define SAVE_FPR_, 128 // .. 128+18*8: 64 bit FPR saves. |
| 69 | |.define SAVE_FPR_, 40 // .. 40+18*8: 64 bit FPR saves. | 69 | |.define SAVE_GPR_, 56 // .. 56+18*4: 32 bit GPR saves. |
| 70 | |.define TONUM_LO, 36(sp) | 70 | |.define SAVE_CR, 52(sp) // 32 bit CR save. |
| 71 | |.define TONUM_HI, 32(sp) | 71 | |.define SAVE_ERRF, 48(sp) // 32 bit C frame info. |
| 72 | |.define SAVE_ERRF, 28(sp) // 32 bit C frame info. | 72 | |.define SAVE_NRES, 44(sp) |
| 73 | |.define SAVE_NRES, 24(sp) | 73 | |.define SAVE_CFRAME, 40(sp) |
| 74 | |.define SAVE_CFRAME, 20(sp) | 74 | |.define SAVE_L, 36(sp) |
| 75 | |.define SAVE_L, 16(sp) | 75 | |.define SAVE_PC, 32(sp) |
| 76 | |.define SAVE_MULTRES, 12(sp) | 76 | |.define SAVE_MULTRES, 28(sp) |
| 77 | |.define SAVE_PC, 8(sp) | 77 | |.define UNUSED1, 24(sp) |
| 78 | |.define TMPD_LO, 20(sp) | ||
| 79 | |.define TMPD_HI, 16(sp) | ||
| 80 | |.define TONUM_LO, 12(sp) | ||
| 81 | |.define TONUM_HI, 8(sp) | ||
| 78 | |// Next frame lr: 4(sp) | 82 | |// Next frame lr: 4(sp) |
| 79 | |// Back chain for sp: 0(sp) <-- sp while in interpreter | 83 | |// Back chain for sp: 0(sp) <-- sp while in interpreter |
| 80 | | | 84 | | |
| 81 | |.define TMPD_LO, SAVE_MULTRES | 85 | |.define TMPD_BLO, 23(sp) |
| 82 | |.define TMPD_BLO, 15(sp) | 86 | |.define TMPD, TMPD_HI |
| 83 | |.define TMPD_HI, SAVE_PC | ||
| 84 | |.define TMPD, SAVE_PC | ||
| 85 | |.define TONUM_D, TONUM_HI | 87 | |.define TONUM_D, TONUM_HI |
| 86 | | | 88 | | |
| 87 | |.macro save_, reg | 89 | |.macro save_, reg |
| @@ -96,16 +98,16 @@ | |||
| 96 | |.macro saveregs | 98 | |.macro saveregs |
| 97 | | stwu sp, -CFRAME_SPACE(sp) | 99 | | stwu sp, -CFRAME_SPACE(sp) |
| 98 | | save_ 14; save_ 15; save_ 16; save_ 17; save_ 18; save_ 19 | 100 | | save_ 14; save_ 15; save_ 16; save_ 17; save_ 18; save_ 19 |
| 99 | | mflr r0 | 101 | | mflr r0; mfcr r12 |
| 100 | | save_ 20; save_ 21; save_ 22; save_ 23; save_ 24; save_ 25 | 102 | | save_ 20; save_ 21; save_ 22; save_ 23; save_ 24; save_ 25 |
| 101 | | stw r0, SAVE_LR | 103 | | stw r0, SAVE_LR; stw r12, SAVE_CR |
| 102 | | save_ 26; save_ 27; save_ 28; save_ 29; save_ 30; save_ 31 | 104 | | save_ 26; save_ 27; save_ 28; save_ 29; save_ 30; save_ 31 |
| 103 | |.endmacro | 105 | |.endmacro |
| 104 | | | 106 | | |
| 105 | |.macro restoreregs | 107 | |.macro restoreregs |
| 106 | | lwz r0, SAVE_LR | 108 | | lwz r0, SAVE_LR; lwz r12, SAVE_CR |
| 107 | | rest_ 14; rest_ 15; rest_ 16; rest_ 17; rest_ 18; rest_ 19 | 109 | | rest_ 14; rest_ 15; rest_ 16; rest_ 17; rest_ 18; rest_ 19 |
| 108 | | mtlr r0 | 110 | | mtlr r0; mtcrf 0x38, r12 |
| 109 | | rest_ 20; rest_ 21; rest_ 22; rest_ 23; rest_ 24; rest_ 25 | 111 | | rest_ 20; rest_ 21; rest_ 22; rest_ 23; rest_ 24; rest_ 25 |
| 110 | | rest_ 26; rest_ 27; rest_ 28; rest_ 29; rest_ 30; rest_ 31 | 112 | | rest_ 26; rest_ 27; rest_ 28; rest_ 29; rest_ 30; rest_ 31 |
| 111 | | addi sp, sp, CFRAME_SPACE | 113 | | addi sp, sp, CFRAME_SPACE |
| @@ -4518,7 +4520,8 @@ static void emit_asm_debug(BuildCtx *ctx) | |||
| 4518 | "\t.long .Lbegin\n" | 4520 | "\t.long .Lbegin\n" |
| 4519 | "\t.long %d\n" | 4521 | "\t.long %d\n" |
| 4520 | "\t.byte 0xe\n\t.uleb128 %d\n" | 4522 | "\t.byte 0xe\n\t.uleb128 %d\n" |
| 4521 | "\t.byte 0x11\n\t.uleb128 65\n\t.sleb128 -1\n", | 4523 | "\t.byte 0x11\n\t.uleb128 65\n\t.sleb128 -1\n" |
| 4524 | "\t.byte 0x5\n\t.uleb128 70\n\t.uleb128 55\n", | ||
| 4522 | (int)ctx->codesz, CFRAME_SIZE); | 4525 | (int)ctx->codesz, CFRAME_SIZE); |
| 4523 | for (i = 14; i <= 31; i++) | 4526 | for (i = 14; i <= 31; i++) |
| 4524 | fprintf(ctx->fp, | 4527 | fprintf(ctx->fp, |
| @@ -4555,7 +4558,8 @@ static void emit_asm_debug(BuildCtx *ctx) | |||
| 4555 | "\t.long %d\n" | 4558 | "\t.long %d\n" |
| 4556 | "\t.uleb128 0\n" /* augmentation length */ | 4559 | "\t.uleb128 0\n" /* augmentation length */ |
| 4557 | "\t.byte 0xe\n\t.uleb128 %d\n" | 4560 | "\t.byte 0xe\n\t.uleb128 %d\n" |
| 4558 | "\t.byte 0x11\n\t.uleb128 65\n\t.sleb128 -1\n", | 4561 | "\t.byte 0x11\n\t.uleb128 65\n\t.sleb128 -1\n" |
| 4562 | "\t.byte 0x5\n\t.uleb128 70\n\t.uleb128 55\n", | ||
| 4559 | (int)ctx->codesz, CFRAME_SIZE); | 4563 | (int)ctx->codesz, CFRAME_SIZE); |
| 4560 | for (i = 14; i <= 31; i++) | 4564 | for (i = 14; i <= 31; i++) |
| 4561 | fprintf(ctx->fp, | 4565 | fprintf(ctx->fp, |
diff --git a/src/buildvm_ppc.h b/src/buildvm_ppc.h index 82f90aae..87a838fd 100644 --- a/src/buildvm_ppc.h +++ b/src/buildvm_ppc.h | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #define DASM_SECTION_CODE_OP 0 | 12 | #define DASM_SECTION_CODE_OP 0 |
| 13 | #define DASM_SECTION_CODE_SUB 1 | 13 | #define DASM_SECTION_CODE_SUB 1 |
| 14 | #define DASM_MAXSECTION 2 | 14 | #define DASM_MAXSECTION 2 |
| 15 | static const unsigned int build_actionlist[7218] = { | 15 | static const unsigned int build_actionlist[7267] = { |
| 16 | 0x00010001, | 16 | 0x00010001, |
| 17 | 0x00060014, | 17 | 0x00060014, |
| 18 | 0x72000000, | 18 | 0x72000000, |
| @@ -43,7 +43,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 43 | 0x350cfff8, | 43 | 0x350cfff8, |
| 44 | 0x91320000, | 44 | 0x91320000, |
| 45 | 0x00098200, | 45 | 0x00098200, |
| 46 | 0x81210018, | 46 | 0x8121002c, |
| 47 | 0x39cefff8, | 47 | 0x39cefff8, |
| 48 | 0x90110000, | 48 | 0x90110000, |
| 49 | 0x00098200, | 49 | 0x00098200, |
| @@ -68,12 +68,13 @@ static const unsigned int build_actionlist[7218] = { | |||
| 68 | 0x00098200, | 68 | 0x00098200, |
| 69 | 0x00060019, | 69 | 0x00060019, |
| 70 | 0x00000000, | 70 | 0x00000000, |
| 71 | 0x80010014, | 71 | 0x80010028, |
| 72 | 0x38600000, | 72 | 0x38600000, |
| 73 | 0x90120000, | 73 | 0x90120000, |
| 74 | 0x00098200, | 74 | 0x00098200, |
| 75 | 0x0006001a, | 75 | 0x0006001a, |
| 76 | 0x80010104, | 76 | 0x80010114, |
| 77 | 0x81810034, | ||
| 77 | 0x81c10000, | 78 | 0x81c10000, |
| 78 | 0x00098200, | 79 | 0x00098200, |
| 79 | 0xc9c10000, | 80 | 0xc9c10000, |
| @@ -99,6 +100,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 99 | 0xca610000, | 100 | 0xca610000, |
| 100 | 0x00098200, | 101 | 0x00098200, |
| 101 | 0x7c0803a6, | 102 | 0x7c0803a6, |
| 103 | 0x7d838120, | ||
| 102 | 0x82810000, | 104 | 0x82810000, |
| 103 | 0x00098200, | 105 | 0x00098200, |
| 104 | 0xca810000, | 106 | 0xca810000, |
| @@ -148,7 +150,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 148 | 0x00098200, | 150 | 0x00098200, |
| 149 | 0xcbe10000, | 151 | 0xcbe10000, |
| 150 | 0x00098200, | 152 | 0x00098200, |
| 151 | 0x38210100, | 153 | 0x38210110, |
| 152 | 0x4e800020, | 154 | 0x4e800020, |
| 153 | 0x00060010, | 155 | 0x00060010, |
| 154 | 0x40810000, | 156 | 0x40810000, |
| @@ -180,7 +182,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 180 | 0x7e439378, | 182 | 0x7e439378, |
| 181 | 0x48000001, | 183 | 0x48000001, |
| 182 | 0x00030000, | 184 | 0x00030000, |
| 183 | 0x81210018, | 185 | 0x8121002c, |
| 184 | 0x7eacab78, | 186 | 0x7eacab78, |
| 185 | 0x55291800, | 187 | 0x55291800, |
| 186 | 0x000900a1, | 188 | 0x000900a1, |
| @@ -192,7 +194,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 192 | 0x7c611b78, | 194 | 0x7c611b78, |
| 193 | 0x7c832378, | 195 | 0x7c832378, |
| 194 | 0x0006001c, | 196 | 0x0006001c, |
| 195 | 0x82410010, | 197 | 0x82410024, |
| 196 | 0x38000000, | 198 | 0x38000000, |
| 197 | 0x00098200, | 199 | 0x00098200, |
| 198 | 0x81120000, | 200 | 0x81120000, |
| @@ -204,7 +206,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 204 | 0x0006001d, | 206 | 0x0006001d, |
| 205 | 0x5461003a, | 207 | 0x5461003a, |
| 206 | 0x0006001e, | 208 | 0x0006001e, |
| 207 | 0x82410010, | 209 | 0x82410024, |
| 208 | 0x3ac00000, | 210 | 0x3ac00000, |
| 209 | 0x00098200, | 211 | 0x00098200, |
| 210 | 0x81d20000, | 212 | 0x81d20000, |
| @@ -213,7 +215,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 213 | 0x82320000, | 215 | 0x82320000, |
| 214 | 0x00098200, | 216 | 0x00098200, |
| 215 | 0x3b000000, | 217 | 0x3b000000, |
| 216 | 0x90c10008, | 218 | 0x90c10010, |
| 217 | 0x39000000, | 219 | 0x39000000, |
| 218 | 0x00098200, | 220 | 0x00098200, |
| 219 | 0x60c60004, | 221 | 0x60c60004, |
| @@ -221,10 +223,10 @@ static const unsigned int build_actionlist[7218] = { | |||
| 221 | 0x00098200, | 223 | 0x00098200, |
| 222 | 0x38000000, | 224 | 0x38000000, |
| 223 | 0x00098200, | 225 | 0x00098200, |
| 224 | 0xc3c10008, | 226 | 0xc3c10010, |
| 225 | 0x820efff8, | 227 | 0x820efff8, |
| 226 | 0x3a8efff8, | 228 | 0x3a8efff8, |
| 227 | 0x90c10008, | 229 | 0x90c10010, |
| 228 | 0x3a310000, | 230 | 0x3a310000, |
| 229 | 0x00098200, | 231 | 0x00098200, |
| 230 | 0x00000000, | 232 | 0x00000000, |
| @@ -232,7 +234,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 232 | 0x39800010, | 234 | 0x39800010, |
| 233 | 0x90110000, | 235 | 0x90110000, |
| 234 | 0x00098200, | 236 | 0x00098200, |
| 235 | 0xc3e10008, | 237 | 0xc3e10010, |
| 236 | 0x48000000, | 238 | 0x48000000, |
| 237 | 0x00050016, | 239 | 0x00050016, |
| 238 | 0x0006001f, | 240 | 0x0006001f, |
| @@ -251,7 +253,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 251 | 0x568400fe, | 253 | 0x568400fe, |
| 252 | 0x000900ab, | 254 | 0x000900ab, |
| 253 | 0x0006000c, | 255 | 0x0006000c, |
| 254 | 0x92010008, | 256 | 0x92010020, |
| 255 | 0x7e439378, | 257 | 0x7e439378, |
| 256 | 0x48000001, | 258 | 0x48000001, |
| 257 | 0x00030000, | 259 | 0x00030000, |
| @@ -272,7 +274,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 272 | 0x7c0903a6, | 274 | 0x7c0903a6, |
| 273 | 0x4e800420, | 275 | 0x4e800420, |
| 274 | 0x00060021, | 276 | 0x00060021, |
| 275 | 0x9421ff00, | 277 | 0x9421fef0, |
| 276 | 0x91c10000, | 278 | 0x91c10000, |
| 277 | 0x00098200, | 279 | 0x00098200, |
| 278 | 0xd9c10000, | 280 | 0xd9c10000, |
| @@ -299,6 +301,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 299 | 0xda610000, | 301 | 0xda610000, |
| 300 | 0x00098200, | 302 | 0x00098200, |
| 301 | 0x7c0802a6, | 303 | 0x7c0802a6, |
| 304 | 0x7d800026, | ||
| 302 | 0x92810000, | 305 | 0x92810000, |
| 303 | 0x00098200, | 306 | 0x00098200, |
| 304 | 0xda810000, | 307 | 0xda810000, |
| @@ -323,7 +326,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 323 | 0x00098200, | 326 | 0x00098200, |
| 324 | 0xdb210000, | 327 | 0xdb210000, |
| 325 | 0x00098200, | 328 | 0x00098200, |
| 326 | 0x90010104, | 329 | 0x90010114, |
| 330 | 0x91810034, | ||
| 327 | 0x93410000, | 331 | 0x93410000, |
| 328 | 0x00098200, | 332 | 0x00098200, |
| 329 | 0xdb410000, | 333 | 0xdb410000, |
| @@ -355,20 +359,20 @@ static const unsigned int build_actionlist[7218] = { | |||
| 355 | 0x7c8e2378, | 359 | 0x7c8e2378, |
| 356 | 0x89120000, | 360 | 0x89120000, |
| 357 | 0x00098200, | 361 | 0x00098200, |
| 358 | 0x92410010, | 362 | 0x92410024, |
| 359 | 0x3a000000, | 363 | 0x3a000000, |
| 360 | 0x00098200, | 364 | 0x00098200, |
| 361 | 0x38010000, | 365 | 0x38010000, |
| 362 | 0x00098200, | 366 | 0x00098200, |
| 363 | 0x3a310000, | 367 | 0x3a310000, |
| 364 | 0x00098200, | 368 | 0x00098200, |
| 365 | 0x90a10018, | 369 | 0x90a1002c, |
| 366 | 0x28080000, | 370 | 0x28080000, |
| 367 | 0x90a1001c, | 371 | 0x90a10030, |
| 368 | 0x90120000, | 372 | 0x90120000, |
| 369 | 0x00098200, | 373 | 0x00098200, |
| 370 | 0x90a10014, | 374 | 0x90a10028, |
| 371 | 0x90610008, | 375 | 0x90610020, |
| 372 | 0x41820000, | 376 | 0x41820000, |
| 373 | 0x00050803, | 377 | 0x00050803, |
| 374 | 0x7dd47378, | 378 | 0x7dd47378, |
| @@ -383,20 +387,20 @@ static const unsigned int build_actionlist[7218] = { | |||
| 383 | 0x7d8e4050, | 387 | 0x7d8e4050, |
| 384 | 0x98b20000, | 388 | 0x98b20000, |
| 385 | 0x00098200, | 389 | 0x00098200, |
| 386 | 0x90c10008, | 390 | 0x90c10010, |
| 387 | 0x72000000, | 391 | 0x72000000, |
| 388 | 0x00090200, | 392 | 0x00090200, |
| 389 | 0x60c60004, | 393 | 0x60c60004, |
| 390 | 0xc3c10008, | 394 | 0xc3c10010, |
| 391 | 0x3b000000, | 395 | 0x3b000000, |
| 392 | 0x90c10008, | 396 | 0x90c10010, |
| 393 | 0x398c0008, | 397 | 0x398c0008, |
| 394 | 0x3c004338, | 398 | 0x3c004338, |
| 395 | 0x7d936378, | 399 | 0x7d936378, |
| 396 | 0x90010020, | 400 | 0x90010008, |
| 397 | 0x38000000, | 401 | 0x38000000, |
| 398 | 0x00098200, | 402 | 0x00098200, |
| 399 | 0xc3e10008, | 403 | 0xc3e10010, |
| 400 | 0x3ae00000, | 404 | 0x3ae00000, |
| 401 | 0x00098200, | 405 | 0x00098200, |
| 402 | 0x90110000, | 406 | 0x90110000, |
| @@ -407,7 +411,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 407 | 0x48000000, | 411 | 0x48000000, |
| 408 | 0x00050018, | 412 | 0x00050018, |
| 409 | 0x00060022, | 413 | 0x00060022, |
| 410 | 0x9421ff00, | 414 | 0x9421fef0, |
| 411 | 0x91c10000, | 415 | 0x91c10000, |
| 412 | 0x00098200, | 416 | 0x00098200, |
| 413 | 0xd9c10000, | 417 | 0xd9c10000, |
| @@ -433,6 +437,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 433 | 0xda610000, | 437 | 0xda610000, |
| 434 | 0x00098200, | 438 | 0x00098200, |
| 435 | 0x7c0802a6, | 439 | 0x7c0802a6, |
| 440 | 0x7d800026, | ||
| 436 | 0x92810000, | 441 | 0x92810000, |
| 437 | 0x00098200, | 442 | 0x00098200, |
| 438 | 0xda810000, | 443 | 0xda810000, |
| @@ -458,7 +463,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 458 | 0x00098200, | 463 | 0x00098200, |
| 459 | 0xdb210000, | 464 | 0xdb210000, |
| 460 | 0x00098200, | 465 | 0x00098200, |
| 461 | 0x90010104, | 466 | 0x90010114, |
| 467 | 0x91810034, | ||
| 462 | 0x93410000, | 468 | 0x93410000, |
| 463 | 0x00098200, | 469 | 0x00098200, |
| 464 | 0xdb410000, | 470 | 0xdb410000, |
| @@ -485,11 +491,11 @@ static const unsigned int build_actionlist[7218] = { | |||
| 485 | 0x00098200, | 491 | 0x00098200, |
| 486 | 0x3a000000, | 492 | 0x3a000000, |
| 487 | 0x00098200, | 493 | 0x00098200, |
| 488 | 0x90c1001c, | 494 | 0x90c10030, |
| 489 | 0x48000000, | 495 | 0x48000000, |
| 490 | 0x00050001, | 496 | 0x00050001, |
| 491 | 0x00060023, | 497 | 0x00060023, |
| 492 | 0x9421ff00, | 498 | 0x9421fef0, |
| 493 | 0x91c10000, | 499 | 0x91c10000, |
| 494 | 0x00098200, | 500 | 0x00098200, |
| 495 | 0xd9c10000, | 501 | 0xd9c10000, |
| @@ -516,6 +522,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 516 | 0xda610000, | 522 | 0xda610000, |
| 517 | 0x00098200, | 523 | 0x00098200, |
| 518 | 0x7c0802a6, | 524 | 0x7c0802a6, |
| 525 | 0x7d800026, | ||
| 519 | 0x92810000, | 526 | 0x92810000, |
| 520 | 0x00098200, | 527 | 0x00098200, |
| 521 | 0xda810000, | 528 | 0xda810000, |
| @@ -541,7 +548,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 541 | 0xdb210000, | 548 | 0xdb210000, |
| 542 | 0x00098200, | 549 | 0x00098200, |
| 543 | 0x00000000, | 550 | 0x00000000, |
| 544 | 0x90010104, | 551 | 0x90010114, |
| 552 | 0x91810034, | ||
| 545 | 0x93410000, | 553 | 0x93410000, |
| 546 | 0x00098200, | 554 | 0x00098200, |
| 547 | 0xdb410000, | 555 | 0xdb410000, |
| @@ -571,16 +579,16 @@ static const unsigned int build_actionlist[7218] = { | |||
| 571 | 0x0006000b, | 579 | 0x0006000b, |
| 572 | 0x81030000, | 580 | 0x81030000, |
| 573 | 0x00098200, | 581 | 0x00098200, |
| 574 | 0x90a10018, | 582 | 0x90a1002c, |
| 575 | 0x7c721b78, | 583 | 0x7c721b78, |
| 576 | 0x90610010, | 584 | 0x90610024, |
| 577 | 0x7c8e2378, | 585 | 0x7c8e2378, |
| 578 | 0x90320000, | 586 | 0x90320000, |
| 579 | 0x00098200, | 587 | 0x00098200, |
| 580 | 0x82320000, | 588 | 0x82320000, |
| 581 | 0x00098200, | 589 | 0x00098200, |
| 582 | 0x90610008, | 590 | 0x90610020, |
| 583 | 0x91010014, | 591 | 0x91010028, |
| 584 | 0x3a310000, | 592 | 0x3a310000, |
| 585 | 0x00098200, | 593 | 0x00098200, |
| 586 | 0x0006000d, | 594 | 0x0006000d, |
| @@ -593,18 +601,18 @@ static const unsigned int build_actionlist[7218] = { | |||
| 593 | 0x00000000, | 601 | 0x00000000, |
| 594 | 0x3cc059c0, | 602 | 0x3cc059c0, |
| 595 | 0x7e107214, | 603 | 0x7e107214, |
| 596 | 0x90c10008, | 604 | 0x90c10010, |
| 597 | 0x3b000000, | 605 | 0x3b000000, |
| 598 | 0x60c60004, | 606 | 0x60c60004, |
| 599 | 0xc3c10008, | 607 | 0xc3c10010, |
| 600 | 0x7e098050, | 608 | 0x7e098050, |
| 601 | 0x90c10008, | 609 | 0x90c10010, |
| 602 | 0x3c004338, | 610 | 0x3c004338, |
| 603 | 0x7d6e4050, | 611 | 0x7d6e4050, |
| 604 | 0x90010020, | 612 | 0x90010008, |
| 605 | 0x38000000, | 613 | 0x38000000, |
| 606 | 0x00098200, | 614 | 0x00098200, |
| 607 | 0xc3e10008, | 615 | 0xc3e10010, |
| 608 | 0x3ae00000, | 616 | 0x3ae00000, |
| 609 | 0x00098200, | 617 | 0x00098200, |
| 610 | 0x90110000, | 618 | 0x90110000, |
| @@ -629,7 +637,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 629 | 0x7c0903a6, | 637 | 0x7c0903a6, |
| 630 | 0x4e800420, | 638 | 0x4e800420, |
| 631 | 0x00060027, | 639 | 0x00060027, |
| 632 | 0x9421ff00, | 640 | 0x9421fef0, |
| 633 | 0x91c10000, | 641 | 0x91c10000, |
| 634 | 0x00098200, | 642 | 0x00098200, |
| 635 | 0xd9c10000, | 643 | 0xd9c10000, |
| @@ -655,6 +663,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 655 | 0xda610000, | 663 | 0xda610000, |
| 656 | 0x00098200, | 664 | 0x00098200, |
| 657 | 0x7c0802a6, | 665 | 0x7c0802a6, |
| 666 | 0x7d800026, | ||
| 658 | 0x92810000, | 667 | 0x92810000, |
| 659 | 0x00098200, | 668 | 0x00098200, |
| 660 | 0x00000000, | 669 | 0x00000000, |
| @@ -680,7 +689,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 680 | 0x00098200, | 689 | 0x00098200, |
| 681 | 0xdb210000, | 690 | 0xdb210000, |
| 682 | 0x00098200, | 691 | 0x00098200, |
| 683 | 0x90010104, | 692 | 0x90010114, |
| 693 | 0x91810034, | ||
| 684 | 0x93410000, | 694 | 0x93410000, |
| 685 | 0x00098200, | 695 | 0x00098200, |
| 686 | 0xdb410000, | 696 | 0xdb410000, |
| @@ -709,19 +719,19 @@ static const unsigned int build_actionlist[7218] = { | |||
| 709 | 0x7c721b78, | 719 | 0x7c721b78, |
| 710 | 0x80030000, | 720 | 0x80030000, |
| 711 | 0x00098200, | 721 | 0x00098200, |
| 712 | 0x90610010, | 722 | 0x90610024, |
| 713 | 0x81120000, | 723 | 0x81120000, |
| 714 | 0x00098200, | 724 | 0x00098200, |
| 715 | 0x90610008, | 725 | 0x90610020, |
| 716 | 0x7c080050, | 726 | 0x7c080050, |
| 717 | 0x81120000, | 727 | 0x81120000, |
| 718 | 0x00098200, | 728 | 0x00098200, |
| 719 | 0x90320000, | 729 | 0x90320000, |
| 720 | 0x00098200, | 730 | 0x00098200, |
| 721 | 0x39200000, | 731 | 0x39200000, |
| 722 | 0x90010018, | 732 | 0x9001002c, |
| 723 | 0x9121001c, | 733 | 0x91210030, |
| 724 | 0x91010014, | 734 | 0x91010028, |
| 725 | 0x7cc903a6, | 735 | 0x7cc903a6, |
| 726 | 0x4e800421, | 736 | 0x4e800421, |
| 727 | 0x7c6e1b79, | 737 | 0x7c6e1b79, |
| @@ -803,8 +813,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 803 | 0x00050001, | 813 | 0x00050001, |
| 804 | 0x0006002e, | 814 | 0x0006002e, |
| 805 | 0x00000000, | 815 | 0x00000000, |
| 806 | 0x90010024, | 816 | 0x9001000c, |
| 807 | 0xc8010020, | 817 | 0xc8010008, |
| 808 | 0xfc00f028, | 818 | 0xfc00f028, |
| 809 | 0x00000000, | 819 | 0x00000000, |
| 810 | 0x54ea5d78, | 820 | 0x54ea5d78, |
| @@ -828,7 +838,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 828 | 0x91d20000, | 838 | 0x91d20000, |
| 829 | 0x00098200, | 839 | 0x00098200, |
| 830 | 0x7e439378, | 840 | 0x7e439378, |
| 831 | 0x92010008, | 841 | 0x92010020, |
| 832 | 0x48000001, | 842 | 0x48000001, |
| 833 | 0x00030001, | 843 | 0x00030001, |
| 834 | 0x28030000, | 844 | 0x28030000, |
| @@ -839,12 +849,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 839 | 0x3a100004, | 849 | 0x3a100004, |
| 840 | 0x7c0ea5ae, | 850 | 0x7c0ea5ae, |
| 841 | 0x54e815ba, | 851 | 0x54e815ba, |
| 852 | 0x7c11402e, | ||
| 853 | 0x7c0903a6, | ||
| 842 | 0x54ea5d78, | 854 | 0x54ea5d78, |
| 843 | 0x54ec9b78, | 855 | 0x54ec9b78, |
| 844 | 0x7c11402e, | ||
| 845 | 0x54f4dd78, | 856 | 0x54f4dd78, |
| 846 | 0x54eb9d78, | 857 | 0x54eb9d78, |
| 847 | 0x7c0903a6, | ||
| 848 | 0x4e800420, | 858 | 0x4e800420, |
| 849 | 0x0006000d, | 859 | 0x0006000d, |
| 850 | 0x210e0000, | 860 | 0x210e0000, |
| @@ -885,8 +895,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 885 | 0x00050001, | 895 | 0x00050001, |
| 886 | 0x00060032, | 896 | 0x00060032, |
| 887 | 0x00000000, | 897 | 0x00000000, |
| 888 | 0x90010024, | 898 | 0x9001000c, |
| 889 | 0xc8010020, | 899 | 0xc8010008, |
| 890 | 0xfc00f028, | 900 | 0xfc00f028, |
| 891 | 0x00000000, | 901 | 0x00000000, |
| 892 | 0x54ea5d78, | 902 | 0x54ea5d78, |
| @@ -910,7 +920,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 910 | 0x91d20000, | 920 | 0x91d20000, |
| 911 | 0x00098200, | 921 | 0x00098200, |
| 912 | 0x7e439378, | 922 | 0x7e439378, |
| 913 | 0x92010008, | 923 | 0x92010020, |
| 914 | 0x48000001, | 924 | 0x48000001, |
| 915 | 0x00030002, | 925 | 0x00030002, |
| 916 | 0x28030000, | 926 | 0x28030000, |
| @@ -921,12 +931,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 921 | 0x3a100004, | 931 | 0x3a100004, |
| 922 | 0xd8030000, | 932 | 0xd8030000, |
| 923 | 0x54e815ba, | 933 | 0x54e815ba, |
| 934 | 0x7c11402e, | ||
| 935 | 0x7c0903a6, | ||
| 924 | 0x54ea5d78, | 936 | 0x54ea5d78, |
| 925 | 0x54ec9b78, | 937 | 0x54ec9b78, |
| 926 | 0x7c11402e, | ||
| 927 | 0x54f4dd78, | 938 | 0x54f4dd78, |
| 928 | 0x54eb9d78, | 939 | 0x54eb9d78, |
| 929 | 0x7c0903a6, | ||
| 930 | 0x4e800420, | 940 | 0x4e800420, |
| 931 | 0x0006000d, | 941 | 0x0006000d, |
| 932 | 0x210e0000, | 942 | 0x210e0000, |
| @@ -948,7 +958,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 948 | 0x00000000, | 958 | 0x00000000, |
| 949 | 0x7c8ea214, | 959 | 0x7c8ea214, |
| 950 | 0x00000000, | 960 | 0x00000000, |
| 951 | 0x92010008, | 961 | 0x92010020, |
| 952 | 0x00000000, | 962 | 0x00000000, |
| 953 | 0x7d856378, | 963 | 0x7d856378, |
| 954 | 0x00000000, | 964 | 0x00000000, |
| @@ -976,12 +986,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 976 | 0x80f00000, | 986 | 0x80f00000, |
| 977 | 0x3a100004, | 987 | 0x3a100004, |
| 978 | 0x54e815ba, | 988 | 0x54e815ba, |
| 989 | 0x7c11402e, | ||
| 990 | 0x7c0903a6, | ||
| 979 | 0x54ea5d78, | 991 | 0x54ea5d78, |
| 980 | 0x54ec9b78, | 992 | 0x54ec9b78, |
| 981 | 0x7c11402e, | ||
| 982 | 0x54f4dd78, | 993 | 0x54f4dd78, |
| 983 | 0x54eb9d78, | 994 | 0x54eb9d78, |
| 984 | 0x7c0903a6, | ||
| 985 | 0x4e800420, | 995 | 0x4e800420, |
| 986 | 0x00060036, | 996 | 0x00060036, |
| 987 | 0x80f0fffc, | 997 | 0x80f0fffc, |
| @@ -1010,7 +1020,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1010 | 0x91d20000, | 1020 | 0x91d20000, |
| 1011 | 0x00098200, | 1021 | 0x00098200, |
| 1012 | 0x7e439378, | 1022 | 0x7e439378, |
| 1013 | 0x92010008, | 1023 | 0x92010020, |
| 1014 | 0x48000001, | 1024 | 0x48000001, |
| 1015 | 0x00030004, | 1025 | 0x00030004, |
| 1016 | 0x48000000, | 1026 | 0x48000000, |
| @@ -1022,7 +1032,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1022 | 0x91d20000, | 1032 | 0x91d20000, |
| 1023 | 0x00098200, | 1033 | 0x00098200, |
| 1024 | 0x7e439378, | 1034 | 0x7e439378, |
| 1025 | 0x92010008, | 1035 | 0x92010020, |
| 1026 | 0x48000001, | 1036 | 0x48000001, |
| 1027 | 0x00030005, | 1037 | 0x00030005, |
| 1028 | 0x48000000, | 1038 | 0x48000000, |
| @@ -1068,7 +1078,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1068 | 0x91d20000, | 1078 | 0x91d20000, |
| 1069 | 0x00098200, | 1079 | 0x00098200, |
| 1070 | 0x7e439378, | 1080 | 0x7e439378, |
| 1071 | 0x92010008, | 1081 | 0x92010020, |
| 1072 | 0x54e7063e, | 1082 | 0x54e7063e, |
| 1073 | 0x48000001, | 1083 | 0x48000001, |
| 1074 | 0x00030006, | 1084 | 0x00030006, |
| @@ -1093,7 +1103,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1093 | 0x91d20000, | 1103 | 0x91d20000, |
| 1094 | 0x00098200, | 1104 | 0x00098200, |
| 1095 | 0x7e439378, | 1105 | 0x7e439378, |
| 1096 | 0x92010008, | 1106 | 0x92010020, |
| 1097 | 0x48000001, | 1107 | 0x48000001, |
| 1098 | 0x00030007, | 1108 | 0x00030007, |
| 1099 | 0x00000000, | 1109 | 0x00000000, |
| @@ -1112,7 +1122,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1112 | 0x91320000, | 1122 | 0x91320000, |
| 1113 | 0x00098200, | 1123 | 0x00098200, |
| 1114 | 0x388efff8, | 1124 | 0x388efff8, |
| 1115 | 0x92010008, | 1125 | 0x92010020, |
| 1116 | 0x7cae5a14, | 1126 | 0x7cae5a14, |
| 1117 | 0x7d755b78, | 1127 | 0x7d755b78, |
| 1118 | 0x48000001, | 1128 | 0x48000001, |
| @@ -1135,7 +1145,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1135 | 0x91d20000, | 1145 | 0x91d20000, |
| 1136 | 0x00098200, | 1146 | 0x00098200, |
| 1137 | 0x3894fff8, | 1147 | 0x3894fff8, |
| 1138 | 0x92010008, | 1148 | 0x92010020, |
| 1139 | 0x7cb45a14, | 1149 | 0x7cb45a14, |
| 1140 | 0x7d755b78, | 1150 | 0x7d755b78, |
| 1141 | 0x48000001, | 1151 | 0x48000001, |
| @@ -1150,7 +1160,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1150 | 0x91d20000, | 1160 | 0x91d20000, |
| 1151 | 0x00098200, | 1161 | 0x00098200, |
| 1152 | 0x7e84a378, | 1162 | 0x7e84a378, |
| 1153 | 0x92010008, | 1163 | 0x92010020, |
| 1154 | 0x7cf53b78, | 1164 | 0x7cf53b78, |
| 1155 | 0x48000001, | 1165 | 0x48000001, |
| 1156 | 0x00030009, | 1166 | 0x00030009, |
| @@ -1389,7 +1399,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1389 | 0x91d20000, | 1399 | 0x91d20000, |
| 1390 | 0x00098200, | 1400 | 0x00098200, |
| 1391 | 0x4c413342, | 1401 | 0x4c413342, |
| 1392 | 0x92010008, | 1402 | 0x92010020, |
| 1393 | 0x41820000, | 1403 | 0x41820000, |
| 1394 | 0x00050848, | 1404 | 0x00050848, |
| 1395 | 0x00000000, | 1405 | 0x00000000, |
| @@ -1431,7 +1441,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1431 | 0x91d20000, | 1441 | 0x91d20000, |
| 1432 | 0x00098200, | 1442 | 0x00098200, |
| 1433 | 0x38ae0008, | 1443 | 0x38ae0008, |
| 1434 | 0x92010008, | 1444 | 0x92010020, |
| 1435 | 0x48000001, | 1445 | 0x48000001, |
| 1436 | 0x0003000d, | 1446 | 0x0003000d, |
| 1437 | 0x28030000, | 1447 | 0x28030000, |
| @@ -1502,16 +1512,16 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1502 | 0x00050848, | 1512 | 0x00050848, |
| 1503 | 0x00000000, | 1513 | 0x00000000, |
| 1504 | 0x3c003ff0, | 1514 | 0x3c003ff0, |
| 1505 | 0x9301000c, | 1515 | 0x93010014, |
| 1506 | 0x40820000, | 1516 | 0x40820000, |
| 1507 | 0x00050848, | 1517 | 0x00050848, |
| 1508 | 0x90010008, | 1518 | 0x90010010, |
| 1509 | 0x40840000, | 1519 | 0x40840000, |
| 1510 | 0x00050848, | 1520 | 0x00050848, |
| 1511 | 0xc8210008, | 1521 | 0xc8210010, |
| 1512 | 0xfc00101e, | 1522 | 0xfc00101e, |
| 1513 | 0xd8010008, | 1523 | 0xd8010010, |
| 1514 | 0x8121000c, | 1524 | 0x81210014, |
| 1515 | 0x00000000, | 1525 | 0x00000000, |
| 1516 | 0x80030000, | 1526 | 0x80030000, |
| 1517 | 0x00098200, | 1527 | 0x00098200, |
| @@ -1675,7 +1685,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1675 | 0x4f3e1102, | 1685 | 0x4f3e1102, |
| 1676 | 0x7c890040, | 1686 | 0x7c890040, |
| 1677 | 0x4f18cb82, | 1687 | 0x4f18cb82, |
| 1678 | 0x92010008, | 1688 | 0x92010020, |
| 1679 | 0x4f182b82, | 1689 | 0x4f182b82, |
| 1680 | 0x91d20000, | 1690 | 0x91d20000, |
| 1681 | 0x00098200, | 1691 | 0x00098200, |
| @@ -1751,7 +1761,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1751 | 0x910efff8, | 1761 | 0x910efff8, |
| 1752 | 0x398c0010, | 1762 | 0x398c0010, |
| 1753 | 0x00060011, | 1763 | 0x00060011, |
| 1754 | 0x92010008, | 1764 | 0x92010020, |
| 1755 | 0x7d936378, | 1765 | 0x7d936378, |
| 1756 | 0x41820000, | 1766 | 0x41820000, |
| 1757 | 0x00050817, | 1767 | 0x00050817, |
| @@ -1806,7 +1816,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1806 | 0x4f3e1102, | 1816 | 0x4f3e1102, |
| 1807 | 0x7c890040, | 1817 | 0x7c890040, |
| 1808 | 0x4f18cb82, | 1818 | 0x4f18cb82, |
| 1809 | 0x92010008, | 1819 | 0x92010020, |
| 1810 | 0x4f182b82, | 1820 | 0x4f182b82, |
| 1811 | 0x91d20000, | 1821 | 0x91d20000, |
| 1812 | 0x00098200, | 1822 | 0x00098200, |
| @@ -1876,7 +1886,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1876 | 0x7dd47378, | 1886 | 0x7dd47378, |
| 1877 | 0x398c0008, | 1887 | 0x398c0008, |
| 1878 | 0x00060011, | 1888 | 0x00060011, |
| 1879 | 0x92010008, | 1889 | 0x92010020, |
| 1880 | 0x7d936378, | 1890 | 0x7d936378, |
| 1881 | 0x41820000, | 1891 | 0x41820000, |
| 1882 | 0x00050817, | 1892 | 0x00050817, |
| @@ -1974,12 +1984,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 1974 | 0x3a100004, | 1984 | 0x3a100004, |
| 1975 | 0x7dc0a050, | 1985 | 0x7dc0a050, |
| 1976 | 0x54e815ba, | 1986 | 0x54e815ba, |
| 1987 | 0x7c11402e, | ||
| 1988 | 0x7c0903a6, | ||
| 1977 | 0x54ea5d78, | 1989 | 0x54ea5d78, |
| 1978 | 0x54ec9b78, | 1990 | 0x54ec9b78, |
| 1979 | 0x7c11402e, | ||
| 1980 | 0x54f4dd78, | 1991 | 0x54f4dd78, |
| 1981 | 0x54eb9d78, | 1992 | 0x54eb9d78, |
| 1982 | 0x7c0903a6, | ||
| 1983 | 0x4e800420, | 1993 | 0x4e800420, |
| 1984 | 0x00060010, | 1994 | 0x00060010, |
| 1985 | 0x390cfff8, | 1995 | 0x390cfff8, |
| @@ -2424,8 +2434,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 2424 | 0x40800000, | 2434 | 0x40800000, |
| 2425 | 0x00050848, | 2435 | 0x00050848, |
| 2426 | 0xfc40101e, | 2436 | 0xfc40101e, |
| 2427 | 0xd8410008, | 2437 | 0xd8410010, |
| 2428 | 0x8061000c, | 2438 | 0x80610014, |
| 2429 | 0x00000000, | 2439 | 0x00000000, |
| 2430 | 0x48000001, | 2440 | 0x48000001, |
| 2431 | 0x00030022, | 2441 | 0x00030022, |
| @@ -2450,8 +2460,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 2450 | 0x3a8efff8, | 2460 | 0x3a8efff8, |
| 2451 | 0x00000000, | 2461 | 0x00000000, |
| 2452 | 0x6d088000, | 2462 | 0x6d088000, |
| 2453 | 0x91010024, | 2463 | 0x9101000c, |
| 2454 | 0xc8410020, | 2464 | 0xc8410008, |
| 2455 | 0xfc42f828, | 2465 | 0xfc42f828, |
| 2456 | 0x00000000, | 2466 | 0x00000000, |
| 2457 | 0xd8340000, | 2467 | 0xd8340000, |
| @@ -2518,8 +2528,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 2518 | 0x40800000, | 2528 | 0x40800000, |
| 2519 | 0x00050848, | 2529 | 0x00050848, |
| 2520 | 0x6c638000, | 2530 | 0x6c638000, |
| 2521 | 0x90610024, | 2531 | 0x9061000c, |
| 2522 | 0xc8210020, | 2532 | 0xc8210008, |
| 2523 | 0xfc21f828, | 2533 | 0xfc21f828, |
| 2524 | 0xc8480000, | 2534 | 0xc8480000, |
| 2525 | 0x48000000, | 2535 | 0x48000000, |
| @@ -2548,8 +2558,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 2548 | 0x40820000, | 2558 | 0x40820000, |
| 2549 | 0x00050848, | 2559 | 0x00050848, |
| 2550 | 0x6c848000, | 2560 | 0x6c848000, |
| 2551 | 0x90810024, | 2561 | 0x9081000c, |
| 2552 | 0xc8410020, | 2562 | 0xc8410008, |
| 2553 | 0xfc42f828, | 2563 | 0xfc42f828, |
| 2554 | 0x48000000, | 2564 | 0x48000000, |
| 2555 | 0x00050010, | 2565 | 0x00050010, |
| @@ -2612,8 +2622,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 2612 | 0x40800000, | 2622 | 0x40800000, |
| 2613 | 0x00050848, | 2623 | 0x00050848, |
| 2614 | 0x6c638000, | 2624 | 0x6c638000, |
| 2615 | 0x90610024, | 2625 | 0x9061000c, |
| 2616 | 0xc8210020, | 2626 | 0xc8210008, |
| 2617 | 0xfc21f828, | 2627 | 0xfc21f828, |
| 2618 | 0xc8480000, | 2628 | 0xc8480000, |
| 2619 | 0x48000000, | 2629 | 0x48000000, |
| @@ -2642,8 +2652,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 2642 | 0x40820000, | 2652 | 0x40820000, |
| 2643 | 0x00050848, | 2653 | 0x00050848, |
| 2644 | 0x6c848000, | 2654 | 0x6c848000, |
| 2645 | 0x90810024, | 2655 | 0x9081000c, |
| 2646 | 0xc8410020, | 2656 | 0xc8410008, |
| 2647 | 0xfc42f828, | 2657 | 0xfc42f828, |
| 2648 | 0x48000000, | 2658 | 0x48000000, |
| 2649 | 0x00050010, | 2659 | 0x00050010, |
| @@ -2716,9 +2726,9 @@ static const unsigned int build_actionlist[7218] = { | |||
| 2716 | 0x00098200, | 2726 | 0x00098200, |
| 2717 | 0x30c0ffff, | 2727 | 0x30c0ffff, |
| 2718 | 0x7d860110, | 2728 | 0x7d860110, |
| 2719 | 0x91010024, | 2729 | 0x9101000c, |
| 2720 | 0x398c0001, | 2730 | 0x398c0001, |
| 2721 | 0xc8010020, | 2731 | 0xc8010008, |
| 2722 | 0x3a8efff8, | 2732 | 0x3a8efff8, |
| 2723 | 0x820efff8, | 2733 | 0x820efff8, |
| 2724 | 0xfc00f028, | 2734 | 0xfc00f028, |
| @@ -2754,9 +2764,9 @@ static const unsigned int build_actionlist[7218] = { | |||
| 2754 | 0x40800000, | 2764 | 0x40800000, |
| 2755 | 0x00050848, | 2765 | 0x00050848, |
| 2756 | 0xfc20081e, | 2766 | 0xfc20081e, |
| 2757 | 0xd8210008, | 2767 | 0xd8210010, |
| 2758 | 0x8001000c, | 2768 | 0x80010014, |
| 2759 | 0x3881000f, | 2769 | 0x38810017, |
| 2760 | 0x00000000, | 2770 | 0x00000000, |
| 2761 | 0x38a00001, | 2771 | 0x38a00001, |
| 2762 | 0x280000ff, | 2772 | 0x280000ff, |
| @@ -2766,7 +2776,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 2766 | 0x7e439378, | 2776 | 0x7e439378, |
| 2767 | 0x91d20000, | 2777 | 0x91d20000, |
| 2768 | 0x00098200, | 2778 | 0x00098200, |
| 2769 | 0x92010008, | 2779 | 0x92010020, |
| 2770 | 0x48000001, | 2780 | 0x48000001, |
| 2771 | 0x00030025, | 2781 | 0x00030025, |
| 2772 | 0x81d20000, | 2782 | 0x81d20000, |
| @@ -2815,8 +2825,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 2815 | 0x40800000, | 2825 | 0x40800000, |
| 2816 | 0x00050848, | 2826 | 0x00050848, |
| 2817 | 0xfc00001e, | 2827 | 0xfc00001e, |
| 2818 | 0xd8010008, | 2828 | 0xd8010010, |
| 2819 | 0x8121000c, | 2829 | 0x81210014, |
| 2820 | 0x0006000b, | 2830 | 0x0006000b, |
| 2821 | 0x7c04b040, | 2831 | 0x7c04b040, |
| 2822 | 0x40800000, | 2832 | 0x40800000, |
| @@ -2828,8 +2838,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 2828 | 0x00050848, | 2838 | 0x00050848, |
| 2829 | 0x00000000, | 2839 | 0x00000000, |
| 2830 | 0xfc20081e, | 2840 | 0xfc20081e, |
| 2831 | 0xd8210008, | 2841 | 0xd8210010, |
| 2832 | 0x8101000c, | 2842 | 0x81010014, |
| 2833 | 0x00000000, | 2843 | 0x00000000, |
| 2834 | 0x80030000, | 2844 | 0x80030000, |
| 2835 | 0x00098200, | 2845 | 0x00098200, |
| @@ -2900,8 +2910,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 2900 | 0x40800000, | 2910 | 0x40800000, |
| 2901 | 0x00050848, | 2911 | 0x00050848, |
| 2902 | 0xfc40101e, | 2912 | 0xfc40101e, |
| 2903 | 0xd8410008, | 2913 | 0xd8410010, |
| 2904 | 0x80a1000c, | 2914 | 0x80a10014, |
| 2905 | 0x00000000, | 2915 | 0x00000000, |
| 2906 | 0x80030000, | 2916 | 0x80030000, |
| 2907 | 0x00098200, | 2917 | 0x00098200, |
| @@ -3103,8 +3113,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3103 | 0x40800000, | 3113 | 0x40800000, |
| 3104 | 0x00050848, | 3114 | 0x00050848, |
| 3105 | 0xfc21f02a, | 3115 | 0xfc21f02a, |
| 3106 | 0xd8210008, | 3116 | 0xd8210010, |
| 3107 | 0x8061000c, | 3117 | 0x80610014, |
| 3108 | 0x00000000, | 3118 | 0x00000000, |
| 3109 | 0x390e0008, | 3119 | 0x390e0008, |
| 3110 | 0x7d2e5a14, | 3120 | 0x7d2e5a14, |
| @@ -3126,8 +3136,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3126 | 0xfc21f02a, | 3136 | 0xfc21f02a, |
| 3127 | 0x40800000, | 3137 | 0x40800000, |
| 3128 | 0x00050848, | 3138 | 0x00050848, |
| 3129 | 0xd8210008, | 3139 | 0xd8210010, |
| 3130 | 0x8081000c, | 3140 | 0x80810014, |
| 3131 | 0x00000000, | 3141 | 0x00000000, |
| 3132 | 0x7c632038, | 3142 | 0x7c632038, |
| 3133 | 0x39080008, | 3143 | 0x39080008, |
| @@ -3154,8 +3164,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3154 | 0x40800000, | 3164 | 0x40800000, |
| 3155 | 0x00050848, | 3165 | 0x00050848, |
| 3156 | 0xfc21f02a, | 3166 | 0xfc21f02a, |
| 3157 | 0xd8210008, | 3167 | 0xd8210010, |
| 3158 | 0x8061000c, | 3168 | 0x80610014, |
| 3159 | 0x00000000, | 3169 | 0x00000000, |
| 3160 | 0x390e0008, | 3170 | 0x390e0008, |
| 3161 | 0x7d2e5a14, | 3171 | 0x7d2e5a14, |
| @@ -3177,8 +3187,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3177 | 0xfc21f02a, | 3187 | 0xfc21f02a, |
| 3178 | 0x40800000, | 3188 | 0x40800000, |
| 3179 | 0x00050848, | 3189 | 0x00050848, |
| 3180 | 0xd8210008, | 3190 | 0xd8210010, |
| 3181 | 0x8081000c, | 3191 | 0x80810014, |
| 3182 | 0x00000000, | 3192 | 0x00000000, |
| 3183 | 0x7c632378, | 3193 | 0x7c632378, |
| 3184 | 0x39080008, | 3194 | 0x39080008, |
| @@ -3205,8 +3215,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3205 | 0x40800000, | 3215 | 0x40800000, |
| 3206 | 0x00050848, | 3216 | 0x00050848, |
| 3207 | 0xfc21f02a, | 3217 | 0xfc21f02a, |
| 3208 | 0xd8210008, | 3218 | 0xd8210010, |
| 3209 | 0x8061000c, | 3219 | 0x80610014, |
| 3210 | 0x00000000, | 3220 | 0x00000000, |
| 3211 | 0x390e0008, | 3221 | 0x390e0008, |
| 3212 | 0x7d2e5a14, | 3222 | 0x7d2e5a14, |
| @@ -3228,8 +3238,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3228 | 0xfc21f02a, | 3238 | 0xfc21f02a, |
| 3229 | 0x40800000, | 3239 | 0x40800000, |
| 3230 | 0x00050848, | 3240 | 0x00050848, |
| 3231 | 0xd8210008, | 3241 | 0xd8210010, |
| 3232 | 0x8081000c, | 3242 | 0x80810014, |
| 3233 | 0x00000000, | 3243 | 0x00000000, |
| 3234 | 0x7c632278, | 3244 | 0x7c632278, |
| 3235 | 0x39080008, | 3245 | 0x39080008, |
| @@ -3256,8 +3266,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3256 | 0x40800000, | 3266 | 0x40800000, |
| 3257 | 0x00050848, | 3267 | 0x00050848, |
| 3258 | 0xfc21f02a, | 3268 | 0xfc21f02a, |
| 3259 | 0xd8210008, | 3269 | 0xd8210010, |
| 3260 | 0x8061000c, | 3270 | 0x80610014, |
| 3261 | 0x00000000, | 3271 | 0x00000000, |
| 3262 | 0x5460403e, | 3272 | 0x5460403e, |
| 3263 | 0x5060c00e, | 3273 | 0x5060c00e, |
| @@ -3286,8 +3296,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3286 | 0x40800000, | 3296 | 0x40800000, |
| 3287 | 0x00050848, | 3297 | 0x00050848, |
| 3288 | 0xfc21f02a, | 3298 | 0xfc21f02a, |
| 3289 | 0xd8210008, | 3299 | 0xd8210010, |
| 3290 | 0x8061000c, | 3300 | 0x80610014, |
| 3291 | 0x00000000, | 3301 | 0x00000000, |
| 3292 | 0x7c6318f8, | 3302 | 0x7c6318f8, |
| 3293 | 0x48000000, | 3303 | 0x48000000, |
| @@ -3324,10 +3334,10 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3324 | 0x00050848, | 3334 | 0x00050848, |
| 3325 | 0xfc21f02a, | 3335 | 0xfc21f02a, |
| 3326 | 0xfc42f02a, | 3336 | 0xfc42f02a, |
| 3327 | 0xd8210008, | 3337 | 0xd8210010, |
| 3328 | 0x8061000c, | 3338 | 0x80610014, |
| 3329 | 0xd8410008, | 3339 | 0xd8410010, |
| 3330 | 0x8081000c, | 3340 | 0x80810014, |
| 3331 | 0x00000000, | 3341 | 0x00000000, |
| 3332 | 0x548406fe, | 3342 | 0x548406fe, |
| 3333 | 0x7c632030, | 3343 | 0x7c632030, |
| @@ -3365,10 +3375,10 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3365 | 0x00050848, | 3375 | 0x00050848, |
| 3366 | 0xfc21f02a, | 3376 | 0xfc21f02a, |
| 3367 | 0xfc42f02a, | 3377 | 0xfc42f02a, |
| 3368 | 0xd8210008, | 3378 | 0xd8210010, |
| 3369 | 0x8061000c, | 3379 | 0x80610014, |
| 3370 | 0xd8410008, | 3380 | 0xd8410010, |
| 3371 | 0x8081000c, | 3381 | 0x80810014, |
| 3372 | 0x00000000, | 3382 | 0x00000000, |
| 3373 | 0x548406fe, | 3383 | 0x548406fe, |
| 3374 | 0x7c632430, | 3384 | 0x7c632430, |
| @@ -3406,10 +3416,10 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3406 | 0x00050848, | 3416 | 0x00050848, |
| 3407 | 0xfc21f02a, | 3417 | 0xfc21f02a, |
| 3408 | 0xfc42f02a, | 3418 | 0xfc42f02a, |
| 3409 | 0xd8210008, | 3419 | 0xd8210010, |
| 3410 | 0x8061000c, | 3420 | 0x80610014, |
| 3411 | 0xd8410008, | 3421 | 0xd8410010, |
| 3412 | 0x8081000c, | 3422 | 0x80810014, |
| 3413 | 0x00000000, | 3423 | 0x00000000, |
| 3414 | 0x548406fe, | 3424 | 0x548406fe, |
| 3415 | 0x7c632630, | 3425 | 0x7c632630, |
| @@ -3447,10 +3457,10 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3447 | 0x00050848, | 3457 | 0x00050848, |
| 3448 | 0xfc21f02a, | 3458 | 0xfc21f02a, |
| 3449 | 0xfc42f02a, | 3459 | 0xfc42f02a, |
| 3450 | 0xd8210008, | 3460 | 0xd8210010, |
| 3451 | 0x8061000c, | 3461 | 0x80610014, |
| 3452 | 0xd8410008, | 3462 | 0xd8410010, |
| 3453 | 0x8081000c, | 3463 | 0x80810014, |
| 3454 | 0x00000000, | 3464 | 0x00000000, |
| 3455 | 0x5c63203e, | 3465 | 0x5c63203e, |
| 3456 | 0x48000000, | 3466 | 0x48000000, |
| @@ -3487,10 +3497,10 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3487 | 0x00050848, | 3497 | 0x00050848, |
| 3488 | 0xfc21f02a, | 3498 | 0xfc21f02a, |
| 3489 | 0xfc42f02a, | 3499 | 0xfc42f02a, |
| 3490 | 0xd8210008, | 3500 | 0xd8210010, |
| 3491 | 0x8061000c, | 3501 | 0x80610014, |
| 3492 | 0xd8410008, | 3502 | 0xd8410010, |
| 3493 | 0x8081000c, | 3503 | 0x80810014, |
| 3494 | 0x00000000, | 3504 | 0x00000000, |
| 3495 | 0x7c8400d0, | 3505 | 0x7c8400d0, |
| 3496 | 0x5c63203e, | 3506 | 0x5c63203e, |
| @@ -3517,16 +3527,16 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3517 | 0x40800000, | 3527 | 0x40800000, |
| 3518 | 0x00050848, | 3528 | 0x00050848, |
| 3519 | 0xfc21f02a, | 3529 | 0xfc21f02a, |
| 3520 | 0xd8210008, | 3530 | 0xd8210010, |
| 3521 | 0x8061000c, | 3531 | 0x80610014, |
| 3522 | 0x00000000, | 3532 | 0x00000000, |
| 3523 | 0x48000000, | 3533 | 0x48000000, |
| 3524 | 0x0005005d, | 3534 | 0x0005005d, |
| 3525 | 0x00000000, | 3535 | 0x00000000, |
| 3526 | 0x0006005d, | 3536 | 0x0006005d, |
| 3527 | 0x6c638000, | 3537 | 0x6c638000, |
| 3528 | 0x90610024, | 3538 | 0x9061000c, |
| 3529 | 0xc8210020, | 3539 | 0xc8210008, |
| 3530 | 0xfc21f828, | 3540 | 0xfc21f828, |
| 3531 | 0x00000000, | 3541 | 0x00000000, |
| 3532 | 0x0006004b, | 3542 | 0x0006004b, |
| @@ -3541,8 +3551,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3541 | 0x41810000, | 3551 | 0x41810000, |
| 3542 | 0x00050848, | 3552 | 0x00050848, |
| 3543 | 0xfc21f02a, | 3553 | 0xfc21f02a, |
| 3544 | 0xd8210008, | 3554 | 0xd8210010, |
| 3545 | 0x8061000c, | 3555 | 0x80610014, |
| 3546 | 0x4e800020, | 3556 | 0x4e800020, |
| 3547 | 0x00000000, | 3557 | 0x00000000, |
| 3548 | 0x00060084, | 3558 | 0x00060084, |
| @@ -3551,8 +3561,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3551 | 0x41810000, | 3561 | 0x41810000, |
| 3552 | 0x00050848, | 3562 | 0x00050848, |
| 3553 | 0xfc21f02a, | 3563 | 0xfc21f02a, |
| 3554 | 0xd8210008, | 3564 | 0xd8210010, |
| 3555 | 0x8081000c, | 3565 | 0x80810014, |
| 3556 | 0x4e800020, | 3566 | 0x4e800020, |
| 3557 | 0x00000000, | 3567 | 0x00000000, |
| 3558 | 0x00060048, | 3568 | 0x00060048, |
| @@ -3564,7 +3574,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3564 | 0x00098200, | 3574 | 0x00098200, |
| 3565 | 0x81320000, | 3575 | 0x81320000, |
| 3566 | 0x00098200, | 3576 | 0x00098200, |
| 3567 | 0x92010008, | 3577 | 0x92010020, |
| 3568 | 0x7c004840, | 3578 | 0x7c004840, |
| 3569 | 0x91d20000, | 3579 | 0x91d20000, |
| 3570 | 0x00098200, | 3580 | 0x00098200, |
| @@ -3628,7 +3638,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3628 | 0x91d20000, | 3638 | 0x91d20000, |
| 3629 | 0x00098200, | 3639 | 0x00098200, |
| 3630 | 0x7c0e5a14, | 3640 | 0x7c0e5a14, |
| 3631 | 0x92010008, | 3641 | 0x92010020, |
| 3632 | 0x90120000, | 3642 | 0x90120000, |
| 3633 | 0x00098200, | 3643 | 0x00098200, |
| 3634 | 0x7e439378, | 3644 | 0x7e439378, |
| @@ -3682,7 +3692,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3682 | 0x0005080f, | 3692 | 0x0005080f, |
| 3683 | 0x0006000b, | 3693 | 0x0006000b, |
| 3684 | 0x7e439378, | 3694 | 0x7e439378, |
| 3685 | 0x9261000c, | 3695 | 0x9261001c, |
| 3686 | 0x7e048378, | 3696 | 0x7e048378, |
| 3687 | 0x91d20000, | 3697 | 0x91d20000, |
| 3688 | 0x00098200, | 3698 | 0x00098200, |
| @@ -3725,7 +3735,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3725 | 0x0006000b, | 3735 | 0x0006000b, |
| 3726 | 0x00000000, | 3736 | 0x00000000, |
| 3727 | 0x7c0e5a14, | 3737 | 0x7c0e5a14, |
| 3728 | 0x92010008, | 3738 | 0x92010020, |
| 3729 | 0x7e439378, | 3739 | 0x7e439378, |
| 3730 | 0x91d20000, | 3740 | 0x91d20000, |
| 3731 | 0x00098200, | 3741 | 0x00098200, |
| @@ -3738,7 +3748,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3738 | 0x00098200, | 3748 | 0x00098200, |
| 3739 | 0x80120000, | 3749 | 0x80120000, |
| 3740 | 0x00098200, | 3750 | 0x00098200, |
| 3741 | 0x93010008, | 3751 | 0x93010020, |
| 3742 | 0x7d6e0050, | 3752 | 0x7d6e0050, |
| 3743 | 0x7e8ea214, | 3753 | 0x7e8ea214, |
| 3744 | 0x814efffc, | 3754 | 0x814efffc, |
| @@ -3970,12 +3980,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3970 | 0x80f00000, | 3980 | 0x80f00000, |
| 3971 | 0x3a100004, | 3981 | 0x3a100004, |
| 3972 | 0x54e815ba, | 3982 | 0x54e815ba, |
| 3983 | 0x7c11402e, | ||
| 3984 | 0x7c0903a6, | ||
| 3973 | 0x54ea5d78, | 3985 | 0x54ea5d78, |
| 3974 | 0x54ec9b78, | 3986 | 0x54ec9b78, |
| 3975 | 0x7c11402e, | ||
| 3976 | 0x54f4dd78, | 3987 | 0x54f4dd78, |
| 3977 | 0x54eb9d78, | 3988 | 0x54eb9d78, |
| 3978 | 0x7c0903a6, | ||
| 3979 | 0x4e800420, | 3989 | 0x4e800420, |
| 3980 | 0x00060011, | 3990 | 0x00060011, |
| 3981 | 0x41810000, | 3991 | 0x41810000, |
| @@ -3986,8 +3996,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3986 | 0x41840000, | 3996 | 0x41840000, |
| 3987 | 0x00050804, | 3997 | 0x00050804, |
| 3988 | 0x6ca58000, | 3998 | 0x6ca58000, |
| 3989 | 0x90a10024, | 3999 | 0x90a1000c, |
| 3990 | 0xc8210020, | 4000 | 0xc8210008, |
| 3991 | 0xfc21f828, | 4001 | 0xfc21f828, |
| 3992 | 0x48000000, | 4002 | 0x48000000, |
| 3993 | 0x00050005, | 4003 | 0x00050005, |
| @@ -3995,8 +4005,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 3995 | 0x41850000, | 4005 | 0x41850000, |
| 3996 | 0x00050834, | 4006 | 0x00050834, |
| 3997 | 0x6c848000, | 4007 | 0x6c848000, |
| 3998 | 0x90810024, | 4008 | 0x9081000c, |
| 3999 | 0xc8010020, | 4009 | 0xc8010008, |
| 4000 | 0xfc00f828, | 4010 | 0xfc00f828, |
| 4001 | 0x0006000e, | 4011 | 0x0006000e, |
| 4002 | 0xc82c0000, | 4012 | 0xc82c0000, |
| @@ -4056,12 +4066,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4056 | 0x80f00000, | 4066 | 0x80f00000, |
| 4057 | 0x3a100004, | 4067 | 0x3a100004, |
| 4058 | 0x54e815ba, | 4068 | 0x54e815ba, |
| 4069 | 0x7c11402e, | ||
| 4070 | 0x7c0903a6, | ||
| 4059 | 0x54ea5d78, | 4071 | 0x54ea5d78, |
| 4060 | 0x54ec9b78, | 4072 | 0x54ec9b78, |
| 4061 | 0x7c11402e, | ||
| 4062 | 0x54f4dd78, | 4073 | 0x54f4dd78, |
| 4063 | 0x54eb9d78, | 4074 | 0x54eb9d78, |
| 4064 | 0x7c0903a6, | ||
| 4065 | 0x4e800420, | 4075 | 0x4e800420, |
| 4066 | 0x00000000, | 4076 | 0x00000000, |
| 4067 | 0x7c14706e, | 4077 | 0x7c14706e, |
| @@ -4112,12 +4122,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4112 | 0x80f00000, | 4122 | 0x80f00000, |
| 4113 | 0x3a100004, | 4123 | 0x3a100004, |
| 4114 | 0x54e815ba, | 4124 | 0x54e815ba, |
| 4125 | 0x7c11402e, | ||
| 4126 | 0x7c0903a6, | ||
| 4115 | 0x54ea5d78, | 4127 | 0x54ea5d78, |
| 4116 | 0x54ec9b78, | 4128 | 0x54ec9b78, |
| 4117 | 0x7c11402e, | ||
| 4118 | 0x54f4dd78, | 4129 | 0x54f4dd78, |
| 4119 | 0x54eb9d78, | 4130 | 0x54eb9d78, |
| 4120 | 0x7c0903a6, | ||
| 4121 | 0x4e800420, | 4131 | 0x4e800420, |
| 4122 | 0x00000000, | 4132 | 0x00000000, |
| 4123 | 0x0006000f, | 4133 | 0x0006000f, |
| @@ -4167,12 +4177,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4167 | 0x80f00000, | 4177 | 0x80f00000, |
| 4168 | 0x3a100004, | 4178 | 0x3a100004, |
| 4169 | 0x54e815ba, | 4179 | 0x54e815ba, |
| 4180 | 0x7c11402e, | ||
| 4181 | 0x7c0903a6, | ||
| 4170 | 0x54ea5d78, | 4182 | 0x54ea5d78, |
| 4171 | 0x54ec9b78, | 4183 | 0x54ec9b78, |
| 4172 | 0x7c11402e, | ||
| 4173 | 0x54f4dd78, | 4184 | 0x54f4dd78, |
| 4174 | 0x54eb9d78, | 4185 | 0x54eb9d78, |
| 4175 | 0x7c0903a6, | ||
| 4176 | 0x4e800420, | 4186 | 0x4e800420, |
| 4177 | 0x0006000c, | 4187 | 0x0006000c, |
| 4178 | 0x00000000, | 4188 | 0x00000000, |
| @@ -4232,12 +4242,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4232 | 0x80f00000, | 4242 | 0x80f00000, |
| 4233 | 0x3a100004, | 4243 | 0x3a100004, |
| 4234 | 0x54e815ba, | 4244 | 0x54e815ba, |
| 4245 | 0x7c11402e, | ||
| 4246 | 0x7c0903a6, | ||
| 4235 | 0x54ea5d78, | 4247 | 0x54ea5d78, |
| 4236 | 0x54ec9b78, | 4248 | 0x54ec9b78, |
| 4237 | 0x7c11402e, | ||
| 4238 | 0x54f4dd78, | 4249 | 0x54f4dd78, |
| 4239 | 0x54eb9d78, | 4250 | 0x54eb9d78, |
| 4240 | 0x7c0903a6, | ||
| 4241 | 0x4e800420, | 4251 | 0x4e800420, |
| 4242 | 0x00000000, | 4252 | 0x00000000, |
| 4243 | 0x7c14706e, | 4253 | 0x7c14706e, |
| @@ -4299,12 +4309,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4299 | 0x80f00000, | 4309 | 0x80f00000, |
| 4300 | 0x3a100004, | 4310 | 0x3a100004, |
| 4301 | 0x54e815ba, | 4311 | 0x54e815ba, |
| 4312 | 0x7c11402e, | ||
| 4313 | 0x7c0903a6, | ||
| 4302 | 0x54ea5d78, | 4314 | 0x54ea5d78, |
| 4303 | 0x54ec9b78, | 4315 | 0x54ec9b78, |
| 4304 | 0x7c11402e, | ||
| 4305 | 0x54f4dd78, | 4316 | 0x54f4dd78, |
| 4306 | 0x54eb9d78, | 4317 | 0x54eb9d78, |
| 4307 | 0x7c0903a6, | ||
| 4308 | 0x4e800420, | 4318 | 0x4e800420, |
| 4309 | 0x00000000, | 4319 | 0x00000000, |
| 4310 | 0x0006000d, | 4320 | 0x0006000d, |
| @@ -4322,15 +4332,15 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4322 | 0x41840000, | 4332 | 0x41840000, |
| 4323 | 0x00050801, | 4333 | 0x00050801, |
| 4324 | 0x6ca58000, | 4334 | 0x6ca58000, |
| 4325 | 0x90a10024, | 4335 | 0x90a1000c, |
| 4326 | 0xc8210020, | 4336 | 0xc8210008, |
| 4327 | 0xfc21f828, | 4337 | 0xfc21f828, |
| 4328 | 0x48000000, | 4338 | 0x48000000, |
| 4329 | 0x00050002, | 4339 | 0x00050002, |
| 4330 | 0x00060012, | 4340 | 0x00060012, |
| 4331 | 0x6c848000, | 4341 | 0x6c848000, |
| 4332 | 0x90810024, | 4342 | 0x9081000c, |
| 4333 | 0xc8010020, | 4343 | 0xc8010008, |
| 4334 | 0xfc00f828, | 4344 | 0xfc00f828, |
| 4335 | 0x0006000b, | 4345 | 0x0006000b, |
| 4336 | 0xc82c0000, | 4346 | 0xc82c0000, |
| @@ -4368,12 +4378,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4368 | 0x80f00000, | 4378 | 0x80f00000, |
| 4369 | 0x3a100004, | 4379 | 0x3a100004, |
| 4370 | 0x54e815ba, | 4380 | 0x54e815ba, |
| 4381 | 0x7c11402e, | ||
| 4382 | 0x7c0903a6, | ||
| 4371 | 0x54ea5d78, | 4383 | 0x54ea5d78, |
| 4372 | 0x54ec9b78, | 4384 | 0x54ec9b78, |
| 4373 | 0x7c11402e, | ||
| 4374 | 0x54f4dd78, | 4385 | 0x54f4dd78, |
| 4375 | 0x54eb9d78, | 4386 | 0x54eb9d78, |
| 4376 | 0x7c0903a6, | ||
| 4377 | 0x4e800420, | 4387 | 0x4e800420, |
| 4378 | 0x00000000, | 4388 | 0x00000000, |
| 4379 | 0x7c0e602e, | 4389 | 0x7c0e602e, |
| @@ -4414,12 +4424,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4414 | 0x80f00000, | 4424 | 0x80f00000, |
| 4415 | 0x3a100004, | 4425 | 0x3a100004, |
| 4416 | 0x54e815ba, | 4426 | 0x54e815ba, |
| 4427 | 0x7c11402e, | ||
| 4428 | 0x7c0903a6, | ||
| 4417 | 0x54ea5d78, | 4429 | 0x54ea5d78, |
| 4418 | 0x54ec9b78, | 4430 | 0x54ec9b78, |
| 4419 | 0x7c11402e, | ||
| 4420 | 0x54f4dd78, | 4431 | 0x54f4dd78, |
| 4421 | 0x54eb9d78, | 4432 | 0x54eb9d78, |
| 4422 | 0x7c0903a6, | ||
| 4423 | 0x4e800420, | 4433 | 0x4e800420, |
| 4424 | 0x00000000, | 4434 | 0x00000000, |
| 4425 | 0x80f00000, | 4435 | 0x80f00000, |
| @@ -4427,12 +4437,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4427 | 0x7c0e64ae, | 4437 | 0x7c0e64ae, |
| 4428 | 0x7c0ea5ae, | 4438 | 0x7c0ea5ae, |
| 4429 | 0x54e815ba, | 4439 | 0x54e815ba, |
| 4440 | 0x7c11402e, | ||
| 4441 | 0x7c0903a6, | ||
| 4430 | 0x54ea5d78, | 4442 | 0x54ea5d78, |
| 4431 | 0x54ec9b78, | 4443 | 0x54ec9b78, |
| 4432 | 0x7c11402e, | ||
| 4433 | 0x54f4dd78, | 4444 | 0x54f4dd78, |
| 4434 | 0x54eb9d78, | 4445 | 0x54eb9d78, |
| 4435 | 0x7c0903a6, | ||
| 4436 | 0x4e800420, | 4446 | 0x4e800420, |
| 4437 | 0x00000000, | 4447 | 0x00000000, |
| 4438 | 0x80f00000, | 4448 | 0x80f00000, |
| @@ -4443,12 +4453,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4443 | 0x7c004114, | 4453 | 0x7c004114, |
| 4444 | 0x7c0ea12e, | 4454 | 0x7c0ea12e, |
| 4445 | 0x54e815ba, | 4455 | 0x54e815ba, |
| 4456 | 0x7c11402e, | ||
| 4457 | 0x7c0903a6, | ||
| 4446 | 0x54ea5d78, | 4458 | 0x54ea5d78, |
| 4447 | 0x54ec9b78, | 4459 | 0x54ec9b78, |
| 4448 | 0x7c11402e, | ||
| 4449 | 0x54f4dd78, | 4460 | 0x54f4dd78, |
| 4450 | 0x54eb9d78, | 4461 | 0x54eb9d78, |
| 4451 | 0x7c0903a6, | ||
| 4452 | 0x4e800420, | 4462 | 0x4e800420, |
| 4453 | 0x00000000, | 4463 | 0x00000000, |
| 4454 | 0x7d0c706e, | 4464 | 0x7d0c706e, |
| @@ -4467,12 +4477,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4467 | 0x90140004, | 4477 | 0x90140004, |
| 4468 | 0x0006000d, | 4478 | 0x0006000d, |
| 4469 | 0x54e815ba, | 4479 | 0x54e815ba, |
| 4480 | 0x7c11402e, | ||
| 4481 | 0x7c0903a6, | ||
| 4470 | 0x54ea5d78, | 4482 | 0x54ea5d78, |
| 4471 | 0x54ec9b78, | 4483 | 0x54ec9b78, |
| 4472 | 0x7c11402e, | ||
| 4473 | 0x54f4dd78, | 4484 | 0x54f4dd78, |
| 4474 | 0x54eb9d78, | 4485 | 0x54eb9d78, |
| 4475 | 0x7c0903a6, | ||
| 4476 | 0x4e800420, | 4486 | 0x4e800420, |
| 4477 | 0x0006000e, | 4487 | 0x0006000e, |
| 4478 | 0x7c000400, | 4488 | 0x7c000400, |
| @@ -4497,12 +4507,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4497 | 0x0005000d, | 4507 | 0x0005000d, |
| 4498 | 0x00000000, | 4508 | 0x00000000, |
| 4499 | 0x54e815ba, | 4509 | 0x54e815ba, |
| 4510 | 0x7c11402e, | ||
| 4511 | 0x7c0903a6, | ||
| 4500 | 0x54ea5d78, | 4512 | 0x54ea5d78, |
| 4501 | 0x54ec9b78, | 4513 | 0x54ec9b78, |
| 4502 | 0x7c11402e, | ||
| 4503 | 0x54f4dd78, | 4514 | 0x54f4dd78, |
| 4504 | 0x54eb9d78, | 4515 | 0x54eb9d78, |
| 4505 | 0x7c0903a6, | ||
| 4506 | 0x4e800420, | 4516 | 0x4e800420, |
| 4507 | 0x00000000, | 4517 | 0x00000000, |
| 4508 | 0x7c0c706e, | 4518 | 0x7c0c706e, |
| @@ -4520,20 +4530,20 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4520 | 0x7ed4716e, | 4530 | 0x7ed4716e, |
| 4521 | 0x90740004, | 4531 | 0x90740004, |
| 4522 | 0x00000000, | 4532 | 0x00000000, |
| 4523 | 0x90610024, | 4533 | 0x9061000c, |
| 4524 | 0xc8010020, | 4534 | 0xc8010008, |
| 4525 | 0xfc00f028, | 4535 | 0xfc00f028, |
| 4526 | 0x80f00000, | 4536 | 0x80f00000, |
| 4527 | 0x3a100004, | 4537 | 0x3a100004, |
| 4528 | 0x7c0ea5ae, | 4538 | 0x7c0ea5ae, |
| 4529 | 0x00000000, | 4539 | 0x00000000, |
| 4530 | 0x54e815ba, | 4540 | 0x54e815ba, |
| 4541 | 0x7c11402e, | ||
| 4542 | 0x7c0903a6, | ||
| 4531 | 0x54ea5d78, | 4543 | 0x54ea5d78, |
| 4532 | 0x54ec9b78, | 4544 | 0x54ec9b78, |
| 4533 | 0x7c11402e, | ||
| 4534 | 0x54f4dd78, | 4545 | 0x54f4dd78, |
| 4535 | 0x54eb9d78, | 4546 | 0x54eb9d78, |
| 4536 | 0x7c0903a6, | ||
| 4537 | 0x4e800420, | 4547 | 0x4e800420, |
| 4538 | 0x0006000c, | 4548 | 0x0006000c, |
| 4539 | 0x2c000000, | 4549 | 0x2c000000, |
| @@ -4583,9 +4593,10 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4583 | 0x808b0004, | 4593 | 0x808b0004, |
| 4584 | 0x00000000, | 4594 | 0x00000000, |
| 4585 | 0x7c89b040, | 4595 | 0x7c89b040, |
| 4586 | 0x4c423202, | ||
| 4587 | 0x40820000, | 4596 | 0x40820000, |
| 4588 | 0x00050805, | 4597 | 0x00050805, |
| 4598 | 0x40860000, | ||
| 4599 | 0x00050805, | ||
| 4589 | 0x7c632615, | 4600 | 0x7c632615, |
| 4590 | 0x41830000, | 4601 | 0x41830000, |
| 4591 | 0x00050804, | 4602 | 0x00050804, |
| @@ -4596,12 +4607,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4596 | 0x90740004, | 4607 | 0x90740004, |
| 4597 | 0x0006000c, | 4608 | 0x0006000c, |
| 4598 | 0x54e815ba, | 4609 | 0x54e815ba, |
| 4610 | 0x7c11402e, | ||
| 4611 | 0x7c0903a6, | ||
| 4599 | 0x54ea5d78, | 4612 | 0x54ea5d78, |
| 4600 | 0x54ec9b78, | 4613 | 0x54ec9b78, |
| 4601 | 0x7c11402e, | ||
| 4602 | 0x54f4dd78, | 4614 | 0x54f4dd78, |
| 4603 | 0x54eb9d78, | 4615 | 0x54eb9d78, |
| 4604 | 0x7c0903a6, | ||
| 4605 | 0x4e800420, | 4616 | 0x4e800420, |
| 4606 | 0x0006000e, | 4617 | 0x0006000e, |
| 4607 | 0x7c000400, | 4618 | 0x7c000400, |
| @@ -4692,12 +4703,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4692 | 0x3a100004, | 4703 | 0x3a100004, |
| 4693 | 0x7c0ea5ae, | 4704 | 0x7c0ea5ae, |
| 4694 | 0x54e815ba, | 4705 | 0x54e815ba, |
| 4706 | 0x7c11402e, | ||
| 4707 | 0x7c0903a6, | ||
| 4695 | 0x54ea5d78, | 4708 | 0x54ea5d78, |
| 4696 | 0x54ec9b78, | 4709 | 0x54ec9b78, |
| 4697 | 0x7c11402e, | ||
| 4698 | 0x54f4dd78, | 4710 | 0x54f4dd78, |
| 4699 | 0x54eb9d78, | 4711 | 0x54eb9d78, |
| 4700 | 0x7c0903a6, | ||
| 4701 | 0x4e800420, | 4712 | 0x4e800420, |
| 4702 | 0x00000000, | 4713 | 0x00000000, |
| 4703 | 0x7d0a706e, | 4714 | 0x7d0a706e, |
| @@ -4719,9 +4730,10 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4719 | 0x808b0004, | 4730 | 0x808b0004, |
| 4720 | 0x00000000, | 4731 | 0x00000000, |
| 4721 | 0x7c89b040, | 4732 | 0x7c89b040, |
| 4722 | 0x4c423202, | ||
| 4723 | 0x40820000, | 4733 | 0x40820000, |
| 4724 | 0x00050805, | 4734 | 0x00050805, |
| 4735 | 0x40860000, | ||
| 4736 | 0x00050805, | ||
| 4725 | 0x7c641c51, | 4737 | 0x7c641c51, |
| 4726 | 0x41830000, | 4738 | 0x41830000, |
| 4727 | 0x00050804, | 4739 | 0x00050804, |
| @@ -4732,12 +4744,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4732 | 0x90740004, | 4744 | 0x90740004, |
| 4733 | 0x0006000c, | 4745 | 0x0006000c, |
| 4734 | 0x54e815ba, | 4746 | 0x54e815ba, |
| 4747 | 0x7c11402e, | ||
| 4748 | 0x7c0903a6, | ||
| 4735 | 0x54ea5d78, | 4749 | 0x54ea5d78, |
| 4736 | 0x54ec9b78, | 4750 | 0x54ec9b78, |
| 4737 | 0x7c11402e, | ||
| 4738 | 0x54f4dd78, | 4751 | 0x54f4dd78, |
| 4739 | 0x54eb9d78, | 4752 | 0x54eb9d78, |
| 4740 | 0x7c0903a6, | ||
| 4741 | 0x4e800420, | 4753 | 0x4e800420, |
| 4742 | 0x0006000e, | 4754 | 0x0006000e, |
| 4743 | 0x7c000400, | 4755 | 0x7c000400, |
| @@ -4828,12 +4840,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4828 | 0x3a100004, | 4840 | 0x3a100004, |
| 4829 | 0x7c0ea5ae, | 4841 | 0x7c0ea5ae, |
| 4830 | 0x54e815ba, | 4842 | 0x54e815ba, |
| 4843 | 0x7c11402e, | ||
| 4844 | 0x7c0903a6, | ||
| 4831 | 0x54ea5d78, | 4845 | 0x54ea5d78, |
| 4832 | 0x54ec9b78, | 4846 | 0x54ec9b78, |
| 4833 | 0x7c11402e, | ||
| 4834 | 0x54f4dd78, | 4847 | 0x54f4dd78, |
| 4835 | 0x54eb9d78, | 4848 | 0x54eb9d78, |
| 4836 | 0x7c0903a6, | ||
| 4837 | 0x4e800420, | 4849 | 0x4e800420, |
| 4838 | 0x00000000, | 4850 | 0x00000000, |
| 4839 | 0x7d0a706e, | 4851 | 0x7d0a706e, |
| @@ -4855,9 +4867,10 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4855 | 0x808b0004, | 4867 | 0x808b0004, |
| 4856 | 0x00000000, | 4868 | 0x00000000, |
| 4857 | 0x7c89b040, | 4869 | 0x7c89b040, |
| 4858 | 0x4c423202, | ||
| 4859 | 0x40820000, | 4870 | 0x40820000, |
| 4860 | 0x00050805, | 4871 | 0x00050805, |
| 4872 | 0x40860000, | ||
| 4873 | 0x00050805, | ||
| 4861 | 0x7c6325d7, | 4874 | 0x7c6325d7, |
| 4862 | 0x41830000, | 4875 | 0x41830000, |
| 4863 | 0x00050804, | 4876 | 0x00050804, |
| @@ -4868,12 +4881,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4868 | 0x90740004, | 4881 | 0x90740004, |
| 4869 | 0x0006000c, | 4882 | 0x0006000c, |
| 4870 | 0x54e815ba, | 4883 | 0x54e815ba, |
| 4884 | 0x7c11402e, | ||
| 4885 | 0x7c0903a6, | ||
| 4871 | 0x54ea5d78, | 4886 | 0x54ea5d78, |
| 4872 | 0x54ec9b78, | 4887 | 0x54ec9b78, |
| 4873 | 0x7c11402e, | ||
| 4874 | 0x54f4dd78, | 4888 | 0x54f4dd78, |
| 4875 | 0x54eb9d78, | 4889 | 0x54eb9d78, |
| 4876 | 0x7c0903a6, | ||
| 4877 | 0x4e800420, | 4890 | 0x4e800420, |
| 4878 | 0x0006000e, | 4891 | 0x0006000e, |
| 4879 | 0x7c000400, | 4892 | 0x7c000400, |
| @@ -4964,12 +4977,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 4964 | 0x3a100004, | 4977 | 0x3a100004, |
| 4965 | 0x7c0ea5ae, | 4978 | 0x7c0ea5ae, |
| 4966 | 0x54e815ba, | 4979 | 0x54e815ba, |
| 4980 | 0x7c11402e, | ||
| 4981 | 0x7c0903a6, | ||
| 4967 | 0x54ea5d78, | 4982 | 0x54ea5d78, |
| 4968 | 0x54ec9b78, | 4983 | 0x54ec9b78, |
| 4969 | 0x7c11402e, | ||
| 4970 | 0x54f4dd78, | 4984 | 0x54f4dd78, |
| 4971 | 0x54eb9d78, | 4985 | 0x54eb9d78, |
| 4972 | 0x7c0903a6, | ||
| 4973 | 0x4e800420, | 4986 | 0x4e800420, |
| 4974 | 0x00000000, | 4987 | 0x00000000, |
| 4975 | 0x7d0e502e, | 4988 | 0x7d0e502e, |
| @@ -5021,12 +5034,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5021 | 0x3a100004, | 5034 | 0x3a100004, |
| 5022 | 0x7c0ea5ae, | 5035 | 0x7c0ea5ae, |
| 5023 | 0x54e815ba, | 5036 | 0x54e815ba, |
| 5037 | 0x7c11402e, | ||
| 5038 | 0x7c0903a6, | ||
| 5024 | 0x54ea5d78, | 5039 | 0x54ea5d78, |
| 5025 | 0x54ec9b78, | 5040 | 0x54ec9b78, |
| 5026 | 0x7c11402e, | ||
| 5027 | 0x54f4dd78, | 5041 | 0x54f4dd78, |
| 5028 | 0x54eb9d78, | 5042 | 0x54eb9d78, |
| 5029 | 0x7c0903a6, | ||
| 5030 | 0x4e800420, | 5043 | 0x4e800420, |
| 5031 | 0x00000000, | 5044 | 0x00000000, |
| 5032 | 0x7d0a706e, | 5045 | 0x7d0a706e, |
| @@ -5048,10 +5061,10 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5048 | 0x808b0004, | 5061 | 0x808b0004, |
| 5049 | 0x00000000, | 5062 | 0x00000000, |
| 5050 | 0x7c89b040, | 5063 | 0x7c89b040, |
| 5051 | 0x4c423202, | ||
| 5052 | 0x40820000, | 5064 | 0x40820000, |
| 5053 | 0x00050805, | 5065 | 0x00050805, |
| 5054 | 0x000600a2, | 5066 | 0x40860000, |
| 5067 | 0x00050805, | ||
| 5055 | 0x48000001, | 5068 | 0x48000001, |
| 5056 | 0x0005009b, | 5069 | 0x0005009b, |
| 5057 | 0x41830000, | 5070 | 0x41830000, |
| @@ -5063,12 +5076,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5063 | 0x90740004, | 5076 | 0x90740004, |
| 5064 | 0x0006000c, | 5077 | 0x0006000c, |
| 5065 | 0x54e815ba, | 5078 | 0x54e815ba, |
| 5079 | 0x7c11402e, | ||
| 5080 | 0x7c0903a6, | ||
| 5066 | 0x54ea5d78, | 5081 | 0x54ea5d78, |
| 5067 | 0x54ec9b78, | 5082 | 0x54ec9b78, |
| 5068 | 0x7c11402e, | ||
| 5069 | 0x54f4dd78, | 5083 | 0x54f4dd78, |
| 5070 | 0x54eb9d78, | 5084 | 0x54eb9d78, |
| 5071 | 0x7c0903a6, | ||
| 5072 | 0x4e800420, | 5085 | 0x4e800420, |
| 5073 | 0x0006000e, | 5086 | 0x0006000e, |
| 5074 | 0x7c000400, | 5087 | 0x7c000400, |
| @@ -5104,8 +5117,6 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5104 | 0x00050841, | 5117 | 0x00050841, |
| 5105 | 0x00000000, | 5118 | 0x00000000, |
| 5106 | 0x000600a2, | 5119 | 0x000600a2, |
| 5107 | 0x00000000, | ||
| 5108 | 0x000600a3, | ||
| 5109 | 0xfc2e7824, | 5120 | 0xfc2e7824, |
| 5110 | 0x48000001, | 5121 | 0x48000001, |
| 5111 | 0x00030010, | 5122 | 0x00030010, |
| @@ -5162,8 +5173,6 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5162 | 0x0005083f, | 5173 | 0x0005083f, |
| 5163 | 0x00000000, | 5174 | 0x00000000, |
| 5164 | 0x000600a2, | 5175 | 0x000600a2, |
| 5165 | 0x00000000, | ||
| 5166 | 0x000600a3, | ||
| 5167 | 0xfc2e7824, | 5176 | 0xfc2e7824, |
| 5168 | 0x48000001, | 5177 | 0x48000001, |
| 5169 | 0x00030010, | 5178 | 0x00030010, |
| @@ -5173,12 +5182,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5173 | 0x3a100004, | 5182 | 0x3a100004, |
| 5174 | 0x7c0ea5ae, | 5183 | 0x7c0ea5ae, |
| 5175 | 0x54e815ba, | 5184 | 0x54e815ba, |
| 5185 | 0x7c11402e, | ||
| 5186 | 0x7c0903a6, | ||
| 5176 | 0x54ea5d78, | 5187 | 0x54ea5d78, |
| 5177 | 0x54ec9b78, | 5188 | 0x54ec9b78, |
| 5178 | 0x7c11402e, | ||
| 5179 | 0x54f4dd78, | 5189 | 0x54f4dd78, |
| 5180 | 0x54eb9d78, | 5190 | 0x54eb9d78, |
| 5181 | 0x7c0903a6, | ||
| 5182 | 0x4e800420, | 5191 | 0x4e800420, |
| 5183 | 0x00000000, | 5192 | 0x00000000, |
| 5184 | 0x7d0a706e, | 5193 | 0x7d0a706e, |
| @@ -5200,11 +5209,42 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5200 | 0x808b0004, | 5209 | 0x808b0004, |
| 5201 | 0x00000000, | 5210 | 0x00000000, |
| 5202 | 0x7c89b040, | 5211 | 0x7c89b040, |
| 5203 | 0x4c423202, | ||
| 5204 | 0x40820000, | 5212 | 0x40820000, |
| 5205 | 0x00050805, | 5213 | 0x00050805, |
| 5214 | 0x40860000, | ||
| 5215 | 0x00050805, | ||
| 5216 | 0x48000001, | ||
| 5217 | 0x0005009b, | ||
| 5218 | 0x41830000, | ||
| 5219 | 0x00050804, | ||
| 5220 | 0x0006000b, | ||
| 5221 | 0x80f00000, | ||
| 5222 | 0x3a100004, | ||
| 5223 | 0x7ed4716e, | ||
| 5224 | 0x90740004, | ||
| 5225 | 0x0006000c, | ||
| 5226 | 0x54e815ba, | ||
| 5227 | 0x7c11402e, | ||
| 5228 | 0x7c0903a6, | ||
| 5229 | 0x54ea5d78, | ||
| 5230 | 0x54ec9b78, | ||
| 5231 | 0x54f4dd78, | ||
| 5232 | 0x54eb9d78, | ||
| 5233 | 0x4e800420, | ||
| 5234 | 0x0006000e, | ||
| 5235 | 0x7c000400, | ||
| 5236 | 0x40810000, | ||
| 5237 | 0x0005080b, | ||
| 5238 | 0x00000000, | ||
| 5206 | 0x48000000, | 5239 | 0x48000000, |
| 5207 | 0x000500a2, | 5240 | 0x00050040, |
| 5241 | 0x00000000, | ||
| 5242 | 0x48000000, | ||
| 5243 | 0x0005003c, | ||
| 5244 | 0x00000000, | ||
| 5245 | 0x48000000, | ||
| 5246 | 0x00050041, | ||
| 5247 | 0x00000000, | ||
| 5208 | 0x0006000f, | 5248 | 0x0006000f, |
| 5209 | 0x00000000, | 5249 | 0x00000000, |
| 5210 | 0xc9ea0000, | 5250 | 0xc9ea0000, |
| @@ -5225,7 +5265,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5225 | 0x00050841, | 5265 | 0x00050841, |
| 5226 | 0x00000000, | 5266 | 0x00000000, |
| 5227 | 0x48000000, | 5267 | 0x48000000, |
| 5228 | 0x000500a3, | 5268 | 0x000500a2, |
| 5229 | 0x00000000, | 5269 | 0x00000000, |
| 5230 | 0x7d0e502e, | 5270 | 0x7d0e502e, |
| 5231 | 0x00000000, | 5271 | 0x00000000, |
| @@ -5272,7 +5312,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5272 | 0x0005083f, | 5312 | 0x0005083f, |
| 5273 | 0x00000000, | 5313 | 0x00000000, |
| 5274 | 0x48000000, | 5314 | 0x48000000, |
| 5275 | 0x000500a3, | 5315 | 0x000500a2, |
| 5276 | 0x00000000, | 5316 | 0x00000000, |
| 5277 | 0x7d0e502e, | 5317 | 0x7d0e502e, |
| 5278 | 0x7c2e54ae, | 5318 | 0x7c2e54ae, |
| @@ -5285,16 +5325,16 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5285 | 0x0005083f, | 5325 | 0x0005083f, |
| 5286 | 0x48000001, | 5326 | 0x48000001, |
| 5287 | 0x0003001f, | 5327 | 0x0003001f, |
| 5288 | 0x7c2ea5ae, | ||
| 5289 | 0x80f00000, | 5328 | 0x80f00000, |
| 5290 | 0x3a100004, | 5329 | 0x3a100004, |
| 5330 | 0x7c2ea5ae, | ||
| 5291 | 0x54e815ba, | 5331 | 0x54e815ba, |
| 5332 | 0x7c11402e, | ||
| 5333 | 0x7c0903a6, | ||
| 5292 | 0x54ea5d78, | 5334 | 0x54ea5d78, |
| 5293 | 0x54ec9b78, | 5335 | 0x54ec9b78, |
| 5294 | 0x7c11402e, | ||
| 5295 | 0x54f4dd78, | 5336 | 0x54f4dd78, |
| 5296 | 0x54eb9d78, | 5337 | 0x54eb9d78, |
| 5297 | 0x7c0903a6, | ||
| 5298 | 0x4e800420, | 5338 | 0x4e800420, |
| 5299 | 0x00000000, | 5339 | 0x00000000, |
| 5300 | 0x7caa5850, | 5340 | 0x7caa5850, |
| @@ -5303,7 +5343,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5303 | 0x7c8e5a14, | 5343 | 0x7c8e5a14, |
| 5304 | 0x7d555378, | 5344 | 0x7d555378, |
| 5305 | 0x0006002a, | 5345 | 0x0006002a, |
| 5306 | 0x92010008, | 5346 | 0x92010020, |
| 5307 | 0x7e439378, | 5347 | 0x7e439378, |
| 5308 | 0x54a500fe, | 5348 | 0x54a500fe, |
| 5309 | 0x000900ab, | 5349 | 0x000900ab, |
| @@ -5314,55 +5354,55 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5314 | 0x00098200, | 5354 | 0x00098200, |
| 5315 | 0x40820000, | 5355 | 0x40820000, |
| 5316 | 0x00050835, | 5356 | 0x00050835, |
| 5317 | 0x7c0eacae, | ||
| 5318 | 0x7c0ea5ae, | ||
| 5319 | 0x80f00000, | 5357 | 0x80f00000, |
| 5320 | 0x3a100004, | 5358 | 0x3a100004, |
| 5359 | 0x7c0eacae, | ||
| 5360 | 0x7c0ea5ae, | ||
| 5321 | 0x54e815ba, | 5361 | 0x54e815ba, |
| 5362 | 0x7c11402e, | ||
| 5363 | 0x7c0903a6, | ||
| 5322 | 0x54ea5d78, | 5364 | 0x54ea5d78, |
| 5323 | 0x54ec9b78, | 5365 | 0x54ec9b78, |
| 5324 | 0x7c11402e, | ||
| 5325 | 0x54f4dd78, | 5366 | 0x54f4dd78, |
| 5326 | 0x54eb9d78, | 5367 | 0x54eb9d78, |
| 5327 | 0x7c0903a6, | ||
| 5328 | 0x4e800420, | 5368 | 0x4e800420, |
| 5329 | 0x00000000, | 5369 | 0x00000000, |
| 5330 | 0x5588007e, | 5370 | 0x5588007e, |
| 5331 | 0x000900ab, | 5371 | 0x000900ab, |
| 5332 | 0x2108fffc, | 5372 | 0x2108fffc, |
| 5373 | 0x80f00000, | ||
| 5374 | 0x3a100004, | ||
| 5333 | 0x7c0f402e, | 5375 | 0x7c0f402e, |
| 5334 | 0x39200000, | 5376 | 0x39200000, |
| 5335 | 0x00098200, | 5377 | 0x00098200, |
| 5336 | 0x80f00000, | ||
| 5337 | 0x3a100004, | ||
| 5338 | 0x7d34716e, | 5378 | 0x7d34716e, |
| 5339 | 0x90140004, | 5379 | 0x90140004, |
| 5340 | 0x54e815ba, | 5380 | 0x54e815ba, |
| 5381 | 0x7c11402e, | ||
| 5382 | 0x7c0903a6, | ||
| 5341 | 0x54ea5d78, | 5383 | 0x54ea5d78, |
| 5342 | 0x54ec9b78, | 5384 | 0x54ec9b78, |
| 5343 | 0x7c11402e, | ||
| 5344 | 0x54f4dd78, | 5385 | 0x54f4dd78, |
| 5345 | 0x54eb9d78, | 5386 | 0x54eb9d78, |
| 5346 | 0x7c0903a6, | ||
| 5347 | 0x4e800420, | 5387 | 0x4e800420, |
| 5348 | 0x00000000, | 5388 | 0x00000000, |
| 5349 | 0x5588007e, | 5389 | 0x5588007e, |
| 5350 | 0x000900ab, | 5390 | 0x000900ab, |
| 5351 | 0x2108fffc, | 5391 | 0x2108fffc, |
| 5392 | 0x80f00000, | ||
| 5393 | 0x3a100004, | ||
| 5352 | 0x7c0f402e, | 5394 | 0x7c0f402e, |
| 5353 | 0x39200000, | 5395 | 0x39200000, |
| 5354 | 0x00098200, | 5396 | 0x00098200, |
| 5355 | 0x80f00000, | ||
| 5356 | 0x3a100004, | ||
| 5357 | 0x7d34716e, | 5397 | 0x7d34716e, |
| 5358 | 0x90140004, | 5398 | 0x90140004, |
| 5359 | 0x54e815ba, | 5399 | 0x54e815ba, |
| 5400 | 0x7c11402e, | ||
| 5401 | 0x7c0903a6, | ||
| 5360 | 0x54ea5d78, | 5402 | 0x54ea5d78, |
| 5361 | 0x54ec9b78, | 5403 | 0x54ec9b78, |
| 5362 | 0x7c11402e, | ||
| 5363 | 0x54f4dd78, | 5404 | 0x54f4dd78, |
| 5364 | 0x54eb9d78, | 5405 | 0x54eb9d78, |
| 5365 | 0x7c0903a6, | ||
| 5366 | 0x4e800420, | 5406 | 0x4e800420, |
| 5367 | 0x00000000, | 5407 | 0x00000000, |
| 5368 | 0x558c6800, | 5408 | 0x558c6800, |
| @@ -5373,44 +5413,53 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5373 | 0x7ed4716e, | 5413 | 0x7ed4716e, |
| 5374 | 0x91940004, | 5414 | 0x91940004, |
| 5375 | 0x54e815ba, | 5415 | 0x54e815ba, |
| 5416 | 0x7c11402e, | ||
| 5417 | 0x7c0903a6, | ||
| 5376 | 0x54ea5d78, | 5418 | 0x54ea5d78, |
| 5377 | 0x54ec9b78, | 5419 | 0x54ec9b78, |
| 5378 | 0x7c11402e, | ||
| 5379 | 0x54f4dd78, | 5420 | 0x54f4dd78, |
| 5380 | 0x54eb9d78, | 5421 | 0x54eb9d78, |
| 5381 | 0x7c0903a6, | ||
| 5382 | 0x4e800420, | 5422 | 0x4e800420, |
| 5383 | 0x00000000, | 5423 | 0x00000000, |
| 5384 | 0x558c6800, | 5424 | 0x558c6800, |
| 5385 | 0x000900a1, | 5425 | 0x000900a1, |
| 5386 | 0x7d8c8670, | 5426 | 0x7d88fe70, |
| 5387 | 0x6d8c8000, | 5427 | 0x7d096278, |
| 5388 | 0x91810024, | 5428 | 0x7d284850, |
| 5389 | 0xc8010020, | 5429 | 0x7d260034, |
| 5390 | 0xfc00f828, | 5430 | 0x2106040d, |
| 5431 | 0x7d293030, | ||
| 5432 | 0x20cc0000, | ||
| 5433 | 0x5508a000, | ||
| 5434 | 0x000900a1, | ||
| 5435 | 0x512ca87e, | ||
| 5436 | 0x7c000110, | ||
| 5437 | 0x7d8c4214, | ||
| 5438 | 0x7d8c0038, | ||
| 5391 | 0x80f00000, | 5439 | 0x80f00000, |
| 5392 | 0x3a100004, | 5440 | 0x3a100004, |
| 5393 | 0x7c0ea5ae, | 5441 | 0x7d94716e, |
| 5442 | 0x93140004, | ||
| 5394 | 0x54e815ba, | 5443 | 0x54e815ba, |
| 5444 | 0x7c11402e, | ||
| 5445 | 0x7c0903a6, | ||
| 5395 | 0x54ea5d78, | 5446 | 0x54ea5d78, |
| 5396 | 0x54ec9b78, | 5447 | 0x54ec9b78, |
| 5397 | 0x7c11402e, | ||
| 5398 | 0x54f4dd78, | 5448 | 0x54f4dd78, |
| 5399 | 0x54eb9d78, | 5449 | 0x54eb9d78, |
| 5400 | 0x7c0903a6, | ||
| 5401 | 0x4e800420, | 5450 | 0x4e800420, |
| 5402 | 0x00000000, | 5451 | 0x00000000, |
| 5403 | 0x7c0f64ae, | ||
| 5404 | 0x80f00000, | 5452 | 0x80f00000, |
| 5405 | 0x3a100004, | 5453 | 0x3a100004, |
| 5454 | 0x7c0f64ae, | ||
| 5406 | 0x7c0ea5ae, | 5455 | 0x7c0ea5ae, |
| 5407 | 0x54e815ba, | 5456 | 0x54e815ba, |
| 5457 | 0x7c11402e, | ||
| 5458 | 0x7c0903a6, | ||
| 5408 | 0x54ea5d78, | 5459 | 0x54ea5d78, |
| 5409 | 0x54ec9b78, | 5460 | 0x54ec9b78, |
| 5410 | 0x7c11402e, | ||
| 5411 | 0x54f4dd78, | 5461 | 0x54f4dd78, |
| 5412 | 0x54eb9d78, | 5462 | 0x54eb9d78, |
| 5413 | 0x7c0903a6, | ||
| 5414 | 0x4e800420, | 5463 | 0x4e800420, |
| 5415 | 0x00000000, | 5464 | 0x00000000, |
| 5416 | 0x558800fe, | 5465 | 0x558800fe, |
| @@ -5420,12 +5469,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5420 | 0x3a100004, | 5469 | 0x3a100004, |
| 5421 | 0x7c0ea12e, | 5470 | 0x7c0ea12e, |
| 5422 | 0x54e815ba, | 5471 | 0x54e815ba, |
| 5472 | 0x7c11402e, | ||
| 5473 | 0x7c0903a6, | ||
| 5423 | 0x54ea5d78, | 5474 | 0x54ea5d78, |
| 5424 | 0x54ec9b78, | 5475 | 0x54ec9b78, |
| 5425 | 0x7c11402e, | ||
| 5426 | 0x54f4dd78, | 5476 | 0x54f4dd78, |
| 5427 | 0x54eb9d78, | 5477 | 0x54eb9d78, |
| 5428 | 0x7c0903a6, | ||
| 5429 | 0x4e800420, | 5478 | 0x4e800420, |
| 5430 | 0x00000000, | 5479 | 0x00000000, |
| 5431 | 0x7eeea12e, | 5480 | 0x7eeea12e, |
| @@ -5439,33 +5488,33 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5439 | 0x80f00000, | 5488 | 0x80f00000, |
| 5440 | 0x3a100004, | 5489 | 0x3a100004, |
| 5441 | 0x54e815ba, | 5490 | 0x54e815ba, |
| 5491 | 0x7c11402e, | ||
| 5492 | 0x7c0903a6, | ||
| 5442 | 0x54ea5d78, | 5493 | 0x54ea5d78, |
| 5443 | 0x54ec9b78, | 5494 | 0x54ec9b78, |
| 5444 | 0x7c11402e, | ||
| 5445 | 0x54f4dd78, | 5495 | 0x54f4dd78, |
| 5446 | 0x54eb9d78, | 5496 | 0x54eb9d78, |
| 5447 | 0x7c0903a6, | ||
| 5448 | 0x4e800420, | 5497 | 0x4e800420, |
| 5449 | 0x00000000, | 5498 | 0x00000000, |
| 5450 | 0x80f00000, | ||
| 5451 | 0x3a100004, | ||
| 5452 | 0x814efffc, | 5499 | 0x814efffc, |
| 5453 | 0x558c007e, | 5500 | 0x558c007e, |
| 5454 | 0x000900ab, | 5501 | 0x000900ab, |
| 5455 | 0x398c0000, | 5502 | 0x398c0000, |
| 5456 | 0x00098200, | 5503 | 0x00098200, |
| 5457 | 0x7d4a602e, | 5504 | 0x7d4a602e, |
| 5505 | 0x80f00000, | ||
| 5506 | 0x3a100004, | ||
| 5458 | 0x810a0000, | 5507 | 0x810a0000, |
| 5459 | 0x00098200, | 5508 | 0x00098200, |
| 5460 | 0xc8080000, | 5509 | 0xc8080000, |
| 5461 | 0x7c0ea5ae, | 5510 | 0x7c0ea5ae, |
| 5462 | 0x54e815ba, | 5511 | 0x54e815ba, |
| 5512 | 0x7c11402e, | ||
| 5513 | 0x7c0903a6, | ||
| 5463 | 0x54ea5d78, | 5514 | 0x54ea5d78, |
| 5464 | 0x54ec9b78, | 5515 | 0x54ec9b78, |
| 5465 | 0x7c11402e, | ||
| 5466 | 0x54f4dd78, | 5516 | 0x54f4dd78, |
| 5467 | 0x54eb9d78, | 5517 | 0x54eb9d78, |
| 5468 | 0x7c0903a6, | ||
| 5469 | 0x4e800420, | 5518 | 0x4e800420, |
| 5470 | 0x00000000, | 5519 | 0x00000000, |
| 5471 | 0x814efffc, | 5520 | 0x814efffc, |
| @@ -5475,6 +5524,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5475 | 0x00098200, | 5524 | 0x00098200, |
| 5476 | 0x7c0c74ee, | 5525 | 0x7c0c74ee, |
| 5477 | 0x7d4aa02e, | 5526 | 0x7d4aa02e, |
| 5527 | 0x80f00000, | ||
| 5528 | 0x3a100004, | ||
| 5478 | 0x88ca0000, | 5529 | 0x88ca0000, |
| 5479 | 0x00098200, | 5530 | 0x00098200, |
| 5480 | 0x808a0000, | 5531 | 0x808a0000, |
| @@ -5493,15 +5544,13 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5493 | 0x40820000, | 5544 | 0x40820000, |
| 5494 | 0x00050802, | 5545 | 0x00050802, |
| 5495 | 0x0006000b, | 5546 | 0x0006000b, |
| 5496 | 0x80f00000, | ||
| 5497 | 0x3a100004, | ||
| 5498 | 0x54e815ba, | 5547 | 0x54e815ba, |
| 5548 | 0x7c11402e, | ||
| 5549 | 0x7c0903a6, | ||
| 5499 | 0x54ea5d78, | 5550 | 0x54ea5d78, |
| 5500 | 0x54ec9b78, | 5551 | 0x54ec9b78, |
| 5501 | 0x7c11402e, | ||
| 5502 | 0x54f4dd78, | 5552 | 0x54f4dd78, |
| 5503 | 0x54eb9d78, | 5553 | 0x54eb9d78, |
| 5504 | 0x7c0903a6, | ||
| 5505 | 0x4e800420, | 5554 | 0x4e800420, |
| 5506 | 0x0006000c, | 5555 | 0x0006000c, |
| 5507 | 0x28090000, | 5556 | 0x28090000, |
| @@ -5521,8 +5570,6 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5521 | 0x48000000, | 5570 | 0x48000000, |
| 5522 | 0x0005000b, | 5571 | 0x0005000b, |
| 5523 | 0x00000000, | 5572 | 0x00000000, |
| 5524 | 0x80f00000, | ||
| 5525 | 0x3a100004, | ||
| 5526 | 0x814efffc, | 5573 | 0x814efffc, |
| 5527 | 0x5588007e, | 5574 | 0x5588007e, |
| 5528 | 0x000900ab, | 5575 | 0x000900ab, |
| @@ -5533,6 +5580,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5533 | 0x00098200, | 5580 | 0x00098200, |
| 5534 | 0x7d0f402e, | 5581 | 0x7d0f402e, |
| 5535 | 0x7d4aa02e, | 5582 | 0x7d4aa02e, |
| 5583 | 0x80f00000, | ||
| 5584 | 0x3a100004, | ||
| 5536 | 0x88ca0000, | 5585 | 0x88ca0000, |
| 5537 | 0x00098200, | 5586 | 0x00098200, |
| 5538 | 0x808a0000, | 5587 | 0x808a0000, |
| @@ -5551,12 +5600,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5551 | 0x00050802, | 5600 | 0x00050802, |
| 5552 | 0x0006000b, | 5601 | 0x0006000b, |
| 5553 | 0x54e815ba, | 5602 | 0x54e815ba, |
| 5603 | 0x7c11402e, | ||
| 5604 | 0x7c0903a6, | ||
| 5554 | 0x54ea5d78, | 5605 | 0x54ea5d78, |
| 5555 | 0x54ec9b78, | 5606 | 0x54ec9b78, |
| 5556 | 0x7c11402e, | ||
| 5557 | 0x54f4dd78, | 5607 | 0x54f4dd78, |
| 5558 | 0x54eb9d78, | 5608 | 0x54eb9d78, |
| 5559 | 0x7c0903a6, | ||
| 5560 | 0x4e800420, | 5609 | 0x4e800420, |
| 5561 | 0x0006000c, | 5610 | 0x0006000c, |
| 5562 | 0x70c60000, | 5611 | 0x70c60000, |
| @@ -5572,8 +5621,6 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5572 | 0x48000000, | 5621 | 0x48000000, |
| 5573 | 0x0005000b, | 5622 | 0x0005000b, |
| 5574 | 0x00000000, | 5623 | 0x00000000, |
| 5575 | 0x80f00000, | ||
| 5576 | 0x3a100004, | ||
| 5577 | 0x814efffc, | 5624 | 0x814efffc, |
| 5578 | 0x5694007e, | 5625 | 0x5694007e, |
| 5579 | 0x000900ab, | 5626 | 0x000900ab, |
| @@ -5581,48 +5628,50 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5581 | 0x00098200, | 5628 | 0x00098200, |
| 5582 | 0x7c0f64ae, | 5629 | 0x7c0f64ae, |
| 5583 | 0x7d4aa02e, | 5630 | 0x7d4aa02e, |
| 5631 | 0x80f00000, | ||
| 5632 | 0x3a100004, | ||
| 5584 | 0x810a0000, | 5633 | 0x810a0000, |
| 5585 | 0x00098200, | 5634 | 0x00098200, |
| 5586 | 0xd8080000, | 5635 | 0xd8080000, |
| 5587 | 0x54e815ba, | 5636 | 0x54e815ba, |
| 5637 | 0x7c11402e, | ||
| 5638 | 0x7c0903a6, | ||
| 5588 | 0x54ea5d78, | 5639 | 0x54ea5d78, |
| 5589 | 0x54ec9b78, | 5640 | 0x54ec9b78, |
| 5590 | 0x7c11402e, | ||
| 5591 | 0x54f4dd78, | 5641 | 0x54f4dd78, |
| 5592 | 0x54eb9d78, | 5642 | 0x54eb9d78, |
| 5593 | 0x7c0903a6, | ||
| 5594 | 0x4e800420, | 5643 | 0x4e800420, |
| 5595 | 0x00000000, | 5644 | 0x00000000, |
| 5596 | 0x80f00000, | ||
| 5597 | 0x3a100004, | ||
| 5598 | 0x814efffc, | 5645 | 0x814efffc, |
| 5599 | 0x5694007e, | 5646 | 0x5694007e, |
| 5600 | 0x000900ab, | 5647 | 0x000900ab, |
| 5601 | 0x3a940000, | ||
| 5602 | 0x00098200, | ||
| 5603 | 0x558000fe, | 5648 | 0x558000fe, |
| 5604 | 0x000900ab, | 5649 | 0x000900ab, |
| 5605 | 0x7d4aa02e, | 5650 | 0x3a940000, |
| 5651 | 0x00098200, | ||
| 5606 | 0x7c0000f8, | 5652 | 0x7c0000f8, |
| 5653 | 0x7d4aa02e, | ||
| 5654 | 0x80f00000, | ||
| 5655 | 0x3a100004, | ||
| 5607 | 0x810a0000, | 5656 | 0x810a0000, |
| 5608 | 0x00098200, | 5657 | 0x00098200, |
| 5609 | 0x90080000, | 5658 | 0x90080000, |
| 5610 | 0x54e815ba, | 5659 | 0x54e815ba, |
| 5660 | 0x7c11402e, | ||
| 5661 | 0x7c0903a6, | ||
| 5611 | 0x54ea5d78, | 5662 | 0x54ea5d78, |
| 5612 | 0x54ec9b78, | 5663 | 0x54ec9b78, |
| 5613 | 0x7c11402e, | ||
| 5614 | 0x54f4dd78, | 5664 | 0x54f4dd78, |
| 5615 | 0x54eb9d78, | 5665 | 0x54eb9d78, |
| 5616 | 0x7c0903a6, | ||
| 5617 | 0x4e800420, | 5666 | 0x4e800420, |
| 5618 | 0x00000000, | 5667 | 0x00000000, |
| 5619 | 0x81120000, | 5668 | 0x81120000, |
| 5620 | 0x00098200, | 5669 | 0x00098200, |
| 5621 | 0x5580007e, | 5670 | 0x5580007e, |
| 5622 | 0x000900ab, | 5671 | 0x000900ab, |
| 5623 | 0x7e100214, | ||
| 5624 | 0x3e100000, | 5672 | 0x3e100000, |
| 5625 | 0x00098200, | 5673 | 0x00098200, |
| 5674 | 0x7e100214, | ||
| 5626 | 0x91d20000, | 5675 | 0x91d20000, |
| 5627 | 0x00098200, | 5676 | 0x00098200, |
| 5628 | 0x28080000, | 5677 | 0x28080000, |
| @@ -5638,12 +5687,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5638 | 0x80f00000, | 5687 | 0x80f00000, |
| 5639 | 0x3a100004, | 5688 | 0x3a100004, |
| 5640 | 0x54e815ba, | 5689 | 0x54e815ba, |
| 5690 | 0x7c11402e, | ||
| 5691 | 0x7c0903a6, | ||
| 5641 | 0x54ea5d78, | 5692 | 0x54ea5d78, |
| 5642 | 0x54ec9b78, | 5693 | 0x54ec9b78, |
| 5643 | 0x7c11402e, | ||
| 5644 | 0x54f4dd78, | 5694 | 0x54f4dd78, |
| 5645 | 0x54eb9d78, | 5695 | 0x54eb9d78, |
| 5646 | 0x7c0903a6, | ||
| 5647 | 0x4e800420, | 5696 | 0x4e800420, |
| 5648 | 0x00000000, | 5697 | 0x00000000, |
| 5649 | 0x5588007e, | 5698 | 0x5588007e, |
| @@ -5651,7 +5700,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5651 | 0x91d20000, | 5700 | 0x91d20000, |
| 5652 | 0x00098200, | 5701 | 0x00098200, |
| 5653 | 0x2108fffc, | 5702 | 0x2108fffc, |
| 5654 | 0x92010008, | 5703 | 0x92010020, |
| 5655 | 0x7c8f402e, | 5704 | 0x7c8f402e, |
| 5656 | 0x7e439378, | 5705 | 0x7e439378, |
| 5657 | 0x80aefffc, | 5706 | 0x80aefffc, |
| @@ -5666,12 +5715,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5666 | 0x80f00000, | 5715 | 0x80f00000, |
| 5667 | 0x3a100004, | 5716 | 0x3a100004, |
| 5668 | 0x54e815ba, | 5717 | 0x54e815ba, |
| 5718 | 0x7c11402e, | ||
| 5719 | 0x7c0903a6, | ||
| 5669 | 0x54ea5d78, | 5720 | 0x54ea5d78, |
| 5670 | 0x54ec9b78, | 5721 | 0x54ec9b78, |
| 5671 | 0x7c11402e, | ||
| 5672 | 0x54f4dd78, | 5722 | 0x54f4dd78, |
| 5673 | 0x54eb9d78, | 5723 | 0x54eb9d78, |
| 5674 | 0x7c0903a6, | ||
| 5675 | 0x4e800420, | 5724 | 0x4e800420, |
| 5676 | 0x00000000, | 5725 | 0x00000000, |
| 5677 | 0x80110000, | 5726 | 0x80110000, |
| @@ -5682,7 +5731,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5682 | 0x91d20000, | 5731 | 0x91d20000, |
| 5683 | 0x00098200, | 5732 | 0x00098200, |
| 5684 | 0x7c004040, | 5733 | 0x7c004040, |
| 5685 | 0x92010008, | 5734 | 0x92010020, |
| 5686 | 0x40800000, | 5735 | 0x40800000, |
| 5687 | 0x00050805, | 5736 | 0x00050805, |
| 5688 | 0x0006000b, | 5737 | 0x0006000b, |
| @@ -5712,12 +5761,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5712 | 0x80f00000, | 5761 | 0x80f00000, |
| 5713 | 0x3a100004, | 5762 | 0x3a100004, |
| 5714 | 0x54e815ba, | 5763 | 0x54e815ba, |
| 5764 | 0x7c11402e, | ||
| 5765 | 0x7c0903a6, | ||
| 5715 | 0x54ea5d78, | 5766 | 0x54ea5d78, |
| 5716 | 0x54ec9b78, | 5767 | 0x54ec9b78, |
| 5717 | 0x7c11402e, | ||
| 5718 | 0x54f4dd78, | 5768 | 0x54f4dd78, |
| 5719 | 0x54eb9d78, | 5769 | 0x54eb9d78, |
| 5720 | 0x7c0903a6, | ||
| 5721 | 0x4e800420, | 5770 | 0x4e800420, |
| 5722 | 0x00000000, | 5771 | 0x00000000, |
| 5723 | 0x0006000d, | 5772 | 0x0006000d, |
| @@ -5743,10 +5792,10 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5743 | 0x7d6f402e, | 5792 | 0x7d6f402e, |
| 5744 | 0x00000000, | 5793 | 0x00000000, |
| 5745 | 0x48000000, | 5794 | 0x48000000, |
| 5746 | 0x000500a4, | 5795 | 0x000500a3, |
| 5747 | 0x00000000, | 5796 | 0x00000000, |
| 5748 | 0x48000000, | 5797 | 0x48000000, |
| 5749 | 0x000500a5, | 5798 | 0x000500a4, |
| 5750 | 0x00000000, | 5799 | 0x00000000, |
| 5751 | 0x7c6a706e, | 5800 | 0x7c6a706e, |
| 5752 | 0x7c8b706e, | 5801 | 0x7c8b706e, |
| @@ -5776,11 +5825,11 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5776 | 0x00050805, | 5825 | 0x00050805, |
| 5777 | 0xfc20001e, | 5826 | 0xfc20001e, |
| 5778 | 0xfc40f02a, | 5827 | 0xfc40f02a, |
| 5779 | 0xd8210008, | 5828 | 0xd8210010, |
| 5780 | 0x800a0000, | 5829 | 0x800a0000, |
| 5781 | 0x00098200, | 5830 | 0x00098200, |
| 5782 | 0xfc42f028, | 5831 | 0xfc42f028, |
| 5783 | 0x8121000c, | 5832 | 0x81210014, |
| 5784 | 0x810a0000, | 5833 | 0x810a0000, |
| 5785 | 0x00098200, | 5834 | 0x00098200, |
| 5786 | 0xfc801000, | 5835 | 0xfc801000, |
| @@ -5802,12 +5851,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5802 | 0x3a100004, | 5851 | 0x3a100004, |
| 5803 | 0x7dcea5ae, | 5852 | 0x7dcea5ae, |
| 5804 | 0x54e815ba, | 5853 | 0x54e815ba, |
| 5854 | 0x7c11402e, | ||
| 5855 | 0x7c0903a6, | ||
| 5805 | 0x54ea5d78, | 5856 | 0x54ea5d78, |
| 5806 | 0x54ec9b78, | 5857 | 0x54ec9b78, |
| 5807 | 0x7c11402e, | ||
| 5808 | 0x54f4dd78, | 5858 | 0x54f4dd78, |
| 5809 | 0x54eb9d78, | 5859 | 0x54eb9d78, |
| 5810 | 0x7c0903a6, | ||
| 5811 | 0x4e800420, | 5860 | 0x4e800420, |
| 5812 | 0x0006000c, | 5861 | 0x0006000c, |
| 5813 | 0x812a0000, | 5862 | 0x812a0000, |
| @@ -5832,7 +5881,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5832 | 0x816b0004, | 5881 | 0x816b0004, |
| 5833 | 0x00000000, | 5882 | 0x00000000, |
| 5834 | 0x48000000, | 5883 | 0x48000000, |
| 5835 | 0x000500a4, | 5884 | 0x000500a3, |
| 5836 | 0x00000000, | 5885 | 0x00000000, |
| 5837 | 0x7c6a706e, | 5886 | 0x7c6a706e, |
| 5838 | 0x5568007e, | 5887 | 0x5568007e, |
| @@ -5844,7 +5893,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5844 | 0x7d6f402e, | 5893 | 0x7d6f402e, |
| 5845 | 0x40820000, | 5894 | 0x40820000, |
| 5846 | 0x0005082c, | 5895 | 0x0005082c, |
| 5847 | 0x000600a4, | 5896 | 0x000600a3, |
| 5848 | 0x800a0000, | 5897 | 0x800a0000, |
| 5849 | 0x00098200, | 5898 | 0x00098200, |
| 5850 | 0x810b0000, | 5899 | 0x810b0000, |
| @@ -5884,12 +5933,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5884 | 0x80f00000, | 5933 | 0x80f00000, |
| 5885 | 0x3a100004, | 5934 | 0x3a100004, |
| 5886 | 0x54e815ba, | 5935 | 0x54e815ba, |
| 5936 | 0x7c11402e, | ||
| 5937 | 0x7c0903a6, | ||
| 5887 | 0x54ea5d78, | 5938 | 0x54ea5d78, |
| 5888 | 0x54ec9b78, | 5939 | 0x54ec9b78, |
| 5889 | 0x7c11402e, | ||
| 5890 | 0x54f4dd78, | 5940 | 0x54f4dd78, |
| 5891 | 0x54eb9d78, | 5941 | 0x54eb9d78, |
| 5892 | 0x7c0903a6, | ||
| 5893 | 0x4e800420, | 5942 | 0x4e800420, |
| 5894 | 0x0006000e, | 5943 | 0x0006000e, |
| 5895 | 0x81290000, | 5944 | 0x81290000, |
| @@ -5916,9 +5965,9 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5916 | 0x0005002d, | 5965 | 0x0005002d, |
| 5917 | 0x00000000, | 5966 | 0x00000000, |
| 5918 | 0x7c6a706e, | 5967 | 0x7c6a706e, |
| 5919 | 0x814a0004, | ||
| 5920 | 0x556000fe, | 5968 | 0x556000fe, |
| 5921 | 0x000900ab, | 5969 | 0x000900ab, |
| 5970 | 0x814a0004, | ||
| 5922 | 0x2c030000, | 5971 | 0x2c030000, |
| 5923 | 0x00098200, | 5972 | 0x00098200, |
| 5924 | 0x40820000, | 5973 | 0x40820000, |
| @@ -5941,12 +5990,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5941 | 0x3a100004, | 5990 | 0x3a100004, |
| 5942 | 0x7c0ea5ae, | 5991 | 0x7c0ea5ae, |
| 5943 | 0x54e815ba, | 5992 | 0x54e815ba, |
| 5993 | 0x7c11402e, | ||
| 5994 | 0x7c0903a6, | ||
| 5944 | 0x54ea5d78, | 5995 | 0x54ea5d78, |
| 5945 | 0x54ec9b78, | 5996 | 0x54ec9b78, |
| 5946 | 0x7c11402e, | ||
| 5947 | 0x54f4dd78, | 5997 | 0x54f4dd78, |
| 5948 | 0x54eb9d78, | 5998 | 0x54eb9d78, |
| 5949 | 0x7c0903a6, | ||
| 5950 | 0x4e800420, | 5999 | 0x4e800420, |
| 5951 | 0x0006000f, | 6000 | 0x0006000f, |
| 5952 | 0x812a0000, | 6001 | 0x812a0000, |
| @@ -5991,11 +6040,11 @@ static const unsigned int build_actionlist[7218] = { | |||
| 5991 | 0x00050805, | 6040 | 0x00050805, |
| 5992 | 0xfc20001e, | 6041 | 0xfc20001e, |
| 5993 | 0xfc40f02a, | 6042 | 0xfc40f02a, |
| 5994 | 0xd8210008, | 6043 | 0xd8210010, |
| 5995 | 0x800a0000, | 6044 | 0x800a0000, |
| 5996 | 0x00098200, | 6045 | 0x00098200, |
| 5997 | 0xfc42f028, | 6046 | 0xfc42f028, |
| 5998 | 0x8121000c, | 6047 | 0x81210014, |
| 5999 | 0x810a0000, | 6048 | 0x810a0000, |
| 6000 | 0x00098200, | 6049 | 0x00098200, |
| 6001 | 0xfc801000, | 6050 | 0xfc801000, |
| @@ -6024,12 +6073,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6024 | 0x80f00000, | 6073 | 0x80f00000, |
| 6025 | 0x3a100004, | 6074 | 0x3a100004, |
| 6026 | 0x54e815ba, | 6075 | 0x54e815ba, |
| 6076 | 0x7c11402e, | ||
| 6077 | 0x7c0903a6, | ||
| 6027 | 0x54ea5d78, | 6078 | 0x54ea5d78, |
| 6028 | 0x54ec9b78, | 6079 | 0x54ec9b78, |
| 6029 | 0x7c11402e, | ||
| 6030 | 0x54f4dd78, | 6080 | 0x54f4dd78, |
| 6031 | 0x54eb9d78, | 6081 | 0x54eb9d78, |
| 6032 | 0x7c0903a6, | ||
| 6033 | 0x4e800420, | 6082 | 0x4e800420, |
| 6034 | 0x0006000d, | 6083 | 0x0006000d, |
| 6035 | 0x812a0000, | 6084 | 0x812a0000, |
| @@ -6054,7 +6103,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6054 | 0x816b0004, | 6103 | 0x816b0004, |
| 6055 | 0x00000000, | 6104 | 0x00000000, |
| 6056 | 0x48000000, | 6105 | 0x48000000, |
| 6057 | 0x000500a5, | 6106 | 0x000500a4, |
| 6058 | 0x00060011, | 6107 | 0x00060011, |
| 6059 | 0x80110000, | 6108 | 0x80110000, |
| 6060 | 0x00098200, | 6109 | 0x00098200, |
| @@ -6086,12 +6135,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6086 | 0x80f00000, | 6135 | 0x80f00000, |
| 6087 | 0x3a100004, | 6136 | 0x3a100004, |
| 6088 | 0x54e815ba, | 6137 | 0x54e815ba, |
| 6138 | 0x7c11402e, | ||
| 6139 | 0x7c0903a6, | ||
| 6089 | 0x54ea5d78, | 6140 | 0x54ea5d78, |
| 6090 | 0x54ec9b78, | 6141 | 0x54ec9b78, |
| 6091 | 0x7c11402e, | ||
| 6092 | 0x54f4dd78, | 6142 | 0x54f4dd78, |
| 6093 | 0x54eb9d78, | 6143 | 0x54eb9d78, |
| 6094 | 0x7c0903a6, | ||
| 6095 | 0x4e800420, | 6144 | 0x4e800420, |
| 6096 | 0x00000000, | 6145 | 0x00000000, |
| 6097 | 0x7c6a706e, | 6146 | 0x7c6a706e, |
| @@ -6104,7 +6153,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6104 | 0x7d6f402e, | 6153 | 0x7d6f402e, |
| 6105 | 0x40820000, | 6154 | 0x40820000, |
| 6106 | 0x00050830, | 6155 | 0x00050830, |
| 6107 | 0x000600a5, | 6156 | 0x000600a4, |
| 6108 | 0x800a0000, | 6157 | 0x800a0000, |
| 6109 | 0x00098200, | 6158 | 0x00098200, |
| 6110 | 0x810b0000, | 6159 | 0x810b0000, |
| @@ -6155,12 +6204,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6155 | 0x80f00000, | 6204 | 0x80f00000, |
| 6156 | 0x3a100004, | 6205 | 0x3a100004, |
| 6157 | 0x54e815ba, | 6206 | 0x54e815ba, |
| 6207 | 0x7c11402e, | ||
| 6208 | 0x7c0903a6, | ||
| 6158 | 0x54ea5d78, | 6209 | 0x54ea5d78, |
| 6159 | 0x54ec9b78, | 6210 | 0x54ec9b78, |
| 6160 | 0x7c11402e, | ||
| 6161 | 0x54f4dd78, | 6211 | 0x54f4dd78, |
| 6162 | 0x54eb9d78, | 6212 | 0x54eb9d78, |
| 6163 | 0x7c0903a6, | ||
| 6164 | 0x4e800420, | 6213 | 0x4e800420, |
| 6165 | 0x0006000e, | 6214 | 0x0006000e, |
| 6166 | 0x810a0000, | 6215 | 0x810a0000, |
| @@ -6186,7 +6235,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6186 | 0x00098200, | 6235 | 0x00098200, |
| 6187 | 0x38b10000, | 6236 | 0x38b10000, |
| 6188 | 0x00098200, | 6237 | 0x00098200, |
| 6189 | 0x92010008, | 6238 | 0x92010020, |
| 6190 | 0x7e439378, | 6239 | 0x7e439378, |
| 6191 | 0x28080000, | 6240 | 0x28080000, |
| 6192 | 0x91d20000, | 6241 | 0x91d20000, |
| @@ -6227,9 +6276,9 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6227 | 0x0005000d, | 6276 | 0x0005000d, |
| 6228 | 0x00000000, | 6277 | 0x00000000, |
| 6229 | 0x7c6a706e, | 6278 | 0x7c6a706e, |
| 6230 | 0x814a0004, | ||
| 6231 | 0x556000fe, | 6279 | 0x556000fe, |
| 6232 | 0x000900ab, | 6280 | 0x000900ab, |
| 6281 | 0x814a0004, | ||
| 6233 | 0x2c030000, | 6282 | 0x2c030000, |
| 6234 | 0x00098200, | 6283 | 0x00098200, |
| 6235 | 0x40820000, | 6284 | 0x40820000, |
| @@ -6259,12 +6308,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6259 | 0x80f00000, | 6308 | 0x80f00000, |
| 6260 | 0x3a100004, | 6309 | 0x3a100004, |
| 6261 | 0x54e815ba, | 6310 | 0x54e815ba, |
| 6311 | 0x7c11402e, | ||
| 6312 | 0x7c0903a6, | ||
| 6262 | 0x54ea5d78, | 6313 | 0x54ea5d78, |
| 6263 | 0x54ec9b78, | 6314 | 0x54ec9b78, |
| 6264 | 0x7c11402e, | ||
| 6265 | 0x54f4dd78, | 6315 | 0x54f4dd78, |
| 6266 | 0x54eb9d78, | 6316 | 0x54eb9d78, |
| 6267 | 0x7c0903a6, | ||
| 6268 | 0x4e800420, | 6317 | 0x4e800420, |
| 6269 | 0x0006000f, | 6318 | 0x0006000f, |
| 6270 | 0x810a0000, | 6319 | 0x810a0000, |
| @@ -6334,18 +6383,18 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6334 | 0x80f00000, | 6383 | 0x80f00000, |
| 6335 | 0x3a100004, | 6384 | 0x3a100004, |
| 6336 | 0x54e815ba, | 6385 | 0x54e815ba, |
| 6386 | 0x7c11402e, | ||
| 6387 | 0x7c0903a6, | ||
| 6337 | 0x54ea5d78, | 6388 | 0x54ea5d78, |
| 6338 | 0x54ec9b78, | 6389 | 0x54ec9b78, |
| 6339 | 0x7c11402e, | ||
| 6340 | 0x54f4dd78, | 6390 | 0x54f4dd78, |
| 6341 | 0x54eb9d78, | 6391 | 0x54eb9d78, |
| 6342 | 0x7c0903a6, | ||
| 6343 | 0x4e800420, | 6392 | 0x4e800420, |
| 6344 | 0x0006000f, | 6393 | 0x0006000f, |
| 6345 | 0x91d20000, | 6394 | 0x91d20000, |
| 6346 | 0x00098200, | 6395 | 0x00098200, |
| 6347 | 0x7e439378, | 6396 | 0x7e439378, |
| 6348 | 0x92010008, | 6397 | 0x92010020, |
| 6349 | 0x7d956378, | 6398 | 0x7d956378, |
| 6350 | 0x48000001, | 6399 | 0x48000001, |
| 6351 | 0x00030033, | 6400 | 0x00030033, |
| @@ -6516,8 +6565,8 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6516 | 0x91740004, | 6565 | 0x91740004, |
| 6517 | 0x92d40000, | 6566 | 0x92d40000, |
| 6518 | 0x00000000, | 6567 | 0x00000000, |
| 6519 | 0x91610024, | 6568 | 0x9161000c, |
| 6520 | 0xc8210020, | 6569 | 0xc8210008, |
| 6521 | 0xfc21f028, | 6570 | 0xfc21f028, |
| 6522 | 0x00000000, | 6571 | 0x00000000, |
| 6523 | 0x396b0001, | 6572 | 0x396b0001, |
| @@ -6534,12 +6583,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6534 | 0x80f00000, | 6583 | 0x80f00000, |
| 6535 | 0x3a100004, | 6584 | 0x3a100004, |
| 6536 | 0x54e815ba, | 6585 | 0x54e815ba, |
| 6586 | 0x7c11402e, | ||
| 6587 | 0x7c0903a6, | ||
| 6537 | 0x54ea5d78, | 6588 | 0x54ea5d78, |
| 6538 | 0x54ec9b78, | 6589 | 0x54ec9b78, |
| 6539 | 0x7c11402e, | ||
| 6540 | 0x54f4dd78, | 6590 | 0x54f4dd78, |
| 6541 | 0x54eb9d78, | 6591 | 0x54eb9d78, |
| 6542 | 0x7c0903a6, | ||
| 6543 | 0x4e800420, | 6592 | 0x4e800420, |
| 6544 | 0x0006000e, | 6593 | 0x0006000e, |
| 6545 | 0x396b0001, | 6594 | 0x396b0001, |
| @@ -6617,12 +6666,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6617 | 0x80f00000, | 6666 | 0x80f00000, |
| 6618 | 0x3a100004, | 6667 | 0x3a100004, |
| 6619 | 0x54e815ba, | 6668 | 0x54e815ba, |
| 6669 | 0x7c11402e, | ||
| 6670 | 0x7c0903a6, | ||
| 6620 | 0x54ea5d78, | 6671 | 0x54ea5d78, |
| 6621 | 0x54ec9b78, | 6672 | 0x54ec9b78, |
| 6622 | 0x7c11402e, | ||
| 6623 | 0x54f4dd78, | 6673 | 0x54f4dd78, |
| 6624 | 0x54eb9d78, | 6674 | 0x54eb9d78, |
| 6625 | 0x7c0903a6, | ||
| 6626 | 0x4e800420, | 6675 | 0x4e800420, |
| 6627 | 0x0006000f, | 6676 | 0x0006000f, |
| 6628 | 0x38000000, | 6677 | 0x38000000, |
| @@ -6672,12 +6721,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6672 | 0x80f00000, | 6721 | 0x80f00000, |
| 6673 | 0x3a100004, | 6722 | 0x3a100004, |
| 6674 | 0x54e815ba, | 6723 | 0x54e815ba, |
| 6724 | 0x7c11402e, | ||
| 6725 | 0x7c0903a6, | ||
| 6675 | 0x54ea5d78, | 6726 | 0x54ea5d78, |
| 6676 | 0x54ec9b78, | 6727 | 0x54ec9b78, |
| 6677 | 0x7c11402e, | ||
| 6678 | 0x54f4dd78, | 6728 | 0x54f4dd78, |
| 6679 | 0x54eb9d78, | 6729 | 0x54eb9d78, |
| 6680 | 0x7c0903a6, | ||
| 6681 | 0x4e800420, | 6730 | 0x4e800420, |
| 6682 | 0x0006000f, | 6731 | 0x0006000f, |
| 6683 | 0x80120000, | 6732 | 0x80120000, |
| @@ -6708,7 +6757,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6708 | 0x91d20000, | 6757 | 0x91d20000, |
| 6709 | 0x00098200, | 6758 | 0x00098200, |
| 6710 | 0x7e8ea050, | 6759 | 0x7e8ea050, |
| 6711 | 0x92010008, | 6760 | 0x92010020, |
| 6712 | 0x550400fe, | 6761 | 0x550400fe, |
| 6713 | 0x000900ab, | 6762 | 0x000900ab, |
| 6714 | 0x48000001, | 6763 | 0x48000001, |
| @@ -6733,7 +6782,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6733 | 0x6a080000, | 6782 | 0x6a080000, |
| 6734 | 0x00090200, | 6783 | 0x00090200, |
| 6735 | 0x40820000, | 6784 | 0x40820000, |
| 6736 | 0x000508a6, | 6785 | 0x000508a5, |
| 6737 | 0x00060017, | 6786 | 0x00060017, |
| 6738 | 0x80f0fffc, | 6787 | 0x80f0fffc, |
| 6739 | 0x2c0c0008, | 6788 | 0x2c0c0008, |
| @@ -6771,12 +6820,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6771 | 0x81e80000, | 6820 | 0x81e80000, |
| 6772 | 0x00098200, | 6821 | 0x00098200, |
| 6773 | 0x54e815ba, | 6822 | 0x54e815ba, |
| 6823 | 0x7c11402e, | ||
| 6824 | 0x7c0903a6, | ||
| 6774 | 0x54ea5d78, | 6825 | 0x54ea5d78, |
| 6775 | 0x54ec9b78, | 6826 | 0x54ec9b78, |
| 6776 | 0x7c11402e, | ||
| 6777 | 0x54f4dd78, | 6827 | 0x54f4dd78, |
| 6778 | 0x54eb9d78, | 6828 | 0x54eb9d78, |
| 6779 | 0x7c0903a6, | ||
| 6780 | 0x4e800420, | 6829 | 0x4e800420, |
| 6781 | 0x00060010, | 6830 | 0x00060010, |
| 6782 | 0x390cfff8, | 6831 | 0x390cfff8, |
| @@ -6784,7 +6833,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6784 | 0x7ee9412e, | 6833 | 0x7ee9412e, |
| 6785 | 0x48000000, | 6834 | 0x48000000, |
| 6786 | 0x0005000f, | 6835 | 0x0005000f, |
| 6787 | 0x000600a6, | 6836 | 0x000600a5, |
| 6788 | 0x71090000, | 6837 | 0x71090000, |
| 6789 | 0x00090200, | 6838 | 0x00090200, |
| 6790 | 0x40820000, | 6839 | 0x40820000, |
| @@ -6802,7 +6851,7 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6802 | 0x6a080000, | 6851 | 0x6a080000, |
| 6803 | 0x00090200, | 6852 | 0x00090200, |
| 6804 | 0x40820000, | 6853 | 0x40820000, |
| 6805 | 0x000508a6, | 6854 | 0x000508a5, |
| 6806 | 0x80f0fffc, | 6855 | 0x80f0fffc, |
| 6807 | 0x392efff8, | 6856 | 0x392efff8, |
| 6808 | 0x54ea5d78, | 6857 | 0x54ea5d78, |
| @@ -6824,12 +6873,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6824 | 0x81e80000, | 6873 | 0x81e80000, |
| 6825 | 0x00098200, | 6874 | 0x00098200, |
| 6826 | 0x54e815ba, | 6875 | 0x54e815ba, |
| 6876 | 0x7c11402e, | ||
| 6877 | 0x7c0903a6, | ||
| 6827 | 0x54ea5d78, | 6878 | 0x54ea5d78, |
| 6828 | 0x54ec9b78, | 6879 | 0x54ec9b78, |
| 6829 | 0x7c11402e, | ||
| 6830 | 0x54f4dd78, | 6880 | 0x54f4dd78, |
| 6831 | 0x54eb9d78, | 6881 | 0x54eb9d78, |
| 6832 | 0x7c0903a6, | ||
| 6833 | 0x4e800420, | 6882 | 0x4e800420, |
| 6834 | 0x00060010, | 6883 | 0x00060010, |
| 6835 | 0x390cfff8, | 6884 | 0x390cfff8, |
| @@ -6910,12 +6959,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 6910 | 0x80f00000, | 6959 | 0x80f00000, |
| 6911 | 0x3a100004, | 6960 | 0x3a100004, |
| 6912 | 0x54e815ba, | 6961 | 0x54e815ba, |
| 6962 | 0x7c11402e, | ||
| 6963 | 0x7c0903a6, | ||
| 6913 | 0x54ea5d78, | 6964 | 0x54ea5d78, |
| 6914 | 0x54ec9b78, | 6965 | 0x54ec9b78, |
| 6915 | 0x7c11402e, | ||
| 6916 | 0x54f4dd78, | 6966 | 0x54f4dd78, |
| 6917 | 0x54eb9d78, | 6967 | 0x54eb9d78, |
| 6918 | 0x7c0903a6, | ||
| 6919 | 0x4e800420, | 6968 | 0x4e800420, |
| 6920 | 0x0006000f, | 6969 | 0x0006000f, |
| 6921 | 0x7c041800, | 6970 | 0x7c041800, |
| @@ -7008,12 +7057,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 7008 | 0x80f00000, | 7057 | 0x80f00000, |
| 7009 | 0x3a100004, | 7058 | 0x3a100004, |
| 7010 | 0x54e815ba, | 7059 | 0x54e815ba, |
| 7060 | 0x7c11402e, | ||
| 7061 | 0x7c0903a6, | ||
| 7011 | 0x54ea5d78, | 7062 | 0x54ea5d78, |
| 7012 | 0x54ec9b78, | 7063 | 0x54ec9b78, |
| 7013 | 0x7c11402e, | ||
| 7014 | 0x54f4dd78, | 7064 | 0x54f4dd78, |
| 7015 | 0x54eb9d78, | 7065 | 0x54eb9d78, |
| 7016 | 0x7c0903a6, | ||
| 7017 | 0x4e800420, | 7066 | 0x4e800420, |
| 7018 | 0x00000000, | 7067 | 0x00000000, |
| 7019 | 0x0006000f, | 7068 | 0x0006000f, |
| @@ -7046,9 +7095,9 @@ static const unsigned int build_actionlist[7218] = { | |||
| 7046 | 0x00000000, | 7095 | 0x00000000, |
| 7047 | 0x5580007e, | 7096 | 0x5580007e, |
| 7048 | 0x000900ab, | 7097 | 0x000900ab, |
| 7049 | 0x7e100214, | ||
| 7050 | 0x3e100000, | 7098 | 0x3e100000, |
| 7051 | 0x00098200, | 7099 | 0x00098200, |
| 7100 | 0x7e100214, | ||
| 7052 | 0x9114fff8, | 7101 | 0x9114fff8, |
| 7053 | 0x9134fffc, | 7102 | 0x9134fffc, |
| 7054 | 0x00000000, | 7103 | 0x00000000, |
| @@ -7056,12 +7105,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 7056 | 0x80f00000, | 7105 | 0x80f00000, |
| 7057 | 0x3a100004, | 7106 | 0x3a100004, |
| 7058 | 0x54e815ba, | 7107 | 0x54e815ba, |
| 7108 | 0x7c11402e, | ||
| 7109 | 0x7c0903a6, | ||
| 7059 | 0x54ea5d78, | 7110 | 0x54ea5d78, |
| 7060 | 0x54ec9b78, | 7111 | 0x54ec9b78, |
| 7061 | 0x7c11402e, | ||
| 7062 | 0x54f4dd78, | 7112 | 0x54f4dd78, |
| 7063 | 0x54eb9d78, | 7113 | 0x54eb9d78, |
| 7064 | 0x7c0903a6, | ||
| 7065 | 0x4e800420, | 7114 | 0x4e800420, |
| 7066 | 0x00000000, | 7115 | 0x00000000, |
| 7067 | 0x7c810808, | 7116 | 0x7c810808, |
| @@ -7069,30 +7118,30 @@ static const unsigned int build_actionlist[7218] = { | |||
| 7069 | 0x80f00000, | 7118 | 0x80f00000, |
| 7070 | 0x3a100004, | 7119 | 0x3a100004, |
| 7071 | 0x54e815ba, | 7120 | 0x54e815ba, |
| 7121 | 0x7c11402e, | ||
| 7122 | 0x7c0903a6, | ||
| 7072 | 0x54ea5d78, | 7123 | 0x54ea5d78, |
| 7073 | 0x54ec9b78, | 7124 | 0x54ec9b78, |
| 7074 | 0x7c11402e, | ||
| 7075 | 0x54f4dd78, | 7125 | 0x54f4dd78, |
| 7076 | 0x54eb9d78, | 7126 | 0x54eb9d78, |
| 7077 | 0x7c0903a6, | ||
| 7078 | 0x4e800420, | 7127 | 0x4e800420, |
| 7079 | 0x00000000, | 7128 | 0x00000000, |
| 7080 | 0x7c810808, | 7129 | 0x7c810808, |
| 7081 | 0x00000000, | 7130 | 0x00000000, |
| 7082 | 0x5580007e, | 7131 | 0x5580007e, |
| 7083 | 0x000900ab, | 7132 | 0x000900ab, |
| 7084 | 0x7e100214, | ||
| 7085 | 0x3e100000, | 7133 | 0x3e100000, |
| 7086 | 0x00098200, | 7134 | 0x00098200, |
| 7135 | 0x7e100214, | ||
| 7087 | 0x80f00000, | 7136 | 0x80f00000, |
| 7088 | 0x3a100004, | 7137 | 0x3a100004, |
| 7089 | 0x54e815ba, | 7138 | 0x54e815ba, |
| 7139 | 0x7c11402e, | ||
| 7140 | 0x7c0903a6, | ||
| 7090 | 0x54ea5d78, | 7141 | 0x54ea5d78, |
| 7091 | 0x54ec9b78, | 7142 | 0x54ec9b78, |
| 7092 | 0x7c11402e, | ||
| 7093 | 0x54f4dd78, | 7143 | 0x54f4dd78, |
| 7094 | 0x54eb9d78, | 7144 | 0x54eb9d78, |
| 7095 | 0x7c0903a6, | ||
| 7096 | 0x4e800420, | 7145 | 0x4e800420, |
| 7097 | 0x00000000, | 7146 | 0x00000000, |
| 7098 | 0x7c810808, | 7147 | 0x7c810808, |
| @@ -7118,12 +7167,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 7118 | 0x7c810808, | 7167 | 0x7c810808, |
| 7119 | 0x00000000, | 7168 | 0x00000000, |
| 7120 | 0x54e815ba, | 7169 | 0x54e815ba, |
| 7170 | 0x7c11402e, | ||
| 7171 | 0x7c0903a6, | ||
| 7121 | 0x54ea5d78, | 7172 | 0x54ea5d78, |
| 7122 | 0x54ec9b78, | 7173 | 0x54ec9b78, |
| 7123 | 0x7c11402e, | ||
| 7124 | 0x54f4dd78, | 7174 | 0x54f4dd78, |
| 7125 | 0x54eb9d78, | 7175 | 0x54eb9d78, |
| 7126 | 0x7c0903a6, | ||
| 7127 | 0x4e800420, | 7176 | 0x4e800420, |
| 7128 | 0x00000000, | 7177 | 0x00000000, |
| 7129 | 0x0006000d, | 7178 | 0x0006000d, |
| @@ -7174,12 +7223,12 @@ static const unsigned int build_actionlist[7218] = { | |||
| 7174 | 0x0005080b, | 7223 | 0x0005080b, |
| 7175 | 0x0006000d, | 7224 | 0x0006000d, |
| 7176 | 0x54e815ba, | 7225 | 0x54e815ba, |
| 7226 | 0x7c11402e, | ||
| 7227 | 0x7c0903a6, | ||
| 7177 | 0x54ea5d78, | 7228 | 0x54ea5d78, |
| 7178 | 0x54ec9b78, | 7229 | 0x54ec9b78, |
| 7179 | 0x7c11402e, | ||
| 7180 | 0x54f4dd78, | 7230 | 0x54f4dd78, |
| 7181 | 0x54eb9d78, | 7231 | 0x54eb9d78, |
| 7182 | 0x7c0903a6, | ||
| 7183 | 0x4e800420, | 7232 | 0x4e800420, |
| 7184 | 0x0006000e, | 7233 | 0x0006000e, |
| 7185 | 0x38000000, | 7234 | 0x38000000, |
| @@ -7215,11 +7264,11 @@ static const unsigned int build_actionlist[7218] = { | |||
| 7215 | 0x90110000, | 7264 | 0x90110000, |
| 7216 | 0x00098200, | 7265 | 0x00098200, |
| 7217 | 0x4e800421, | 7266 | 0x4e800421, |
| 7218 | 0x81120000, | 7267 | 0x81d20000, |
| 7219 | 0x00098200, | 7268 | 0x00098200, |
| 7220 | 0x546c1800, | 7269 | 0x546c1800, |
| 7221 | 0x000900a1, | 7270 | 0x000900a1, |
| 7222 | 0x81d20000, | 7271 | 0x81120000, |
| 7223 | 0x00098200, | 7272 | 0x00098200, |
| 7224 | 0x38000000, | 7273 | 0x38000000, |
| 7225 | 0x00098200, | 7274 | 0x00098200, |
| @@ -7376,7 +7425,6 @@ enum { | |||
| 7376 | GLOB_vm_ffi_call, | 7425 | GLOB_vm_ffi_call, |
| 7377 | GLOB_BC_ISEQN_Z, | 7426 | GLOB_BC_ISEQN_Z, |
| 7378 | GLOB_BC_ISNEN_Z, | 7427 | GLOB_BC_ISNEN_Z, |
| 7379 | GLOB_BC_MODVNI_Z, | ||
| 7380 | GLOB_BC_MODVN_Z, | 7428 | GLOB_BC_MODVN_Z, |
| 7381 | GLOB_BC_TGETS_Z, | 7429 | GLOB_BC_TGETS_Z, |
| 7382 | GLOB_BC_TSETS_Z, | 7430 | GLOB_BC_TSETS_Z, |
| @@ -7526,7 +7574,6 @@ static const char *const globnames[] = { | |||
| 7526 | "vm_ffi_call", | 7574 | "vm_ffi_call", |
| 7527 | "BC_ISEQN_Z", | 7575 | "BC_ISEQN_Z", |
| 7528 | "BC_ISNEN_Z", | 7576 | "BC_ISNEN_Z", |
| 7529 | "BC_MODVNI_Z", | ||
| 7530 | "BC_MODVN_Z", | 7577 | "BC_MODVN_Z", |
| 7531 | "BC_TGETS_Z", | 7578 | "BC_TGETS_Z", |
| 7532 | "BC_TSETS_Z", | 7579 | "BC_TSETS_Z", |
| @@ -7611,389 +7658,389 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 7611 | { | 7658 | { |
| 7612 | dasm_put(Dst, 0); | 7659 | dasm_put(Dst, 0); |
| 7613 | dasm_put(Dst, 1, FRAME_P, LJ_TTRUE, FRAME_TYPE, FRAME_C, ~LJ_VMST_C, Dt1(->base), DISPATCH_GL(vmstate), 31-3, Dt1(->top)); | 7660 | dasm_put(Dst, 1, FRAME_P, LJ_TTRUE, FRAME_TYPE, FRAME_C, ~LJ_VMST_C, Dt1(->base), DISPATCH_GL(vmstate), 31-3, Dt1(->top)); |
| 7614 | 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); | 7661 | dasm_put(Dst, 55, Dt1(->cframe), 56+(14-14)*4, 128+(14-14)*8, 56+(15-14)*4, 128+(15-14)*8, 56+(16-14)*4, 128+(16-14)*8, 56+(17-14)*4, 128+(17-14)*8, 56+(18-14)*4, 128+(18-14)*8, 56+(19-14)*4, 128+(19-14)*8, 56+(20-14)*4, 128+(20-14)*8, 56+(21-14)*4, 128+(21-14)*8, 56+(22-14)*4, 128+(22-14)*8, 56+(23-14)*4, 128+(23-14)*8); |
| 7615 | 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)); | 7662 | dasm_put(Dst, 105, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4, 128+(31-14)*8, Dt1(->maxstack)); |
| 7616 | 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); | 7663 | dasm_put(Dst, 154, Dt1(->top), 31-3, Dt1(->top), ~LJ_VMST_C, Dt1(->glref), Dt2(->vmstate), LJ_TISNUM, Dt1(->base), Dt1(->glref), LJ_TFALSE, LJ_TNIL, ~LJ_VMST_INTERP, GG_G2DISP); |
| 7617 | 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); | 7664 | dasm_put(Dst, 217, DISPATCH_GL(vmstate), LUA_MINSTACK, Dt1(->base), Dt1(->top), 32-3, Dt1(->base), Dt1(->top), Dt7(->pc), 56+(14-14)*4, 128+(14-14)*8, 56+(15-14)*4, 128+(15-14)*8, 56+(16-14)*4, 128+(16-14)*8, 56+(17-14)*4); |
| 7618 | 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); | 7665 | dasm_put(Dst, 277, 128+(17-14)*8, 56+(18-14)*4, 128+(18-14)*8, 56+(19-14)*4, 128+(19-14)*8, 56+(20-14)*4, 128+(20-14)*8, 56+(21-14)*4, 128+(21-14)*8, 56+(22-14)*4, 128+(22-14)*8, 56+(23-14)*4, 128+(23-14)*8, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4); |
| 7619 | 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)); | 7666 | dasm_put(Dst, 326, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4, 128+(31-14)*8, Dt1(->glref), Dt1(->status), FRAME_CP, CFRAME_RESUME, GG_G2DISP, Dt1(->cframe), Dt1(->base), LJ_TISNUM, Dt1(->top), Dt1(->status), FRAME_TYPE, ~LJ_VMST_INTERP, LJ_TNIL, DISPATCH_GL(vmstate)); |
| 7620 | 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); | 7667 | dasm_put(Dst, 393, 56+(14-14)*4, 128+(14-14)*8, 56+(15-14)*4, 128+(15-14)*8, 56+(16-14)*4, 128+(16-14)*8, 56+(17-14)*4, 128+(17-14)*8, 56+(18-14)*4, 128+(18-14)*8, 56+(19-14)*4, 128+(19-14)*8, 56+(20-14)*4, 128+(20-14)*8, 56+(21-14)*4, 128+(21-14)*8, 56+(22-14)*4, 128+(22-14)*8, 56+(23-14)*4); |
| 7621 | 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); | 7668 | dasm_put(Dst, 440, 128+(23-14)*8, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4, 128+(31-14)*8, FRAME_CP, 56+(14-14)*4, 128+(14-14)*8); |
| 7622 | 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); | 7669 | dasm_put(Dst, 488, 56+(15-14)*4, 128+(15-14)*8, 56+(16-14)*4, 128+(16-14)*8, 56+(17-14)*4, 128+(17-14)*8, 56+(18-14)*4, 128+(18-14)*8, 56+(19-14)*4, 128+(19-14)*8, 56+(20-14)*4, 128+(20-14)*8, 56+(21-14)*4, 128+(21-14)*8, 56+(22-14)*4, 128+(22-14)*8, 56+(23-14)*4, 128+(23-14)*8, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8); |
| 7623 | 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)); | 7670 | dasm_put(Dst, 535, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4, 128+(31-14)*8, FRAME_C, Dt1(->cframe), Dt1(->cframe), Dt1(->glref), GG_G2DISP, Dt1(->base), LJ_TISNUM, Dt1(->top)); |
| 7624 | 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); | 7671 | dasm_put(Dst, 586, ~LJ_VMST_INTERP, LJ_TNIL, DISPATCH_GL(vmstate), LJ_TFUNC, Dt7(->pc), 56+(14-14)*4, 128+(14-14)*8, 56+(15-14)*4, 128+(15-14)*8, 56+(16-14)*4, 128+(16-14)*8, 56+(17-14)*4, 128+(17-14)*8, 56+(18-14)*4, 128+(18-14)*8, 56+(19-14)*4, 128+(19-14)*8, 56+(20-14)*4); |
| 7625 | 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); | 7672 | dasm_put(Dst, 654, 128+(20-14)*8, 56+(21-14)*4, 128+(21-14)*8, 56+(22-14)*4, 128+(22-14)*8, 56+(23-14)*4, 128+(23-14)*8, 56+(24-14)*4, 128+(24-14)*8, 56+(25-14)*4, 128+(25-14)*8, 56+(26-14)*4, 128+(26-14)*8, 56+(27-14)*4, 128+(27-14)*8, 56+(28-14)*4, 128+(28-14)*8, 56+(29-14)*4, 128+(29-14)*8, 56+(30-14)*4, 128+(30-14)*8, 56+(31-14)*4); |
| 7626 | 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)); | 7673 | dasm_put(Dst, 701, 128+(31-14)*8, Dt1(->stack), Dt1(->top), Dt1(->cframe), Dt1(->cframe), Dt1(->glref), FRAME_CP, GG_G2DISP, Dt7(->pc), PC2PROTO(k), Dt1(->base), DISPATCH_GL(tmptv)); |
| 7627 | dasm_put(Dst, 765, LJ_TSTR, DISPATCH_GL(tmptv), LJ_TTAB, DISPATCH_GL(tmptv2), LJ_TSTR); | 7674 | dasm_put(Dst, 775, LJ_TSTR, DISPATCH_GL(tmptv), LJ_TTAB, DISPATCH_GL(tmptv2), LJ_TSTR); |
| 7628 | if (!LJ_DUALNUM) { | 7675 | if (!LJ_DUALNUM) { |
| 7629 | dasm_put(Dst, 790); | 7676 | dasm_put(Dst, 800); |
| 7630 | } | 7677 | } |
| 7631 | dasm_put(Dst, 794, DISPATCH_GL(tmptv)); | 7678 | dasm_put(Dst, 804, DISPATCH_GL(tmptv)); |
| 7632 | if (LJ_DUALNUM) { | 7679 | if (LJ_DUALNUM) { |
| 7633 | dasm_put(Dst, 799); | 7680 | dasm_put(Dst, 809); |
| 7634 | } else { | 7681 | } else { |
| 7635 | dasm_put(Dst, 802); | 7682 | dasm_put(Dst, 812); |
| 7636 | } | 7683 | } |
| 7637 | dasm_put(Dst, 804, Dt1(->base), FRAME_CONT, Dt1(->top), DISPATCH_GL(tmptv), LJ_TSTR, DISPATCH_GL(tmptv), LJ_TTAB, DISPATCH_GL(tmptv2), LJ_TSTR); | 7684 | dasm_put(Dst, 814, Dt1(->base), FRAME_CONT, Dt1(->top), DISPATCH_GL(tmptv), LJ_TSTR, DISPATCH_GL(tmptv), LJ_TTAB, DISPATCH_GL(tmptv2), LJ_TSTR); |
| 7638 | if (!LJ_DUALNUM) { | 7685 | if (!LJ_DUALNUM) { |
| 7639 | dasm_put(Dst, 872); | 7686 | dasm_put(Dst, 882); |
| 7640 | } | 7687 | } |
| 7641 | dasm_put(Dst, 876, DISPATCH_GL(tmptv)); | 7688 | dasm_put(Dst, 886, DISPATCH_GL(tmptv)); |
| 7642 | if (LJ_DUALNUM) { | 7689 | if (LJ_DUALNUM) { |
| 7643 | dasm_put(Dst, 881); | 7690 | dasm_put(Dst, 891); |
| 7644 | } else { | 7691 | } else { |
| 7645 | dasm_put(Dst, 884); | 7692 | dasm_put(Dst, 894); |
| 7646 | } | 7693 | } |
| 7647 | dasm_put(Dst, 886, Dt1(->base), FRAME_CONT, Dt1(->top)); | 7694 | dasm_put(Dst, 896, Dt1(->base), FRAME_CONT, Dt1(->top)); |
| 7648 | if (LJ_DUALNUM) { | 7695 | if (LJ_DUALNUM) { |
| 7649 | dasm_put(Dst, 931); | 7696 | dasm_put(Dst, 941); |
| 7650 | } else { | 7697 | } else { |
| 7651 | dasm_put(Dst, 933); | 7698 | dasm_put(Dst, 943); |
| 7652 | } | 7699 | } |
| 7653 | dasm_put(Dst, 935); | 7700 | dasm_put(Dst, 945); |
| 7654 | if (LJ_DUALNUM) { | 7701 | if (LJ_DUALNUM) { |
| 7655 | dasm_put(Dst, 937); | 7702 | dasm_put(Dst, 947); |
| 7656 | } else { | 7703 | } else { |
| 7657 | dasm_put(Dst, 939); | 7704 | dasm_put(Dst, 949); |
| 7658 | } | 7705 | } |
| 7659 | dasm_put(Dst, 941, Dt1(->base), -(BCBIAS_J*4 >> 16), LJ_TTRUE, LJ_TTRUE, Dt1(->base)); | 7706 | dasm_put(Dst, 951, Dt1(->base), -(BCBIAS_J*4 >> 16), LJ_TTRUE, LJ_TTRUE, Dt1(->base)); |
| 7660 | #if LJ_HASFFI | 7707 | #if LJ_HASFFI |
| 7661 | dasm_put(Dst, 1004, Dt1(->base)); | 7708 | dasm_put(Dst, 1014, Dt1(->base)); |
| 7662 | #endif | 7709 | #endif |
| 7663 | dasm_put(Dst, 1015); | 7710 | dasm_put(Dst, 1025); |
| 7664 | if (LJ_DUALNUM) { | 7711 | if (LJ_DUALNUM) { |
| 7665 | dasm_put(Dst, 1022); | 7712 | dasm_put(Dst, 1032); |
| 7666 | } | 7713 | } |
| 7667 | dasm_put(Dst, 1027); | 7714 | dasm_put(Dst, 1037); |
| 7668 | if (LJ_DUALNUM) { | 7715 | if (LJ_DUALNUM) { |
| 7669 | dasm_put(Dst, 1041); | 7716 | dasm_put(Dst, 1051); |
| 7670 | } | 7717 | } |
| 7671 | dasm_put(Dst, 1044); | 7718 | dasm_put(Dst, 1054); |
| 7672 | if (LJ_DUALNUM) { | 7719 | if (LJ_DUALNUM) { |
| 7673 | dasm_put(Dst, 1047); | 7720 | dasm_put(Dst, 1057); |
| 7674 | } | 7721 | } |
| 7675 | dasm_put(Dst, 1050, Dt1(->base), FRAME_CONT); | 7722 | dasm_put(Dst, 1060, Dt1(->base), FRAME_CONT); |
| 7676 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 7723 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 7677 | dasm_put(Dst, 1074); | 7724 | dasm_put(Dst, 1084); |
| 7678 | #endif | 7725 | #endif |
| 7679 | dasm_put(Dst, 1076, Dt1(->base)); | 7726 | dasm_put(Dst, 1086, Dt1(->base)); |
| 7680 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 7727 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 7681 | dasm_put(Dst, 1084); | 7728 | dasm_put(Dst, 1094); |
| 7682 | #else | 7729 | #else |
| 7683 | dasm_put(Dst, 1091); | 7730 | dasm_put(Dst, 1101); |
| 7684 | #endif | 7731 | #endif |
| 7685 | dasm_put(Dst, 1094, Dt1(->base), Dt7(->pc), Dt1(->base), Dt1(->base)); | 7732 | dasm_put(Dst, 1104, Dt1(->base), Dt7(->pc), Dt1(->base), Dt1(->base)); |
| 7686 | #if LJ_HASJIT | 7733 | #if LJ_HASJIT |
| 7687 | dasm_put(Dst, 1142); | 7734 | dasm_put(Dst, 1152); |
| 7688 | #endif | 7735 | #endif |
| 7689 | dasm_put(Dst, 1144); | 7736 | dasm_put(Dst, 1154); |
| 7690 | #if LJ_HASJIT | 7737 | #if LJ_HASJIT |
| 7691 | dasm_put(Dst, 1146, BC_JFORI); | 7738 | dasm_put(Dst, 1156, BC_JFORI); |
| 7692 | #endif | 7739 | #endif |
| 7693 | dasm_put(Dst, 1149); | 7740 | dasm_put(Dst, 1159); |
| 7694 | #if LJ_HASJIT | 7741 | #if LJ_HASJIT |
| 7695 | dasm_put(Dst, 1151, BC_JFORI); | 7742 | dasm_put(Dst, 1161, BC_JFORI); |
| 7696 | #endif | 7743 | #endif |
| 7697 | dasm_put(Dst, 1154, BC_FORI, LJ_TFALSE, ~LJ_TISNUM+1, 31-3, Dt8(->upvalue), LJ_TTAB, Dt6(->metatable)); | 7744 | dasm_put(Dst, 1164, BC_FORI, LJ_TFALSE, ~LJ_TISNUM+1, 31-3, Dt8(->upvalue), LJ_TTAB, Dt6(->metatable)); |
| 7698 | dasm_put(Dst, 1217, 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)); | 7745 | dasm_put(Dst, 1227, LJ_TNIL, DISPATCH_GL(gcroot[GCROOT_MMNAME+MM_metatable]), Dt6(->hmask), LJ_TTAB, Dt5(->hash), Dt6(->node), 31-5, 31-3, DtB(->key), 4+offsetof(Node, key), DtB(->val), 4+offsetof(Node, val), LJ_TSTR, DtB(->next)); |
| 7699 | dasm_put(Dst, 1265, 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)); | 7746 | dasm_put(Dst, 1275, LJ_TNIL, LJ_TUDATA, ~LJ_TISNUM+1, 31-2, DISPATCH_GL(gcroot[GCROOT_BASEMT]), LJ_TTAB, Dt6(->metatable), LJ_TTAB, Dt6(->marked), LJ_GC_BLACK, Dt6(->metatable)); |
| 7700 | dasm_put(Dst, 1320, DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist), LJ_TTAB, LJ_TSTR, DISPATCH_GL(gcroot[GCROOT_BASEMT_NUM]), Dt1(->base)); | 7747 | dasm_put(Dst, 1330, DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist), LJ_TTAB, LJ_TSTR, DISPATCH_GL(gcroot[GCROOT_BASEMT_NUM]), Dt1(->base)); |
| 7701 | dasm_put(Dst, 1380, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); | 7748 | dasm_put(Dst, 1390, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); |
| 7702 | if (LJ_DUALNUM) { | 7749 | if (LJ_DUALNUM) { |
| 7703 | dasm_put(Dst, 1390); | 7750 | dasm_put(Dst, 1400); |
| 7704 | } else { | 7751 | } else { |
| 7705 | dasm_put(Dst, 1393); | 7752 | dasm_put(Dst, 1403); |
| 7706 | } | 7753 | } |
| 7707 | dasm_put(Dst, 1396, LJ_TSTR, LJ_TTAB, Dt1(->base), Dt1(->top), LJ_TNIL, (2+1)*8, LJ_TTAB); | 7754 | dasm_put(Dst, 1406, LJ_TSTR, LJ_TTAB, Dt1(->base), Dt1(->top), LJ_TNIL, (2+1)*8, LJ_TTAB); |
| 7708 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 7755 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 7709 | dasm_put(Dst, 1447, Dt6(->metatable), Dt8(->upvalue[0])); | 7756 | dasm_put(Dst, 1457, Dt6(->metatable), Dt8(->upvalue[0])); |
| 7710 | #else | 7757 | #else |
| 7711 | dasm_put(Dst, 1456, Dt8(->upvalue[0])); | 7758 | dasm_put(Dst, 1466, Dt8(->upvalue[0])); |
| 7712 | #endif | 7759 | #endif |
| 7713 | dasm_put(Dst, 1460, (3+1)*8); | 7760 | dasm_put(Dst, 1470, (3+1)*8); |
| 7714 | if (LJ_DUALNUM) { | 7761 | if (LJ_DUALNUM) { |
| 7715 | dasm_put(Dst, 1472); | 7762 | dasm_put(Dst, 1482); |
| 7716 | } else { | 7763 | } else { |
| 7717 | dasm_put(Dst, 1474); | 7764 | dasm_put(Dst, 1484); |
| 7718 | } | 7765 | } |
| 7719 | dasm_put(Dst, 1476, LJ_TTAB); | 7766 | dasm_put(Dst, 1486, LJ_TTAB); |
| 7720 | if (LJ_DUALNUM) { | 7767 | if (LJ_DUALNUM) { |
| 7721 | dasm_put(Dst, 1483); | 7768 | dasm_put(Dst, 1493); |
| 7722 | } else { | 7769 | } else { |
| 7723 | dasm_put(Dst, 1488); | 7770 | dasm_put(Dst, 1498); |
| 7724 | } | 7771 | } |
| 7725 | dasm_put(Dst, 1500, Dt6(->asize), Dt6(->array)); | 7772 | dasm_put(Dst, 1510, Dt6(->asize), Dt6(->array)); |
| 7726 | if (!LJ_DUALNUM) { | 7773 | if (!LJ_DUALNUM) { |
| 7727 | dasm_put(Dst, 1505); | 7774 | dasm_put(Dst, 1515); |
| 7728 | } | 7775 | } |
| 7729 | dasm_put(Dst, 1507); | 7776 | dasm_put(Dst, 1517); |
| 7730 | if (LJ_DUALNUM) { | 7777 | if (LJ_DUALNUM) { |
| 7731 | dasm_put(Dst, 1511, 31-3); | 7778 | dasm_put(Dst, 1521, 31-3); |
| 7732 | } else { | 7779 | } else { |
| 7733 | dasm_put(Dst, 1516, 31-3); | 7780 | dasm_put(Dst, 1526, 31-3); |
| 7734 | } | 7781 | } |
| 7735 | dasm_put(Dst, 1520, LJ_TNIL, (0+1)*8, (2+1)*8, Dt6(->hmask), (0+1)*8, (0+1)*8, LJ_TTAB); | 7782 | dasm_put(Dst, 1530, LJ_TNIL, (0+1)*8, (2+1)*8, Dt6(->hmask), (0+1)*8, (0+1)*8, LJ_TTAB); |
| 7736 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 7783 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 7737 | dasm_put(Dst, 1568, Dt6(->metatable), Dt8(->upvalue[0])); | 7784 | dasm_put(Dst, 1578, Dt6(->metatable), Dt8(->upvalue[0])); |
| 7738 | #else | 7785 | #else |
| 7739 | dasm_put(Dst, 1577, Dt8(->upvalue[0])); | 7786 | dasm_put(Dst, 1587, Dt8(->upvalue[0])); |
| 7740 | #endif | 7787 | #endif |
| 7741 | if (LJ_DUALNUM) { | 7788 | if (LJ_DUALNUM) { |
| 7742 | dasm_put(Dst, 1581); | 7789 | dasm_put(Dst, 1591); |
| 7743 | } else { | 7790 | } else { |
| 7744 | dasm_put(Dst, 1583); | 7791 | dasm_put(Dst, 1593); |
| 7745 | } | 7792 | } |
| 7746 | dasm_put(Dst, 1585, (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)); | 7793 | dasm_put(Dst, 1595, (3+1)*8, DISPATCH_GL(hookmask), 32-HOOK_ACTIVE_SHIFT, 8+FRAME_PCALL, DISPATCH_GL(hookmask), LJ_TFUNC, 32-HOOK_ACTIVE_SHIFT, 16+FRAME_PCALL, LJ_TTHREAD, Dt1(->status), Dt1(->cframe)); |
| 7747 | dasm_put(Dst, 1646, 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)); | 7794 | dasm_put(Dst, 1656, Dt1(->top), LUA_YIELD, Dt1(->base), Dt1(->maxstack), Dt1(->base), Dt1(->top), Dt1(->top), Dt1(->base), LUA_YIELD, Dt1(->top), ~LJ_VMST_INTERP, Dt1(->base), DISPATCH_GL(vmstate)); |
| 7748 | dasm_put(Dst, 1708, Dt1(->maxstack), Dt1(->top), FRAME_TYPE, LJ_TTRUE, FRAME_TYPE, LJ_TFALSE, Dt1(->top), (2+1)*8, 32-3); | 7795 | dasm_put(Dst, 1718, Dt1(->maxstack), Dt1(->top), FRAME_TYPE, LJ_TTRUE, FRAME_TYPE, LJ_TFALSE, Dt1(->top), (2+1)*8, 32-3); |
| 7749 | dasm_put(Dst, 1771, 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); | 7796 | dasm_put(Dst, 1781, Dt8(->upvalue[0].gcr), Dt1(->status), Dt1(->cframe), Dt1(->top), LUA_YIELD, Dt1(->base), Dt1(->maxstack), Dt1(->base), Dt1(->top), Dt1(->top), Dt1(->base), LUA_YIELD, Dt1(->top), ~LJ_VMST_INTERP); |
| 7750 | dasm_put(Dst, 1830, Dt1(->base), DISPATCH_GL(vmstate), Dt1(->maxstack), Dt1(->top), FRAME_TYPE, 32-3, Dt1(->cframe)); | 7797 | dasm_put(Dst, 1840, Dt1(->base), DISPATCH_GL(vmstate), Dt1(->maxstack), Dt1(->top), FRAME_TYPE, 32-3, Dt1(->cframe)); |
| 7751 | dasm_put(Dst, 1887, Dt1(->base), CFRAME_RESUME, Dt1(->top), LUA_YIELD, Dt1(->cframe), Dt1(->status)); | 7798 | dasm_put(Dst, 1897, Dt1(->base), CFRAME_RESUME, Dt1(->top), LUA_YIELD, Dt1(->cframe), Dt1(->status)); |
| 7752 | if (LJ_DUALNUM) { | 7799 | if (LJ_DUALNUM) { |
| 7753 | dasm_put(Dst, 1912); | 7800 | dasm_put(Dst, 1922); |
| 7754 | } | 7801 | } |
| 7755 | dasm_put(Dst, 1933, (1+1)*8, FRAME_TYPE); | 7802 | dasm_put(Dst, 1943, (1+1)*8, FRAME_TYPE); |
| 7756 | if (LJ_DUALNUM) { | 7803 | if (LJ_DUALNUM) { |
| 7757 | dasm_put(Dst, 1975, 31-11, 32-21, 31-11); | 7804 | dasm_put(Dst, 1985, 31-11, 32-21, 31-11); |
| 7758 | dasm_put(Dst, 2057, 31-11, 32-21, 31-11); | 7805 | dasm_put(Dst, 2067, 31-11, 32-21, 31-11); |
| 7759 | } else { | 7806 | } else { |
| 7760 | dasm_put(Dst, 2111); | 7807 | dasm_put(Dst, 2121); |
| 7761 | } | 7808 | } |
| 7762 | dasm_put(Dst, 2138); | 7809 | dasm_put(Dst, 2148); |
| 7763 | dasm_put(Dst, 2197); | 7810 | dasm_put(Dst, 2207); |
| 7764 | dasm_put(Dst, 2255); | 7811 | dasm_put(Dst, 2265); |
| 7765 | dasm_put(Dst, 2311, Dt8(->upvalue[0])); | 7812 | dasm_put(Dst, 2321, Dt8(->upvalue[0])); |
| 7766 | dasm_put(Dst, 2377); | 7813 | dasm_put(Dst, 2387); |
| 7767 | if (LJ_DUALNUM) { | 7814 | if (LJ_DUALNUM) { |
| 7768 | dasm_put(Dst, 2381); | 7815 | dasm_put(Dst, 2391); |
| 7769 | } else { | 7816 | } else { |
| 7770 | dasm_put(Dst, 2396); | 7817 | dasm_put(Dst, 2406); |
| 7771 | } | 7818 | } |
| 7772 | dasm_put(Dst, 2414, DISPATCH_GL(tmptv), DISPATCH_GL(tmptv)); | 7819 | dasm_put(Dst, 2424, DISPATCH_GL(tmptv), DISPATCH_GL(tmptv)); |
| 7773 | if (!LJ_DUALNUM) { | 7820 | if (!LJ_DUALNUM) { |
| 7774 | dasm_put(Dst, 2436); | 7821 | dasm_put(Dst, 2446); |
| 7775 | } | 7822 | } |
| 7776 | dasm_put(Dst, 2441, (2+1)*8); | 7823 | dasm_put(Dst, 2451, (2+1)*8); |
| 7777 | if (LJ_DUALNUM) { | 7824 | if (LJ_DUALNUM) { |
| 7778 | dasm_put(Dst, 2445); | 7825 | dasm_put(Dst, 2455); |
| 7779 | } else { | 7826 | } else { |
| 7780 | dasm_put(Dst, 2448); | 7827 | dasm_put(Dst, 2458); |
| 7781 | } | 7828 | } |
| 7782 | dasm_put(Dst, 2450, (2+1)*8); | 7829 | dasm_put(Dst, 2460, (2+1)*8); |
| 7783 | if (LJ_DUALNUM) { | 7830 | if (LJ_DUALNUM) { |
| 7784 | dasm_put(Dst, 2472); | 7831 | dasm_put(Dst, 2482); |
| 7785 | } else { | 7832 | } else { |
| 7786 | dasm_put(Dst, 2541); | 7833 | dasm_put(Dst, 2551); |
| 7787 | } | 7834 | } |
| 7788 | if (LJ_DUALNUM) { | 7835 | if (LJ_DUALNUM) { |
| 7789 | dasm_put(Dst, 2566); | 7836 | dasm_put(Dst, 2576); |
| 7790 | } else { | 7837 | } else { |
| 7791 | dasm_put(Dst, 2635); | 7838 | dasm_put(Dst, 2645); |
| 7792 | } | 7839 | } |
| 7793 | dasm_put(Dst, 2660, LJ_TSTR, Dt5(->len), LJ_TSTR, Dt5(->len)); | 7840 | dasm_put(Dst, 2670, LJ_TSTR, Dt5(->len), LJ_TSTR, Dt5(->len)); |
| 7794 | if (LJ_DUALNUM) { | 7841 | if (LJ_DUALNUM) { |
| 7795 | dasm_put(Dst, 2687, Dt5([1]), (0+1)*8); | 7842 | dasm_put(Dst, 2697, Dt5([1]), (0+1)*8); |
| 7796 | } else { | 7843 | } else { |
| 7797 | dasm_put(Dst, 2699, Dt5([1]), 31-3); | 7844 | dasm_put(Dst, 2709, Dt5([1]), 31-3); |
| 7798 | } | 7845 | } |
| 7799 | dasm_put(Dst, 2715, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); | 7846 | dasm_put(Dst, 2725, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); |
| 7800 | if (LJ_DUALNUM) { | 7847 | if (LJ_DUALNUM) { |
| 7801 | dasm_put(Dst, 2726); | 7848 | dasm_put(Dst, 2736); |
| 7802 | } else { | 7849 | } else { |
| 7803 | dasm_put(Dst, 2734); | 7850 | dasm_put(Dst, 2744); |
| 7804 | } | 7851 | } |
| 7805 | dasm_put(Dst, 2745, Dt1(->base), Dt1(->base), LJ_TSTR, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); | 7852 | dasm_put(Dst, 2755, Dt1(->base), Dt1(->base), LJ_TSTR, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); |
| 7806 | if (!LJ_DUALNUM) { | 7853 | if (!LJ_DUALNUM) { |
| 7807 | dasm_put(Dst, 2773); | 7854 | dasm_put(Dst, 2783); |
| 7808 | } | 7855 | } |
| 7809 | dasm_put(Dst, 2775); | 7856 | dasm_put(Dst, 2785); |
| 7810 | if (LJ_DUALNUM) { | 7857 | if (LJ_DUALNUM) { |
| 7811 | dasm_put(Dst, 2781); | 7858 | dasm_put(Dst, 2791); |
| 7812 | } else { | 7859 | } else { |
| 7813 | dasm_put(Dst, 2783); | 7860 | dasm_put(Dst, 2793); |
| 7814 | } | 7861 | } |
| 7815 | dasm_put(Dst, 2785); | 7862 | dasm_put(Dst, 2795); |
| 7816 | if (LJ_DUALNUM) { | 7863 | if (LJ_DUALNUM) { |
| 7817 | dasm_put(Dst, 2789); | 7864 | dasm_put(Dst, 2799); |
| 7818 | } else { | 7865 | } else { |
| 7819 | dasm_put(Dst, 2798); | 7866 | dasm_put(Dst, 2808); |
| 7820 | } | 7867 | } |
| 7821 | dasm_put(Dst, 2809, LJ_TSTR); | 7868 | dasm_put(Dst, 2819, LJ_TSTR); |
| 7822 | if (!LJ_DUALNUM) { | 7869 | if (!LJ_DUALNUM) { |
| 7823 | dasm_put(Dst, 2814); | 7870 | dasm_put(Dst, 2824); |
| 7824 | } | 7871 | } |
| 7825 | dasm_put(Dst, 2818, Dt5(->len), sizeof(GCstr)-1, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); | 7872 | dasm_put(Dst, 2828, Dt5(->len), sizeof(GCstr)-1, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold)); |
| 7826 | if (LJ_DUALNUM) { | 7873 | if (LJ_DUALNUM) { |
| 7827 | dasm_put(Dst, 2868); | 7874 | dasm_put(Dst, 2878); |
| 7828 | } else { | 7875 | } else { |
| 7829 | dasm_put(Dst, 2870); | 7876 | dasm_put(Dst, 2880); |
| 7830 | } | 7877 | } |
| 7831 | dasm_put(Dst, 2872, LJ_TSTR); | 7878 | dasm_put(Dst, 2882, LJ_TSTR); |
| 7832 | if (LJ_DUALNUM) { | 7879 | if (LJ_DUALNUM) { |
| 7833 | dasm_put(Dst, 2879); | 7880 | dasm_put(Dst, 2889); |
| 7834 | } else { | 7881 | } else { |
| 7835 | dasm_put(Dst, 2883); | 7882 | dasm_put(Dst, 2893); |
| 7836 | } | 7883 | } |
| 7837 | dasm_put(Dst, 2890, Dt5(->len), DISPATCH_GL(tmpbuf.sz), Dt5([1]), DISPATCH_GL(tmpbuf.buf), DISPATCH_GL(strempty), LJ_TSTR, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, DISPATCH_GL(tmpbuf.sz)); | 7884 | dasm_put(Dst, 2900, Dt5(->len), DISPATCH_GL(tmpbuf.sz), Dt5([1]), DISPATCH_GL(tmpbuf.buf), DISPATCH_GL(strempty), LJ_TSTR, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, DISPATCH_GL(tmpbuf.sz)); |
| 7838 | dasm_put(Dst, 2943, 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)); | 7885 | dasm_put(Dst, 2953, Dt5(->len), sizeof(GCstr), DISPATCH_GL(tmpbuf.buf), DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, DISPATCH_GL(tmpbuf.sz), Dt5(->len), sizeof(GCstr), DISPATCH_GL(tmpbuf.buf)); |
| 7839 | dasm_put(Dst, 3001, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, DISPATCH_GL(tmpbuf.sz), Dt5(->len), sizeof(GCstr), DISPATCH_GL(tmpbuf.buf), LJ_TTAB); | 7886 | dasm_put(Dst, 3011, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), LJ_TSTR, DISPATCH_GL(tmpbuf.sz), Dt5(->len), sizeof(GCstr), DISPATCH_GL(tmpbuf.buf), LJ_TTAB); |
| 7840 | if (LJ_DUALNUM) { | 7887 | if (LJ_DUALNUM) { |
| 7841 | dasm_put(Dst, 3070); | ||
| 7842 | } else { | ||
| 7843 | dasm_put(Dst, 3080); | 7888 | dasm_put(Dst, 3080); |
| 7844 | } | ||
| 7845 | dasm_put(Dst, 3093); | ||
| 7846 | if (LJ_DUALNUM) { | ||
| 7847 | dasm_put(Dst, 3099); | ||
| 7848 | } else { | 7889 | } else { |
| 7849 | dasm_put(Dst, 3101); | 7890 | dasm_put(Dst, 3090); |
| 7850 | } | 7891 | } |
| 7851 | dasm_put(Dst, 3103); | 7892 | dasm_put(Dst, 3103); |
| 7852 | if (LJ_DUALNUM) { | 7893 | if (LJ_DUALNUM) { |
| 7853 | dasm_put(Dst, 3107); | 7894 | dasm_put(Dst, 3109); |
| 7854 | } else { | 7895 | } else { |
| 7855 | dasm_put(Dst, 3110); | 7896 | dasm_put(Dst, 3111); |
| 7856 | } | 7897 | } |
| 7857 | dasm_put(Dst, 3116); | 7898 | dasm_put(Dst, 3113); |
| 7858 | if (LJ_DUALNUM) { | 7899 | if (LJ_DUALNUM) { |
| 7859 | dasm_put(Dst, 3121); | 7900 | dasm_put(Dst, 3117); |
| 7860 | } else { | 7901 | } else { |
| 7861 | dasm_put(Dst, 3131); | 7902 | dasm_put(Dst, 3120); |
| 7862 | } | 7903 | } |
| 7863 | dasm_put(Dst, 3144); | 7904 | dasm_put(Dst, 3126); |
| 7864 | if (LJ_DUALNUM) { | 7905 | if (LJ_DUALNUM) { |
| 7865 | dasm_put(Dst, 3150); | 7906 | dasm_put(Dst, 3131); |
| 7866 | } else { | 7907 | } else { |
| 7867 | dasm_put(Dst, 3152); | 7908 | dasm_put(Dst, 3141); |
| 7868 | } | 7909 | } |
| 7869 | dasm_put(Dst, 3154); | 7910 | dasm_put(Dst, 3154); |
| 7870 | if (LJ_DUALNUM) { | 7911 | if (LJ_DUALNUM) { |
| 7871 | dasm_put(Dst, 3158); | 7912 | dasm_put(Dst, 3160); |
| 7872 | } else { | 7913 | } else { |
| 7873 | dasm_put(Dst, 3161); | 7914 | dasm_put(Dst, 3162); |
| 7874 | } | 7915 | } |
| 7875 | dasm_put(Dst, 3167); | 7916 | dasm_put(Dst, 3164); |
| 7876 | if (LJ_DUALNUM) { | 7917 | if (LJ_DUALNUM) { |
| 7877 | dasm_put(Dst, 3172); | 7918 | dasm_put(Dst, 3168); |
| 7878 | } else { | 7919 | } else { |
| 7879 | dasm_put(Dst, 3182); | 7920 | dasm_put(Dst, 3171); |
| 7880 | } | 7921 | } |
| 7881 | dasm_put(Dst, 3195); | 7922 | dasm_put(Dst, 3177); |
| 7882 | if (LJ_DUALNUM) { | 7923 | if (LJ_DUALNUM) { |
| 7883 | dasm_put(Dst, 3201); | 7924 | dasm_put(Dst, 3182); |
| 7884 | } else { | 7925 | } else { |
| 7885 | dasm_put(Dst, 3203); | 7926 | dasm_put(Dst, 3192); |
| 7886 | } | 7927 | } |
| 7887 | dasm_put(Dst, 3205); | 7928 | dasm_put(Dst, 3205); |
| 7888 | if (LJ_DUALNUM) { | 7929 | if (LJ_DUALNUM) { |
| 7889 | dasm_put(Dst, 3209); | 7930 | dasm_put(Dst, 3211); |
| 7890 | } else { | 7931 | } else { |
| 7891 | dasm_put(Dst, 3212); | 7932 | dasm_put(Dst, 3213); |
| 7892 | } | 7933 | } |
| 7893 | dasm_put(Dst, 3218); | 7934 | dasm_put(Dst, 3215); |
| 7894 | if (LJ_DUALNUM) { | 7935 | if (LJ_DUALNUM) { |
| 7895 | dasm_put(Dst, 3223); | 7936 | dasm_put(Dst, 3219); |
| 7896 | } else { | 7937 | } else { |
| 7897 | dasm_put(Dst, 3233); | 7938 | dasm_put(Dst, 3222); |
| 7898 | } | 7939 | } |
| 7899 | dasm_put(Dst, 3246); | 7940 | dasm_put(Dst, 3228); |
| 7900 | if (LJ_DUALNUM) { | 7941 | if (LJ_DUALNUM) { |
| 7901 | dasm_put(Dst, 3253); | 7942 | dasm_put(Dst, 3233); |
| 7902 | } else { | 7943 | } else { |
| 7903 | dasm_put(Dst, 3263); | 7944 | dasm_put(Dst, 3243); |
| 7904 | } | 7945 | } |
| 7905 | dasm_put(Dst, 3276); | 7946 | dasm_put(Dst, 3256); |
| 7906 | if (LJ_DUALNUM) { | 7947 | if (LJ_DUALNUM) { |
| 7907 | dasm_put(Dst, 3280); | 7948 | dasm_put(Dst, 3263); |
| 7908 | } else { | 7949 | } else { |
| 7909 | dasm_put(Dst, 3295); | 7950 | dasm_put(Dst, 3273); |
| 7910 | } | 7951 | } |
| 7911 | dasm_put(Dst, 3316); | 7952 | dasm_put(Dst, 3286); |
| 7912 | if (LJ_DUALNUM) { | 7953 | if (LJ_DUALNUM) { |
| 7913 | dasm_put(Dst, 3321); | 7954 | dasm_put(Dst, 3290); |
| 7914 | } else { | 7955 | } else { |
| 7915 | dasm_put(Dst, 3336); | 7956 | dasm_put(Dst, 3305); |
| 7916 | } | 7957 | } |
| 7917 | dasm_put(Dst, 3357); | 7958 | dasm_put(Dst, 3326); |
| 7918 | if (LJ_DUALNUM) { | 7959 | if (LJ_DUALNUM) { |
| 7919 | dasm_put(Dst, 3362); | 7960 | dasm_put(Dst, 3331); |
| 7920 | } else { | 7961 | } else { |
| 7921 | dasm_put(Dst, 3377); | 7962 | dasm_put(Dst, 3346); |
| 7922 | } | 7963 | } |
| 7923 | dasm_put(Dst, 3398); | 7964 | dasm_put(Dst, 3367); |
| 7924 | if (LJ_DUALNUM) { | 7965 | if (LJ_DUALNUM) { |
| 7925 | dasm_put(Dst, 3403); | 7966 | dasm_put(Dst, 3372); |
| 7926 | } else { | 7967 | } else { |
| 7927 | dasm_put(Dst, 3418); | 7968 | dasm_put(Dst, 3387); |
| 7928 | } | 7969 | } |
| 7929 | dasm_put(Dst, 3439); | 7970 | dasm_put(Dst, 3408); |
| 7930 | if (LJ_DUALNUM) { | 7971 | if (LJ_DUALNUM) { |
| 7931 | dasm_put(Dst, 3443); | 7972 | dasm_put(Dst, 3413); |
| 7932 | } else { | 7973 | } else { |
| 7933 | dasm_put(Dst, 3458); | 7974 | dasm_put(Dst, 3428); |
| 7934 | } | 7975 | } |
| 7935 | dasm_put(Dst, 3479); | 7976 | dasm_put(Dst, 3449); |
| 7936 | if (LJ_DUALNUM) { | 7977 | if (LJ_DUALNUM) { |
| 7937 | dasm_put(Dst, 3484); | 7978 | dasm_put(Dst, 3453); |
| 7938 | } else { | 7979 | } else { |
| 7939 | dasm_put(Dst, 3494); | 7980 | dasm_put(Dst, 3468); |
| 7940 | } | 7981 | } |
| 7982 | dasm_put(Dst, 3489); | ||
| 7941 | if (LJ_DUALNUM) { | 7983 | if (LJ_DUALNUM) { |
| 7942 | dasm_put(Dst, 3507); | 7984 | dasm_put(Dst, 3494); |
| 7943 | } else { | 7985 | } else { |
| 7944 | dasm_put(Dst, 3510); | 7986 | dasm_put(Dst, 3504); |
| 7945 | } | 7987 | } |
| 7946 | dasm_put(Dst, 3516); | ||
| 7947 | if (LJ_DUALNUM) { | 7988 | if (LJ_DUALNUM) { |
| 7948 | dasm_put(Dst, 3524); | 7989 | dasm_put(Dst, 3517); |
| 7990 | } else { | ||
| 7991 | dasm_put(Dst, 3520); | ||
| 7949 | } | 7992 | } |
| 7950 | dasm_put(Dst, 3532); | 7993 | dasm_put(Dst, 3526); |
| 7951 | if (LJ_DUALNUM) { | 7994 | if (LJ_DUALNUM) { |
| 7952 | dasm_put(Dst, 3534); | 7995 | dasm_put(Dst, 3534); |
| 7953 | } | 7996 | } |
| 7954 | dasm_put(Dst, 3542, Dt8(->f), 8*LUA_MINSTACK, Dt1(->maxstack), Dt1(->base), Dt1(->top), Dt1(->base), 31-3, Dt1(->top), Dt7(->pc), FRAME_TYPE, LUA_MINSTACK); | 7997 | dasm_put(Dst, 3542); |
| 7955 | dasm_put(Dst, 3605, Dt1(->base), Dt1(->base), Dt1(->top), Dt1(->base), Dt1(->top)); | 7998 | if (LJ_DUALNUM) { |
| 7999 | dasm_put(Dst, 3544); | ||
| 8000 | } | ||
| 8001 | dasm_put(Dst, 3552, Dt8(->f), 8*LUA_MINSTACK, Dt1(->maxstack), Dt1(->base), Dt1(->top), Dt1(->base), 31-3, Dt1(->top), Dt7(->pc), FRAME_TYPE, LUA_MINSTACK); | ||
| 8002 | dasm_put(Dst, 3615, Dt1(->base), Dt1(->base), Dt1(->top), Dt1(->base), Dt1(->top)); | ||
| 7956 | #if LJ_HASJIT | 8003 | #if LJ_HASJIT |
| 7957 | dasm_put(Dst, 3631); | 8004 | dasm_put(Dst, 3641); |
| 7958 | #endif | 8005 | #endif |
| 7959 | dasm_put(Dst, 3633, 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)); | 8006 | dasm_put(Dst, 3643, 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)); |
| 7960 | dasm_put(Dst, 3680, GG_DISP2STATIC); | 8007 | dasm_put(Dst, 3690, GG_DISP2STATIC); |
| 7961 | #if LJ_HASJIT | 8008 | #if LJ_HASJIT |
| 7962 | dasm_put(Dst, 3698); | 8009 | dasm_put(Dst, 3708); |
| 7963 | #endif | 8010 | #endif |
| 7964 | dasm_put(Dst, 3700); | 8011 | dasm_put(Dst, 3710); |
| 7965 | #if LJ_HASJIT | 8012 | #if LJ_HASJIT |
| 7966 | dasm_put(Dst, 3703); | 8013 | dasm_put(Dst, 3713); |
| 7967 | #endif | 8014 | #endif |
| 7968 | dasm_put(Dst, 3706); | 8015 | dasm_put(Dst, 3716); |
| 7969 | #if LJ_HASJIT | 8016 | #if LJ_HASJIT |
| 7970 | dasm_put(Dst, 3708); | 8017 | dasm_put(Dst, 3718); |
| 7971 | #endif | 8018 | #endif |
| 7972 | dasm_put(Dst, 3711, Dt1(->base), Dt1(->top), Dt1(->base), Dt1(->top)); | 8019 | dasm_put(Dst, 3721, Dt1(->base), Dt1(->top), Dt1(->base), Dt1(->top)); |
| 7973 | #if LJ_HASJIT | 8020 | #if LJ_HASJIT |
| 7974 | dasm_put(Dst, 3733); | 8021 | dasm_put(Dst, 3743); |
| 7975 | #endif | 8022 | #endif |
| 7976 | dasm_put(Dst, 3735); | 8023 | dasm_put(Dst, 3745); |
| 7977 | #if LJ_HASJIT | 8024 | #if LJ_HASJIT |
| 7978 | dasm_put(Dst, 3737); | 8025 | dasm_put(Dst, 3747); |
| 7979 | #endif | 8026 | #endif |
| 7980 | dasm_put(Dst, 3739); | 8027 | dasm_put(Dst, 3749); |
| 7981 | #if LJ_HASJIT | 8028 | #if LJ_HASJIT |
| 7982 | dasm_put(Dst, 3747); | 8029 | dasm_put(Dst, 3757); |
| 7983 | #endif | 8030 | #endif |
| 7984 | dasm_put(Dst, 3750); | 8031 | dasm_put(Dst, 3760); |
| 7985 | #if LJ_HASJIT | 8032 | #if LJ_HASJIT |
| 7986 | dasm_put(Dst, 3763); | 8033 | dasm_put(Dst, 3773); |
| 7987 | #endif | 8034 | #endif |
| 7988 | dasm_put(Dst, 3765); | 8035 | dasm_put(Dst, 3775); |
| 7989 | #if LJ_HASJIT | 8036 | #if LJ_HASJIT |
| 7990 | dasm_put(Dst, 3767); | 8037 | dasm_put(Dst, 3777); |
| 7991 | #endif | 8038 | #endif |
| 7992 | dasm_put(Dst, 3769); | 8039 | dasm_put(Dst, 3779); |
| 7993 | #if LJ_HASFFI | 8040 | #if LJ_HASFFI |
| 7994 | #define DtE(_V) (int)(ptrdiff_t)&(((CCallState *)0)_V) | 8041 | #define DtE(_V) (int)(ptrdiff_t)&(((CCallState *)0)_V) |
| 7995 | dasm_put(Dst, 3833, DtE(->spadj), DtE(->nsp), DtE(->nfpr), DtE(->stack), 31-2, DtE(->fpr[0]), DtE(->fpr[1]), DtE(->fpr[2]), DtE(->fpr[3]), DtE(->fpr[4]), DtE(->fpr[5]), DtE(->fpr[6]), DtE(->fpr[7]), DtE(->func), DtE(->gpr[1]), DtE(->gpr[2])); | 8042 | dasm_put(Dst, 3843, DtE(->spadj), DtE(->nsp), DtE(->nfpr), DtE(->stack), 31-2, DtE(->fpr[0]), DtE(->fpr[1]), DtE(->fpr[2]), DtE(->fpr[3]), DtE(->fpr[4]), DtE(->fpr[5]), DtE(->fpr[6]), DtE(->fpr[7]), DtE(->func), DtE(->gpr[1]), DtE(->gpr[2])); |
| 7996 | dasm_put(Dst, 3889, DtE(->gpr[3]), DtE(->gpr[4]), DtE(->gpr[5]), DtE(->gpr[6]), DtE(->gpr[7]), DtE(->gpr[0]), DtE(->gpr[0]), DtE(->fpr[0]), DtE(->gpr[1]), DtE(->gpr[2]), DtE(->gpr[3])); | 8043 | dasm_put(Dst, 3899, DtE(->gpr[3]), DtE(->gpr[4]), DtE(->gpr[5]), DtE(->gpr[6]), DtE(->gpr[7]), DtE(->gpr[0]), DtE(->gpr[0]), DtE(->fpr[0]), DtE(->gpr[1]), DtE(->gpr[2]), DtE(->gpr[3])); |
| 7997 | #endif | 8044 | #endif |
| 7998 | } | 8045 | } |
| 7999 | 8046 | ||
| @@ -8001,7 +8048,7 @@ static void build_subroutines(BuildCtx *ctx) | |||
| 8001 | static void build_ins(BuildCtx *ctx, BCOp op, int defop) | 8048 | static void build_ins(BuildCtx *ctx, BCOp op, int defop) |
| 8002 | { | 8049 | { |
| 8003 | int vk = 0; | 8050 | int vk = 0; |
| 8004 | dasm_put(Dst, 3920, defop); | 8051 | dasm_put(Dst, 3930, defop); |
| 8005 | 8052 | ||
| 8006 | switch (op) { | 8053 | switch (op) { |
| 8007 | 8054 | ||
| @@ -8011,224 +8058,224 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 8011 | 8058 | ||
| 8012 | case BC_ISLT: case BC_ISGE: case BC_ISLE: case BC_ISGT: | 8059 | case BC_ISLT: case BC_ISGE: case BC_ISLE: case BC_ISGT: |
| 8013 | if (LJ_DUALNUM) { | 8060 | if (LJ_DUALNUM) { |
| 8014 | dasm_put(Dst, 3922, -(BCBIAS_J*4 >> 16)); | 8061 | dasm_put(Dst, 3932, -(BCBIAS_J*4 >> 16)); |
| 8015 | if (op == BC_ISLT) { | 8062 | if (op == BC_ISLT) { |
| 8016 | dasm_put(Dst, 3939); | 8063 | dasm_put(Dst, 3949); |
| 8017 | } else if (op == BC_ISGE) { | 8064 | } else if (op == BC_ISGE) { |
| 8018 | dasm_put(Dst, 3942); | 8065 | dasm_put(Dst, 3952); |
| 8019 | } else if (op == BC_ISLE) { | 8066 | } else if (op == BC_ISLE) { |
| 8020 | dasm_put(Dst, 3945); | 8067 | dasm_put(Dst, 3955); |
| 8021 | } else { | 8068 | } else { |
| 8022 | dasm_put(Dst, 3948); | 8069 | dasm_put(Dst, 3958); |
| 8023 | } | 8070 | } |
| 8024 | dasm_put(Dst, 3951); | 8071 | dasm_put(Dst, 3961); |
| 8025 | if (op == BC_ISLT) { | 8072 | if (op == BC_ISLT) { |
| 8026 | dasm_put(Dst, 3990); | 8073 | dasm_put(Dst, 4000); |
| 8027 | } else if (op == BC_ISGE) { | 8074 | } else if (op == BC_ISGE) { |
| 8028 | dasm_put(Dst, 3993); | 8075 | dasm_put(Dst, 4003); |
| 8029 | } else if (op == BC_ISLE) { | 8076 | } else if (op == BC_ISLE) { |
| 8030 | dasm_put(Dst, 3996); | 8077 | dasm_put(Dst, 4006); |
| 8031 | } else { | 8078 | } else { |
| 8032 | dasm_put(Dst, 4000); | 8079 | dasm_put(Dst, 4010); |
| 8033 | } | 8080 | } |
| 8034 | dasm_put(Dst, 4004); | 8081 | dasm_put(Dst, 4014); |
| 8035 | } else { | 8082 | } else { |
| 8036 | dasm_put(Dst, 4007, -(BCBIAS_J*4 >> 16)); | 8083 | dasm_put(Dst, 4017, -(BCBIAS_J*4 >> 16)); |
| 8037 | if (op == BC_ISLT) { | 8084 | if (op == BC_ISLT) { |
| 8038 | dasm_put(Dst, 4024); | 8085 | dasm_put(Dst, 4034); |
| 8039 | } else if (op == BC_ISGE) { | 8086 | } else if (op == BC_ISGE) { |
| 8040 | dasm_put(Dst, 4027); | 8087 | dasm_put(Dst, 4037); |
| 8041 | } else if (op == BC_ISLE) { | 8088 | } else if (op == BC_ISLE) { |
| 8042 | dasm_put(Dst, 4030); | 8089 | dasm_put(Dst, 4040); |
| 8043 | } else { | 8090 | } else { |
| 8044 | dasm_put(Dst, 4034); | 8091 | dasm_put(Dst, 4044); |
| 8045 | } | 8092 | } |
| 8046 | dasm_put(Dst, 4038); | 8093 | dasm_put(Dst, 4048); |
| 8047 | } | 8094 | } |
| 8048 | break; | 8095 | break; |
| 8049 | 8096 | ||
| 8050 | case BC_ISEQV: case BC_ISNEV: | 8097 | case BC_ISEQV: case BC_ISNEV: |
| 8051 | vk = op == BC_ISEQV; | 8098 | vk = op == BC_ISEQV; |
| 8052 | if (LJ_DUALNUM) { | 8099 | if (LJ_DUALNUM) { |
| 8053 | dasm_put(Dst, 4051, -(BCBIAS_J*4 >> 16)); | 8100 | dasm_put(Dst, 4061, -(BCBIAS_J*4 >> 16)); |
| 8054 | if (vk) { | 8101 | if (vk) { |
| 8055 | dasm_put(Dst, 4064); | 8102 | dasm_put(Dst, 4074); |
| 8056 | } else { | 8103 | } else { |
| 8057 | dasm_put(Dst, 4067); | 8104 | dasm_put(Dst, 4077); |
| 8058 | } | 8105 | } |
| 8059 | } else { | 8106 | } else { |
| 8060 | dasm_put(Dst, 4070, -(BCBIAS_J*4 >> 16)); | 8107 | dasm_put(Dst, 4080, -(BCBIAS_J*4 >> 16)); |
| 8061 | if (vk) { | 8108 | if (vk) { |
| 8062 | dasm_put(Dst, 4087); | 8109 | dasm_put(Dst, 4097); |
| 8063 | } else { | 8110 | } else { |
| 8064 | dasm_put(Dst, 4091); | 8111 | dasm_put(Dst, 4101); |
| 8065 | } | 8112 | } |
| 8066 | dasm_put(Dst, 4095); | 8113 | dasm_put(Dst, 4105); |
| 8067 | } | 8114 | } |
| 8068 | dasm_put(Dst, 4107); | 8115 | dasm_put(Dst, 4117); |
| 8069 | if (!LJ_DUALNUM) { | 8116 | if (!LJ_DUALNUM) { |
| 8070 | dasm_put(Dst, 4109); | 8117 | dasm_put(Dst, 4119); |
| 8071 | } | 8118 | } |
| 8072 | if (LJ_HASFFI) { | 8119 | if (LJ_HASFFI) { |
| 8073 | dasm_put(Dst, 4112, LJ_TCDATA, LJ_TCDATA); | 8120 | dasm_put(Dst, 4122, LJ_TCDATA, LJ_TCDATA); |
| 8074 | } | 8121 | } |
| 8075 | dasm_put(Dst, 4117, ~LJ_TISPRI); | 8122 | dasm_put(Dst, 4127, ~LJ_TISPRI); |
| 8076 | if (LJ_HASFFI) { | 8123 | if (LJ_HASFFI) { |
| 8077 | dasm_put(Dst, 4122); | 8124 | dasm_put(Dst, 4132); |
| 8078 | } | 8125 | } |
| 8079 | dasm_put(Dst, 4124, ~LJ_TISTABUD); | 8126 | dasm_put(Dst, 4134, ~LJ_TISTABUD); |
| 8080 | if (LJ_HASFFI) { | 8127 | if (LJ_HASFFI) { |
| 8081 | dasm_put(Dst, 4127); | 8128 | dasm_put(Dst, 4137); |
| 8082 | } | 8129 | } |
| 8083 | dasm_put(Dst, 4130); | 8130 | dasm_put(Dst, 4140); |
| 8084 | if (vk) { | 8131 | if (vk) { |
| 8085 | dasm_put(Dst, 4138); | 8132 | dasm_put(Dst, 4148); |
| 8086 | } else { | 8133 | } else { |
| 8087 | dasm_put(Dst, 4143); | 8134 | dasm_put(Dst, 4153); |
| 8088 | } | 8135 | } |
| 8089 | if (LJ_DUALNUM) { | 8136 | if (LJ_DUALNUM) { |
| 8090 | dasm_put(Dst, 4148); | 8137 | dasm_put(Dst, 4158); |
| 8091 | } else { | 8138 | } else { |
| 8092 | dasm_put(Dst, 4163); | 8139 | dasm_put(Dst, 4173); |
| 8093 | } | 8140 | } |
| 8094 | dasm_put(Dst, 4166, Dt6(->metatable), 1-vk, Dt6(->nomm), 1<<MM_eq); | 8141 | dasm_put(Dst, 4176, Dt6(->metatable), 1-vk, Dt6(->nomm), 1<<MM_eq); |
| 8095 | break; | 8142 | break; |
| 8096 | 8143 | ||
| 8097 | case BC_ISEQS: case BC_ISNES: | 8144 | case BC_ISEQS: case BC_ISNES: |
| 8098 | vk = op == BC_ISEQS; | 8145 | vk = op == BC_ISEQS; |
| 8099 | dasm_put(Dst, 4185, 32-1); | 8146 | dasm_put(Dst, 4195, 32-1); |
| 8100 | if (LJ_HASFFI) { | 8147 | if (LJ_HASFFI) { |
| 8101 | dasm_put(Dst, 4193, LJ_TCDATA); | 8148 | dasm_put(Dst, 4203, LJ_TCDATA); |
| 8102 | } | 8149 | } |
| 8103 | dasm_put(Dst, 4196, LJ_TSTR); | 8150 | dasm_put(Dst, 4206, LJ_TSTR); |
| 8104 | if (LJ_HASFFI) { | 8151 | if (LJ_HASFFI) { |
| 8105 | dasm_put(Dst, 4200); | 8152 | dasm_put(Dst, 4210); |
| 8106 | } | 8153 | } |
| 8107 | dasm_put(Dst, 4203, -(BCBIAS_J*4 >> 16)); | 8154 | dasm_put(Dst, 4213, -(BCBIAS_J*4 >> 16)); |
| 8108 | if (vk) { | 8155 | if (vk) { |
| 8109 | dasm_put(Dst, 4211); | 8156 | dasm_put(Dst, 4221); |
| 8110 | } else { | 8157 | } else { |
| 8111 | dasm_put(Dst, 4213); | 8158 | dasm_put(Dst, 4223); |
| 8112 | } | 8159 | } |
| 8113 | dasm_put(Dst, 4215); | 8160 | dasm_put(Dst, 4225); |
| 8114 | break; | 8161 | break; |
| 8115 | 8162 | ||
| 8116 | case BC_ISEQN: case BC_ISNEN: | 8163 | case BC_ISEQN: case BC_ISNEN: |
| 8117 | vk = op == BC_ISEQN; | 8164 | vk = op == BC_ISEQN; |
| 8118 | if (LJ_DUALNUM) { | 8165 | if (LJ_DUALNUM) { |
| 8119 | dasm_put(Dst, 4227, -(BCBIAS_J*4 >> 16)); | 8166 | dasm_put(Dst, 4237, -(BCBIAS_J*4 >> 16)); |
| 8120 | if (vk) { | 8167 | if (vk) { |
| 8121 | dasm_put(Dst, 4239); | 8168 | dasm_put(Dst, 4249); |
| 8122 | } else { | 8169 | } else { |
| 8123 | dasm_put(Dst, 4241); | 8170 | dasm_put(Dst, 4251); |
| 8124 | } | 8171 | } |
| 8125 | dasm_put(Dst, 4243); | 8172 | dasm_put(Dst, 4253); |
| 8126 | } else { | 8173 | } else { |
| 8127 | if (vk) { | 8174 | if (vk) { |
| 8128 | dasm_put(Dst, 4250); | 8175 | dasm_put(Dst, 4260); |
| 8129 | } else { | 8176 | } else { |
| 8130 | dasm_put(Dst, 4252); | 8177 | dasm_put(Dst, 4262); |
| 8131 | } | 8178 | } |
| 8132 | dasm_put(Dst, 4254, -(BCBIAS_J*4 >> 16)); | 8179 | dasm_put(Dst, 4264, -(BCBIAS_J*4 >> 16)); |
| 8133 | } | 8180 | } |
| 8134 | if (vk) { | 8181 | if (vk) { |
| 8135 | dasm_put(Dst, 4267); | 8182 | dasm_put(Dst, 4277); |
| 8136 | if (!LJ_HASFFI) { | 8183 | if (!LJ_HASFFI) { |
| 8137 | dasm_put(Dst, 4272); | 8184 | dasm_put(Dst, 4282); |
| 8138 | } | 8185 | } |
| 8139 | } else { | 8186 | } else { |
| 8140 | dasm_put(Dst, 4274); | 8187 | dasm_put(Dst, 4284); |
| 8141 | if (!LJ_HASFFI) { | 8188 | if (!LJ_HASFFI) { |
| 8142 | dasm_put(Dst, 4278); | 8189 | dasm_put(Dst, 4288); |
| 8143 | } | 8190 | } |
| 8144 | dasm_put(Dst, 4280); | 8191 | dasm_put(Dst, 4290); |
| 8145 | } | 8192 | } |
| 8146 | dasm_put(Dst, 4283); | 8193 | dasm_put(Dst, 4293); |
| 8147 | if (LJ_HASFFI) { | 8194 | if (LJ_HASFFI) { |
| 8148 | dasm_put(Dst, 4294, LJ_TCDATA); | 8195 | dasm_put(Dst, 4304, LJ_TCDATA); |
| 8149 | } | 8196 | } |
| 8150 | if (LJ_DUALNUM) { | 8197 | if (LJ_DUALNUM) { |
| 8151 | dasm_put(Dst, 4302); | 8198 | dasm_put(Dst, 4312); |
| 8152 | } | 8199 | } |
| 8153 | break; | 8200 | break; |
| 8154 | 8201 | ||
| 8155 | case BC_ISEQP: case BC_ISNEP: | 8202 | case BC_ISEQP: case BC_ISNEP: |
| 8156 | vk = op == BC_ISEQP; | 8203 | vk = op == BC_ISEQP; |
| 8157 | dasm_put(Dst, 4326, 32-3); | 8204 | dasm_put(Dst, 4336, 32-3); |
| 8158 | if (LJ_HASFFI) { | 8205 | if (LJ_HASFFI) { |
| 8159 | dasm_put(Dst, 4333, LJ_TCDATA); | 8206 | dasm_put(Dst, 4343, LJ_TCDATA); |
| 8160 | } | 8207 | } |
| 8161 | dasm_put(Dst, 4336); | 8208 | dasm_put(Dst, 4346); |
| 8162 | if (LJ_HASFFI) { | 8209 | if (LJ_HASFFI) { |
| 8163 | dasm_put(Dst, 4338); | 8210 | dasm_put(Dst, 4348); |
| 8164 | } | 8211 | } |
| 8165 | dasm_put(Dst, 4341, -(BCBIAS_J*4 >> 16)); | 8212 | dasm_put(Dst, 4351, -(BCBIAS_J*4 >> 16)); |
| 8166 | if (vk) { | 8213 | if (vk) { |
| 8167 | dasm_put(Dst, 4347); | 8214 | dasm_put(Dst, 4357); |
| 8168 | } else { | 8215 | } else { |
| 8169 | dasm_put(Dst, 4349); | 8216 | dasm_put(Dst, 4359); |
| 8170 | } | 8217 | } |
| 8171 | dasm_put(Dst, 4351); | 8218 | dasm_put(Dst, 4361); |
| 8172 | break; | 8219 | break; |
| 8173 | 8220 | ||
| 8174 | /* -- Unary test and copy ops ------------------------------------------- */ | 8221 | /* -- Unary test and copy ops ------------------------------------------- */ |
| 8175 | 8222 | ||
| 8176 | case BC_ISTC: case BC_ISFC: case BC_IST: case BC_ISF: | 8223 | case BC_ISTC: case BC_ISFC: case BC_IST: case BC_ISF: |
| 8177 | dasm_put(Dst, 4363); | 8224 | dasm_put(Dst, 4373); |
| 8178 | if (op == BC_IST || op == BC_ISF) { | 8225 | if (op == BC_IST || op == BC_ISF) { |
| 8179 | dasm_put(Dst, 4367, LJ_TTRUE, -(BCBIAS_J*4 >> 16)); | 8226 | dasm_put(Dst, 4377, LJ_TTRUE, -(BCBIAS_J*4 >> 16)); |
| 8180 | if (op == BC_IST) { | 8227 | if (op == BC_IST) { |
| 8181 | dasm_put(Dst, 4374); | 8228 | dasm_put(Dst, 4384); |
| 8182 | } else { | 8229 | } else { |
| 8183 | dasm_put(Dst, 4376); | 8230 | dasm_put(Dst, 4386); |
| 8184 | } | 8231 | } |
| 8185 | dasm_put(Dst, 4378); | 8232 | dasm_put(Dst, 4388); |
| 8186 | } else { | 8233 | } else { |
| 8187 | dasm_put(Dst, 4380, LJ_TFALSE); | 8234 | dasm_put(Dst, 4390, LJ_TFALSE); |
| 8188 | if (op == BC_ISTC) { | 8235 | if (op == BC_ISTC) { |
| 8189 | dasm_put(Dst, 4385); | 8236 | dasm_put(Dst, 4395); |
| 8190 | } else { | 8237 | } else { |
| 8191 | dasm_put(Dst, 4388); | 8238 | dasm_put(Dst, 4398); |
| 8192 | } | 8239 | } |
| 8193 | dasm_put(Dst, 4391, -(BCBIAS_J*4 >> 16)); | 8240 | dasm_put(Dst, 4401, -(BCBIAS_J*4 >> 16)); |
| 8194 | } | 8241 | } |
| 8195 | dasm_put(Dst, 4398); | 8242 | dasm_put(Dst, 4408); |
| 8196 | break; | 8243 | break; |
| 8197 | 8244 | ||
| 8198 | /* -- Unary ops --------------------------------------------------------- */ | 8245 | /* -- Unary ops --------------------------------------------------------- */ |
| 8199 | 8246 | ||
| 8200 | case BC_MOV: | 8247 | case BC_MOV: |
| 8201 | dasm_put(Dst, 4409); | 8248 | dasm_put(Dst, 4419); |
| 8202 | break; | 8249 | break; |
| 8203 | case BC_NOT: | 8250 | case BC_NOT: |
| 8204 | dasm_put(Dst, 4422, LJ_TTRUE); | 8251 | dasm_put(Dst, 4432, LJ_TTRUE); |
| 8205 | break; | 8252 | break; |
| 8206 | case BC_UNM: | 8253 | case BC_UNM: |
| 8207 | dasm_put(Dst, 4438); | 8254 | dasm_put(Dst, 4448); |
| 8208 | if (LJ_DUALNUM) { | 8255 | if (LJ_DUALNUM) { |
| 8209 | dasm_put(Dst, 4442); | 8256 | dasm_put(Dst, 4452); |
| 8210 | } | 8257 | } |
| 8211 | dasm_put(Dst, 4470); | 8258 | dasm_put(Dst, 4480); |
| 8212 | if (LJ_DUALNUM) { | 8259 | if (LJ_DUALNUM) { |
| 8213 | dasm_put(Dst, 4480); | 8260 | dasm_put(Dst, 4490); |
| 8214 | } else { | 8261 | } else { |
| 8215 | dasm_put(Dst, 4483); | 8262 | dasm_put(Dst, 4493); |
| 8216 | } | 8263 | } |
| 8217 | break; | 8264 | break; |
| 8218 | case BC_LEN: | 8265 | case BC_LEN: |
| 8219 | dasm_put(Dst, 4492, LJ_TSTR, Dt5(->len)); | 8266 | dasm_put(Dst, 4502, LJ_TSTR, Dt5(->len)); |
| 8220 | if (LJ_DUALNUM) { | 8267 | if (LJ_DUALNUM) { |
| 8221 | dasm_put(Dst, 4502); | 8268 | dasm_put(Dst, 4512); |
| 8222 | } else { | 8269 | } else { |
| 8223 | dasm_put(Dst, 4507); | 8270 | dasm_put(Dst, 4517); |
| 8224 | } | 8271 | } |
| 8225 | dasm_put(Dst, 4514, LJ_TTAB); | 8272 | dasm_put(Dst, 4524, LJ_TTAB); |
| 8226 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 8273 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 8227 | dasm_put(Dst, 4528, Dt6(->metatable)); | 8274 | dasm_put(Dst, 4538, Dt6(->metatable)); |
| 8228 | #endif | 8275 | #endif |
| 8229 | dasm_put(Dst, 4535); | 8276 | dasm_put(Dst, 4545); |
| 8230 | #ifdef LUAJIT_ENABLE_LUA52COMPAT | 8277 | #ifdef LUAJIT_ENABLE_LUA52COMPAT |
| 8231 | dasm_put(Dst, 4541, Dt6(->nomm), 1<<MM_len); | 8278 | dasm_put(Dst, 4551, Dt6(->nomm), 1<<MM_len); |
| 8232 | #endif | 8279 | #endif |
| 8233 | break; | 8280 | break; |
| 8234 | 8281 | ||
| @@ -8240,77 +8287,77 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 8240 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8287 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8241 | switch (vk) { | 8288 | switch (vk) { |
| 8242 | case 0: | 8289 | case 0: |
| 8243 | dasm_put(Dst, 4551); | 8290 | dasm_put(Dst, 4561); |
| 8244 | break; | 8291 | break; |
| 8245 | case 1: | 8292 | case 1: |
| 8246 | dasm_put(Dst, 4557); | 8293 | dasm_put(Dst, 4567); |
| 8247 | break; | 8294 | break; |
| 8248 | default: | 8295 | default: |
| 8249 | dasm_put(Dst, 4563); | 8296 | dasm_put(Dst, 4573); |
| 8250 | break; | 8297 | break; |
| 8251 | } | 8298 | } |
| 8252 | dasm_put(Dst, 4569); | 8299 | dasm_put(Dst, 4579); |
| 8253 | switch (vk) { | 8300 | switch (vk) { |
| 8254 | case 0: | 8301 | case 0: |
| 8255 | dasm_put(Dst, 4595); | 8302 | dasm_put(Dst, 4606); |
| 8256 | break; | 8303 | break; |
| 8257 | case 1: | 8304 | case 1: |
| 8258 | dasm_put(Dst, 4598); | 8305 | dasm_put(Dst, 4609); |
| 8259 | break; | 8306 | break; |
| 8260 | default: | 8307 | default: |
| 8261 | dasm_put(Dst, 4601); | 8308 | dasm_put(Dst, 4612); |
| 8262 | break; | 8309 | break; |
| 8263 | } | 8310 | } |
| 8264 | dasm_put(Dst, 4604); | 8311 | dasm_put(Dst, 4615); |
| 8265 | if (vk == 1) { | 8312 | if (vk == 1) { |
| 8266 | dasm_put(Dst, 4606); | 8313 | dasm_put(Dst, 4617); |
| 8267 | } else { | 8314 | } else { |
| 8268 | dasm_put(Dst, 4610); | 8315 | dasm_put(Dst, 4621); |
| 8269 | } | 8316 | } |
| 8270 | switch (vk) { | 8317 | switch (vk) { |
| 8271 | case 0: | 8318 | case 0: |
| 8272 | dasm_put(Dst, 4614); | 8319 | dasm_put(Dst, 4625); |
| 8273 | break; | 8320 | break; |
| 8274 | case 1: | 8321 | case 1: |
| 8275 | dasm_put(Dst, 4617); | 8322 | dasm_put(Dst, 4628); |
| 8276 | break; | 8323 | break; |
| 8277 | default: | 8324 | default: |
| 8278 | dasm_put(Dst, 4620); | 8325 | dasm_put(Dst, 4631); |
| 8279 | break; | 8326 | break; |
| 8280 | } | 8327 | } |
| 8281 | dasm_put(Dst, 4623); | 8328 | dasm_put(Dst, 4634); |
| 8282 | } else { | 8329 | } else { |
| 8283 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8330 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8284 | switch (vk) { | 8331 | switch (vk) { |
| 8285 | case 0: | 8332 | case 0: |
| 8286 | dasm_put(Dst, 4630); | 8333 | dasm_put(Dst, 4641); |
| 8287 | if (LJ_DUALNUM) { | 8334 | if (LJ_DUALNUM) { |
| 8288 | dasm_put(Dst, 4632); | 8335 | dasm_put(Dst, 4643); |
| 8289 | } | 8336 | } |
| 8290 | dasm_put(Dst, 4634); | 8337 | dasm_put(Dst, 4645); |
| 8291 | if (LJ_DUALNUM) { | 8338 | if (LJ_DUALNUM) { |
| 8292 | dasm_put(Dst, 4637); | 8339 | dasm_put(Dst, 4648); |
| 8293 | } else { | 8340 | } else { |
| 8294 | dasm_put(Dst, 4643); | 8341 | dasm_put(Dst, 4654); |
| 8295 | } | 8342 | } |
| 8296 | break; | 8343 | break; |
| 8297 | case 1: | 8344 | case 1: |
| 8298 | dasm_put(Dst, 4647); | 8345 | dasm_put(Dst, 4658); |
| 8299 | if (LJ_DUALNUM) { | 8346 | if (LJ_DUALNUM) { |
| 8300 | dasm_put(Dst, 4649); | 8347 | dasm_put(Dst, 4660); |
| 8301 | } | 8348 | } |
| 8302 | dasm_put(Dst, 4651); | 8349 | dasm_put(Dst, 4662); |
| 8303 | if (LJ_DUALNUM) { | 8350 | if (LJ_DUALNUM) { |
| 8304 | dasm_put(Dst, 4654); | 8351 | dasm_put(Dst, 4665); |
| 8305 | } else { | 8352 | } else { |
| 8306 | dasm_put(Dst, 4660); | 8353 | dasm_put(Dst, 4671); |
| 8307 | } | 8354 | } |
| 8308 | break; | 8355 | break; |
| 8309 | default: | 8356 | default: |
| 8310 | dasm_put(Dst, 4664); | 8357 | dasm_put(Dst, 4675); |
| 8311 | break; | 8358 | break; |
| 8312 | } | 8359 | } |
| 8313 | dasm_put(Dst, 4674); | 8360 | dasm_put(Dst, 4685); |
| 8314 | } | 8361 | } |
| 8315 | break; | 8362 | break; |
| 8316 | case BC_SUBVN: case BC_SUBNV: case BC_SUBVV: | 8363 | case BC_SUBVN: case BC_SUBNV: case BC_SUBVV: |
| @@ -8318,77 +8365,77 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 8318 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8365 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8319 | switch (vk) { | 8366 | switch (vk) { |
| 8320 | case 0: | 8367 | case 0: |
| 8321 | dasm_put(Dst, 4687); | 8368 | dasm_put(Dst, 4698); |
| 8322 | break; | 8369 | break; |
| 8323 | case 1: | 8370 | case 1: |
| 8324 | dasm_put(Dst, 4693); | 8371 | dasm_put(Dst, 4704); |
| 8325 | break; | 8372 | break; |
| 8326 | default: | 8373 | default: |
| 8327 | dasm_put(Dst, 4699); | 8374 | dasm_put(Dst, 4710); |
| 8328 | break; | 8375 | break; |
| 8329 | } | 8376 | } |
| 8330 | dasm_put(Dst, 4705); | 8377 | dasm_put(Dst, 4716); |
| 8331 | switch (vk) { | 8378 | switch (vk) { |
| 8332 | case 0: | 8379 | case 0: |
| 8333 | dasm_put(Dst, 4731); | 8380 | dasm_put(Dst, 4743); |
| 8334 | break; | 8381 | break; |
| 8335 | case 1: | 8382 | case 1: |
| 8336 | dasm_put(Dst, 4734); | 8383 | dasm_put(Dst, 4746); |
| 8337 | break; | 8384 | break; |
| 8338 | default: | 8385 | default: |
| 8339 | dasm_put(Dst, 4737); | 8386 | dasm_put(Dst, 4749); |
| 8340 | break; | 8387 | break; |
| 8341 | } | 8388 | } |
| 8342 | dasm_put(Dst, 4740); | 8389 | dasm_put(Dst, 4752); |
| 8343 | if (vk == 1) { | 8390 | if (vk == 1) { |
| 8344 | dasm_put(Dst, 4742); | 8391 | dasm_put(Dst, 4754); |
| 8345 | } else { | 8392 | } else { |
| 8346 | dasm_put(Dst, 4746); | 8393 | dasm_put(Dst, 4758); |
| 8347 | } | 8394 | } |
| 8348 | switch (vk) { | 8395 | switch (vk) { |
| 8349 | case 0: | 8396 | case 0: |
| 8350 | dasm_put(Dst, 4750); | 8397 | dasm_put(Dst, 4762); |
| 8351 | break; | 8398 | break; |
| 8352 | case 1: | 8399 | case 1: |
| 8353 | dasm_put(Dst, 4753); | 8400 | dasm_put(Dst, 4765); |
| 8354 | break; | 8401 | break; |
| 8355 | default: | 8402 | default: |
| 8356 | dasm_put(Dst, 4756); | 8403 | dasm_put(Dst, 4768); |
| 8357 | break; | 8404 | break; |
| 8358 | } | 8405 | } |
| 8359 | dasm_put(Dst, 4759); | 8406 | dasm_put(Dst, 4771); |
| 8360 | } else { | 8407 | } else { |
| 8361 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8408 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8362 | switch (vk) { | 8409 | switch (vk) { |
| 8363 | case 0: | 8410 | case 0: |
| 8364 | dasm_put(Dst, 4766); | 8411 | dasm_put(Dst, 4778); |
| 8365 | if (LJ_DUALNUM) { | 8412 | if (LJ_DUALNUM) { |
| 8366 | dasm_put(Dst, 4768); | 8413 | dasm_put(Dst, 4780); |
| 8367 | } | 8414 | } |
| 8368 | dasm_put(Dst, 4770); | 8415 | dasm_put(Dst, 4782); |
| 8369 | if (LJ_DUALNUM) { | 8416 | if (LJ_DUALNUM) { |
| 8370 | dasm_put(Dst, 4773); | 8417 | dasm_put(Dst, 4785); |
| 8371 | } else { | 8418 | } else { |
| 8372 | dasm_put(Dst, 4779); | 8419 | dasm_put(Dst, 4791); |
| 8373 | } | 8420 | } |
| 8374 | break; | 8421 | break; |
| 8375 | case 1: | 8422 | case 1: |
| 8376 | dasm_put(Dst, 4783); | 8423 | dasm_put(Dst, 4795); |
| 8377 | if (LJ_DUALNUM) { | 8424 | if (LJ_DUALNUM) { |
| 8378 | dasm_put(Dst, 4785); | 8425 | dasm_put(Dst, 4797); |
| 8379 | } | 8426 | } |
| 8380 | dasm_put(Dst, 4787); | 8427 | dasm_put(Dst, 4799); |
| 8381 | if (LJ_DUALNUM) { | 8428 | if (LJ_DUALNUM) { |
| 8382 | dasm_put(Dst, 4790); | 8429 | dasm_put(Dst, 4802); |
| 8383 | } else { | 8430 | } else { |
| 8384 | dasm_put(Dst, 4796); | 8431 | dasm_put(Dst, 4808); |
| 8385 | } | 8432 | } |
| 8386 | break; | 8433 | break; |
| 8387 | default: | 8434 | default: |
| 8388 | dasm_put(Dst, 4800); | 8435 | dasm_put(Dst, 4812); |
| 8389 | break; | 8436 | break; |
| 8390 | } | 8437 | } |
| 8391 | dasm_put(Dst, 4810); | 8438 | dasm_put(Dst, 4822); |
| 8392 | } | 8439 | } |
| 8393 | break; | 8440 | break; |
| 8394 | case BC_MULVN: case BC_MULNV: case BC_MULVV: | 8441 | case BC_MULVN: case BC_MULNV: case BC_MULVV: |
| @@ -8396,194 +8443,188 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 8396 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8443 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8397 | switch (vk) { | 8444 | switch (vk) { |
| 8398 | case 0: | 8445 | case 0: |
| 8399 | dasm_put(Dst, 4823); | 8446 | dasm_put(Dst, 4835); |
| 8400 | break; | 8447 | break; |
| 8401 | case 1: | 8448 | case 1: |
| 8402 | dasm_put(Dst, 4829); | 8449 | dasm_put(Dst, 4841); |
| 8403 | break; | 8450 | break; |
| 8404 | default: | 8451 | default: |
| 8405 | dasm_put(Dst, 4835); | 8452 | dasm_put(Dst, 4847); |
| 8406 | break; | 8453 | break; |
| 8407 | } | 8454 | } |
| 8408 | dasm_put(Dst, 4841); | 8455 | dasm_put(Dst, 4853); |
| 8409 | switch (vk) { | 8456 | switch (vk) { |
| 8410 | case 0: | 8457 | case 0: |
| 8411 | dasm_put(Dst, 4867); | 8458 | dasm_put(Dst, 4880); |
| 8412 | break; | 8459 | break; |
| 8413 | case 1: | 8460 | case 1: |
| 8414 | dasm_put(Dst, 4870); | 8461 | dasm_put(Dst, 4883); |
| 8415 | break; | 8462 | break; |
| 8416 | default: | 8463 | default: |
| 8417 | dasm_put(Dst, 4873); | 8464 | dasm_put(Dst, 4886); |
| 8418 | break; | 8465 | break; |
| 8419 | } | 8466 | } |
| 8420 | dasm_put(Dst, 4876); | 8467 | dasm_put(Dst, 4889); |
| 8421 | if (vk == 1) { | 8468 | if (vk == 1) { |
| 8422 | dasm_put(Dst, 4878); | 8469 | dasm_put(Dst, 4891); |
| 8423 | } else { | 8470 | } else { |
| 8424 | dasm_put(Dst, 4882); | 8471 | dasm_put(Dst, 4895); |
| 8425 | } | 8472 | } |
| 8426 | switch (vk) { | 8473 | switch (vk) { |
| 8427 | case 0: | 8474 | case 0: |
| 8428 | dasm_put(Dst, 4886); | 8475 | dasm_put(Dst, 4899); |
| 8429 | break; | 8476 | break; |
| 8430 | case 1: | 8477 | case 1: |
| 8431 | dasm_put(Dst, 4889); | 8478 | dasm_put(Dst, 4902); |
| 8432 | break; | 8479 | break; |
| 8433 | default: | 8480 | default: |
| 8434 | dasm_put(Dst, 4892); | 8481 | dasm_put(Dst, 4905); |
| 8435 | break; | 8482 | break; |
| 8436 | } | 8483 | } |
| 8437 | dasm_put(Dst, 4895); | 8484 | dasm_put(Dst, 4908); |
| 8438 | } else { | 8485 | } else { |
| 8439 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8486 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8440 | switch (vk) { | 8487 | switch (vk) { |
| 8441 | case 0: | 8488 | case 0: |
| 8442 | dasm_put(Dst, 4902); | 8489 | dasm_put(Dst, 4915); |
| 8443 | if (LJ_DUALNUM) { | 8490 | if (LJ_DUALNUM) { |
| 8444 | dasm_put(Dst, 4904); | 8491 | dasm_put(Dst, 4917); |
| 8445 | } | 8492 | } |
| 8446 | dasm_put(Dst, 4906); | 8493 | dasm_put(Dst, 4919); |
| 8447 | if (LJ_DUALNUM) { | 8494 | if (LJ_DUALNUM) { |
| 8448 | dasm_put(Dst, 4909); | 8495 | dasm_put(Dst, 4922); |
| 8449 | } else { | 8496 | } else { |
| 8450 | dasm_put(Dst, 4915); | 8497 | dasm_put(Dst, 4928); |
| 8451 | } | 8498 | } |
| 8452 | break; | 8499 | break; |
| 8453 | case 1: | 8500 | case 1: |
| 8454 | dasm_put(Dst, 4919); | 8501 | dasm_put(Dst, 4932); |
| 8455 | if (LJ_DUALNUM) { | 8502 | if (LJ_DUALNUM) { |
| 8456 | dasm_put(Dst, 4921); | 8503 | dasm_put(Dst, 4934); |
| 8457 | } | 8504 | } |
| 8458 | dasm_put(Dst, 4923); | 8505 | dasm_put(Dst, 4936); |
| 8459 | if (LJ_DUALNUM) { | 8506 | if (LJ_DUALNUM) { |
| 8460 | dasm_put(Dst, 4926); | 8507 | dasm_put(Dst, 4939); |
| 8461 | } else { | 8508 | } else { |
| 8462 | dasm_put(Dst, 4932); | 8509 | dasm_put(Dst, 4945); |
| 8463 | } | 8510 | } |
| 8464 | break; | 8511 | break; |
| 8465 | default: | 8512 | default: |
| 8466 | dasm_put(Dst, 4936); | 8513 | dasm_put(Dst, 4949); |
| 8467 | break; | 8514 | break; |
| 8468 | } | 8515 | } |
| 8469 | dasm_put(Dst, 4946); | 8516 | dasm_put(Dst, 4959); |
| 8470 | } | 8517 | } |
| 8471 | break; | 8518 | break; |
| 8472 | case BC_DIVVN: case BC_DIVNV: case BC_DIVVV: | 8519 | case BC_DIVVN: case BC_DIVNV: case BC_DIVVV: |
| 8473 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8520 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8474 | switch (vk) { | 8521 | switch (vk) { |
| 8475 | case 0: | 8522 | case 0: |
| 8476 | dasm_put(Dst, 4959); | 8523 | dasm_put(Dst, 4972); |
| 8477 | if (LJ_DUALNUM) { | 8524 | if (LJ_DUALNUM) { |
| 8478 | dasm_put(Dst, 4961); | 8525 | dasm_put(Dst, 4974); |
| 8479 | } | 8526 | } |
| 8480 | dasm_put(Dst, 4963); | 8527 | dasm_put(Dst, 4976); |
| 8481 | if (LJ_DUALNUM) { | 8528 | if (LJ_DUALNUM) { |
| 8482 | dasm_put(Dst, 4966); | 8529 | dasm_put(Dst, 4979); |
| 8483 | } else { | 8530 | } else { |
| 8484 | dasm_put(Dst, 4972); | 8531 | dasm_put(Dst, 4985); |
| 8485 | } | 8532 | } |
| 8486 | break; | 8533 | break; |
| 8487 | case 1: | 8534 | case 1: |
| 8488 | dasm_put(Dst, 4976); | 8535 | dasm_put(Dst, 4989); |
| 8489 | if (LJ_DUALNUM) { | 8536 | if (LJ_DUALNUM) { |
| 8490 | dasm_put(Dst, 4978); | 8537 | dasm_put(Dst, 4991); |
| 8491 | } | 8538 | } |
| 8492 | dasm_put(Dst, 4980); | 8539 | dasm_put(Dst, 4993); |
| 8493 | if (LJ_DUALNUM) { | 8540 | if (LJ_DUALNUM) { |
| 8494 | dasm_put(Dst, 4983); | 8541 | dasm_put(Dst, 4996); |
| 8495 | } else { | 8542 | } else { |
| 8496 | dasm_put(Dst, 4989); | 8543 | dasm_put(Dst, 5002); |
| 8497 | } | 8544 | } |
| 8498 | break; | 8545 | break; |
| 8499 | default: | 8546 | default: |
| 8500 | dasm_put(Dst, 4993); | 8547 | dasm_put(Dst, 5006); |
| 8501 | break; | 8548 | break; |
| 8502 | } | 8549 | } |
| 8503 | dasm_put(Dst, 5003); | 8550 | dasm_put(Dst, 5016); |
| 8504 | break; | 8551 | break; |
| 8505 | case BC_MODVN: | 8552 | case BC_MODVN: |
| 8506 | if (LJ_DUALNUM) { | 8553 | if (LJ_DUALNUM) { |
| 8507 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8554 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8508 | switch (vk) { | 8555 | switch (vk) { |
| 8509 | case 0: | 8556 | case 0: |
| 8510 | dasm_put(Dst, 5016); | 8557 | dasm_put(Dst, 5029); |
| 8511 | break; | 8558 | break; |
| 8512 | case 1: | 8559 | case 1: |
| 8513 | dasm_put(Dst, 5022); | 8560 | dasm_put(Dst, 5035); |
| 8514 | break; | 8561 | break; |
| 8515 | default: | 8562 | default: |
| 8516 | dasm_put(Dst, 5028); | 8563 | dasm_put(Dst, 5041); |
| 8517 | break; | 8564 | break; |
| 8518 | } | 8565 | } |
| 8519 | dasm_put(Dst, 5034); | 8566 | dasm_put(Dst, 5047); |
| 8520 | switch (vk) { | 8567 | switch (vk) { |
| 8521 | case 0: | 8568 | case 0: |
| 8522 | dasm_put(Dst, 5062); | 8569 | dasm_put(Dst, 5075); |
| 8523 | break; | 8570 | break; |
| 8524 | case 1: | 8571 | case 1: |
| 8525 | dasm_put(Dst, 5065); | 8572 | dasm_put(Dst, 5078); |
| 8526 | break; | 8573 | break; |
| 8527 | default: | 8574 | default: |
| 8528 | dasm_put(Dst, 5068); | 8575 | dasm_put(Dst, 5081); |
| 8529 | break; | 8576 | break; |
| 8530 | } | 8577 | } |
| 8531 | dasm_put(Dst, 5071); | 8578 | dasm_put(Dst, 5084); |
| 8532 | if (vk == 1) { | 8579 | if (vk == 1) { |
| 8533 | dasm_put(Dst, 5073); | 8580 | dasm_put(Dst, 5086); |
| 8534 | } else { | 8581 | } else { |
| 8535 | dasm_put(Dst, 5077); | 8582 | dasm_put(Dst, 5090); |
| 8536 | } | 8583 | } |
| 8537 | switch (vk) { | 8584 | switch (vk) { |
| 8538 | case 0: | 8585 | case 0: |
| 8539 | dasm_put(Dst, 5081); | 8586 | dasm_put(Dst, 5094); |
| 8540 | break; | 8587 | break; |
| 8541 | case 1: | 8588 | case 1: |
| 8542 | dasm_put(Dst, 5084); | 8589 | dasm_put(Dst, 5097); |
| 8543 | break; | 8590 | break; |
| 8544 | default: | 8591 | default: |
| 8545 | dasm_put(Dst, 5087); | 8592 | dasm_put(Dst, 5100); |
| 8546 | break; | 8593 | break; |
| 8547 | } | 8594 | } |
| 8548 | if (!LJ_DUALNUM) { | 8595 | dasm_put(Dst, 5103); |
| 8549 | dasm_put(Dst, 5090); | ||
| 8550 | } | ||
| 8551 | dasm_put(Dst, 5092); | ||
| 8552 | } else { | 8596 | } else { |
| 8553 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8597 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8554 | switch (vk) { | 8598 | switch (vk) { |
| 8555 | case 0: | 8599 | case 0: |
| 8556 | dasm_put(Dst, 5104); | 8600 | dasm_put(Dst, 5115); |
| 8557 | if (LJ_DUALNUM) { | 8601 | if (LJ_DUALNUM) { |
| 8558 | dasm_put(Dst, 5106); | 8602 | dasm_put(Dst, 5117); |
| 8559 | } | 8603 | } |
| 8560 | dasm_put(Dst, 5108); | 8604 | dasm_put(Dst, 5119); |
| 8561 | if (LJ_DUALNUM) { | 8605 | if (LJ_DUALNUM) { |
| 8562 | dasm_put(Dst, 5111); | 8606 | dasm_put(Dst, 5122); |
| 8563 | } else { | 8607 | } else { |
| 8564 | dasm_put(Dst, 5117); | 8608 | dasm_put(Dst, 5128); |
| 8565 | } | 8609 | } |
| 8566 | break; | 8610 | break; |
| 8567 | case 1: | 8611 | case 1: |
| 8568 | dasm_put(Dst, 5121); | 8612 | dasm_put(Dst, 5132); |
| 8569 | if (LJ_DUALNUM) { | 8613 | if (LJ_DUALNUM) { |
| 8570 | dasm_put(Dst, 5123); | 8614 | dasm_put(Dst, 5134); |
| 8571 | } | 8615 | } |
| 8572 | dasm_put(Dst, 5125); | 8616 | dasm_put(Dst, 5136); |
| 8573 | if (LJ_DUALNUM) { | 8617 | if (LJ_DUALNUM) { |
| 8574 | dasm_put(Dst, 5128); | 8618 | dasm_put(Dst, 5139); |
| 8575 | } else { | 8619 | } else { |
| 8576 | dasm_put(Dst, 5134); | 8620 | dasm_put(Dst, 5145); |
| 8577 | } | 8621 | } |
| 8578 | break; | 8622 | break; |
| 8579 | default: | 8623 | default: |
| 8580 | dasm_put(Dst, 5138); | 8624 | dasm_put(Dst, 5149); |
| 8581 | break; | 8625 | break; |
| 8582 | } | 8626 | } |
| 8583 | if (!LJ_DUALNUM) { | 8627 | dasm_put(Dst, 5159); |
| 8584 | dasm_put(Dst, 5148); | ||
| 8585 | } | ||
| 8586 | dasm_put(Dst, 5150); | ||
| 8587 | } | 8628 | } |
| 8588 | break; | 8629 | break; |
| 8589 | case BC_MODNV: case BC_MODVV: | 8630 | case BC_MODNV: case BC_MODVV: |
| @@ -8591,286 +8632,298 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 8591 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8632 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8592 | switch (vk) { | 8633 | switch (vk) { |
| 8593 | case 0: | 8634 | case 0: |
| 8594 | dasm_put(Dst, 5168); | 8635 | dasm_put(Dst, 5177); |
| 8636 | break; | ||
| 8637 | case 1: | ||
| 8638 | dasm_put(Dst, 5183); | ||
| 8639 | break; | ||
| 8640 | default: | ||
| 8641 | dasm_put(Dst, 5189); | ||
| 8642 | break; | ||
| 8643 | } | ||
| 8644 | dasm_put(Dst, 5195); | ||
| 8645 | switch (vk) { | ||
| 8646 | case 0: | ||
| 8647 | dasm_put(Dst, 5223); | ||
| 8595 | break; | 8648 | break; |
| 8596 | case 1: | 8649 | case 1: |
| 8597 | dasm_put(Dst, 5174); | 8650 | dasm_put(Dst, 5226); |
| 8598 | break; | 8651 | break; |
| 8599 | default: | 8652 | default: |
| 8600 | dasm_put(Dst, 5180); | 8653 | dasm_put(Dst, 5229); |
| 8601 | break; | 8654 | break; |
| 8602 | } | 8655 | } |
| 8603 | dasm_put(Dst, 5186); | 8656 | dasm_put(Dst, 5232); |
| 8604 | if (vk == 1) { | 8657 | if (vk == 1) { |
| 8605 | dasm_put(Dst, 5194); | 8658 | dasm_put(Dst, 5234); |
| 8606 | } else { | 8659 | } else { |
| 8607 | dasm_put(Dst, 5198); | 8660 | dasm_put(Dst, 5238); |
| 8608 | } | 8661 | } |
| 8609 | switch (vk) { | 8662 | switch (vk) { |
| 8610 | case 0: | 8663 | case 0: |
| 8611 | dasm_put(Dst, 5202); | 8664 | dasm_put(Dst, 5242); |
| 8612 | break; | 8665 | break; |
| 8613 | case 1: | 8666 | case 1: |
| 8614 | dasm_put(Dst, 5205); | 8667 | dasm_put(Dst, 5245); |
| 8615 | break; | 8668 | break; |
| 8616 | default: | 8669 | default: |
| 8617 | dasm_put(Dst, 5208); | 8670 | dasm_put(Dst, 5248); |
| 8618 | break; | 8671 | break; |
| 8619 | } | 8672 | } |
| 8620 | dasm_put(Dst, 5211); | 8673 | dasm_put(Dst, 5251); |
| 8621 | } else { | 8674 | } else { |
| 8622 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); | 8675 | vk = ((int)op - BC_ADDVN) / (BC_ADDNV-BC_ADDVN); |
| 8623 | switch (vk) { | 8676 | switch (vk) { |
| 8624 | case 0: | 8677 | case 0: |
| 8625 | dasm_put(Dst, 5214); | 8678 | dasm_put(Dst, 5254); |
| 8626 | if (LJ_DUALNUM) { | 8679 | if (LJ_DUALNUM) { |
| 8627 | dasm_put(Dst, 5216); | 8680 | dasm_put(Dst, 5256); |
| 8628 | } | 8681 | } |
| 8629 | dasm_put(Dst, 5218); | 8682 | dasm_put(Dst, 5258); |
| 8630 | if (LJ_DUALNUM) { | 8683 | if (LJ_DUALNUM) { |
| 8631 | dasm_put(Dst, 5221); | 8684 | dasm_put(Dst, 5261); |
| 8632 | } else { | 8685 | } else { |
| 8633 | dasm_put(Dst, 5227); | 8686 | dasm_put(Dst, 5267); |
| 8634 | } | 8687 | } |
| 8635 | break; | 8688 | break; |
| 8636 | case 1: | 8689 | case 1: |
| 8637 | dasm_put(Dst, 5231); | 8690 | dasm_put(Dst, 5271); |
| 8638 | if (LJ_DUALNUM) { | 8691 | if (LJ_DUALNUM) { |
| 8639 | dasm_put(Dst, 5233); | 8692 | dasm_put(Dst, 5273); |
| 8640 | } | 8693 | } |
| 8641 | dasm_put(Dst, 5235); | 8694 | dasm_put(Dst, 5275); |
| 8642 | if (LJ_DUALNUM) { | 8695 | if (LJ_DUALNUM) { |
| 8643 | dasm_put(Dst, 5238); | 8696 | dasm_put(Dst, 5278); |
| 8644 | } else { | 8697 | } else { |
| 8645 | dasm_put(Dst, 5244); | 8698 | dasm_put(Dst, 5284); |
| 8646 | } | 8699 | } |
| 8647 | break; | 8700 | break; |
| 8648 | default: | 8701 | default: |
| 8649 | dasm_put(Dst, 5248); | 8702 | dasm_put(Dst, 5288); |
| 8650 | break; | 8703 | break; |
| 8651 | } | 8704 | } |
| 8652 | dasm_put(Dst, 5258); | 8705 | dasm_put(Dst, 5298); |
| 8653 | } | 8706 | } |
| 8654 | break; | 8707 | break; |
| 8655 | case BC_POW: | 8708 | case BC_POW: |
| 8656 | dasm_put(Dst, 5261); | 8709 | dasm_put(Dst, 5301); |
| 8657 | break; | 8710 | break; |
| 8658 | 8711 | ||
| 8659 | case BC_CAT: | 8712 | case BC_CAT: |
| 8660 | dasm_put(Dst, 5284, Dt1(->base), 32-3, Dt1(->base)); | 8713 | dasm_put(Dst, 5324, Dt1(->base), 32-3, Dt1(->base)); |
| 8661 | break; | 8714 | break; |
| 8662 | 8715 | ||
| 8663 | /* -- Constant ops ------------------------------------------------------ */ | 8716 | /* -- Constant ops ------------------------------------------------------ */ |
| 8664 | 8717 | ||
| 8665 | case BC_KSTR: | 8718 | case BC_KSTR: |
| 8666 | dasm_put(Dst, 5314, 32-1, LJ_TSTR); | 8719 | dasm_put(Dst, 5354, 32-1, LJ_TSTR); |
| 8667 | break; | 8720 | break; |
| 8668 | case BC_KCDATA: | 8721 | case BC_KCDATA: |
| 8669 | #if LJ_HASFFI | 8722 | #if LJ_HASFFI |
| 8670 | dasm_put(Dst, 5333, 32-1, LJ_TCDATA); | 8723 | dasm_put(Dst, 5373, 32-1, LJ_TCDATA); |
| 8671 | #endif | 8724 | #endif |
| 8672 | break; | 8725 | break; |
| 8673 | case BC_KSHORT: | 8726 | case BC_KSHORT: |
| 8674 | if (LJ_DUALNUM) { | 8727 | if (LJ_DUALNUM) { |
| 8675 | dasm_put(Dst, 5352, 31-13); | 8728 | dasm_put(Dst, 5392, 31-13); |
| 8676 | } else { | 8729 | } else { |
| 8677 | dasm_put(Dst, 5368, 31-13); | 8730 | dasm_put(Dst, 5408, 31-13, 31-20); |
| 8678 | } | 8731 | } |
| 8679 | break; | 8732 | break; |
| 8680 | case BC_KNUM: | 8733 | case BC_KNUM: |
| 8681 | dasm_put(Dst, 5387); | 8734 | dasm_put(Dst, 5436); |
| 8682 | break; | 8735 | break; |
| 8683 | case BC_KPRI: | 8736 | case BC_KPRI: |
| 8684 | dasm_put(Dst, 5400, 32-3); | 8737 | dasm_put(Dst, 5449, 32-3); |
| 8685 | break; | 8738 | break; |
| 8686 | case BC_KNIL: | 8739 | case BC_KNIL: |
| 8687 | dasm_put(Dst, 5415); | 8740 | dasm_put(Dst, 5464); |
| 8688 | break; | 8741 | break; |
| 8689 | 8742 | ||
| 8690 | /* -- Upvalue and function ops ------------------------------------------ */ | 8743 | /* -- Upvalue and function ops ------------------------------------------ */ |
| 8691 | 8744 | ||
| 8692 | case BC_UGET: | 8745 | case BC_UGET: |
| 8693 | dasm_put(Dst, 5434, 32-1, offsetof(GCfuncL, uvptr), DtA(->v)); | 8746 | dasm_put(Dst, 5483, 32-1, offsetof(GCfuncL, uvptr), DtA(->v)); |
| 8694 | break; | 8747 | break; |
| 8695 | case BC_USETV: | 8748 | case BC_USETV: |
| 8696 | dasm_put(Dst, 5455, 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); | 8749 | dasm_put(Dst, 5504, 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); |
| 8697 | break; | 8750 | break; |
| 8698 | case BC_USETS: | 8751 | case BC_USETS: |
| 8699 | dasm_put(Dst, 5508, 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); | 8752 | dasm_put(Dst, 5557, 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); |
| 8700 | break; | 8753 | break; |
| 8701 | case BC_USETN: | 8754 | case BC_USETN: |
| 8702 | dasm_put(Dst, 5559, 32-1, offsetof(GCfuncL, uvptr), DtA(->v)); | 8755 | dasm_put(Dst, 5608, 32-1, offsetof(GCfuncL, uvptr), DtA(->v)); |
| 8703 | break; | 8756 | break; |
| 8704 | case BC_USETP: | 8757 | case BC_USETP: |
| 8705 | dasm_put(Dst, 5580, 32-1, offsetof(GCfuncL, uvptr), 32-3, DtA(->v)); | 8758 | dasm_put(Dst, 5629, 32-1, 32-3, offsetof(GCfuncL, uvptr), DtA(->v)); |
| 8706 | break; | 8759 | break; |
| 8707 | 8760 | ||
| 8708 | case BC_UCLO: | 8761 | case BC_UCLO: |
| 8709 | dasm_put(Dst, 5603, Dt1(->openupval), 32-1, -(BCBIAS_J*4 >> 16), Dt1(->base), Dt1(->base)); | 8762 | dasm_put(Dst, 5652, Dt1(->openupval), 32-1, -(BCBIAS_J*4 >> 16), Dt1(->base), Dt1(->base)); |
| 8710 | break; | 8763 | break; |
| 8711 | 8764 | ||
| 8712 | case BC_FNEW: | 8765 | case BC_FNEW: |
| 8713 | dasm_put(Dst, 5633, 32-1, Dt1(->base), Dt1(->base), LJ_TFUNC); | 8766 | dasm_put(Dst, 5682, 32-1, Dt1(->base), Dt1(->base), LJ_TFUNC); |
| 8714 | break; | 8767 | break; |
| 8715 | 8768 | ||
| 8716 | /* -- Table ops --------------------------------------------------------- */ | 8769 | /* -- Table ops --------------------------------------------------------- */ |
| 8717 | 8770 | ||
| 8718 | case BC_TNEW: | 8771 | case BC_TNEW: |
| 8719 | case BC_TDUP: | 8772 | case BC_TDUP: |
| 8720 | dasm_put(Dst, 5661, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), Dt1(->base)); | 8773 | dasm_put(Dst, 5710, DISPATCH_GL(gc.total), DISPATCH_GL(gc.threshold), Dt1(->base)); |
| 8721 | if (op == BC_TNEW) { | 8774 | if (op == BC_TNEW) { |
| 8722 | dasm_put(Dst, 5674); | 8775 | dasm_put(Dst, 5723); |
| 8723 | } else { | 8776 | } else { |
| 8724 | dasm_put(Dst, 5683, 32-1); | 8777 | dasm_put(Dst, 5732, 32-1); |
| 8725 | } | 8778 | } |
| 8726 | dasm_put(Dst, 5690, Dt1(->base), LJ_TTAB); | 8779 | dasm_put(Dst, 5739, Dt1(->base), LJ_TTAB); |
| 8727 | if (op == BC_TNEW) { | 8780 | if (op == BC_TNEW) { |
| 8728 | dasm_put(Dst, 5707); | 8781 | dasm_put(Dst, 5756); |
| 8729 | } | 8782 | } |
| 8730 | dasm_put(Dst, 5712); | 8783 | dasm_put(Dst, 5761); |
| 8731 | break; | 8784 | break; |
| 8732 | 8785 | ||
| 8733 | case BC_GGET: | 8786 | case BC_GGET: |
| 8734 | case BC_GSET: | 8787 | case BC_GSET: |
| 8735 | dasm_put(Dst, 5721, 32-1, Dt7(->env)); | 8788 | dasm_put(Dst, 5770, 32-1, Dt7(->env)); |
| 8736 | if (op == BC_GGET) { | 8789 | if (op == BC_GGET) { |
| 8737 | dasm_put(Dst, 5729); | 8790 | dasm_put(Dst, 5778); |
| 8738 | } else { | 8791 | } else { |
| 8739 | dasm_put(Dst, 5732); | 8792 | dasm_put(Dst, 5781); |
| 8740 | } | 8793 | } |
| 8741 | break; | 8794 | break; |
| 8742 | 8795 | ||
| 8743 | case BC_TGETV: | 8796 | case BC_TGETV: |
| 8744 | dasm_put(Dst, 5735); | 8797 | dasm_put(Dst, 5784); |
| 8745 | if (LJ_DUALNUM) { | 8798 | if (LJ_DUALNUM) { |
| 8746 | dasm_put(Dst, 5739); | 8799 | dasm_put(Dst, 5788); |
| 8747 | } else { | 8800 | } else { |
| 8748 | dasm_put(Dst, 5741); | 8801 | dasm_put(Dst, 5790); |
| 8749 | } | 8802 | } |
| 8750 | dasm_put(Dst, 5743, LJ_TTAB); | 8803 | dasm_put(Dst, 5792, LJ_TTAB); |
| 8751 | if (LJ_DUALNUM) { | 8804 | if (LJ_DUALNUM) { |
| 8752 | dasm_put(Dst, 5749, Dt6(->asize), Dt6(->array), 31-3); | 8805 | dasm_put(Dst, 5798, Dt6(->asize), Dt6(->array), 31-3); |
| 8753 | } else { | 8806 | } else { |
| 8754 | dasm_put(Dst, 5759, Dt6(->asize), Dt6(->array), 31-3); | 8807 | dasm_put(Dst, 5808, Dt6(->asize), Dt6(->array), 31-3); |
| 8755 | } | 8808 | } |
| 8756 | dasm_put(Dst, 5776, LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index, LJ_TSTR); | 8809 | dasm_put(Dst, 5825, LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index, LJ_TSTR); |
| 8757 | if (!LJ_DUALNUM) { | 8810 | if (!LJ_DUALNUM) { |
| 8758 | dasm_put(Dst, 5816); | 8811 | dasm_put(Dst, 5865); |
| 8759 | } | 8812 | } |
| 8760 | dasm_put(Dst, 5818); | 8813 | dasm_put(Dst, 5867); |
| 8761 | break; | 8814 | break; |
| 8762 | case BC_TGETS: | 8815 | case BC_TGETS: |
| 8763 | dasm_put(Dst, 5821, 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)); | 8816 | dasm_put(Dst, 5870, 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)); |
| 8764 | dasm_put(Dst, 5882, LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index); | 8817 | dasm_put(Dst, 5931, LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index); |
| 8765 | break; | 8818 | break; |
| 8766 | case BC_TGETB: | 8819 | case BC_TGETB: |
| 8767 | dasm_put(Dst, 5902, 32-3, LJ_TTAB, Dt6(->asize), Dt6(->array), LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index); | 8820 | dasm_put(Dst, 5951, 32-3, LJ_TTAB, Dt6(->asize), Dt6(->array), LJ_TNIL, Dt6(->metatable), Dt6(->nomm), 1<<MM_index); |
| 8768 | break; | 8821 | break; |
| 8769 | 8822 | ||
| 8770 | case BC_TSETV: | 8823 | case BC_TSETV: |
| 8771 | dasm_put(Dst, 5950); | 8824 | dasm_put(Dst, 5999); |
| 8772 | if (LJ_DUALNUM) { | 8825 | if (LJ_DUALNUM) { |
| 8773 | dasm_put(Dst, 5954); | 8826 | dasm_put(Dst, 6003); |
| 8774 | } else { | 8827 | } else { |
| 8775 | dasm_put(Dst, 5956); | 8828 | dasm_put(Dst, 6005); |
| 8776 | } | 8829 | } |
| 8777 | dasm_put(Dst, 5958, LJ_TTAB); | 8830 | dasm_put(Dst, 6007, LJ_TTAB); |
| 8778 | if (LJ_DUALNUM) { | 8831 | if (LJ_DUALNUM) { |
| 8779 | dasm_put(Dst, 5964, Dt6(->asize), Dt6(->array), 31-3); | 8832 | dasm_put(Dst, 6013, Dt6(->asize), Dt6(->array), 31-3); |
| 8780 | } else { | 8833 | } else { |
| 8781 | dasm_put(Dst, 5974, Dt6(->asize), Dt6(->array), 31-3); | 8834 | dasm_put(Dst, 6023, Dt6(->asize), Dt6(->array), 31-3); |
| 8782 | } | 8835 | } |
| 8783 | dasm_put(Dst, 5991, Dt6(->marked), LJ_TNIL, LJ_GC_BLACK, Dt6(->metatable), Dt6(->nomm), 1<<MM_newindex, LJ_TSTR); | 8836 | dasm_put(Dst, 6040, Dt6(->marked), LJ_TNIL, LJ_GC_BLACK, Dt6(->metatable), Dt6(->nomm), 1<<MM_newindex, LJ_TSTR); |
| 8784 | if (!LJ_DUALNUM) { | 8837 | if (!LJ_DUALNUM) { |
| 8785 | dasm_put(Dst, 6038); | 8838 | dasm_put(Dst, 6087); |
| 8786 | } | 8839 | } |
| 8787 | dasm_put(Dst, 6040, DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); | 8840 | dasm_put(Dst, 6089, DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); |
| 8788 | break; | 8841 | break; |
| 8789 | dasm_put(Dst, 6055, LJ_TSTR, LJ_TNIL); | 8842 | dasm_put(Dst, 6104, LJ_TSTR, LJ_TNIL); |
| 8790 | case BC_TSETS: | 8843 | case BC_TSETS: |
| 8791 | dasm_put(Dst, 6081, 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); | 8844 | dasm_put(Dst, 6130, 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); |
| 8792 | dasm_put(Dst, 6132, 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); | 8845 | dasm_put(Dst, 6181, 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); |
| 8793 | dasm_put(Dst, 6188, LJ_TSTR, Dt1(->base), DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); | 8846 | dasm_put(Dst, 6237, LJ_TSTR, Dt1(->base), DISPATCH_GL(gc.grayagain), DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); |
| 8794 | break; | 8847 | break; |
| 8795 | case BC_TSETB: | 8848 | case BC_TSETB: |
| 8796 | dasm_put(Dst, 6213, 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)); | 8849 | dasm_put(Dst, 6262, 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)); |
| 8797 | dasm_put(Dst, 6271, DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); | 8850 | dasm_put(Dst, 6320, DISPATCH_GL(gc.grayagain), Dt6(->marked), Dt6(->gclist)); |
| 8798 | break; | 8851 | break; |
| 8799 | 8852 | ||
| 8800 | case BC_TSETM: | 8853 | case BC_TSETM: |
| 8801 | dasm_put(Dst, 6281, 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)); | 8854 | dasm_put(Dst, 6330, 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)); |
| 8802 | dasm_put(Dst, 6350); | 8855 | dasm_put(Dst, 6399); |
| 8803 | break; | 8856 | break; |
| 8804 | 8857 | ||
| 8805 | /* -- Calls and vararg handling ----------------------------------------- */ | 8858 | /* -- Calls and vararg handling ----------------------------------------- */ |
| 8806 | 8859 | ||
| 8807 | case BC_CALLM: | 8860 | case BC_CALLM: |
| 8808 | dasm_put(Dst, 6353); | 8861 | dasm_put(Dst, 6402); |
| 8809 | break; | 8862 | break; |
| 8810 | case BC_CALL: | 8863 | case BC_CALL: |
| 8811 | dasm_put(Dst, 6355, LJ_TFUNC, Dt7(->pc)); | 8864 | dasm_put(Dst, 6404, LJ_TFUNC, Dt7(->pc)); |
| 8812 | break; | 8865 | break; |
| 8813 | 8866 | ||
| 8814 | case BC_CALLMT: | 8867 | case BC_CALLMT: |
| 8815 | dasm_put(Dst, 6376); | 8868 | dasm_put(Dst, 6425); |
| 8816 | break; | 8869 | break; |
| 8817 | case BC_CALLT: | 8870 | case BC_CALLT: |
| 8818 | dasm_put(Dst, 6378, LJ_TFUNC, FRAME_TYPE, Dt7(->ffid), FRAME_VARG, Dt7(->pc), -4-8, Dt7(->pc), PC2PROTO(k), FRAME_TYPEP); | 8871 | dasm_put(Dst, 6427, LJ_TFUNC, FRAME_TYPE, Dt7(->ffid), FRAME_VARG, Dt7(->pc), -4-8, Dt7(->pc), PC2PROTO(k), FRAME_TYPEP); |
| 8819 | dasm_put(Dst, 6442, FRAME_TYPE); | 8872 | dasm_put(Dst, 6491, FRAME_TYPE); |
| 8820 | break; | 8873 | break; |
| 8821 | 8874 | ||
| 8822 | case BC_ITERC: | 8875 | case BC_ITERC: |
| 8823 | dasm_put(Dst, 6451, LJ_TFUNC, Dt7(->pc)); | 8876 | dasm_put(Dst, 6500, LJ_TFUNC, Dt7(->pc)); |
| 8824 | break; | 8877 | break; |
| 8825 | 8878 | ||
| 8826 | case BC_ITERN: | 8879 | case BC_ITERN: |
| 8827 | #if LJ_HASJIT | 8880 | #if LJ_HASJIT |
| 8828 | #endif | 8881 | #endif |
| 8829 | dasm_put(Dst, 6478, Dt6(->asize), Dt6(->array), 31-3, LJ_TNIL); | 8882 | dasm_put(Dst, 6527, Dt6(->asize), Dt6(->array), 31-3, LJ_TNIL); |
| 8830 | if (LJ_DUALNUM) { | 8883 | if (LJ_DUALNUM) { |
| 8831 | dasm_put(Dst, 6500); | 8884 | dasm_put(Dst, 6549); |
| 8832 | } else { | 8885 | } else { |
| 8833 | dasm_put(Dst, 6503); | 8886 | dasm_put(Dst, 6552); |
| 8834 | } | 8887 | } |
| 8835 | dasm_put(Dst, 6507, -(BCBIAS_J*4 >> 16)); | 8888 | dasm_put(Dst, 6556, -(BCBIAS_J*4 >> 16)); |
| 8836 | if (!LJ_DUALNUM) { | 8889 | if (!LJ_DUALNUM) { |
| 8837 | dasm_put(Dst, 6515); | 8890 | dasm_put(Dst, 6564); |
| 8838 | } | 8891 | } |
| 8839 | dasm_put(Dst, 6517, Dt6(->hmask), Dt6(->node), 31-5, 31-3, LJ_TNIL, DtB(->key), -(BCBIAS_J*4 >> 16)); | 8892 | dasm_put(Dst, 6566, Dt6(->hmask), Dt6(->node), 31-5, 31-3, LJ_TNIL, DtB(->key), -(BCBIAS_J*4 >> 16)); |
| 8840 | break; | 8893 | break; |
| 8841 | 8894 | ||
| 8842 | case BC_ISNEXT: | 8895 | case BC_ISNEXT: |
| 8843 | dasm_put(Dst, 6573, 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)); | 8896 | dasm_put(Dst, 6622, 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)); |
| 8844 | break; | 8897 | break; |
| 8845 | 8898 | ||
| 8846 | case BC_VARG: | 8899 | case BC_VARG: |
| 8847 | dasm_put(Dst, 6623, FRAME_VARG, Dt1(->maxstack), Dt1(->top), Dt1(->base), 32-3, Dt1(->base)); | 8900 | dasm_put(Dst, 6672, FRAME_VARG, Dt1(->maxstack), Dt1(->top), Dt1(->base), 32-3, Dt1(->base)); |
| 8848 | dasm_put(Dst, 6703); | 8901 | dasm_put(Dst, 6752); |
| 8849 | break; | 8902 | break; |
| 8850 | 8903 | ||
| 8851 | /* -- Returns ----------------------------------------------------------- */ | 8904 | /* -- Returns ----------------------------------------------------------- */ |
| 8852 | 8905 | ||
| 8853 | case BC_RETM: | 8906 | case BC_RETM: |
| 8854 | dasm_put(Dst, 6709); | 8907 | dasm_put(Dst, 6758); |
| 8855 | break; | 8908 | break; |
| 8856 | 8909 | ||
| 8857 | case BC_RET: | 8910 | case BC_RET: |
| 8858 | dasm_put(Dst, 6711, FRAME_TYPE, FRAME_VARG, Dt7(->pc), PC2PROTO(k), FRAME_TYPEP); | 8911 | dasm_put(Dst, 6760, FRAME_TYPE, FRAME_VARG, Dt7(->pc), PC2PROTO(k), FRAME_TYPEP); |
| 8859 | break; | 8912 | break; |
| 8860 | 8913 | ||
| 8861 | case BC_RET0: case BC_RET1: | 8914 | case BC_RET0: case BC_RET1: |
| 8862 | dasm_put(Dst, 6781, FRAME_TYPE, FRAME_VARG); | 8915 | dasm_put(Dst, 6830, FRAME_TYPE, FRAME_VARG); |
| 8863 | if (op == BC_RET1) { | 8916 | if (op == BC_RET1) { |
| 8864 | dasm_put(Dst, 6794); | 8917 | dasm_put(Dst, 6843); |
| 8865 | } | 8918 | } |
| 8866 | dasm_put(Dst, 6797, Dt7(->pc), PC2PROTO(k)); | 8919 | dasm_put(Dst, 6846, Dt7(->pc), PC2PROTO(k)); |
| 8867 | break; | 8920 | break; |
| 8868 | 8921 | ||
| 8869 | /* -- Loops and branches ------------------------------------------------ */ | 8922 | /* -- Loops and branches ------------------------------------------------ */ |
| 8870 | 8923 | ||
| 8871 | case BC_FORL: | 8924 | case BC_FORL: |
| 8872 | #if LJ_HASJIT | 8925 | #if LJ_HASJIT |
| 8873 | dasm_put(Dst, 6825); | 8926 | dasm_put(Dst, 6874); |
| 8874 | #endif | 8927 | #endif |
| 8875 | break; | 8928 | break; |
| 8876 | 8929 | ||
| @@ -8883,93 +8936,93 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 8883 | case BC_IFORL: | 8936 | case BC_IFORL: |
| 8884 | vk = (op == BC_IFORL || op == BC_JFORL); | 8937 | vk = (op == BC_IFORL || op == BC_JFORL); |
| 8885 | if (LJ_DUALNUM) { | 8938 | if (LJ_DUALNUM) { |
| 8886 | dasm_put(Dst, 6827, FORL_IDX*8+4); | 8939 | dasm_put(Dst, 6876, FORL_IDX*8+4); |
| 8887 | if (vk) { | 8940 | if (vk) { |
| 8888 | dasm_put(Dst, 6832, FORL_STEP*8+4, FORL_STOP*8+4, FORL_IDX*8+4); | 8941 | dasm_put(Dst, 6881, FORL_STEP*8+4, FORL_STOP*8+4, FORL_IDX*8+4); |
| 8889 | } else { | 8942 | } else { |
| 8890 | dasm_put(Dst, 6846, FORL_STEP*8, FORL_STEP*8+4, FORL_STOP*8, FORL_STOP*8+4); | 8943 | dasm_put(Dst, 6895, FORL_STEP*8, FORL_STEP*8+4, FORL_STOP*8, FORL_STOP*8+4); |
| 8891 | } | 8944 | } |
| 8892 | dasm_put(Dst, 6862, FORL_EXT*8); | 8945 | dasm_put(Dst, 6911, FORL_EXT*8); |
| 8893 | if (op != BC_JFORL) { | 8946 | if (op != BC_JFORL) { |
| 8894 | dasm_put(Dst, 6869, 32-1); | 8947 | dasm_put(Dst, 6918, 32-1); |
| 8895 | } | 8948 | } |
| 8896 | dasm_put(Dst, 6872, FORL_EXT*8+4); | 8949 | dasm_put(Dst, 6921, FORL_EXT*8+4); |
| 8897 | if (op != BC_JFORL) { | 8950 | if (op != BC_JFORL) { |
| 8898 | dasm_put(Dst, 6875); | 8951 | dasm_put(Dst, 6924); |
| 8899 | } | 8952 | } |
| 8900 | if (op == BC_FORI) { | 8953 | if (op == BC_FORI) { |
| 8901 | dasm_put(Dst, 6877); | 8954 | dasm_put(Dst, 6926); |
| 8902 | } else if (op == BC_JFORI) { | 8955 | } else if (op == BC_JFORI) { |
| 8903 | dasm_put(Dst, 6880, -(BCBIAS_J*4 >> 16), BC_JLOOP); | 8956 | dasm_put(Dst, 6929, -(BCBIAS_J*4 >> 16), BC_JLOOP); |
| 8904 | } else if (op == BC_IFORL) { | 8957 | } else if (op == BC_IFORL) { |
| 8905 | dasm_put(Dst, 6885, -(BCBIAS_J*4 >> 16)); | 8958 | dasm_put(Dst, 6934, -(BCBIAS_J*4 >> 16)); |
| 8906 | } else { | 8959 | } else { |
| 8907 | dasm_put(Dst, 6890, BC_JLOOP); | 8960 | dasm_put(Dst, 6939, BC_JLOOP); |
| 8908 | } | 8961 | } |
| 8909 | dasm_put(Dst, 6893); | 8962 | dasm_put(Dst, 6942); |
| 8910 | if (vk) { | 8963 | if (vk) { |
| 8911 | dasm_put(Dst, 6909); | 8964 | dasm_put(Dst, 6958); |
| 8912 | } | 8965 | } |
| 8913 | } | 8966 | } |
| 8914 | if (vk) { | 8967 | if (vk) { |
| 8915 | if (LJ_DUALNUM) { | 8968 | if (LJ_DUALNUM) { |
| 8916 | dasm_put(Dst, 6916, FORL_IDX*8); | 8969 | dasm_put(Dst, 6965, FORL_IDX*8); |
| 8917 | } else { | 8970 | } else { |
| 8918 | dasm_put(Dst, 6920); | 8971 | dasm_put(Dst, 6969); |
| 8919 | } | 8972 | } |
| 8920 | dasm_put(Dst, 6922, FORL_STEP*8, FORL_STOP*8, FORL_STEP*8, FORL_IDX*8); | 8973 | dasm_put(Dst, 6971, FORL_STEP*8, FORL_STOP*8, FORL_STEP*8, FORL_IDX*8); |
| 8921 | } else { | 8974 | } else { |
| 8922 | if (LJ_DUALNUM) { | 8975 | if (LJ_DUALNUM) { |
| 8923 | dasm_put(Dst, 6932); | 8976 | dasm_put(Dst, 6981); |
| 8924 | } else { | 8977 | } else { |
| 8925 | dasm_put(Dst, 6934, FORL_STEP*8, FORL_STOP*8); | 8978 | dasm_put(Dst, 6983, FORL_STEP*8, FORL_STOP*8); |
| 8926 | } | 8979 | } |
| 8927 | dasm_put(Dst, 6943, FORL_IDX*8, FORL_STEP*8, FORL_STOP*8); | 8980 | dasm_put(Dst, 6992, FORL_IDX*8, FORL_STEP*8, FORL_STOP*8); |
| 8928 | } | 8981 | } |
| 8929 | dasm_put(Dst, 6954); | 8982 | dasm_put(Dst, 7003); |
| 8930 | if (op != BC_JFORL) { | 8983 | if (op != BC_JFORL) { |
| 8931 | dasm_put(Dst, 6956, 32-1); | 8984 | dasm_put(Dst, 7005, 32-1); |
| 8932 | } | 8985 | } |
| 8933 | dasm_put(Dst, 6959, FORL_EXT*8); | 8986 | dasm_put(Dst, 7008, FORL_EXT*8); |
| 8934 | if (op != BC_JFORL) { | 8987 | if (op != BC_JFORL) { |
| 8935 | dasm_put(Dst, 6962); | 8988 | dasm_put(Dst, 7011); |
| 8936 | } | 8989 | } |
| 8937 | dasm_put(Dst, 6964); | 8990 | dasm_put(Dst, 7013); |
| 8938 | if (op == BC_JFORI) { | 8991 | if (op == BC_JFORI) { |
| 8939 | dasm_put(Dst, 6966, -(BCBIAS_J*4 >> 16)); | 8992 | dasm_put(Dst, 7015, -(BCBIAS_J*4 >> 16)); |
| 8940 | } | 8993 | } |
| 8941 | dasm_put(Dst, 6969); | 8994 | dasm_put(Dst, 7018); |
| 8942 | if (op == BC_FORI) { | 8995 | if (op == BC_FORI) { |
| 8943 | dasm_put(Dst, 6972); | 8996 | dasm_put(Dst, 7021); |
| 8944 | } else if (op == BC_IFORL) { | 8997 | } else if (op == BC_IFORL) { |
| 8945 | if (LJ_DUALNUM) { | 8998 | if (LJ_DUALNUM) { |
| 8946 | dasm_put(Dst, 6975); | 8999 | dasm_put(Dst, 7024); |
| 8947 | } else { | 9000 | } else { |
| 8948 | dasm_put(Dst, 6978); | 9001 | dasm_put(Dst, 7027); |
| 8949 | } | 9002 | } |
| 8950 | dasm_put(Dst, 6981, -(BCBIAS_J*4 >> 16)); | 9003 | dasm_put(Dst, 7030, -(BCBIAS_J*4 >> 16)); |
| 8951 | } else { | 9004 | } else { |
| 8952 | dasm_put(Dst, 6985, BC_JLOOP); | 9005 | dasm_put(Dst, 7034, BC_JLOOP); |
| 8953 | } | 9006 | } |
| 8954 | if (LJ_DUALNUM) { | 9007 | if (LJ_DUALNUM) { |
| 8955 | dasm_put(Dst, 6988); | 9008 | dasm_put(Dst, 7037); |
| 8956 | } else { | 9009 | } else { |
| 8957 | dasm_put(Dst, 6991); | 9010 | dasm_put(Dst, 7040); |
| 8958 | } | 9011 | } |
| 8959 | dasm_put(Dst, 7003); | 9012 | dasm_put(Dst, 7052); |
| 8960 | if (op == BC_FORI) { | 9013 | if (op == BC_FORI) { |
| 8961 | dasm_put(Dst, 7005, -(BCBIAS_J*4 >> 16)); | 9014 | dasm_put(Dst, 7054, -(BCBIAS_J*4 >> 16)); |
| 8962 | } else if (op == BC_IFORL) { | 9015 | } else if (op == BC_IFORL) { |
| 8963 | dasm_put(Dst, 7011); | 9016 | dasm_put(Dst, 7060); |
| 8964 | } else { | 9017 | } else { |
| 8965 | dasm_put(Dst, 7014, BC_JLOOP); | 9018 | dasm_put(Dst, 7063, BC_JLOOP); |
| 8966 | } | 9019 | } |
| 8967 | dasm_put(Dst, 7017); | 9020 | dasm_put(Dst, 7066); |
| 8968 | break; | 9021 | break; |
| 8969 | 9022 | ||
| 8970 | case BC_ITERL: | 9023 | case BC_ITERL: |
| 8971 | #if LJ_HASJIT | 9024 | #if LJ_HASJIT |
| 8972 | dasm_put(Dst, 7020); | 9025 | dasm_put(Dst, 7069); |
| 8973 | #endif | 9026 | #endif |
| 8974 | break; | 9027 | break; |
| 8975 | 9028 | ||
| @@ -8978,40 +9031,40 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 8978 | break; | 9031 | break; |
| 8979 | #endif | 9032 | #endif |
| 8980 | case BC_IITERL: | 9033 | case BC_IITERL: |
| 8981 | dasm_put(Dst, 7022, LJ_TNIL); | 9034 | dasm_put(Dst, 7071, LJ_TNIL); |
| 8982 | if (op == BC_JITERL) { | 9035 | if (op == BC_JITERL) { |
| 8983 | dasm_put(Dst, 7029); | 9036 | dasm_put(Dst, 7078); |
| 8984 | } else { | 9037 | } else { |
| 8985 | dasm_put(Dst, 7031, 32-1, -(BCBIAS_J*4 >> 16)); | 9038 | dasm_put(Dst, 7080, 32-1, -(BCBIAS_J*4 >> 16)); |
| 8986 | } | 9039 | } |
| 8987 | dasm_put(Dst, 7039); | 9040 | dasm_put(Dst, 7088); |
| 8988 | break; | 9041 | break; |
| 8989 | 9042 | ||
| 8990 | case BC_LOOP: | 9043 | case BC_LOOP: |
| 8991 | #if LJ_HASJIT | 9044 | #if LJ_HASJIT |
| 8992 | dasm_put(Dst, 7051); | 9045 | dasm_put(Dst, 7100); |
| 8993 | #endif | 9046 | #endif |
| 8994 | break; | 9047 | break; |
| 8995 | 9048 | ||
| 8996 | case BC_ILOOP: | 9049 | case BC_ILOOP: |
| 8997 | dasm_put(Dst, 7053); | 9050 | dasm_put(Dst, 7102); |
| 8998 | break; | 9051 | break; |
| 8999 | 9052 | ||
| 9000 | case BC_JLOOP: | 9053 | case BC_JLOOP: |
| 9001 | #if LJ_HASJIT | 9054 | #if LJ_HASJIT |
| 9002 | dasm_put(Dst, 7064); | 9055 | dasm_put(Dst, 7113); |
| 9003 | #endif | 9056 | #endif |
| 9004 | break; | 9057 | break; |
| 9005 | 9058 | ||
| 9006 | case BC_JMP: | 9059 | case BC_JMP: |
| 9007 | dasm_put(Dst, 7066, 32-1, -(BCBIAS_J*4 >> 16)); | 9060 | dasm_put(Dst, 7115, 32-1, -(BCBIAS_J*4 >> 16)); |
| 9008 | break; | 9061 | break; |
| 9009 | 9062 | ||
| 9010 | /* -- Function headers -------------------------------------------------- */ | 9063 | /* -- Function headers -------------------------------------------------- */ |
| 9011 | 9064 | ||
| 9012 | case BC_FUNCF: | 9065 | case BC_FUNCF: |
| 9013 | #if LJ_HASJIT | 9066 | #if LJ_HASJIT |
| 9014 | dasm_put(Dst, 7082); | 9067 | dasm_put(Dst, 7131); |
| 9015 | #endif | 9068 | #endif |
| 9016 | case BC_FUNCV: /* NYI: compiled vararg functions. */ | 9069 | case BC_FUNCV: /* NYI: compiled vararg functions. */ |
| 9017 | break; | 9070 | break; |
| @@ -9021,38 +9074,38 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop) | |||
| 9021 | break; | 9074 | break; |
| 9022 | #endif | 9075 | #endif |
| 9023 | case BC_IFUNCF: | 9076 | case BC_IFUNCF: |
| 9024 | dasm_put(Dst, 7084, Dt1(->maxstack), -4+PC2PROTO(numparams), -4+PC2PROTO(k), 31-3); | 9077 | dasm_put(Dst, 7133, Dt1(->maxstack), -4+PC2PROTO(numparams), -4+PC2PROTO(k), 31-3); |
| 9025 | if (op == BC_JFUNCF) { | 9078 | if (op == BC_JFUNCF) { |
| 9026 | dasm_put(Dst, 7102); | 9079 | dasm_put(Dst, 7151); |
| 9027 | } else { | 9080 | } else { |
| 9028 | dasm_put(Dst, 7104); | 9081 | dasm_put(Dst, 7153); |
| 9029 | } | 9082 | } |
| 9030 | dasm_put(Dst, 7113); | 9083 | dasm_put(Dst, 7162); |
| 9031 | break; | 9084 | break; |
| 9032 | 9085 | ||
| 9033 | case BC_JFUNCV: | 9086 | case BC_JFUNCV: |
| 9034 | #if !LJ_HASJIT | 9087 | #if !LJ_HASJIT |
| 9035 | break; | 9088 | break; |
| 9036 | #endif | 9089 | #endif |
| 9037 | dasm_put(Dst, 7119); | 9090 | dasm_put(Dst, 7168); |
| 9038 | break; /* NYI: compiled vararg functions. */ | 9091 | break; /* NYI: compiled vararg functions. */ |
| 9039 | 9092 | ||
| 9040 | case BC_IFUNCV: | 9093 | case BC_IFUNCV: |
| 9041 | dasm_put(Dst, 7121, Dt1(->maxstack), 8+FRAME_VARG, -4+PC2PROTO(k), -4+PC2PROTO(numparams), LJ_TNIL); | 9094 | dasm_put(Dst, 7170, Dt1(->maxstack), 8+FRAME_VARG, -4+PC2PROTO(k), -4+PC2PROTO(numparams), LJ_TNIL); |
| 9042 | break; | 9095 | break; |
| 9043 | 9096 | ||
| 9044 | case BC_FUNCC: | 9097 | case BC_FUNCC: |
| 9045 | case BC_FUNCCW: | 9098 | case BC_FUNCCW: |
| 9046 | if (op == BC_FUNCC) { | 9099 | if (op == BC_FUNCC) { |
| 9047 | dasm_put(Dst, 7174, Dt8(->f)); | 9100 | dasm_put(Dst, 7223, Dt8(->f)); |
| 9048 | } else { | 9101 | } else { |
| 9049 | dasm_put(Dst, 7177, DISPATCH_GL(wrapf)); | 9102 | dasm_put(Dst, 7226, DISPATCH_GL(wrapf)); |
| 9050 | } | 9103 | } |
| 9051 | dasm_put(Dst, 7180, Dt1(->maxstack), Dt1(->base), Dt1(->top), ~LJ_VMST_C); | 9104 | dasm_put(Dst, 7229, Dt1(->maxstack), Dt1(->base), Dt1(->top), ~LJ_VMST_C); |
| 9052 | if (op == BC_FUNCCW) { | 9105 | if (op == BC_FUNCCW) { |
| 9053 | dasm_put(Dst, 7193, Dt8(->f)); | 9106 | dasm_put(Dst, 7242, Dt8(->f)); |
| 9054 | } | 9107 | } |
| 9055 | dasm_put(Dst, 7196, DISPATCH_GL(vmstate), Dt1(->top), 31-3, Dt1(->base), ~LJ_VMST_INTERP, DISPATCH_GL(vmstate)); | 9108 | dasm_put(Dst, 7245, DISPATCH_GL(vmstate), Dt1(->base), 31-3, Dt1(->top), ~LJ_VMST_INTERP, DISPATCH_GL(vmstate)); |
| 9056 | break; | 9109 | break; |
| 9057 | 9110 | ||
| 9058 | /* ---------------------------------------------------------------------- */ | 9111 | /* ---------------------------------------------------------------------- */ |
| @@ -9072,7 +9125,7 @@ static int build_backend(BuildCtx *ctx) | |||
| 9072 | 9125 | ||
| 9073 | build_subroutines(ctx); | 9126 | build_subroutines(ctx); |
| 9074 | 9127 | ||
| 9075 | dasm_put(Dst, 7217); | 9128 | dasm_put(Dst, 7266); |
| 9076 | for (op = 0; op < BC__MAX; op++) | 9129 | for (op = 0; op < BC__MAX; op++) |
| 9077 | build_ins(ctx, (BCOp)op, op); | 9130 | build_ins(ctx, (BCOp)op, op); |
| 9078 | 9131 | ||
| @@ -9107,7 +9160,8 @@ static void emit_asm_debug(BuildCtx *ctx) | |||
| 9107 | "\t.long .Lbegin\n" | 9160 | "\t.long .Lbegin\n" |
| 9108 | "\t.long %d\n" | 9161 | "\t.long %d\n" |
| 9109 | "\t.byte 0xe\n\t.uleb128 %d\n" | 9162 | "\t.byte 0xe\n\t.uleb128 %d\n" |
| 9110 | "\t.byte 0x11\n\t.uleb128 65\n\t.sleb128 -1\n", | 9163 | "\t.byte 0x11\n\t.uleb128 65\n\t.sleb128 -1\n" |
| 9164 | "\t.byte 0x5\n\t.uleb128 70\n\t.uleb128 55\n", | ||
| 9111 | (int)ctx->codesz, CFRAME_SIZE); | 9165 | (int)ctx->codesz, CFRAME_SIZE); |
| 9112 | for (i = 14; i <= 31; i++) | 9166 | for (i = 14; i <= 31; i++) |
| 9113 | fprintf(ctx->fp, | 9167 | fprintf(ctx->fp, |
| @@ -9144,7 +9198,8 @@ static void emit_asm_debug(BuildCtx *ctx) | |||
| 9144 | "\t.long %d\n" | 9198 | "\t.long %d\n" |
| 9145 | "\t.uleb128 0\n" /* augmentation length */ | 9199 | "\t.uleb128 0\n" /* augmentation length */ |
| 9146 | "\t.byte 0xe\n\t.uleb128 %d\n" | 9200 | "\t.byte 0xe\n\t.uleb128 %d\n" |
| 9147 | "\t.byte 0x11\n\t.uleb128 65\n\t.sleb128 -1\n", | 9201 | "\t.byte 0x11\n\t.uleb128 65\n\t.sleb128 -1\n" |
| 9202 | "\t.byte 0x5\n\t.uleb128 70\n\t.uleb128 55\n", | ||
| 9148 | (int)ctx->codesz, CFRAME_SIZE); | 9203 | (int)ctx->codesz, CFRAME_SIZE); |
| 9149 | for (i = 14; i <= 31; i++) | 9204 | for (i = 14; i <= 31; i++) |
| 9150 | fprintf(ctx->fp, | 9205 | fprintf(ctx->fp, |
diff --git a/src/lj_frame.h b/src/lj_frame.h index 2baf44a8..b8b7a727 100644 --- a/src/lj_frame.h +++ b/src/lj_frame.h | |||
| @@ -100,13 +100,13 @@ enum { | |||
| 100 | #define CFRAME_SIZE 64 | 100 | #define CFRAME_SIZE 64 |
| 101 | #define CFRAME_SHIFT_MULTRES 3 | 101 | #define CFRAME_SHIFT_MULTRES 3 |
| 102 | #elif LJ_TARGET_PPC | 102 | #elif LJ_TARGET_PPC |
| 103 | #define CFRAME_OFS_ERRF 28 | 103 | #define CFRAME_OFS_ERRF 48 |
| 104 | #define CFRAME_OFS_NRES 24 | 104 | #define CFRAME_OFS_NRES 44 |
| 105 | #define CFRAME_OFS_PREV 20 | 105 | #define CFRAME_OFS_PREV 40 |
| 106 | #define CFRAME_OFS_L 16 | 106 | #define CFRAME_OFS_L 36 |
| 107 | #define CFRAME_OFS_PC 8 | 107 | #define CFRAME_OFS_PC 32 |
| 108 | #define CFRAME_OFS_MULTRES 12 | 108 | #define CFRAME_OFS_MULTRES 28 |
| 109 | #define CFRAME_SIZE 256 | 109 | #define CFRAME_SIZE 272 |
| 110 | #define CFRAME_SHIFT_MULTRES 3 | 110 | #define CFRAME_SHIFT_MULTRES 3 |
| 111 | #elif LJ_TARGET_PPCSPE | 111 | #elif LJ_TARGET_PPCSPE |
| 112 | #define CFRAME_OFS_ERRF 28 | 112 | #define CFRAME_OFS_ERRF 28 |
