about summary refs log tree commit diff stats
path: root/999spaces.cc
Commit message (Collapse)AuthorAgeFilesLines
* 3966Kartik K. Agaram2017-07-091-1/+1
|
* 3561Kartik K. Agaram2016-10-221-2/+2
|
* 2735 - define recipes using 'def'Kartik K. Agaram2016-03-081-3/+3
| | | | | | | | | | | | I'm dropping all mention of 'recipe' terminology from the Readme. That way I hope to avoid further bike-shedding discussions while I very slowly decide on the right terminology with my students. I could be smarter in my error messages and use 'recipe' when code uses it and 'function' otherwise. But what about other words like ingredient? It would all add complexity that I'm not yet sure is worthwhile. But I do want separate experiences for veteran programmers reading about Mu on github and for people learning programming using Mu.
* 2708 - update map of transform orderingKartik K. Agaram2016-02-251-6/+10
|
* 2607 - resolve some edge cases in static dispatchKartik K. Agaram2015-11-291-0/+13
|
* 2504 - support to-text in 'stash'Kartik K. Agaram2015-11-281-0/+1
|
* 2502Kartik K. Agaram2015-11-281-3/+5
|
* 2501Kartik K. Agaram2015-11-281-5/+4
|
* 2500Kartik K. Agaram2015-11-281-2/+0
|
* 2499 - done reorganizing transformsKartik K. Agaram2015-11-281-4/+7
|
* 2498Kartik K. Agaram2015-11-281-4/+6
| | | | | | Just one tangle of dependencies left in the transforms. Untangling it will require one more region: for transforms modifying types (inside instructions).
* 2497Kartik K. Agaram2015-11-281-1/+1
|
* 2496Kartik K. Agaram2015-11-281-4/+5
|
* 2495Kartik K. Agaram2015-11-281-2/+4
|
* 2494Kartik K. Agaram2015-11-281-17/+24
| | | | | Some more structure to transforms, and flattening of dependencies between them.
* 2493 - eliminate a couple of dependenciesKartik K. Agaram2015-11-281-3/+3
| | | | | | | In general you only want to specify one transform in terms of (before/after) another if the other direction wouldn't work. Otherwise try to make it work by just pushing transforms at the start/end of the list.
* 2492 - summarize current transformsKartik K. Agaram2015-11-281-0/+23
|
* 2313Kartik K. Agaram2015-10-291-4/+3
|
* 2261Kartik K. Agaram2015-10-061-3/+1
|
* 1842 - get layers building again after 2 weeksKartik K. Agaram2015-07-241-1/+1
| | | | | Also, turns out I haven't been building 999spaces.cc in my default build. Now fixed.
* 1814 - save code in editorKartik K. Agaram2015-07-181-2/+4
| | | | | | | Very rudimentary ability to read/write from file+version control. No control over name. Recipes now saved. But what to do about sandboxes?
* 1440Kartik K. Agaram2015-05-231-0/+1
|
* 1417 - draft zoom levels in tracesKartik K. Agaram2015-05-211-0/+11
|
* 1287Kartik K. Agaram2015-05-061-1/+2
|
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-0/+21
I've tried to update the Readme, but there are at least a couple of issues.
o">+ p_entry->p_memsz; printkf("p_entry: %x\n", v_begin); if (v_begin < USER_OFFSET) { printkf("INFO: loadElf(): can't load executable below %x\n", USER_OFFSET); return 0; } if (v_end > USER_STACK) { printkf("INFO: loadElf(): can't load executable above %x\n", USER_STACK); return 0; } //printkf("ELF: entry flags: %x (%d)\n", p_entry->p_flags, p_entry->p_flags); printkf("about to memcpy\n"); memcpy((uint8 *) v_begin, (uint8 *) (elfData + p_entry->p_offset), p_entry->p_filesz); printkf("done with memcpy\n"); if (p_entry->p_memsz > p_entry->p_filesz) { char* p = (char *) p_entry->p_vaddr; for (int i = p_entry->p_filesz; i < (int)(p_entry->p_memsz); i++) { p[i] = 0; } } } } //entry point printkf("done loading ELF\n"); return hdr->e_entry; } href='#n660'>660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867