/[qemu]/qemu/monitor.c
ViewVC logotype

Diff of /qemu/monitor.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.30 by bellard, Mon Jan 3 23:35:10 2005 UTC revision 1.31 by bellard, Wed Jan 26 22:00:47 2005 UTC
# Line 220  static void do_info_block(void) Line 220  static void do_info_block(void)
220  static void do_info_registers(void)  static void do_info_registers(void)
221  {  {
222  #ifdef TARGET_I386  #ifdef TARGET_I386
223      cpu_dump_state(cpu_single_env, stdout, monitor_fprintf,      cpu_dump_state(cpu_single_env, NULL, monitor_fprintf,
224                     X86_DUMP_FPU | X86_DUMP_CCOP);                     X86_DUMP_FPU | X86_DUMP_CCOP);
225  #else  #else
226      cpu_dump_state(cpu_single_env, stdout, monitor_fprintf,      cpu_dump_state(cpu_single_env, NULL, monitor_fprintf,
227                     0);                     0);
228  #endif  #endif
229  }  }
230    
231    static void do_info_jit(void)
232    {
233        dump_exec_info(NULL, monitor_fprintf);
234    }
235    
236  static void do_info_history (void)  static void do_info_history (void)
237  {  {
238      int i;      int i;
# Line 893  static term_cmd_t info_cmds[] = { Line 898  static term_cmd_t info_cmds[] = {
898      { "mem", "", mem_info,      { "mem", "", mem_info,
899        "", "show the active virtual memory mappings", },        "", "show the active virtual memory mappings", },
900  #endif  #endif
901        { "jit", "", do_info_jit,
902          "", "show dynamic compiler info", },
903      { NULL, NULL, },      { NULL, NULL, },
904  };  };
905    

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26