-
Notifications
You must be signed in to change notification settings - Fork 463
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8239095: Upgrade libFFI to the latest 3.3 version
Reviewed-by: jvos, kcr
- Loading branch information
Alexander Matveev
committed
Jun 2, 2020
1 parent
853ac78
commit 6bd0e22
Showing
33 changed files
with
4,853 additions
and
3,522 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
modules/javafx.media/src/main/native/gstreamer/3rd_party/libffi/LICENSE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
modules/javafx.media/src/main/native/gstreamer/3rd_party/libffi/include/ffi_cfi.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* ----------------------------------------------------------------------- | ||
ffi_cfi.h - Copyright (c) 2014 Red Hat, Inc. | ||
Conditionally assemble cfi directives. Only necessary for building libffi. | ||
----------------------------------------------------------------------- */ | ||
|
||
#ifndef FFI_CFI_H | ||
#define FFI_CFI_H | ||
|
||
#ifdef HAVE_AS_CFI_PSEUDO_OP | ||
|
||
# define cfi_startproc .cfi_startproc | ||
# define cfi_endproc .cfi_endproc | ||
# define cfi_def_cfa(reg, off) .cfi_def_cfa reg, off | ||
# define cfi_def_cfa_register(reg) .cfi_def_cfa_register reg | ||
# define cfi_def_cfa_offset(off) .cfi_def_cfa_offset off | ||
# define cfi_adjust_cfa_offset(off) .cfi_adjust_cfa_offset off | ||
# define cfi_offset(reg, off) .cfi_offset reg, off | ||
# define cfi_rel_offset(reg, off) .cfi_rel_offset reg, off | ||
# define cfi_register(r1, r2) .cfi_register r1, r2 | ||
# define cfi_return_column(reg) .cfi_return_column reg | ||
# define cfi_restore(reg) .cfi_restore reg | ||
# define cfi_same_value(reg) .cfi_same_value reg | ||
# define cfi_undefined(reg) .cfi_undefined reg | ||
# define cfi_remember_state .cfi_remember_state | ||
# define cfi_restore_state .cfi_restore_state | ||
# define cfi_window_save .cfi_window_save | ||
# define cfi_personality(enc, exp) .cfi_personality enc, exp | ||
# define cfi_lsda(enc, exp) .cfi_lsda enc, exp | ||
# define cfi_escape(...) .cfi_escape __VA_ARGS__ | ||
|
||
#else | ||
|
||
# define cfi_startproc | ||
# define cfi_endproc | ||
# define cfi_def_cfa(reg, off) | ||
# define cfi_def_cfa_register(reg) | ||
# define cfi_def_cfa_offset(off) | ||
# define cfi_adjust_cfa_offset(off) | ||
# define cfi_offset(reg, off) | ||
# define cfi_rel_offset(reg, off) | ||
# define cfi_register(r1, r2) | ||
# define cfi_return_column(reg) | ||
# define cfi_restore(reg) | ||
# define cfi_same_value(reg) | ||
# define cfi_undefined(reg) | ||
# define cfi_remember_state | ||
# define cfi_restore_state | ||
# define cfi_window_save | ||
# define cfi_personality(enc, exp) | ||
# define cfi_lsda(enc, exp) | ||
# define cfi_escape(...) | ||
|
||
#endif /* HAVE_AS_CFI_PSEUDO_OP */ | ||
#endif /* FFI_CFI_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.