Searched defs:cloc (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A DoopRecorder.cpp99 int* cloc = _indexes->cache_location(h); local
100 _indexes->set_cache_location_index(cloc, index);
107 int* cloc = _indexes->cache_location(_handles->at(i)); local
108 _indexes->set_cache_location_index(cloc, index0);
129 int* cloc = (_indexes == NULL)? NULL: _indexes->cache_location(h); local
130 if (cloc != NULL) {
131 int cindex = _indexes->cache_location_index(cloc);
139 if (!_indexes->cache_location_collision(cloc)) {
140 return -1; // We know the current cache occupant is unique to that cloc.
150 if (cloc !
[all...]
H A DoopRecorder.hpp110 static bool cache_location_collision(int* cloc) { argument
111 return ((*cloc) & _collision_bit) != 0;
113 static int cache_location_index(int* cloc) { argument
114 return (*cloc) >> _index_shift;
116 static void set_cache_location_index(int* cloc, int index) { argument
117 int cval0 = (*cloc);
120 (*cloc) = cval1;

Completed in 30 milliseconds