< prev index next >

src/share/vm/code/nmethod.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2015, 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. --- 1,7 ---- /* ! * Copyright (c) 1997, 2016, 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.
*** 186,197 **** int _comp_level; // compilation level // protected by CodeCache_lock bool _has_flushed_dependencies; // Used for maintenance of dependencies (CodeCache_lock) - bool _marked_for_reclamation; // Used by NMethodSweeper (set only by sweeper) - enum MarkForDeoptimizationStatus { not_marked, deoptimize, deoptimize_noupdate }; --- 186,195 ----
*** 501,513 **** void set_has_flushed_dependencies() { assert(!has_flushed_dependencies(), "should only happen once"); _has_flushed_dependencies = 1; } - bool is_marked_for_reclamation() const { return _marked_for_reclamation; } - void mark_for_reclamation() { _marked_for_reclamation = 1; } - bool has_unsafe_access() const { return _has_unsafe_access; } void set_has_unsafe_access(bool z) { _has_unsafe_access = z; } bool has_method_handle_invokes() const { return _has_method_handle_invokes; } void set_has_method_handle_invokes(bool z) { _has_method_handle_invokes = z; } --- 499,508 ----
< prev index next >