< prev index next >

src/hotspot/share/c1/c1_Instruction.hpp

Print this page

*** 1029,1038 **** --- 1029,1040 ---- void set_profiled_method(ciMethod* method) { _profiled_method = method; } void set_profiled_bci(int bci) { _profiled_bci = bci; } 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); } };
< prev index next >