/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*
*/
#ifndef SHARE_VM_CODE_OOPRECORDER_HPP
#define SHARE_VM_CODE_OOPRECORDER_HPP
#include "runtime/handles.hpp"
#include "utilities/growableArray.hpp"
// Recording and retrieval of oop relocations in compiled code.
class CodeBlob;
public:
// A two-way mapping from positive indexes to oop handles.
// The zero index is reserved for a constant (sharable) null.
// Indexes may not be negative.
// Use the given arena to manage storage, if not NULL.
// By default, uses the current ResourceArea.
// Generate a new index on which CodeBlob::oop_addr_at will work.
// allocate_index and find_index never return the same index,
// and allocate_index never returns the same index twice.
// In fact, two successive calls to allocate_index return successive ints.
return add_handle(h, false);
}
// For a given jobject, this will return the same index repeatedly.
// The index can later be given to oop_at to retrieve the oop.
// However, the oop must not be changed via CodeBlob::oop_addr_at.
if (index < 0) { // previously unallocated
index = add_handle(h, true);
}
return index;
}
// variant of find_index which does not allocate if not found (yields -1)
int maybe_find_index(jobject h);
// returns the size of the generated oop table, for sizing the CodeBlob.
// must be called after all oops are allocated!
int oop_size();
// Retrieve the oop handle at a given index.
int element_count() {
// there is always a NULL virtually present as first object
}
// copy the generated oop table to nmethod
#ifdef ASSERT
#endif
private:
// leaky hash table of handle => index, to help detect duplicate insertion
// This class is only used by the OopRecorder class.
friend class OopRecorder;
enum {
// Index entries are ints. The LSBit is a collision indicator.
_collision_bit_shift = 0,
};
}
}
return ((*cloc) & _collision_bit) != 0;
}
return (*cloc) >> _index_shift;
}
}
IndexCache();
};
// Helper function; returns false for NULL or Universe::non_oop_word().
inline bool is_real_jobject(jobject h);
void maybe_initialize();
bool _complete;
#ifdef ASSERT
#endif
};
#endif // SHARE_VM_CODE_OOPRECORDER_HPP