+2020-03-31 Andrea Corallo <andrea.corallo@arm.com>
+ David Malcolm <dmalcolm@redhat.com>
+
+ * docs/topics/compatibility.rst (LIBGCCJIT_ABI_13): New ABI tag
+ plus add version paragraph.
+ * libgccjit++.h (namespace gccjit::version): Add new namespace.
+ * libgccjit.c (gcc_jit_version_major, gcc_jit_version_minor)
+ (gcc_jit_version_patchlevel): New functions.
+ * libgccjit.h (LIBGCCJIT_HAVE_gcc_jit_version): New macro.
+ (gcc_jit_version_major, gcc_jit_version_minor)
+ (gcc_jit_version_patchlevel): New functions.
+ * libgccjit.map (LIBGCCJIT_ABI_13) New ABI tag.
+
2020-03-23 Andrea Corallo <andrea.corallo@arm.com>
* jit-playback.h
LIBGCCJIT_ABI_0
[...snip...]
+Programmatically checking version
+***************
+
+Client code can programmatically check libgccjit version using:
+
+.. function:: int gcc_jit_version_major (void)
+
+ Return libgccjit major version. This is analogous to __GNUC__ in C code.
+
+.. function:: int gcc_jit_version_minor (void)
+
+ Return libgccjit minor version. This is analogous to
+ __GNUC_MINOR__ in C code.
+
+.. function:: int gcc_jit_version_patchlevel (void)
+
+ Return libgccjit patchlevel version. This is analogous to
+ __GNUC_PATCHLEVEL__ in C code.
+
+.. note:: These entry points has been added with ``LIBGCCJIT_ABI_13``
+ (see below).
+
ABI symbol tags
***************
--------------------
``LIBGCCJIT_ABI_12`` covers the addition of
:func:`gcc_jit_context_new_bitfield`
+
+``LIBGCCJIT_ABI_13``
+--------------------
+``LIBGCCJIT_ABI_13`` covers the addition of version functions via API
+entrypoints:
+
+ * :func:`gcc_jit_version_major`
+
+ * :func:`gcc_jit_version_minor`
+
+ * :func:`gcc_jit_version_patchlevel`
class timer;
class auto_time;
+ namespace version {};
+
/* Errors within the API become C++ exceptions of this class. */
class error
{
m_timer.pop (m_item_name);
}
+namespace version
+{
+inline int
+major_v ()
+{
+ return gcc_jit_version_major ();
+}
+
+inline int
+minor_v ()
+{
+ return gcc_jit_version_minor ();
+}
+
+inline int
+patchlevel_v ()
+{
+ return gcc_jit_version_patchlevel ();
+}
+} // namespace version
} // namespace gccjit
#endif /* #ifndef LIBGCCJIT_PLUS_PLUS_H */
#include "coretypes.h"
#include "timevar.h"
#include "typed-splay-tree.h"
+#include "cppbuiltin.h"
+#include <pthread.h>
#include "libgccjit.h"
#include "jit-recording.h"
as_vec_type,
(gcc::jit::recording::rvalue **)elements);
}
+
+/* A mutex around the cached state in parse_basever.
+ Ideally this would be within parse_basever, but the mutex is only needed
+ by libgccjit. */
+
+static pthread_mutex_t version_mutex = PTHREAD_MUTEX_INITIALIZER;
+
+struct version_info
+{
+ /* Default constructor. Populate via parse_basever,
+ guarded by version_mutex. */
+ version_info ()
+ {
+ pthread_mutex_lock (&version_mutex);
+ parse_basever (&major, &minor, &patchlevel);
+ pthread_mutex_unlock (&version_mutex);
+ }
+
+ int major;
+ int minor;
+ int patchlevel;
+};
+
+
+extern int
+gcc_jit_version_major (void)
+{
+ version_info vi;
+ return vi.major;
+}
+
+extern int
+gcc_jit_version_minor (void)
+{
+ version_info vi;
+ return vi.minor;
+}
+
+extern int
+gcc_jit_version_patchlevel (void)
+{
+ version_info vi;
+ return vi.patchlevel;
+}
size_t num_elements,
gcc_jit_rvalue **elements);
+#define LIBGCCJIT_HAVE_gcc_jit_version
+
+/* Functions to retrive libgccjit version.
+ Analogous to __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__ in C code.
+
+ These API entrypoints were added in LIBGCCJIT_ABI_13; you can test for their
+ presence using
+ #ifdef LIBGCCJIT_HAVE_gcc_jit_version
+ */
+extern int
+gcc_jit_version_major (void);
+extern int
+gcc_jit_version_minor (void);
+extern int
+gcc_jit_version_patchlevel (void);
+
#ifdef __cplusplus
}
#endif /* __cplusplus */
LIBGCCJIT_ABI_12 {
global:
gcc_jit_context_new_bitfield;
-} LIBGCCJIT_ABI_11;
\ No newline at end of file
+} LIBGCCJIT_ABI_11;
+
+LIBGCCJIT_ABI_13 {
+ global:
+ gcc_jit_version_major;
+ gcc_jit_version_minor;
+ gcc_jit_version_patchlevel;
+} LIBGCCJIT_ABI_12;
\ No newline at end of file
+2020-03-31 Andrea Corallo <andrea.corallo@arm.com>
+
+ * jit.dg/test-version.c: New testcase.
+ * jit.dg/all-non-failing-tests.h: Add test-version.c.
+
2020-03-31 Iain Buclaw <ibuclaw@gdcproject.org>
PR d/94424
/* test-vector-types.cc: We don't use this, since it's C++. */
+/* test-version.c */
+#define create_code create_code_version
+#define verify_code verify_code_version
+#include "test-version.c"
+#undef create_code
+#undef verify_code
+
/* test-volatile.c */
#define create_code create_code_volatile
#define verify_code verify_code_volatile
{"using_global",
create_code_using_global,
verify_code_using_global},
+ {"version",
+ create_code_version,
+ verify_code_version},
{"volatile",
create_code_volatile,
verify_code_volatile}
--- /dev/null
+#include <stdlib.h>
+#include <stdio.h>
+
+#include "libgccjit.h"
+
+#include "harness.h"
+
+#ifndef LIBGCCJIT_HAVE_gcc_jit_version
+#error LIBGCCJIT_HAVE_gcc_jit_version was not defined
+#endif
+
+void
+create_code (gcc_jit_context *ctxt, void *user_data)
+{
+ /* Do nothing. */
+}
+
+void
+verify_code (gcc_jit_context *ctxt, gcc_jit_result *result)
+{
+ if (!gcc_jit_version_major ())
+ fail ("Major version is zero");
+ /* Minor and patchlevel can be zero. */
+ gcc_jit_version_minor ();
+ gcc_jit_version_patchlevel ();
+}