File tree 2 files changed +0
-8
lines changed
2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ class BoxLockNode;
54
54
class LockNode ;
55
55
class UnlockNode ;
56
56
class JVMState ;
57
- class OopMap ;
58
57
class State ;
59
58
class StartNode ;
60
59
class MachCallNode ;
@@ -329,14 +328,12 @@ class SafePointNode : public MultiNode {
329
328
// A plain safepoint advertises no memory effects (NULL):
330
329
const TypePtr* adr_type = NULL )
331
330
: MultiNode( edges ),
332
- _oop_map (NULL ),
333
331
_jvms (jvms),
334
332
_adr_type(adr_type)
335
333
{
336
334
init_class_id (Class_SafePoint);
337
335
}
338
336
339
- OopMap* _oop_map; // Array of OopMap info (8-bit char) for GC
340
337
JVMState* const _jvms; // Pointer to list of JVM State objects
341
338
const TypePtr* _adr_type; // What type of memory does this node produce?
342
339
ReplacedNodes _replaced_nodes; // During parsing: list of pair of nodes from calls to GraphKit::replace_in_map()
@@ -349,8 +346,6 @@ class SafePointNode : public MultiNode {
349
346
void set_jvms (JVMState* s) {
350
347
*(JVMState**)&_jvms = s; // override const attribute in the accessor
351
348
}
352
- OopMap *oop_map () const { return _oop_map; }
353
- void set_oop_map (OopMap *om) { _oop_map = om; }
354
349
355
350
private:
356
351
void verify_input (JVMState* jvms, uint idx) const {
Original file line number Diff line number Diff line change @@ -1346,9 +1346,6 @@ MachNode *Matcher::match_sfpt( SafePointNode *sfpt ) {
1346
1346
assert ((mcall == NULL ) || (mcall->jvms () == NULL ) ||
1347
1347
(mcall->jvms ()->debug_start () + mcall->_jvmadj == mcall->tf ()->domain ()->cnt ()), " " );
1348
1348
1349
- // Move the OopMap
1350
- msfpt->_oop_map = sfpt->_oop_map ;
1351
-
1352
1349
// Add additional edges.
1353
1350
if (msfpt->mach_constant_base_node_input () != (uint )-1 && !msfpt->is_MachCallLeaf ()) {
1354
1351
// For these calls we can not add MachConstantBase in expand(), as the
You can’t perform that action at this time.
0 commit comments