Searched refs:ConnectionGraph (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Descape.cpp38 ConnectionGraph::ConnectionGraph(Compile * C, PhaseIterGVN *igvn) : function in class:ConnectionGraph
62 bool ConnectionGraph::has_candidates(Compile *C) {
79 void ConnectionGraph::do_analysis(Compile *C, PhaseIterGVN *igvn) {
83 // Add ConP#NULL and ConN#NULL nodes before ConnectionGraph construction
84 // to create space for them in ConnectionGraph::_nodes[].
87 ConnectionGraph* congraph = new(C->comp_arena()) ConnectionGraph(C, igvn);
100 bool ConnectionGraph::compute_escape() {
224 assert(C->unique() == nodes_size(), "no new ideal nodes should be added during ConnectionGraph buil
[all...]
H A Descape.hpp128 // ConnectionGraph nodes
325 class ConnectionGraph: public ResourceObj { class in inherits:ResourceObj
328 // ConnectionGraph nodes.
350 // There should be no new ideal nodes during ConnectionGraph build,
356 // Add nodes to ConnectionGraph.
575 ConnectionGraph(Compile *C, PhaseIterGVN *igvn);
H A Dcompile.hpp50 class ConnectionGraph;
304 ConnectionGraph* _congraph;
601 ConnectionGraph* congraph() { return _congraph;}
602 void set_congraph(ConnectionGraph* congraph) { _congraph = congraph;}
H A Dcallnode.cpp1565 ConnectionGraph *cgr = phase->C->congraph();
1704 ConnectionGraph *cgr = phase->C->congraph();
H A Dcompile.cpp1953 if (_do_escape_analysis && ConnectionGraph::has_candidates(this)) {
1961 ConnectionGraph::do_analysis(this, &igvn);

Completed in 45 milliseconds