< prev index next >

src/share/vm/ci/ciReplay.cpp

Print this page

        

*** 1,6 **** ! /* Copyright (c) 2013, 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) 2013, 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.
*** 26,35 **** --- 27,37 ---- #include "ci/ciReplay.hpp" #include "ci/ciSymbol.hpp" #include "ci/ciKlass.hpp" #include "ci/ciUtilities.hpp" #include "compiler/compileBroker.hpp" + #include "gc/shared/referencePendingListLocker.hpp" #include "memory/allocation.inline.hpp" #include "memory/oopFactory.hpp" #include "memory/resourceArea.hpp" #include "oops/oop.inline.hpp" #include "utilities/copy.hpp"
*** 572,582 **** // ciMethodData <klass> <name> <signature> <state> <current mileage> orig <length> # # ... data <length> # # ... oops <length> # ... methods <length> void process_ciMethodData(TRAPS) { Method* method = parse_method(CHECK); if (had_error()) return; /* just copied from Method, to build interpret data*/ ! if (InstanceRefKlass::owns_pending_list_lock((JavaThread*)THREAD)) { return; } // To be properly initialized, some profiling in the MDO needs the // method to be rewritten (number of arguments at a call for // instance) --- 574,584 ---- // ciMethodData <klass> <name> <signature> <state> <current mileage> orig <length> # # ... data <length> # # ... oops <length> # ... methods <length> void process_ciMethodData(TRAPS) { Method* method = parse_method(CHECK); if (had_error()) return; /* just copied from Method, to build interpret data*/ ! if (ReferencePendingListLocker::is_locked_by_self()) { return; } // To be properly initialized, some profiling in the MDO needs the // method to be rewritten (number of arguments at a call for // instance)
< prev index next >