summary refs log tree commit diff stats
path: root/lib/system/hti.nim
Commit message (Collapse)AuthorAgeFilesLines
* cString => cSourceString; tyCString => tyCstring so that error msgs show ↵Timothee Cour2021-04-171-1/+1
| | | | cstring, not cString (#17744)
* allow old styled RTTI for arc/orc (#15331)Andreas Rumpf2020-09-161-0/+2
|
* remove tyOpt, mOpt (#14636)Timothee Cour2020-06-121-1/+1
| | | | | * remove tyOpt, mOpt * fixup
* forward type alignment information to seqs (#12430)Arne Döring2020-04-191-0/+1
|
* --gc:destructors now means Nim uses pure refcounting (#12557)Andreas Rumpf2019-10-301-2/+2
|
* expose more fields of TNimTypeAraq2019-09-191-4/+4
|
* gc:destructors progressAndreas Rumpf2019-09-161-3/+11
|
* styleCheck: make the compiler and large parts of the stdlib compatible with ↵Araq2019-07-101-3/+3
| | | | --styleCheck:error
* rename tyExpr/tyStmt to tyUntyped/tyTyped (#11227)Arne Döring2019-05-111-2/+2
|
* code cleanup: there is no tyOptRefAndreas Rumpf2019-02-221-1/+1
|
* Fix repr() for UncheckedArray (#9385)LemonBoy2018-10-161-1/+1
|
* Fix linking issue in cpp codegenLemonBoy2018-09-191-1/+5
| | | | | | | Declare the root symbol only once and have the other modules depending on it emit an `extern` declaration. Fixes #9013
* Fix hashing for codegenProc (sic) typesLemonBoy2018-09-141-9/+3
| | | | | | | Since the name mangling is inhibited we should take the user-supplied name during the sighash computation. Fixes #8964
* Always emit hti object types if needed (#8940)LemonBoy2018-09-111-1/+1
| | | | | | | | The compiler is now smart enough to emit types only if needed without all the importc tricks. This also fixes a codegen bug where, if all the stars align correctly, typeinfo doesn't include any definition of `TNimType` but uses it. Found by @skilchen in #8938
* more progress on destructor based stringsAndreas Rumpf2018-07-131-1/+1
|
* first steps of making 'opt' a first class type for NimAndreas Rumpf2017-09-251-0/+15
|
* Fix compilation for 16 bit targets (#5286)Jeff Ciesielski2017-01-261-1/+1
|
* default GC can do a sort of heap dump via -d:nimTypeNames and ↵Andreas Rumpf2017-01-141-0/+6
| | | | dumpNumberOfInstances()
* use -d:nimTypeNames to create RTTI with type namesAndreas Rumpf2016-11-281-0/+2
|
* clean up tyBigNum remnantsJacek Sieka2016-10-241-1/+0
|
* prepare Nim codebase for upcoming parser changesAndreas Rumpf2016-07-151-1/+1
|
* Fix typos in commentsdef2015-06-211-5/+5
|
* some love for the testsuite; fixed regressionsAraq2015-03-011-3/+3
|
* Fix typosFederico Ceratto2015-02-151-1/+1
|
* introduced 'benign' pragmaAraq2014-10-251-2/+2
|
* the big renamefest: first stepsAraq2014-08-221-1/+1
|
* distinguish between 'defined' and 'declared'Araq2014-08-111-1/+1
|
* progress on deepCopyAraq2014-08-011-0/+1
|
* New concurrency model: next stepsAraq2014-04-191-1/+1
|
* case consistency part 4Araq2013-12-271-1/+1
|
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
|
* fixes the recently discovered GC memory leaksZahary Karadjov2012-12-201-10/+33
| | | | | | This revision is intended as comparison point between the old and the new GC The used GC can be switched in mmdisp and various statistics will be gathered during execution (these will be removed/disabled in later revisions)
* preparations for making 'closure' the default calling convention for proc typesAraq2012-07-161-1/+1
|
* more uint related fixesZahary Karadjov2012-06-141-1/+3
|
* implemented marker procs for the GC resulting in huge speedupsAraq2012-03-211-0/+1
|
* year 2012 for most copyright headersAraq2012-01-021-1/+1
|
* got rid of tyPureObject; broke bootstrapping; use generated C codeAraq2011-09-241-3/+2
|
* Added typeinfo moduledom962011-06-091-2/+8
|
* further steps for thread support; bootstrapping should require unzip C ↵Araq2011-05-161-1/+1
| | | | sources and ./build.sh
* cleaned up the tests; fixes #30; fixes #26Araq2011-05-011-1/+3
|
* fixed pango/pangoutils new wrappersAndreas Rumpf2010-02-261-0/+0
|
* continued work on html/xmlparserrumpf_a@web.de2010-02-141-0/+0
|
* added tools and web dirsAndreas Rumpf2009-09-151-29/+22
|
* version0.7.10Andreas Rumpf2009-06-081-0/+65
8'>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 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073