Mercurial > pub > dyncall > dyncall
annotate ToDo @ 286:ce688f871d51 r1.0-RC2
- todo
| author | Tassilo Philipp |
|---|---|
| date | Sat, 21 Apr 2018 14:34:38 +0200 |
| parents | 73f25e3f1b99 |
| children | 8d9629a078e4 |
| rev | line source |
|---|---|
| 278 | 1 1.1: |
| 0 | 2 ---- |
| 286 | 3 - ./configure on macOS does not pass CFLAGS etc.. to Makefile.config |
|
256
7520e2260097
- added to configure some detection on how to compile .s/.S with --noexecstack (or similar), as compilers' defaults are often insane
Tassilo Philipp
parents:
250
diff
changeset
|
4 - support platforms without shared libraries so they can be built by just typing `./configure;make` (e.g. minix < 3.2.1) |
|
7520e2260097
- added to configure some detection on how to compile .s/.S with --noexecstack (or similar), as compilers' defaults are often insane
Tassilo Philipp
parents:
250
diff
changeset
|
5 * also make sure minix with shared library support builds and works in general (>= 3.2.1) as well as ELF on Minix (>= 3.2.0) to begin with (as that's the base, and we only test on 3.1.8 so far) |
| 201 | 6 - dyncall supports calls to functions where prototype exists (with and without varargs); however not when no |
| 7 prototype exist (e.g. just calling some pointer), without any declaration... even possible in C, as one has | |
| 8 to cast to the function type? need to support? | |
| 9 | |
|
165
572aff021627
- file name/layout cleanup, removed "-att" from x64 .S filenames, as unnecessary and also misleading
cslag
parents:
159
diff
changeset
|
10 |
| 155 | 11 - dyncallback's "stack_cleanup" can be removed from non x86 impls... test if they still work |
|
165
572aff021627
- file name/layout cleanup, removed "-att" from x64 .S filenames, as unnecessary and also misleading
cslag
parents:
159
diff
changeset
|
12 - target a minimum c version, for use with -pedantic, etc.? Right now we use e.g. extensions |
|
572aff021627
- file name/layout cleanup, removed "-att" from x64 .S filenames, as unnecessary and also misleading
cslag
parents:
159
diff
changeset
|
13 for anon structs, etc. |
| 86 | 14 - the CallVM-free functions are per VTable, however the latter can be changed out |
| 15 at runtime... which basically changes potentially the deallocator... | |
| 16 same goes for functions setting the mode. think about how to make this safer - currently | |
| 17 we have a higher flexibility and we need to potentially clean up from the mode we are in, | |
| 18 however, this is open to misuse | |
| 78 | 19 - check all vararg calling conv implementations if they promote correctly |
| 20 (e.g. float to double); we used to not care as it was the user's job to | |
| 21 think of that, but we allow users to use ArgFloat, etc. on "..." now, | |
| 22 taking care of the promotion; so it should be consistent all across the | |
| 23 implementations -> also write testcode specifically for that | |
| 0 | 24 - autovar was never really pushed all the way through and still plays second |
| 9 | 25 fiddle to dyncall_macros.h, clean this all up, eventually (Tassilo: for now, I |
| 26 removed out of sync files to avoid confusion; but still probably duped code) | |
| 69 | 27 - add portable "make install" |
| 28 * make install should also install manpages | |
| 0 | 29 - mailing list announcements (html email?) |
| 30 - fix for NDS: | |
| 69 | 31 * ARM: |
|
104
dbca6763f2be
- complete, working mips o32 callback (using hardware fp); fixes error from last commit, which ignored first 2 float args
cslag
parents:
100
diff
changeset
|
32 - callback_plain retval wrong (not only platform), area on stack where |
|
dbca6763f2be
- complete, working mips o32 callback (using hardware fp); fixes error from last commit, which ignored first 2 float args
cslag
parents:
100
diff
changeset
|
33 it's stored is probably not zeroed, so half-words, etc., come with garbage |
| 69 | 34 * THUMB: |
| 35 - ellipsis (might be test itself, not respecting fixed part of args) | |
|
104
dbca6763f2be
- complete, working mips o32 callback (using hardware fp); fixes error from last commit, which ignored first 2 float args
cslag
parents:
100
diff
changeset
|
36 - callback_plain retval, see above under ARM |
| 69 | 37 - callf |
| 24 | 38 - support Solaris11 CFLAGS with -D_FILE_OFFSET_BITS=64 |
|
256
7520e2260097
- added to configure some detection on how to compile .s/.S with --noexecstack (or similar), as compilers' defaults are often insane
Tassilo Philipp
parents:
250
diff
changeset
|
39 - make sure selinux works (esp. regarding NX bits) |
| 54 | 40 Daniel has a patch for it, if needed, implementing allocwx with two memory blocks, one for w^x, mmaped to one for r|x |
| 68 | 41 - support /SAFESEH on cl/win32 |
|
83
54930a037e8a
- PPC64 single-precision float fixes for more than 13 float args (thanks Masanori!)
cslag
parents:
78
diff
changeset
|
42 - test code functions should be in .so files, optionally, so the suites can directly |
|
54930a037e8a
- PPC64 single-precision float fixes for more than 13 float args (thanks Masanori!)
cslag
parents:
78
diff
changeset
|
43 be used to test dycnall bindings |
|
54930a037e8a
- PPC64 single-precision float fixes for more than 13 float args (thanks Masanori!)
cslag
parents:
78
diff
changeset
|
44 - pkg-config support? |
| 90 | 45 - quadmath support (long double) |
| 117 | 46 - add tests using alloca(), as this might depend on the frame pointer being correctly |
| 47 set; we don't check for this, currently, at all | |
| 0 | 48 |
| 49 portasm: | |
| 50 -------- | |
| 51 - add solaris support for x64 | |
| 52 | |
| 53 dyncall: | |
| 54 -------- | |
|
146
0ab08c1541f0
- fixed armhf ellipsis calls, were ignoring spill area
cslag
parents:
145
diff
changeset
|
55 - find big endian arm box (also hardfloat), e.g. cubietruck: http://blog.netbsd.org/tnf/entry/working_arm_multiprocessor_support |
|
0ab08c1541f0
- fixed armhf ellipsis calls, were ignoring spill area
cslag
parents:
145
diff
changeset
|
56 - test if armhf/thumb is actually working... pulls in arm mode code in dyncall_callvm.c |
|
0ab08c1541f0
- fixed armhf ellipsis calls, were ignoring spill area
cslag
parents:
145
diff
changeset
|
57 - dyncall_call_mips_n32.h and dyncall_call_mips_n64.h are pretty much the same, share code |
| 0 | 58 - support for return values: aggregate return values |
| 59 - support for argument values: structures, half-precision, vector types, long double | |
| 60 - consider automatic type-promotion for arguments passed through DC_CALL_C_ELLIPSIS_VARARGS; | |
| 61 this would make it easier to just pass arguments instead of having to know about the C | |
| 278 | 62 type promotions (this is partly done, see todo-item above under 1.1) |
| 0 | 63 - syscalls for x64 |
| 64 * bsd | |
| 65 * linux | |
| 66 - other syscalls | |
| 110 | 67 - MIPS32 softfloat support (-msoft-float) |
| 135 | 68 - test MIPS32 eabi big endian (current port works on psp, which is little endian) |
|
132
b0cca984c740
- manual update, started splitting platform overview in EP and EL for some platforms
cslag
parents:
129
diff
changeset
|
69 - implement MIPS64 N32 (gcc -mabi=n32); both, little and big-endian (looks like NetNBSD on and |
|
b0cca984c740
- manual update, started splitting platform overview in EP and EL for some platforms
cslag
parents:
129
diff
changeset
|
70 EdgeRouter lite uses this: https://blog.netbsd.org/tnf/entry/hands_on_experience_with_edgerouter) |
| 129 | 71 - implement MIPS64 EABI (gcc -mabi=eabi); both, little and big-endian |
| 141 | 72 - support for Minix/arm |
|
146
0ab08c1541f0
- fixed armhf ellipsis calls, were ignoring spill area
cslag
parents:
145
diff
changeset
|
73 - improve ellipsis test: |
|
0ab08c1541f0
- fixed armhf ellipsis calls, were ignoring spill area
cslag
parents:
145
diff
changeset
|
74 * test not just with one fixed arg, to also simulate alignment problems |
|
0ab08c1541f0
- fixed armhf ellipsis calls, were ignoring spill area
cslag
parents:
145
diff
changeset
|
75 * test return values |
|
0ab08c1541f0
- fixed armhf ellipsis calls, were ignoring spill area
cslag
parents:
145
diff
changeset
|
76 * convert from c++ to c, to have it also on plan9, and more portability |
| 0 | 77 |
| 78 dynload: | |
| 79 -------- | |
| 244 | 80 - dlGetLibraryPath: dl_iterate_phdr() used on OpenBSD, but not available on version < 3.7 |
| 0 | 81 - bug: test/nm crashes on qemu mips linux o32 debian etch |
| 82 - test/resolve_self crashes/asserts on windows and bsds | |
| 83 - rename SymsInit to InitSyms and similar for cleanup function to reflect naming | |
| 84 in dyncall | |
| 85 - get rid of Dl_info and friends (_GNU_SOURCE) in dynload/dynload_syms_elf.c | |
| 86 for implementation of dlSymsNameFromValue(..) | |
| 87 - check if PSP can support dynload (missing elf.h, dlfcn.h, etc.); fixup readme if successful | |
| 84 | 88 - some functionality like java's System.mapLibraryName('name') might be helpful? |
| 0 | 89 |
| 90 dyncallback: | |
| 91 ------------ | |
|
104
dbca6763f2be
- complete, working mips o32 callback (using hardware fp); fixes error from last commit, which ignored first 2 float args
cslag
parents:
100
diff
changeset
|
92 - callback_plain's return value not correct anymore on NDS (maybe just broken testcode?), |
| 278 | 93 see above under 1.1 items |
|
104
dbca6763f2be
- complete, working mips o32 callback (using hardware fp); fixes error from last commit, which ignored first 2 float args
cslag
parents:
100
diff
changeset
|
94 * check other platforms also, if asm stub initializes retval space, correctly |
| 21 | 95 - finish PPC32 callbacks (see bugs section, below, BSD not working) |
| 110 | 96 - MIPS32 softfloat support (-msoft-float) |
| 135 | 97 - test MIPS32 eabi big endian (current port works on psp, which is little endian) |
|
132
b0cca984c740
- manual update, started splitting platform overview in EP and EL for some platforms
cslag
parents:
129
diff
changeset
|
98 - implement MIPS64 N32 (gcc -mabi=n32); both, little and big-endian (looks like NetNBSD on and |
|
b0cca984c740
- manual update, started splitting platform overview in EP and EL for some platforms
cslag
parents:
129
diff
changeset
|
99 EdgeRouter lite uses this: https://blog.netbsd.org/tnf/entry/hands_on_experience_with_edgerouter) |
| 129 | 100 - implement MIPS64 EABI (gcc -mabi=eabi); both, little and big-endian |
| 141 | 101 - support for Minix/arm |
| 0 | 102 |
| 103 bindings: | |
| 104 --------- | |
| 105 - release bindings as standalone packages (already done for rbdc as a gem and rdyncall on cran) | |
| 106 * add note to documentation, where bindings are and that some bindings are svn-only ATM | |
| 107 - add rdoc documentation to ruby gem | |
| 108 - add pydoc for python | |
| 109 - add manpage for shdc | |
| 110 - expose callf-convenience functions to go | |
| 111 - add godoc for godc | |
| 112 - add javadoc to java | |
| 113 - add more bindings | |
| 114 - add callback support for erlang, go, java, lua, python and ruby (and shell? how?) | |
| 115 - add call-conv-mode-support for rbdc through signature | |
| 116 | |
| 117 manual: | |
| 118 ------- | |
| 201 | 119 - introduce doc overview tables and common vocab for calling convention specifics, following example of table on page 13 of https://www.linux-mips.org/pub/linux/mips/doc/ABI/MIPS-N32-ABI-Handbook.pdf; also as inspiration, e.g. user 'preserved' instead of 'permanent', etc. https://developer.apple.com/library/content/documentation/Xcode/Conceptual/iPhoneOSABIReference/Articles/ARMv6FunctionCallingConventions.html#//apple_ref/doc/uid/TP40009021-SW4 |
| 120 - make stack layout diagrams better, e.g. add grow direction (example: https://developer.apple.com/library/content/documentation/Xcode/Conceptual/iPhoneOSABIReference/art/arm_stack.jpg on https://developer.apple.com/library/content/documentation/Xcode/Conceptual/iPhoneOSABIReference/Articles/ARMv6FunctionCallingConventions.html#//apple_ref/doc/uid/TP40009021-SW1) | |
|
100
dcb7157392f1
- manual: fixed html output of tables rendered as .png, using tex multirow
cslag
parents:
98
diff
changeset
|
121 - callconv diagrams: |
| 98 | 122 * good idea to review it all, anyways, if the calling conventions are actually |
|
100
dcb7157392f1
- manual: fixed html output of tables rendered as .png, using tex multirow
cslag
parents:
98
diff
changeset
|
123 represented correctly (and if they are in sync with the .pdf, we used to have |
|
dcb7157392f1
- manual: fixed html output of tables rendered as .png, using tex multirow
cslag
parents:
98
diff
changeset
|
124 problems with multirow.4ht) |
| 0 | 125 - provide more examples on how to use dyncall, dynload and dyncallback |
| 126 * e.g. enhance manual with a couple of examples (e.g. calling MessageBoxA on windows, etc.) | |
| 127 - manuals for bindings (as stated in bindings-section, above) | |
| 117 | 128 - under "dyncall support", in each calling convention appendix, list crucial details of e.g. big/little endian support, etc. |
| 129 - specify integer models in use, use common ILP32, LLP64, etc. terms | |
| 0 | 130 |
| 88 | 131 regressions: |
| 132 ------------ | |
| 0 | 133 - Haiku/gmake build doesn't build dynload due to the fact, that elf.h is not found |
| 134 on default installations (one has to install the system headers) | |
| 135 * add to doc | |
| 136 - Solaris/gmake build doesn't build dynload and tests anymore (maybe not even dyncallback) | |
| 137 - test arm32/ATPCS/THUMB (and then change Status in doc Appendix) | |
| 138 - look over code and fix TODO or @@@ marks | |
| 139 - add ppc-support to doc (both, 32 and 64, as well as little and big endian remarks) | |
| 140 | |
| 141 nice to have: | |
| 142 ------------- | |
| 143 - update: microsoft visual c++ build files - integrate all test suites in solution file | |
| 144 - consistency: on x64 platforms: make both ABIs available ('win64','sysv') for all x64 OS ports | |
| 145 - microsoft build enhancement: autodetect assembly via C preprocessor (like with .S gcc files) | |
| 146 - test/thunk: some platforms do not allow for allocation of executable code on heap and stack -- | |
| 147 currently this test will crash, maybe we should collect information which platforms allow and which not. | |
| 148 | |
| 149 bugs: | |
| 150 ----- | |
| 88 | 151 - setting callconv, specifically for platforms that have only one (default)) excepts on some |
| 6 | 152 platforms, eg. setting X64_sysv on amd64/Linux - keeping cdecl which is the same in |
| 88 | 153 this case, works (this should work now...) |
| 0 | 154 - vararg function calls don't work for ARM THUMB mode (Daniel's new interface for modesetting for varag |
| 155 args should be used); adapt test/ellipsis and/or retest | |
| 156 | |
| 157 missing implementations (descending priority): | |
| 158 ---------------------------------------------- | |
| 159 - riscv | |
| 160 - itanium | |
| 88 | 161 - superh/j-core |
| 0 | 162 - 68k, 88k, 6502, etc. |
| 88 | 163 - arc |
| 0 | 164 - alpha |
| 165 - cell | |
| 166 - blackfin | |
| 88 | 167 - seaforth |
| 21 | 168 - s/390 |
| 0 | 169 - z80 |
| 170 - hppa | |
| 171 - vax | |
| 172 - atmel avr | |
| 173 - propeller | |
| 174 - amd29k | |
| 175 |
