comparison src/share/vm/ci/ciMethodData.hpp @ 12868:c775af091fe9

8025566: EXCEPTION_ACCESS_VIOLATION in compiled by C1 String.valueOf method Reviewed-by: kvn
author twisti
date Mon, 07 Oct 2013 10:41:56 -0700
parents bd7a7ce2e264
children d13d7aba8c12
comparison
equal deleted inserted replaced
12867:5741fc86a2ee 12868:c775af091fe9
230 ciArgInfoData *arg_info() const; 230 ciArgInfoData *arg_info() const;
231 231
232 public: 232 public:
233 bool is_method_data() const { return true; } 233 bool is_method_data() const { return true; }
234 234
235 void set_mature() { _state = mature_state; }
236
237 bool is_empty() { return _state == empty_state; } 235 bool is_empty() { return _state == empty_state; }
238 bool is_mature() { return _state == mature_state; } 236 bool is_mature() { return _state == mature_state; }
239 237
240 int creation_mileage() { return _orig.creation_mileage(); } 238 int creation_mileage() { return _orig.creation_mileage(); }
241 int current_mileage() { return _current_mileage; } 239 int current_mileage() { return _current_mileage; }