OSDN Git Service

IR print visitor: print function calls
authorIan Romanick <ian.d.romanick@intel.com>
Sat, 27 Mar 2010 00:30:30 +0000 (17:30 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Sat, 27 Mar 2010 00:30:30 +0000 (17:30 -0700)
ir_print_visitor.cpp

index 682a553..0e89f10 100644 (file)
@@ -197,10 +197,12 @@ void ir_print_visitor::visit(ir_constant *ir)
 void
 ir_print_visitor::visit(ir_call *ir)
 {
-   (void) ir;
+   printf("(call (%s) ", ir->callee_name());
+   foreach_iter(exec_list_iterator, iter, *ir) {
+      ir_instruction *const inst = (ir_instruction *) iter.get();
 
-   printf("(call FINISHME: function name here\n");
-   printf("    (FINISHME: function paramaters here))\n");
+      inst->accept(this);
+   }
 }