Skip to content

Commit 8f39949

Browse files
committed
Change signature of getNextSlotMap()
Changing signature of GC_ObjectScanner::getNextSlotMap() to avoid using parameters by reference. This is step 2. Step 1 was creation of functions with new signature in OpenJ9, so it is ready and would not be broken. However this change would break all other projects based on OMR - correspondent functions signature should be updated accordingly. Old signatures: getNextSlotMap(uintptr_t &, bool &) or getNextSlotMap(uintptr_t &, uintptr_t &, bool &) New signatures: getNextSlotMap(uintptr_t *, bool *) or getNextSlotMap(uintptr_t *, uintptr_t *, bool *) Signed-off-by: Dmitri Pivkine <Dmitri_Pivkine@ca.ibm.com>
1 parent 209b102 commit 8f39949

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

example/glue/MixedObjectScanner.hpp

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2016, 2018 IBM Corp. and others
2+
* Copyright (c) 2016, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -104,17 +104,17 @@ class GC_MixedObjectScanner : public GC_ObjectScanner
104104
* @see GC_ObjectScanner::getNextSlotMap()
105105
*/
106106
virtual fomrobject_t *
107-
getNextSlotMap(uintptr_t &slotMap, bool &hasNextSlotMap)
107+
getNextSlotMap(uintptr_t *slotMap, bool *hasNextSlotMap)
108108
{
109109
intptr_t slotCount = _endPtr - _scanPtr;
110110

111111
/* Initialize the slot map assuming all slots are reference slots or NULL */
112112
if (slotCount < _bitsPerScanMap) {
113-
slotMap = (((uintptr_t)1) << slotCount) - 1;
114-
hasNextSlotMap = false;
113+
*slotMap = (((uintptr_t)1) << slotCount) - 1;
114+
*hasNextSlotMap = false;
115115
} else {
116-
slotMap = ~((uintptr_t)0);
117-
hasNextSlotMap = slotCount > _bitsPerScanMap;
116+
*slotMap = ~((uintptr_t)0);
117+
*hasNextSlotMap = slotCount > _bitsPerScanMap;
118118
}
119119

120120
_mapPtr += _bitsPerScanMap;
@@ -123,12 +123,12 @@ class GC_MixedObjectScanner : public GC_ObjectScanner
123123

124124
#if defined(OMR_GC_LEAF_BITS)
125125
/**
126-
* @see GC_ObjectScanner::getNextSlotMap(uintptr_t&, uintptr_t&, bool&)
126+
* @see GC_ObjectScanner::getNextSlotMap(uintptr_t *, uintptr_t *, bool *)
127127
*/
128128
virtual fomrobject_t *
129-
getNextSlotMap(uintptr_t &slotMap, uintptr_t &leafMap, bool &hasNextSlotMap)
129+
getNextSlotMap(uintptr_t *slotMap, uintptr_t *leafMap, bool *hasNextSlotMap)
130130
{
131-
leafMap = 0;
131+
*leafMap = 0;
132132
return getNextSlotMap(slotMap, hasNextSlotMap);
133133
}
134134
#endif /* OMR_GC_LEAF_BITS */

gc/base/ObjectScanner.hpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ class GC_ObjectScanner : public MM_BaseVirtual
186186
* @param[out] hasNextSlotMap set this to true if this method should be called again, false if this map is known to be last
187187
* @return a pointer to the first slot mapped by the least significant bit of the map, or NULL if no more slots
188188
*/
189-
virtual fomrobject_t *getNextSlotMap(uintptr_t &scanMap, bool &hasNextSlotMap) = 0;
189+
virtual fomrobject_t *getNextSlotMap(uintptr_t *scanMap, bool *hasNextSlotMap) = 0;
190190

191191
/**
192192
* Get the next object slot if one is available.
@@ -213,7 +213,7 @@ class GC_ObjectScanner : public MM_BaseVirtual
213213
/* slot bit map is empty -- try to refresh it */
214214
if (hasMoreSlots()) {
215215
bool hasNextSlotMap;
216-
_scanPtr = getNextSlotMap(_scanMap, hasNextSlotMap);
216+
_scanPtr = getNextSlotMap(&_scanMap, &hasNextSlotMap);
217217
if (!hasNextSlotMap) {
218218
setNoMoreSlots();
219219
}
@@ -238,7 +238,7 @@ class GC_ObjectScanner : public MM_BaseVirtual
238238
* stack.
239239
*
240240
* If leaf information is available it should be expressed in the implementation
241-
* of getNextSlotMap(uintptr_t &, uintptr_t &, bool &). This method is called to
241+
* of getNextSlotMap(uintptr_t *, uintptr_t *, bool *). This method is called to
242242
* obtain a bit map of the contained leaf slots conforming to the reference slot
243243
* map. An initial leaf map is provided to the GC_ObjectScanner constructor and
244244
* it is refreshed when required.
@@ -256,7 +256,7 @@ class GC_ObjectScanner : public MM_BaseVirtual
256256
* @param[out] hasNextSlotMap set this to true if this method should be called again, false if this map is known to be last
257257
* @return a pointer to the first slot mapped by the least significant bit of the map, or NULL if no more slots
258258
*/
259-
virtual fomrobject_t *getNextSlotMap(uintptr_t &scanMap, uintptr_t &leafMap, bool &hasNextSlotMap) = 0;
259+
virtual fomrobject_t *getNextSlotMap(uintptr_t *scanMap, uintptr_t *leafMap, bool *hasNextSlotMap) = 0;
260260

261261
/**
262262
* Get the next object slot if one is available.
@@ -287,7 +287,7 @@ class GC_ObjectScanner : public MM_BaseVirtual
287287
/* slot bit map is empty -- try to refresh it */
288288
if (hasMoreSlots()) {
289289
bool hasNextSlotMap;
290-
_scanPtr = getNextSlotMap(_scanMap, _leafMap, hasNextSlotMap);
290+
_scanPtr = getNextSlotMap(&_scanMap, &_leafMap, &hasNextSlotMap);
291291
if (!hasNextSlotMap) {
292292
setNoMoreSlots();
293293
}

0 commit comments

Comments
 (0)