< prev index next >

src/hotspot/share/jfr/recorder/checkpoint/types/jfrTypeSetUtils.hpp

Print this page
rev 58565 : 8238358: Implementation of JEP 371: Hidden Classes
Reviewed-by: duke
Contributed-by: mandy.chung@oracle.com, lois.foltan@oracle.com, david.holmes@oracle.com, harold.seigel@oracle.com, serguei.spitsyn@oracle.com, alex.buckley@oracle.com, jamsheed.c.m@oracle.com

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.

@@ -239,13 +239,13 @@
       functor(symbol);
       symbol = next;
     }
   }
 
-  traceid mark_unsafe_anonymous_klass_name(const InstanceKlass* k, bool leakp);
-  bool is_unsafe_anonymous_klass(const Klass* k);
-  uintptr_t unsafe_anonymous_klass_name_hash(const InstanceKlass* ik);
+  traceid mark_hidden_or_anon_klass_name(const InstanceKlass* k, bool leakp);
+  bool is_hidden_or_anon_klass(const Klass* k);
+  uintptr_t hidden_or_anon_klass_name_hash(const InstanceKlass* ik);
 
  public:
   JfrSymbolId();
   ~JfrSymbolId();
 

@@ -302,11 +302,11 @@
 
   traceid mark(uintptr_t hash, const Symbol* sym, bool leakp);
   traceid mark(const Klass* klass, bool leakp);
   traceid mark(const Symbol* symbol, bool leakp);
   traceid mark(uintptr_t hash, const char* const str, bool leakp);
-  traceid mark_unsafe_anonymous_klass_name(const Klass* klass, bool leakp);
+  traceid mark_hidden_or_anon_klass_name(const Klass* klass, bool leakp);
   traceid bootstrap_name(bool leakp);
 
   const JfrSymbolId::SymbolEntry* map_symbol(const Symbol* symbol) const;
   const JfrSymbolId::SymbolEntry* map_symbol(uintptr_t hash) const;
   const JfrSymbolId::CStringEntry* map_cstring(uintptr_t hash) const;
< prev index next >