src/share/vm/ci/ciMethodData.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/ci/ciMethodData.hpp	Thu May 12 14:03:24 2011
--- new/src/share/vm/ci/ciMethodData.hpp	Thu May 12 14:03:23 2011

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 231,240 **** --- 231,243 ---- ciArgInfoData *arg_info() const; public: bool is_method_data() { return true; } + + void set_mature() { _state = mature_state; } + bool is_empty() { return _state == empty_state; } bool is_mature() { return _state == mature_state; } int creation_mileage() { return _orig.creation_mileage(); } int current_mileage() { return _current_mileage; }

src/share/vm/ci/ciMethodData.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File