Searched refs:PCTableNode (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dcfgnode.hpp46 class PCTableNode;
383 //------------------------------PCTableNode------------------------------------
388 class PCTableNode : public MultiBranchNode { class in inherits:MultiBranchNode
396 PCTableNode( Node *ctrl, Node *idx, uint size ) : MultiBranchNode(2), _size(size) { function in class:PCTableNode
412 class JumpNode : public PCTableNode {
414 JumpNode( Node* control, Node* switch_val, uint size) : PCTableNode(control, switch_val, size) {
449 // a just-prior call. Looks like a PCTableNode but emits no code - just the
451 class CatchNode : public PCTableNode {
453 CatchNode( Node *ctrl, Node *idx, uint size ) : PCTableNode(ctrl,idx,size){
H A Dcfgnode.cpp2044 uint PCTableNode::hash() const { return Node::hash() + _size; }
2045 uint PCTableNode::cmp( const Node &n ) const
2046 { return _size == ((PCTableNode&)n)._size; }
2048 const Type *PCTableNode::bottom_type() const {
2055 // Compute the type of the PCTableNode. If reachable it is a tuple of
2057 const Type *PCTableNode::Value( PhaseTransform *phase ) const {
2066 Node *PCTableNode::Ideal(PhaseGVN *phase, bool can_reshape) {
H A Dnode.hpp114 class PCTableNode;
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp1757 declare_c2_type(PCTableNode, MultiBranchNode) \
1758 declare_c2_type(JumpNode, PCTableNode) \
1760 declare_c2_type(CatchNode, PCTableNode) \

Completed in 45 milliseconds