1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
/* profile.c: Z80 profiler
Copyright (c) 2005 Philip Kendall
$Id: profile.c 4640 2012-01-21 13:26:35Z pak21 $
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Author contact information:
E-mail: Philip Kendall <philip-fuse@shadowmagic.org.uk>
*/
#include <config.h>
#include <stdlib.h>
#include <string.h>
#include <libspectrum.h>
#include "event.h"
#include "fuse.h"
#include "module.h"
#include "profile.h"
#include "ui/ui.h"
#include "z80/z80.h"
int profile_active = 0;
static int total_tstates[ 0x10000 ];
static libspectrum_word profile_last_pc;
static libspectrum_dword profile_last_tstates;
static void profile_from_snapshot( libspectrum_snap *snap GCC_UNUSED );
static module_info_t profile_module_info = {
NULL,
NULL,
NULL,
profile_from_snapshot,
NULL,
};
void
profile_init( void )
{
module_register( &profile_module_info );
}
static void
init_profiling_counters( void )
{
profile_last_pc = z80.pc.w;
profile_last_tstates = tstates;
}
void
profile_start( void )
{
memset( total_tstates, 0, sizeof( total_tstates ) );
profile_active = 1;
init_profiling_counters();
/* Schedule an event to ensure that the main z80 emulation loop recognises
profiling is turned on; otherwise problems occur if we we started while
the debugger was active (bug #1530345) */
event_add( tstates, event_type_null );
ui_menu_activate( UI_MENU_ITEM_MACHINE_PROFILER, 1 );
}
void
profile_map( libspectrum_word pc )
{
if( tstates - profile_last_tstates > 256 ) fuse_abort();
total_tstates[ profile_last_pc ] += tstates - profile_last_tstates;
profile_last_pc = z80.pc.w;
profile_last_tstates = tstates;
}
void
profile_frame( libspectrum_dword frame_length )
{
profile_last_tstates -= frame_length;
}
/* On snapshot load, PC and the tstate counter will jump so reset our
current views of these */
static void
profile_from_snapshot( libspectrum_snap *snap GCC_UNUSED )
{
init_profiling_counters();
}
void
profile_finish( const char *filename )
{
FILE *f;
size_t i;
f = fopen( filename, "w" );
if( !f ) {
ui_error( UI_ERROR_ERROR, "unable to open profile map '%s' for writing",
filename );
return;
}
for( i = 0; i < 0x10000; i++ ) {
if( !total_tstates[ i ] ) continue;
fprintf( f, "0x%04lx,%d\n", (unsigned long)i, total_tstates[ i ] );
}
fclose( f );
profile_active = 0;
/* Again, schedule an event to ensure this change is picked up by
the main loop */
event_add( tstates, event_type_null );
ui_menu_activate( UI_MENU_ITEM_MACHINE_PROFILER, 0 );
}
|