comparison graal/com.oracle.graal.graph/src/com/oracle/graal/graph/Graph.java @ 16822:5d468add216f

added @NodeInfo annotations to all Node classes
author Doug Simon <doug.simon@oracle.com>
date Wed, 13 Aug 2014 18:25:45 +0200
parents f2d75b3b3963
children cbd42807a31f
comparison
equal deleted inserted replaced
16821:216ac26009a2 16822:5d468add216f
644 return getNodeCount(); 644 return getNodeCount();
645 } 645 }
646 }; 646 };
647 } 647 }
648 648
649 private static final Node PLACE_HOLDER = new Node() { 649 @NodeInfo
650 }; 650 static class PlaceHolderNode extends Node {
651
652 }
653
654 private static final Node PLACE_HOLDER = new PlaceHolderNode();
651 655
652 /** 656 /**
653 * When the percent of live nodes in {@link #nodes} fall below this number, a call to 657 * When the percent of live nodes in {@link #nodes} fall below this number, a call to
654 * {@link #maybeCompress()} will actually do compression. 658 * {@link #maybeCompress()} will actually do compression.
655 */ 659 */