hotspot/src/share/vm/memory/universe.hpp
changeset 17370 59a0620561fa
parent 17112 e49af4ba7755
child 18025 b7bcf7497f93
child 18063 3a0a5b11ab14
equal deleted inserted replaced
17367:64c84d620e5c 17370:59a0620561fa
    88 
    88 
    89  public:
    89  public:
    90   ActiveMethodOopsCache()   { _prev_methods = NULL; }
    90   ActiveMethodOopsCache()   { _prev_methods = NULL; }
    91   ~ActiveMethodOopsCache();
    91   ~ActiveMethodOopsCache();
    92 
    92 
    93   void add_previous_version(Method* const method);
    93   void add_previous_version(Method* method);
    94   bool is_same_method(Method* const method) const;
    94   bool is_same_method(const Method* method) const;
    95 };
    95 };
    96 
    96 
    97 
    97 
    98 // A helper class for caching a Method* when the user of the cache
    98 // A helper class for caching a Method* when the user of the cache
    99 // only cares about the latest version of the Method*.
    99 // only cares about the latest version of the Method*.