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

/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.hpp1411 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...]

Completed in 27 milliseconds