Commit Graph

1211 Commits

Author SHA1 Message Date
James Cowgill
159b94e5fd Various MIPS Fixes (#425)
* mips: simplify closure #defines

This commit should have no visible effect.

* mips: add special handling of variadic functions

MIPS requires special handling of variadic functions which pass floating
point arguments:
* In the o32 ABI, all float arguments are passed in integer registers.
* In the n32/n64 ABIs, float arguments after the ellipsis are passed in
  integer registers.

Implement this in libffi. To support this in n32/n64 closures, we need to add
a new mips_nfixedargs field to ffi_cif which will break the libffi ABI.

This fixes the libffi.call/cls_longdouble_va.c test which was failing on
64-bit MIPS.

* mips: align argn for all 64-bit types in o32 closure handler

Ensure that argn is pre-aligned for all 64-bit argument types (including
doubles) and not just integer types.

This fixes closures of the form "f(float, double, <some integer args>)".
Previously the first integer argument would be read from a2 which is garbage
at this point (the float arguments have already "consumed" a0-a3). After
this commit, argn is correctly padded between the "float" and "double"
arguments so that the first integer argument is read from the stack.

Fixes "double f(float,double,int)" test in #371

* mips: do not read from floating point register if returning a struct

In the o32 ABI, the pointer passed in a0 used to return structures
indirectly is treated as the first argument for argument allocation purposes.
This means that it should inhibit floating point registers the same way that
other integer arguments do.

Fixes "Double f(float,Double,double)" test in #371

* mips: fix pointer cast warnings

Fix two pointer cast warnings when compiled on 64-bit mips by casting
through uintptr_t.

Fixes mips64el part of #404
2018-04-18 20:28:23 -04:00
Anthony Green
f2afda08e8 Merge branch 'master' of github.com:/libffi/libffi 2018-04-08 18:25:43 -04:00
Anthony Green
e27f70b8cf Fix case where callback arg value is split across regs and stack 2018-04-08 18:25:34 -04:00
Andreas Krebbel
801c1bd712 Fix issue #421 (#422)
Fantastic - thanks for digging into this.
2018-04-05 07:27:32 -05:00
Anthony Green
8660e69359 3.3 release candidate 0 2018-04-02 08:30:17 -04:00
Anthony Green
7b7638eb0e disable msabi testing for now 2018-04-02 08:24:44 -04:00
fwg
af6773d6ab Fix appveyor windows build (#420)
* Fix msvcc dll build by adding dllexport decorations to all API declarations

* Fix appveyor build for VS 2013

Use the new -DFFI_BUILDING_DLL for producing a working DLL. Update the
msvcc.sh wrapper script to successfully compile the testsuite files.

* MSVC build: suppress warnings in testsuite

* fix testsuite on appveyor
2018-04-02 06:55:31 -05:00
Anthony Green
48bdb02867 Trim some optimization tests 2018-03-29 07:22:57 -04:00
Anthony Green
f98e0f0d77 Simplify matrix 2018-03-29 07:22:38 -04:00
Anthony Green
fa72b054e1 Remove warning message from clang 2018-03-29 07:10:23 -04:00
Anthony Green
746c3ce220 Expand ABI tests on x86. Testsuite bug fixes. 2018-03-29 07:01:14 -04:00
Anthony Green
2eee934d0c deal with msvc warnings 2018-03-27 14:45:40 -04:00
Anthony Green
206b2974f7 fix quoting issue 2018-03-27 14:37:50 -04:00
Anthony Green
499e41c1ec Don't ignore a file 2018-03-27 14:35:10 -04:00
Anthony Green
5b41e9f6d2 Try different msvc hack 2018-03-27 14:34:31 -04:00
Anthony Green
e8cf133813 msvc c99 hack 2018-03-27 14:12:02 -04:00
Anthony Green
a3e2094089 More msvc hacks 2018-03-27 11:58:42 -04:00
Anthony Green
a82b456e98 msvc fixes 2018-03-27 11:49:46 -04:00
Anthony Green
a2326aaf56 Remove debug output 2018-03-27 11:36:04 -04:00
Anthony Green
85b6b209d7 Force literals to float (msvc warning) 2018-03-27 11:35:23 -04:00
Anthony Green
2872c460ba Fix msvc linking 2018-03-27 11:28:40 -04:00
Anthony Green
b40a386c22 Fix library path handling 2018-03-27 11:20:21 -04:00
Anthony Green
d78c5f64f8 Deal with libpath 2018-03-27 11:14:56 -04:00
Anthony Green
f318bb63c5 Fix library path handling 2018-03-27 08:25:26 -04:00
Anthony Green
4f0c9cb39b Use mixed cygpath paths 2018-03-27 08:10:03 -04:00
Anthony Green
d3693b4665 Copy - don't symlink - to support msvc builds 2018-03-27 08:05:42 -04:00
Anthony Green
51ce3696cd Use cygpath to convert windows paths 2018-03-27 07:35:33 -04:00
Anthony Green
70b93e4d86 try to fix windows builds 2018-03-27 07:14:59 -04:00
Anthony Green
377134d7a9 Reduce verbosity 2018-03-27 07:06:01 -04:00
Anthony Green
d01ef5b875 iOS builds 2018-03-27 06:23:29 -04:00
Anthony Green
d13583f55f Fix -L support 2018-03-27 06:22:57 -04:00
Anthony Green
d49911544b Fix quoting 2018-03-27 05:59:26 -04:00
Anthony Green
8f47ec404f Don't set AM_MAKEFLAGS 2018-03-27 05:35:35 -04:00
Anthony Green
df314193dc Run tests with lots of debug output 2018-03-27 05:13:38 -04:00
Anthony Green
b394947518 Add -L and -l support 2018-03-27 05:11:52 -04:00
Anthony Green
33da6c0752 Mention C99 and build requirements 2018-03-27 05:07:08 -04:00
Anthony Green
e6bdbd7888 Remove reference to wiki 2018-03-27 04:46:04 -04:00
Anthony Green
24eb1f88d7 Refactor travis build instructions. Add iOS build 2018-03-27 04:09:56 -04:00
Anthony Green
ffc3ff162a Add issue template 2018-03-27 04:02:06 -04:00
Anthony Green
5c2ca479e7 Remove uninitialized warning. Fix #163. 2018-03-27 04:01:37 -04:00
Anthony Green
0081378017 revert 2018-03-24 09:05:14 -04:00
Anthony Green
59d44242e1 Try bhaible tests in appveyor 2018-03-24 08:45:59 -04:00
Anthony Green
6f7c29c5a6 Formatting fixes 2018-03-24 08:40:04 -04:00
Anthony Green
f3c2729ee4 Add libffi.map.in to extra dist files 2018-03-23 11:47:29 -04:00
Anthony Green
6d2233f96a Add sparc solaris build notes 2018-03-23 09:06:08 -04:00
Anthony Green
99a80d2fc4 Fix formatting 2018-03-18 21:22:55 -04:00
Anthony Green
a3e87ac8e7 Fix formatting 2018-03-18 20:36:52 -04:00
Anthony Green
cec3a3a201 Don't align-double for 32-bit x86 2018-03-18 16:00:04 -04:00
Anthony Green
f34f8039c1 Remove debug output 2018-03-18 15:30:00 -04:00
Anthony Green
f31b915314 Add m4/ax_require_defined.m4 2018-03-18 15:13:21 -04:00