about summary refs log tree commit diff stats
path: root/apps/hex.subx
Commit message (Collapse)AuthorAgeFilesLines
* 6508 - support null exit-descriptorKartik Agaram2020-06-101-8/+2
|
* 6507 - use syscall names everywhereKartik Agaram2020-06-101-2/+1
|
* 6503Kartik Agaram2020-06-081-1/+1
|
* 6089Kartik Agaram2020-03-061-2/+2
|
* 6014Kartik Agaram2020-02-171-2/+2
|
* 5924Kartik Agaram2020-01-271-16/+16
|
* 5897 - rename comparison instructionsKartik Agaram2020-01-161-22/+22
| | | | | | | Signed and unsigned don't quite capture the essence of what the different combinations of x86 flags are doing for SubX. The crucial distinction is that one set of comparison operators is for integers and the second is for addresses.
* 5883 - drop the `ref` keywordKartik Agaram2020-01-121-12/+12
| | | | | | | | | | When I created it I was conflating two things: a) needing to refer to just the start, rather than the whole, and b) counting indirections. Both are kinda ill-posed. Now Mu will have just `addr` and `handle` types. Normal types will translate implicitly to `addr` types, while `handle` will always require explicit handling.
* 5876 - address -> addrKartik Agaram2020-01-031-4/+4
|
* 5804Kartik Agaram2019-12-081-14/+14
| | | | | Try to make the comments consistent with the type system we'll eventually have.
* 5790Kartik Agaram2019-12-051-45/+45
| | | | | | Standardize conventions for labels within objects in the data segment. We're going to use this in a new tool.
* 5782 - fix a widespread bug with Heap-sizeKartik Agaram2019-11-301-1/+1
|
* 5714Kartik Agaram2019-10-251-89/+45
| | | | Replace calculations of constants with labels.
* 5700Kartik Agaram2019-10-171-2/+2
|
* 5698Kartik Agaram2019-10-151-20/+20
| | | | Thanks Andrew Owen for reporting this typo.
* 5675 - move helpers from subx-common into layersKartik Agaram2019-09-191-0/+1486
| | | | | | | | | | | | | | | | This undoes 5672 in favor of a new plan: Layers 000 - 099 are for running without syntax sugar. We use them for building syntax-sugar passes. Layers 100 and up are for running with all syntax sugar. The layers are arranged in approximate order so more phases rely on earlier layers than later ones. I plan to not use intermediate syntax sugar (just sigils without calls, or sigils and calls without braces) anywhere except in the specific passes implementing them.
* 5672 - move hex out of appsKartik Agaram2019-09-191-1486/+0
|
* 5661Kartik Agaram2019-09-151-1/+1
|
* 5607Kartik Agaram2019-09-011-3/+3
|
* 5600Kartik Agaram2019-08-311-8/+11
|
* 5592 - switch register names to lowercaseKartik Agaram2019-08-261-499/+499
|
* 5589Kartik Agaram2019-08-251-1/+1
|
* standardize test input/output/error streamsKartik Agaram2019-08-131-32/+0
|
* 5499Kartik Agaram2019-07-311-1/+1
|
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-0/+1515
495' href='#n495'>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 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674