File:  [Power 6/32 Unix Tahoe 4.2BSD] / cci / d / fpevent / pipe7.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Sun Jul 28 12:30:17 2019 UTC (7 years ago) by root
Branches: bsd, MAIN
CVS tags: v121, HEAD
Power 6/32 Unix version 1.21


#include "evt_defs.h"
#define  MAX_POS 0x7fffffff;

/*
 *********************************************************************
 *	FPP PIPELINED EVENTS TEST #7
 *
 *  This test will execute the following code: "LDF DIVF MULL3 NEGF"
 * with an integer overflow fault on the MULL3. We will make sure that:
 * 1. The fault is detected, 
 * 2. the floating divide operation completes,
 * 3. and that the negate doesn't complete
 *********************************************************************
*/
pipe7()
{
	asm("moval (r13),_pre_event_fp");	/* save the frame pointer */
	asm("moval (r14),_pre_event_sp");	/* save the stack pointer */
	precision = SGL;
	test_event = ARITH_CODE;		/* expect an arithmetic fault */
	exp_code = INT_OVFL_CODE;		/*  -specificly int overflow  */
	exp_event = FALSE;			/* ... but not yet          */
	asm("movab _pipe7_ret,_event_return"); /* post event addr */
	for( index = 0; index < max_pipe7_index; index++ )
	{
	     dbl_ld_acc =   pipe7_data[index].op_1;	/* get the data */
	     dbl_value_1 =  pipe7_data[index].op_2;
	     dbl_expected = pipe7_data[index].exp;
	     sgl_value_1  = 0x12345;			/* get overflow data */
	     sgl_value_2  = MAX_POS;
	     asm("bispsw $0x60");			/* enable ovfl,undfl */
	     asm(".globl _pipe7_lp1");
	     asm("_pipe7_lp1:");
	     asm("ldf _dbl_ld_acc");			/* load the Acc.     */
	     exp_event = test_event;			/* expect event soon */
	     asm("divf _dbl_value_1");			/* divide by op.#2   */
	     asm("mull3 _sgl_value_1,_sgl_value_2,_sgl_value_3");
	     asm("negf");
/*
 * If we got to here then there was no event
*/
	     if( force_loop )
		  asm("brw _pipe7_lp1");;	/* loop on the error         */
	     exp_event = FALSE;			/* reset event expected flag */
	     asm("movl _pre_event_fp,fp");	/* restore the frame pointer */
	     asm("movl _pre_event_sp,sp");	/* restore the stack pointer */
	     asm("bicpsw $0x60");		/* disable ovfl & undfl evts */
	     no_pipe7_evt();;			/* report the error          */
/*
 * Come here after the event
*/
	     asm(".globl _pipe7_ret");
	     asm("_pipe7_ret:");
	     asm("movl _pre_event_fp,fp");	/* restore the frame pointer */
	     asm("movl _pre_event_sp,sp");	/* restore the stack pointer */
	     if( force_loop )
		  asm("brw _pipe7_lp1");;	/* loop on the error         */
	     asm("bicpsw $0x60");		/* disable ovfl & undfl evts */
	     if( post_evt_acc.m == (dbl_expected.m ^ 0x80000000) )
		  pipe7_queue_er();		/* fpp queue not cleared     */
	     else if( post_evt_acc.m != dbl_expected.m )
		  bad_pipe7_result();		/* incorrect result error    */
	}
}



/****************************************************************************
*		Report an "EVENT NOT DETECTED" error
*
* Cycle: xx. EVT test xx. subtest xx. no integer overflow fault. index = xx
* inst = LDF op1, DIVF op2, MULL3 op3,op4,op5, NEGF  (int. overflow on MULL3)
* op1 = xxxxxxxx,  op2 = xxxxxxxx 
* op3 = xxxxxxxx,  op4 = xxxxxxxx,  op5 = xxxxxxxx 
****************************************************************************/
no_pipe7_evt()
{
	errcnt++;				/* bump the error count    */
	if ( prt_error ) 
	{
	     print_pipe7_er( ". no integer overflow fault.");
	     writes("op1 = ");
	     write32h( dbl_ld_acc.m );
	     writes(",  op2 = ");
	     write32h( dbl_value_1.m );
	     writes("\nop3 = ");
	     write32h( sgl_value_1 );
	     writes(",  op4 = ");
	     write32h( sgl_value_2 );
	     writes(",  op5 = ");
	     write32h( sgl_value_3 );
	     writec('\n');
	}
	if ( halt_flg ) 			/* halt on error?           */
	     pipe7_halt( 1 );
	if ( loop_on_err ) 
	{
	     force_loop = TRUE;		/* set the force loop flag */
	     asm("jmp _pipe7_lp1");	/* and loop                */
	};
}




/****************************************************************************
*		Report an "BAD ACCUMULATOR AFTER THE EVENT" error
*
* Cycle: xx. EVT test xx. subtest xx. Bad final Accumulator. index = xx
* inst = LDF op1, DIVF op2, MULL3 op3,op4,op5, NEGF (int. overflow on MULL3)
* The NEGF should not have been executed.
* op1 = xxxxxxxx,  final Acc. = xxxxxxxx,  op3 = xxxxxxxx 
* op2 = xxxxxxxx,    expected = xxxxxxxx,  op4 = xxxxxxxx,  op5 = xxxxxxxx 
****************************************************************************/
bad_pipe7_result()
{
	errcnt++;				/* bump the error count    */
	if ( prt_error ) 
	{
	     print_pipe7_er(". Bad final Accumulator.");
	     writes("The NEGF should not have been executed.\n");
	     writes("op1 = ");
	     write32h( dbl_value_1.m );
	     writes(",  final Acc. = ");
	     write32h( post_evt_acc.m );
	     writes(",  op3 = ");
	     write32h( sgl_value_1 );
	     writes("\nop2 = ");
	     write32h( dbl_value_2.m );
	     writes(",    expected = ");
	     write32h( dbl_expected.m );
	     writes(",  op4 = ");
	     write32h( sgl_value_2 );
	     writes(",  op5 = ");
	     write32h( sgl_value_3 );
	     writec('\n');
	}
	if ( halt_flg ) 			/* halt on error?           */
	     pipe7_halt( 2 );
	if ( loop_on_err ) 
	{
	     force_loop = TRUE;		/* set the force loop flag */
	     asm("jmp _pipe7_lp1");	/* and loop                */
	};
}





/****************************************************************************
*		Report an "FPP Queue apparently not cleared" error
*
* Cycle: xx. EVT test xx. subtest xx. too many instructions run. index = xx
* inst = LDF op1, DIVF op2, MULL3 op3,op4,op5, NEGF  (int. overflow on MULL3)
* The NEGF should not have been executed but apparently was.
* op1 = xxxxxxxx,  final Acc. = xxxxxxxx,  op3 = xxxxxxxx 
* op2 = xxxxxxxx,    expected = xxxxxxxx,  op4 = xxxxxxxx,  op5 = xxxxxxxx 
****************************************************************************/
pipe7_queue_er()
{
	errcnt++;				/* bump the error count    */
	if ( prt_error ) 
	{
	     print_pipe7_er(". Fpp Queue not cleared.");
	     writes(
	     "The NEGF should not have been executed but apparently was.\n");
	     writes("op1 = ");
	     write32h( dbl_value_1.m );
	     writes(",  final Acc. = ");
	     write32h( post_evt_acc.m );
	     writes(",  op3 = ");
	     write32h( sgl_value_1 );
	     writes("\nop2 = ");
	     write32h( dbl_value_2.m );
	     writes(",    expected = ");
	     write32h( dbl_expected.m );
	     writes(",  op4 = ");
	     write32h( sgl_value_2 );
	     writes(",  op5 = ");
	     write32h( sgl_value_3 );
	     writec('\n');
	}
	if ( halt_flg ) 			/* halt on error?           */
	     pipe7_halt( 3 );
	if ( loop_on_err ) 
	{
	     force_loop = TRUE;		/* set the force loop flag */
	     asm("jmp _pipe7_lp1");	/* and loop                */
	};
}



/****************************************************************************
*		print an error message of the form:
*
* Cycle: xx. EVT test xx. subtest xx. <your message here> index = xx
* inst = LDF op1, DIVF op2, MULL3 op3,op4,op5, NEGF  (int. overflow on MULL3)
****************************************************************************/
print_pipe7_er( msg )
char *msg;					/* error message to print  */
{
	     if( errcnt == 1 )			/* 1st error?              */
		  writes(" \n");		/* start a new print line  */
	     writes("Cycle: ");
	     writed( cycle );
	     writes("  EVT test ");
	     writed( test_no );
	     writes(". subtest ");
	     writed( subtest );
	     writes( msg );			/* print the error message */
	     writes(" index = ");
	     writed( index );
	     writes("\ninst = LDF op1, DIVF op2, MULL3 op3,op4,op5, NEGF");
	     writes("  (int. overflow on MULL3)\n");
}



/****************************************************************************
*		Halt on Error routine
****************************************************************************/
pipe7_halt( code )
int code;					/* error code to halt with */
{
	err_code = code;
	sgl_value_4 = dbl_ld_acc.m;
	sgl_value_5 = dbl_value_1.m;
	asm("movl _test_no,r0");		/* r0  = test number        */
	asm("movl _subtest,r1");		/* r1  = subtest number     */
	asm("movl _err_code,r2");		/* r2  = error code         */
	asm("movl _cycle,r3");			/* r3  = cycle count        */
	asm("movl _sgl_value_4,r4");		/* r4  = floating operand 1 */
	asm("movl _sgl_value_5,r5");		/* r5  = floating operand 2 */
	asm("movl _sgl_value_1,r6");		/* r6  = integer operand 1  */
	asm("movl _sgl_value_2,r7");		/* r7  = integer operand 2  */
	asm("movl _sgl_value_3,r8");		/* r8  = final int. value   */
	if( code == 1 )
	     asm("movl _index,r9");		/* r9  = data index         */
	else {
	     sgl_value_6 = post_evt_acc.m;
	     sgl_value_7 = dbl_expected.m;
	     asm("movl _sgl_value_6,r9");	/* r9  = final accumulator  */
	     asm("movl _sgl_value_7,r10");	/* r10 = expected acc.      */
	     asm("movl _index,r11");		/* r11 = data index         */
	}
	asm("halt");;				/* HALT ...                 */
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.