wpgather.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 319 行
C
319 行
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
* DESCRIBE IT HERE!
*
****************************************************************************/
#include <stdio.h>
#include "common.h"
#include "dip.h"
#include "sampinfo.h"
//#include "wpgather.def"
extern void GatherImage( sio_data *, bint );
extern void GatherMod( sio_data *, bint );
extern void GatherFile( sio_data *, bint );
extern void GatherRtn( sio_data *, bint );
extern int OptGatherCut;
extern bint GetCurrentGather( sio_data * curr_sio )
/*************************************************/
{
bint gather_active;
if( curr_sio->level_open == LEVEL_SAMPLE ) {
gather_active = curr_sio->gather_active;
} else if( curr_sio->level_open == LEVEL_IMAGE ) {
gather_active = curr_sio->curr_image->gather_active;
} else if( curr_sio->level_open == LEVEL_MODULE ) {
gather_active = curr_sio->curr_mod->gather_active;
} else if( curr_sio->level_open == LEVEL_FILE ) {
gather_active = curr_sio->curr_file->gather_active;
} else {
gather_active = B_FALSE;
}
return( gather_active );
}
extern void FlipCurrentGather( sio_data * curr_sio )
/**************************************************/
{
if( curr_sio->level_open == LEVEL_SAMPLE ) {
curr_sio->gather_active
= !curr_sio->gather_active;
} else if( curr_sio->level_open == LEVEL_IMAGE ) {
curr_sio->curr_image->gather_active
= !curr_sio->curr_image->gather_active;
} else if( curr_sio->level_open == LEVEL_MODULE ) {
curr_sio->curr_mod->gather_active
= !curr_sio->curr_mod->gather_active;
} else if( curr_sio->level_open == LEVEL_FILE ) {
curr_sio->curr_file->gather_active
= !curr_sio->curr_file->gather_active;
}
}
extern void GatherCurrent( sio_data * curr_sio )
/**********************************************/
{
bint gather_active;
gather_active = GetCurrentGather( curr_sio );
if( curr_sio->level_open == LEVEL_SAMPLE ) {
GatherImage( curr_sio, gather_active );
} else if( curr_sio->level_open == LEVEL_IMAGE ) {
GatherMod( curr_sio, gather_active );
} else if( curr_sio->level_open == LEVEL_MODULE ) {
GatherFile( curr_sio, gather_active );
} else if( curr_sio->level_open == LEVEL_FILE ) {
GatherRtn( curr_sio, gather_active );
}
}
extern void GatherImage( sio_data * curr_sio, bint gather_active )
/****************************************************************/
{
image_info * curr_image;
image_info * gather_image;
unsigned_32 temp;
int count;
int image_count;
clicks_t agg_count;
clicks_t cutoff;
curr_sio->gather_active = gather_active;
image_count = 0;
count = curr_sio->image_count;
curr_sio->number_gathered = 0;
if( !gather_active ) {
while( count-- > 0 ) {
curr_image = curr_sio->images[image_count++];
if( curr_image->gather_image ) {
curr_image->ignore_gather = B_TRUE;
} else {
curr_image->ignore_gather = B_FALSE;
}
}
} else {
temp = OptGatherCut;
cutoff = (temp * curr_sio->total_samples) / 1000;
agg_count = 0;
while( count-- > 0 ) {
curr_image = curr_sio->images[image_count++];
if( curr_image->gather_image ) {
gather_image = curr_image;
} else if( curr_image->agg_count <= cutoff
&& !curr_image->ignore_unknown_image ) {
curr_sio->number_gathered++;
agg_count += curr_image->agg_count;
curr_image->ignore_gather = B_TRUE;
}
}
if( curr_sio->number_gathered > 0 ) {
gather_image->agg_count = agg_count;
gather_image->ignore_gather = B_FALSE;
} else {
curr_sio->gather_active = B_FALSE;
gather_image->ignore_gather = B_TRUE;
}
}
}
extern void GatherMod( sio_data * curr_sio, bint gather_active )
/**************************************************************/
{
image_info * curr_image;
mod_info * curr_mod;
mod_info * gather_mod;
unsigned_32 temp;
int count;
int mod_count;
clicks_t agg_count;
clicks_t cutoff;
curr_image = curr_sio->curr_image;
curr_image->gather_active = gather_active;
curr_image->number_gathered = 0;
mod_count = 0;
count = curr_image->mod_count;
if( !gather_active ) {
while( count-- > 0 ) {
curr_mod = curr_image->module[mod_count++];
if( curr_mod->gather_module ) {
curr_mod->ignore_gather = B_TRUE;
} else {
curr_mod->ignore_gather = B_FALSE;
}
}
} else {
temp = OptGatherCut;
cutoff = (temp * curr_sio->total_samples) / 1000;
agg_count = 0;
while( count-- > 0 ) {
curr_mod = curr_image->module[mod_count++];
if( curr_mod->gather_module ) {
gather_mod = curr_mod;
} else if( curr_mod->agg_count <= cutoff
&& !curr_mod->ignore_unknown_mod ) {
curr_image->number_gathered++;
agg_count += curr_mod->agg_count;
curr_mod->ignore_gather = B_TRUE;
}
}
if( curr_image->number_gathered > 0 ) {
gather_mod->agg_count = agg_count;
gather_mod->ignore_gather = B_FALSE;
} else {
curr_image->gather_active = B_FALSE;
gather_mod->ignore_gather = B_TRUE;
}
}
}
extern void GatherFile( sio_data * curr_sio, bint gather_active )
/***************************************************************/
{
mod_info * curr_mod;
file_info * curr_file;
file_info * gather_file;
unsigned_32 temp;
int count;
int file_count;
clicks_t agg_count;
clicks_t cutoff;
curr_mod = curr_sio->curr_mod;
curr_mod->gather_active = gather_active;
curr_mod->number_gathered = 0;
file_count = 0;
count = curr_mod->file_count;
if( !gather_active ) {
while( count-- > 0 ) {
curr_file = curr_mod->mod_file[file_count++];
if( curr_file->gather_file ) {
curr_file->ignore_gather = B_TRUE;
} else {
curr_file->ignore_gather = B_FALSE;
}
}
} else {
temp = OptGatherCut;
cutoff = (temp * curr_sio->total_samples) / 1000;
agg_count = 0;
while( count-- > 0 ) {
curr_file = curr_mod->mod_file[file_count++];
if( curr_file->gather_file ) {
gather_file = curr_file;
} else if( curr_file->agg_count <= cutoff
&& !curr_file->ignore_unknown_file ) {
curr_mod->number_gathered++;
agg_count += curr_file->agg_count;
curr_file->ignore_gather = B_TRUE;
}
}
if( curr_mod->number_gathered > 0 ) {
gather_file->agg_count = agg_count;
gather_file->ignore_gather = B_FALSE;
} else {
curr_mod->gather_active = B_FALSE;
gather_file->ignore_gather = B_TRUE;
}
}
}
extern void GatherRtn( sio_data * curr_sio, bint gather_active )
/**************************************************************/
{
file_info * curr_file;
rtn_info * curr_rtn;
rtn_info * gather_rtn;
unsigned_32 temp;
int count;
int rtn_count;
clicks_t agg_count;
clicks_t cutoff;
curr_file = curr_sio->curr_file;
curr_file->gather_active = gather_active;
curr_file->number_gathered = 0;
rtn_count = 0;
count = curr_file->rtn_count;
if( !gather_active ) {
while( count-- > 0 ) {
curr_rtn = curr_file->routine[rtn_count++];
if( curr_rtn->gather_routine ) {
curr_rtn->ignore_gather = B_TRUE;
} else {
curr_rtn->ignore_gather = B_FALSE;
}
}
} else {
temp = OptGatherCut;
cutoff = (temp * curr_sio->total_samples) / 1000;
agg_count = 0;
while( count-- > 0 ) {
curr_rtn = curr_file->routine[rtn_count++];
if( curr_rtn->gather_routine ) {
gather_rtn = curr_rtn;
} else if( curr_rtn->tick_count <= cutoff
&& !curr_rtn->ignore_unknown_rtn ) {
curr_file->number_gathered++;
agg_count += curr_rtn->tick_count;
curr_rtn->ignore_gather = B_TRUE;
}
}
if( curr_file->number_gathered > 0 ) {
gather_rtn->tick_count = agg_count;
gather_rtn->ignore_gather = B_FALSE;
} else {
curr_file->gather_active = B_FALSE;
gather_rtn->ignore_gather = B_TRUE;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?