Searched refs:_inodes (Results 1 - 2 of 2) sorted by relevance
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | node.hpp | 1411 INode *_inode_max; // End of _inodes == _inodes + _max 1412 INode *_inodes; // Array storage for the stack member in class:Node_Stack 1419 _inodes = NEW_ARENA_ARRAY( _a, INode, max ); 1420 _inode_max = _inodes + max; 1421 _inode_top = _inodes - 1; // stack is empty 1426 _inodes = NEW_ARENA_ARRAY( _a, INode, max ); 1427 _inode_max = _inodes + max; 1428 _inode_top = _inodes - 1; // stack is empty 1432 assert(_inode_top >= _inodes, "nod [all...] |
H A D | node.cpp | 2063 size_t old_top = pointer_delta(_inode_top,_inodes,sizeof(INode)); // save _top 2064 size_t old_max = pointer_delta(_inode_max,_inodes,sizeof(INode)); 2066 _inodes = REALLOC_ARENA_ARRAY(_a, INode, _inodes, old_max, max); 2067 _inode_max = _inodes + max; 2068 _inode_top = _inodes + old_top; // restore _top
|
Completed in 31 milliseconds