kc3-lang/libffi/ChangeLog

Branch :


Log

Author Commit Date CI Message
ac753688 2013-11-21 06:12:35 This separates the 32-bit sysv/linux/bsd code from the 64-bit linux code, and makes it possible to link code compiled with different options to those used to compile libffi. For example, a -mlong-double-128 libffi can be used with -mlong-double-64 code. Using the return value area as a place to pass parameters wasn't such a good idea, causing a failure of cls_ulonglong.c. I didn't see this when running the mainline gcc libffi testsuite because that version of the test is inferior to the upstreamm libffi test. Using NUM_FPR_ARG_REGISTERS rather than NUM_FPR_ARG_REGISTERS64 meant that a parameter save area could be allocated before it was strictly necessary. Wrong but harmless. Found when splitting apart ffi.c into 32-bit and 64-bit support.
aa1f62c0 2013-11-18 13:11:56 Fix PowerPC Darwin FDE encodings to use pcrel correctly. Modernise the picbase labels.
2f450822 2013-11-18 06:52:29 Clean up code to appease modern GCC compiler.
16d56c51 2013-11-18 06:36:03 An #endif in the wrong place would cause compile failure on powerpcle. Using bl instead of b doesn't cause runtime failures as you might think, but does mess the processor branch prediction.
83f65b63 2013-11-16 06:53:50 Finally, this adds _CALL_ELF == 2 support. ELFv1 objects can't be linked with ELFv2 objects, so this is one case where preprocessor tests in ffi.c are fine. Also, there is no need to define a new FFI_ELFv2 or somesuch value in enum ffi_abi. FFI_LINUX64 will happily serve both ABIs.
1fd04578 2013-11-16 06:53:50 Finally, this adds _CALL_ELF == 2 support. ELFv1 objects can't be linked with ELFv2 objects, so this is one case where preprocessor tests in ffi.c are fine. Also, there is no need to define a new FFI_ELFv2 or somesuch value in enum ffi_abi. FFI_LINUX64 will happily serve both ABIs.
36285137 2013-11-16 06:52:43 Andreas' 2013-02-08 change reverted some breakage for struct return values from 2011-11-12, but in so doing reintroduced string instructions to sysv.S that are not supported on all powerpc variants. This patch properly copies the bounce buffer to destination in C code rather than in asm. I have tested this on powerpc64-linux, powerpc-linux and powerpc-freebsd. Well, the last on powerpc-linux by lying to configure with CC="gcc -m32 -msvr4-struct-return -mlong-double-64" \ CXX="g++ -m32 -msvr4-struct-return -mlong-double-64" \ /src/libffi-current/configure --build=powerpc-freebsd and then make && make CC="gcc -m32" CXX="g++ -m32" \ RUNTESTFLAGS=--target_board=unix/-m32/-msvr4-struct-return/-mlong-double-64\ check
1c06515d 2013-11-16 06:41:36 The powerpc64 ABIs align structs passed by value, a fact ignored by gcc for quite some time. Since gcc now does the correct alignment, libffi needs to follow suit. This ought to be made selectable via a new abi value, and the #ifdefs removed from ffi.c along with many other #ifdefs present there and in assembly. I'll do that with a followup patch sometime. This is a revised version of https://sourceware.org/ml/libffi-discuss/2013/msg00162.html
a97cf1fa 2013-11-16 06:40:13 This patch prepares for ELFv2, where sizes of these areas change. It also makes some minor changes to improve code efficiency.
164283f4 2013-11-16 06:38:55 The powerpc64 support opted to pass floating point values both in the fpr area and the parameter save area, necessary when the backend doesn't know if a function argument corresponds to the ellipsis arguments of a variadic function. This patch adds powerpc support for variadic functions, and changes the code to only pass fp in the ABI mandated area. ELFv2 needs this change since the parameter save area may not exist there. This also fixes two faulty tests that used a non-variadic function cast to call a variadic function, and spuriously reasoned that this is somehow necessary for static functions..
31257b31 2013-11-16 06:35:51 Fix sample closure code
db0ace3a 2013-11-16 06:29:25 Fix broken test cases
de10f503 2013-11-14 10:56:29 Merge branch 'master' of https://github.com/bivab/libffi Conflicts: ChangeLog
f3657da2 2013-11-14 13:02:16 update Changelog
58c2577a 2013-11-13 16:55:36 This enshrines the current testsuite practice of using ffi_arg for returned values. It would be reasonable and logical to use the actual return argument type as passed to ffi_prep_cif, but this would mean changing a large number of tests that use ffi_arg and all backends that write results to an ffi_arg.
8af42f99 2013-11-13 16:40:28 Respect HAVE_ALLOCA_H
2f5b7ce5 2013-11-09 06:16:32 UltraSPARC IIi fix. Update README and build configury.
becd7544 2013-11-06 06:43:49 Align the stack pointer to 16-bytes.
05c31093 2013-11-06 06:40:58 Mark executable as not requiring executable stack.
cf6bf981 2013-11-02 17:23:59 Fix up docs
c2422174 2013-11-02 14:08:23 Merge pull request #45 from foss-for-synopsys-dwc-arc-processors/arc_support arc: Fix build error
f4b843f8 2013-11-02 17:01:15 Don't align stack for win32
d3372c54 2013-10-26 08:30:06 Fix N32 ABI issue for MIPS.
16b93a21 2013-10-15 15:33:59 Add nios2 port.
2f5626ce 2013-10-15 15:32:16 Fix testsuite bug
f64e4a86 2013-10-15 15:20:14 Fix many.c testcase for Aarch64
128cd1d2 2013-10-08 06:45:51 Fix spelling errors
d2fcbcdf 2013-10-08 06:27:46 Add m88k and VAX support. Update some configury bits.
d3d099b4 2013-07-02 16:11:38 little-endian ppc64 support
b082e150 2013-06-10 16:19:33 Add ARC support This adds support for the ARC architecture to libffi. DesignWare ARC is a family of processors from Synopsys, Inc. This patch has been tested on a little-endian system and passes the testsuite. Signed-off-by: Mischa Jonker <mjonker@synopsys.com>
4750e3c6 2013-03-28 16:56:36 update changelog
12b1886d 2013-03-17 18:32:12 cygwin fix & updates for 3.0.13
d08124be 2013-03-17 18:32:12 cygwin fix & updates for 3.0.13
cb32c812 2013-03-17 09:27:55 Fix lib install dir
4acf0056 2013-03-16 08:18:45 Build fix for soft-float power targets
675c9839 2013-03-16 08:12:38 Documentation fix
8a286f57 2013-03-16 08:01:19 Fix for m68000 systems
d9dd417b 2013-03-16 08:01:19 Fix for m68000 systems
2fb527a0 2013-03-16 07:46:38 Add Meta processor support
211a9ebf 2013-03-16 04:24:40 Merge pull request #32 from alex/patch-1 Fix for a crasher due to misaligned stack on x86-32.
f308faf1 2013-02-11 14:25:13 Add moxie support. Release 3.0.12.
4ea22e54 2013-02-10 08:48:38 Update README
10e77227 2013-02-10 08:47:26 mend
70b11b47 2013-02-08 16:12:19 Fix small struct passing on ppc
63ba1fa7 2013-02-08 15:18:19 Remove xfail for arm*-*-*.
24fbca4c 2013-02-08 14:19:56 Fix typo
b0fa11cb 2013-02-08 14:17:13 More man page cleanup
8bd15d13 2013-02-08 13:56:37 Fix many.c testcase for ppc
7aab825c 2013-02-08 13:26:21 Add missing files to dist
cb03ea8f 2013-02-08 12:25:18 sparc v9 fixes for sun tools
35ee8d44 2013-02-08 07:12:41 Fix microblaze big-endian struct issue
9db7e1a9 2013-02-07 21:06:08 Fix botched sparc patch. Update version.
ce0138e6 2013-02-07 18:04:01 Update bug report address. rc2.
fd07c9e4 2013-02-07 18:00:36 Add cache flushing routine for sun compiler on sparc solaris 2.8
ed6ae950 2013-02-07 16:43:36 Add libtool-ldflags. Define toolexeclibdir for non-GCC builds.
ffef2e04 2013-02-07 15:47:01 x32 and libtool fixes
95eecebb 2013-02-07 15:32:46 Remove a.out cruft from dist
176aa9d2 2013-02-07 15:29:22 Fix GCC usage test and update README
f3a4f3fd 2013-02-07 09:57:20 Fixes for AIX xlc compiler.
522f8fef 2013-02-06 20:31:31 Fix man page. Clean out junk.
f7cd61e9 2013-02-06 17:38:04 Fix pkgconfig install bits
6a790129 2013-02-06 17:37:15 Work around LLVM ABI problem on x86-64
aeb8719a 2013-01-21 07:37:30 New microblaze support
20cae32b 2013-01-21 07:07:38 Xtensa support
f03eab08 2013-01-11 17:14:11 Remove obsolete inline test functions
05fbe1fa 2013-01-11 16:54:40 xlc compiler support
bff052d9 2013-01-11 10:24:32 32-bit x86 fix and more
cd41aeab 2013-01-10 17:25:45 Add compiler column to table
8bf987d4 2013-01-10 17:24:51 Fix for sunpro compiler on Solaris
13e2d7b9 2013-01-10 10:52:02 Handle both 32 and 64-bit x86 builds regardless of target triple
51415430 2013-01-10 07:35:53 Don't run EH tests with non-GNU compiler
56ba8d86 2013-01-10 07:25:10 Don't use warning checking macro with sun compiler
6a028cae 2013-01-10 01:19:43 Don't use GCCisms to define types when + building with the SUNPRO compiler.
2d9b3939 2013-01-09 21:14:54 Fix for closures with sunpro compiler
8308984e 2013-01-08 15:14:21 Make sure we're running dejagnu tests with the right compiler.
f26c7ca6 2013-01-08 14:47:05 Make compiler options in dejagnu runs compiler specific
74c776e2 2013-01-08 12:25:54 Switch x86 Solaris to X86 from X86_64
8962c8c8 2013-01-08 12:22:24 Fix read-only eh_frame test
35ddb69c 2013-01-08 07:53:37 Only emit DWARF unwind info when building with GCC
f7879bc3 2013-01-08 07:30:28 Testsuite fix for Solaris vendor compiler
67cea90f 2013-01-07 06:30:24 mend
8f4772f3 2013-01-07 06:14:53 m68k fixes for signed 8 and 16-bit calls.
ea7f8440 2013-01-04 09:09:32 remove gcc-ism
f06c0f10 2013-01-02 09:39:17 Add missing ChangeLog entry and generated files.
ccee09a4 2013-01-02 08:41:55 +2012-03-21 Peter Rosin <peda@lysator.liu.se> + + * testsuite/lib/target-libpath.exp [*-*-cygwin*, *-*-mingw*] + (set_ld_library_path_env_vars): Add the library search dir to PATH + (and save PATH for later). + (restore_ld_library_path_env_vars): Restore PATH.
089dbce7 2013-01-02 08:37:35 med
f680b598 2012-11-06 16:00:40 Add missing aarch64 configury bits
dfadfb19 2012-10-31 06:46:41 Rebase for ppc64 fix
e944b8c7 2012-10-30 14:06:09 Add PaX work-around
f342996c 2012-10-30 07:42:27 Darwin12 fix
58e8b66f 2012-10-30 07:07:19 AArch64 port
9c00a3f6 2012-10-12 16:46:06 TILE-Gx/TILEPro support
048d2f41 2012-10-11 10:55:25 Rebase
d330f192 2012-05-05 09:37:02 iOS build fixes.
213ed15c 2012-04-27 01:34:15 Add blackfin supprt from Alexandre Keunecke.
7e0a412c 2012-04-11 22:47:44 Update files to ship
39e6a586 2012-04-11 22:39:46 More mac/ios build improvements
853cc722 2012-04-10 06:33:33 Fix typo for darwin targets
3f502306 2012-04-06 20:34:51 mend
ebb8e894 2012-04-06 20:02:08 Build iOS library with xcode