mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com> Co-authored-by: Erik Osterlund <erik.osterlund@oracle.com> Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com> Co-authored-by: Kim Barrett <kim.barrett@oracle.com> Co-authored-by: Nils Eliasson <nils.eliasson@oracle.com> Co-authored-by: Rickard Backman <rickard.backman@oracle.com> Co-authored-by: Roland Westrelin <rwestrel@redhat.com> Co-authored-by: Coleen Phillimore <coleen.phillimore@oracle.com> Co-authored-by: Robbin Ehn <robbin.ehn@oracle.com> Co-authored-by: Gerard Ziemski <gerard.ziemski@oracle.com> Co-authored-by: Hugh Wilkinson <hugh.wilkinson@intel.com> Co-authored-by: Sandhya Viswanathan <sandhya.viswanathan@intel.com> Co-authored-by: Bill Wheeler <bill.npo.wheeler@intel.com> Co-authored-by: Vinay K. Awasthi <vinay.k.awasthi@intel.com> Co-authored-by: Yasumasa Suenaga <yasuenag@gmail.com> Reviewed-by: pliden, stefank, eosterlund, ehelin, sjohanss, rbackman, coleenp, ihse, jgeorge, lmesnik, rkennke
This commit is contained in:
parent
312328b44c
commit
e7af7a4aef
322 changed files with 27196 additions and 79 deletions
|
@ -221,7 +221,25 @@
|
|||
#define NOT_SERIALGC_RETURN_(code) { return code; }
|
||||
#endif // INCLUDE_SERIALGC
|
||||
|
||||
#if INCLUDE_CMSGC || INCLUDE_EPSILONGC || INCLUDE_G1GC || INCLUDE_PARALLELGC
|
||||
#ifndef INCLUDE_ZGC
|
||||
#define INCLUDE_ZGC 1
|
||||
#endif // INCLUDE_ZGC
|
||||
|
||||
#if INCLUDE_ZGC
|
||||
#define ZGC_ONLY(x) x
|
||||
#define ZGC_ONLY_ARG(arg) arg,
|
||||
#define NOT_ZGC(x)
|
||||
#define NOT_ZGC_RETURN /* next token must be ; */
|
||||
#define NOT_ZGC_RETURN_(code) /* next token must be ; */
|
||||
#else
|
||||
#define ZGC_ONLY(x)
|
||||
#define ZGC_ONLY_ARG(arg)
|
||||
#define NOT_ZGC(x) x
|
||||
#define NOT_ZGC_RETURN {}
|
||||
#define NOT_ZGC_RETURN_(code) { return code; }
|
||||
#endif // INCLUDE_ZGC
|
||||
|
||||
#if INCLUDE_CMSGC || INCLUDE_EPSILONGC || INCLUDE_G1GC || INCLUDE_PARALLELGC || INCLUDE_ZGC
|
||||
#define INCLUDE_NOT_ONLY_SERIALGC 1
|
||||
#else
|
||||
#define INCLUDE_NOT_ONLY_SERIALGC 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue