src/share/vm/code/oopRecorder.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6951083 Cdiff src/share/vm/code/oopRecorder.cpp

src/share/vm/code/oopRecorder.cpp

Print this page

        

*** 1,7 **** /* ! * Copyright 1998-2007 Sun Microsystems, Inc. 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 1998-2010 Sun Microsystems, Inc. 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.
*** 48,61 **** _complete = true; if (_handles == NULL) return 0; return _handles->length() * sizeof(oop); } ! void OopRecorder::copy_to(CodeBlob* code) { assert(_complete, "must be frozen"); maybe_initialize(); // get non-null handles, even if we have no oops ! code->copy_oops(_handles); } void OopRecorder::maybe_initialize() { if (_handles == NULL) { if (_arena != NULL) { --- 48,61 ---- _complete = true; if (_handles == NULL) return 0; return _handles->length() * sizeof(oop); } ! void OopRecorder::copy_to(nmethod* nm) { assert(_complete, "must be frozen"); maybe_initialize(); // get non-null handles, even if we have no oops ! nm->copy_oops(_handles); } void OopRecorder::maybe_initialize() { if (_handles == NULL) { if (_arena != NULL) {
src/share/vm/code/oopRecorder.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File