From 41e4cfc33f02cc924f867ad86321591d77891d4c Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Sun, 19 Jan 2020 23:38:06 -0800 Subject: 5904 --- html/apps/mu.subx.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'html') diff --git a/html/apps/mu.subx.html b/html/apps/mu.subx.html index d63f57bf..ba371346 100644 --- a/html/apps/mu.subx.html +++ b/html/apps/mu.subx.html @@ -323,7 +323,7 @@ if ('onhashchange' in window) { 261 0x10/imm32 262 Function-next: # (handle function) 263 0x14/imm32 - 264 Function-size: + 264 Function-size: # (addr int) 265 0x18/imm32/24 266 267 Primitive-name: @@ -344,7 +344,7 @@ if ('onhashchange' in window) { 282 0x1c/imm32 283 Primitive-next: # (handle function) 284 0x20/imm32 - 285 Primitive-size: + 285 Primitive-size: # (addr int) 286 0x24/imm32/36 287 288 Stmt-tag: @@ -381,7 +381,7 @@ if ('onhashchange' in window) { 319 Named-block-statements: # (handle list statement) 320 8/imm32 321 - 322 Stmt-size: + 322 Stmt-size: # (addr int) 323 0x18/imm32 324 325 Var-name: @@ -394,7 +394,7 @@ if ('onhashchange' in window) { 332 0xc/imm32 333 Var-register: 334 0x10/imm32 - 335 Var-size: + 335 Var-size: # (addr int) 336 0x14/imm32 337 338 Any-register: # "*" @@ -407,7 +407,7 @@ if ('onhashchange' in window) { 345 0/imm32 346 List-next: 347 4/imm32 - 348 List-size: + 348 List-size: # (addr int) 349 8/imm32 350 351 # Types are expressed as trees (s-expressions) of type-ids (ints). @@ -420,7 +420,7 @@ if ('onhashchange' in window) { 358 0/imm32 359 Tree-right: # (addr tree type-id) 360 4/imm32 - 361 Tree-size: + 361 Tree-size: # (addr int) 362 8/imm32 363 364 Max-type-id: @@ -1807,7 +1807,7 @@ if ('onhashchange' in window) { 1795 (check-strings-equal %edx "x" "F - test-var-with-type/name") 1796 8b/-> *(eax+4) 2/r32/edx # Var-type 1797 (check-ints-equal *edx 1 "F - test-var-with-type/type") -1798 (check-ints-equal *(edx+4) 0 "F - test-var-with-register-and-trailing-characters/type") +1798 (check-ints-equal *(edx+4) 0 "F - test-var-with-type/type") 1799 # . epilogue 1800 89/<- %esp 5/r32/ebp 1801 5d/pop-to-ebp @@ -1837,7 +1837,7 @@ if ('onhashchange' in window) { 1825 (check-strings-equal %edx "eax" "F - test-var-with-type-and-register/register") 1826 8b/-> *(eax+4) 2/r32/edx # Var-type 1827 (check-ints-equal *edx 1 "F - test-var-with-type-and-register/type") -1828 (check-ints-equal *(edx+4) 0 "F - test-var-with-register-and-trailing-characters/type") +1828 (check-ints-equal *(edx+4) 0 "F - test-var-with-type-and-register/type") 1829 # . epilogue 1830 89/<- %esp 5/r32/ebp 1831 5d/pop-to-ebp @@ -1867,7 +1867,7 @@ if ('onhashchange' in window) { 1855 (check-ints-equal %edx 0 "F - test-var-with-trailing-characters/register") 1856 8b/-> *(eax+4) 2/r32/edx # Var-type 1857 (check-ints-equal *edx 1 "F - test-var-with-trailing-characters/type") -1858 (check-ints-equal *(edx+4) 0 "F - test-var-with-register-and-trailing-characters/type") +1858 (check-ints-equal *(edx+4) 0 "F - test-var-with-trailing-characters/type") 1859 # . epilogue 1860 89/<- %esp 5/r32/ebp 1861 5d/pop-to-ebp -- cgit 1.4.1-2-gfad0 a id='n197' href='#n197'>197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535