--- old/src/share/vm/compiler/compileBroker.hpp 2015-07-22 12:16:23.560222944 -0400 +++ new/src/share/vm/compiler/compileBroker.hpp 2015-07-22 12:16:23.342594317 -0400 @@ -80,6 +80,7 @@ int compile_id() const { return _compile_id; } Method* method() const { return _method; } + Method* hot_method() const { return _hot_method; } int osr_bci() const { return _osr_bci; } bool is_complete() const { return _is_complete; } bool is_blocking() const { return _is_blocking; } @@ -108,6 +109,9 @@ bool is_free() const { return _is_free; } void set_is_free(bool val) { _is_free = val; } + // RedefineClasses support + void metadata_do(void f(Metadata*)); + private: static void print_compilation_impl(outputStream* st, Method* method, int compile_id, int comp_level, bool is_osr_method = false, int osr_bci = -1, bool is_blocking = false,