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

src/share/vm/code/oopRecorder.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright 1998-2005 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.
*** 68,79 **** int element_count() { // there is always a NULL virtually present as first object return _handles->length() + first_index; } ! // copy the generated oop table to CodeBlob ! void copy_to(CodeBlob* code); // => code->copy_oops(_handles) bool is_unused() { return _handles == NULL && !_complete; } #ifdef ASSERT bool is_complete() { return _complete; } #endif --- 68,79 ---- int element_count() { // there is always a NULL virtually present as first object return _handles->length() + first_index; } ! // copy the generated oop table to nmethod ! void copy_to(nmethod* nm); // => code->copy_oops(_handles) bool is_unused() { return _handles == NULL && !_complete; } #ifdef ASSERT bool is_complete() { return _complete; } #endif
src/share/vm/code/oopRecorder.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File