mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
Co-authored-by: Christine Flood <chf@redhat.com> Co-authored-by: Aleksey Shipilev <shade@redhat.com> Co-authored-by: Roland Westrelin <rwestrel@redhat.com> Co-authored-by: Zhenygu Gu <zgu@redhat.com> Co-authored-by: Andrew Haley <aph@redhat.com> Co-authored-by: Andrew Dinn <adinn@redhat.com> Co-authored-by: Mario Torre <mtorre@redhat.com> Reviewed-by: kvn, roland, shade, coleenp, lmesnik, pliden, jgeorge, ihse, erikj
This commit is contained in:
parent
0639a6303b
commit
8b62a2ee9d
297 changed files with 40569 additions and 325 deletions
|
@ -221,6 +221,24 @@
|
|||
#define NOT_SERIALGC_RETURN_(code) { return code; }
|
||||
#endif // INCLUDE_SERIALGC
|
||||
|
||||
#ifndef INCLUDE_SHENANDOAHGC
|
||||
#define INCLUDE_SHENANDOAHGC 1
|
||||
#endif // INCLUDE_SHENANDOAHGC
|
||||
|
||||
#if INCLUDE_SHENANDOAHGC
|
||||
#define SHENANDOAHGC_ONLY(x) x
|
||||
#define SHENANDOAHGC_ONLY_ARG(arg) arg,
|
||||
#define NOT_SHENANDOAHGC(x)
|
||||
#define NOT_SHENANDOAHGC_RETURN /* next token must be ; */
|
||||
#define NOT_SHENANDOAHGC_RETURN_(code) /* next token must be ; */
|
||||
#else
|
||||
#define SHENANDOAHGC_ONLY(x)
|
||||
#define SHENANDOAHGC_ONLY_ARG(arg)
|
||||
#define NOT_SHENANDOAHGC(x) x
|
||||
#define NOT_SHENANDOAHGC_RETURN {}
|
||||
#define NOT_SHENANDOAHGC_RETURN_(code) { return code; }
|
||||
#endif // INCLUDE_SHENANDOAHGC
|
||||
|
||||
#ifndef INCLUDE_ZGC
|
||||
#define INCLUDE_ZGC 1
|
||||
#endif // INCLUDE_ZGC
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue