src/hotspot/share/opto/compile.hpp
changeset 54960 e46fe26d7f77
parent 53632 d620a4a1d5ed
child 55105 9ad765641e8f
child 58678 9cf78a70fa4f
equal deleted inserted replaced
54959:00425a850a2f 54960:e46fe26d7f77
  1346 
  1346 
  1347   // End-of-run dumps.
  1347   // End-of-run dumps.
  1348   static void print_statistics() PRODUCT_RETURN;
  1348   static void print_statistics() PRODUCT_RETURN;
  1349 
  1349 
  1350   // Dump formatted assembly
  1350   // Dump formatted assembly
  1351   void dump_asm(int *pcs = NULL, uint pc_limit = 0) PRODUCT_RETURN;
  1351 #if defined(SUPPORT_OPTO_ASSEMBLY)
       
  1352   void dump_asm_on(outputStream* ost, int* pcs, uint pc_limit);
       
  1353   void dump_asm(int* pcs = NULL, uint pc_limit = 0) { dump_asm_on(tty, pcs, pc_limit); }
       
  1354 #else
       
  1355   void dump_asm_on(outputStream* ost, int* pcs, uint pc_limit) { return; }
       
  1356   void dump_asm(int* pcs = NULL, uint pc_limit = 0) { return; }
       
  1357 #endif
  1352   void dump_pc(int *pcs, int pc_limit, Node *n);
  1358   void dump_pc(int *pcs, int pc_limit, Node *n);
  1353 
  1359 
  1354   // Verify ADLC assumptions during startup
  1360   // Verify ADLC assumptions during startup
  1355   static void adlc_verification() PRODUCT_RETURN;
  1361   static void adlc_verification() PRODUCT_RETURN;
  1356 
  1362