--- old/src/hotspot/share/c1/c1_Instruction.hpp 2019-02-13 17:02:38.811687051 -0800 +++ new/src/hotspot/share/c1/c1_Instruction.hpp 2019-02-13 17:02:38.595678896 -0800 @@ -1031,6 +1031,8 @@ bool should_profile() const { return check_flag(ProfileMDOFlag); } ciMethod* profiled_method() const { return _profiled_method; } int profiled_bci() const { return _profiled_bci; } + // Flattened array support + bool is_exact_flattened_array_store() const; // generic virtual void input_values_do(ValueVisitor* f) { AccessIndexed::input_values_do(f); f->visit(&_value); } };