tst.uregsarray.d revision 9512fe850e98fdd448c638ca63fdd92a8a510255
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* ASSERTION:
* Positive test to make sure that we can invoke sparc
* ureg[] aliases.
*
* SECTION: User Process Tracing/uregs Array
*
* NOTES: This test does no verification - the value of the output
* is not deterministic.
*/
#pragma D option quiet
BEGIN
{
printf("R_G0 = 0x%x\n", uregs[R_G0]);
printf("R_G1 = 0x%x\n", uregs[R_G1]);
printf("R_G2 = 0x%x\n", uregs[R_G2]);
printf("R_G3 = 0x%x\n", uregs[R_G3]);
printf("R_G4 = 0x%x\n", uregs[R_G4]);
printf("R_G5 = 0x%x\n", uregs[R_G5]);
printf("R_G6 = 0x%x\n", uregs[R_G6]);
printf("R_G7 = 0x%x\n", uregs[R_G7]);
printf("R_O0 = 0x%x\n", uregs[R_O0]);
printf("R_O1 = 0x%x\n", uregs[R_O1]);
printf("R_O2 = 0x%x\n", uregs[R_O2]);
printf("R_O3 = 0x%x\n", uregs[R_O3]);
printf("R_O4 = 0x%x\n", uregs[R_O4]);
printf("R_O5 = 0x%x\n", uregs[R_O5]);
printf("R_O6 = 0x%x\n", uregs[R_O6]);
printf("R_O7 = 0x%x\n", uregs[R_O7]);
printf("R_L0 = 0x%x\n", uregs[R_L0]);
printf("R_L1 = 0x%x\n", uregs[R_L1]);
printf("R_L2 = 0x%x\n", uregs[R_L2]);
printf("R_L3 = 0x%x\n", uregs[R_L3]);
printf("R_L4 = 0x%x\n", uregs[R_L4]);
printf("R_L5 = 0x%x\n", uregs[R_L5]);
printf("R_L6 = 0x%x\n", uregs[R_L6]);
printf("R_L7 = 0x%x\n", uregs[R_L7]);
printf("R_I0 = 0x%x\n", uregs[R_I0]);
printf("R_I1 = 0x%x\n", uregs[R_I1]);
printf("R_I2 = 0x%x\n", uregs[R_I2]);
printf("R_I3 = 0x%x\n", uregs[R_I3]);
printf("R_I4 = 0x%x\n", uregs[R_I4]);
printf("R_I5 = 0x%x\n", uregs[R_I5]);
printf("R_I6 = 0x%x\n", uregs[R_I6]);
printf("R_I7 = 0x%x\n", uregs[R_I7]);
printf("R_CCR = 0x%x\n", uregs[R_CCR]);
printf("R_PC = 0x%x\n", uregs[R_PC]);
printf("R_NPC = 0x%x\n", uregs[R_NPC]);
printf("R_Y = 0x%x\n", uregs[R_Y]);
printf("R_ASI = 0x%x\n", uregs[R_ASI]);
printf("R_FPRS = 0x%x\n", uregs[R_FPRS]);
exit(0);
}