src/share/vm/opto/node.cpp

Print this page
rev 5661 : 8003854: PPC64 (part 115): Introduce lateExpand that expands nodes after register allocation.

@@ -974,10 +974,13 @@
 // Print as assembly
 void Node::format( PhaseRegAlloc *, outputStream *st ) const {}
 //------------------------------emit-------------------------------------------
 // Emit bytes starting at parameter 'ptr'.
 void Node::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {}
+//------------------------------lateExpand-------------------------------------
+// Expand node after register allocation.
+void Node::lateExpand(GrowableArray <Node *> *nodes, PhaseRegAlloc *ra_) {}
 //------------------------------size-------------------------------------------
 // Size of instruction in bytes
 uint Node::size(PhaseRegAlloc *ra_) const { return 0; }
 
 //------------------------------CFG Construction-------------------------------