/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i386/arrays/tst.uregsarray.d
https://bitbucket.org/freebsd/freebsd-head/ · D · 63 lines · 23 code · 6 blank · 34 comment · 0 complexity · f041445ebe16beb54bae66d9cf1a3574 MD5 · raw file
- /*
- * 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 x86
- * 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_GS = 0x%x\n", uregs[R_GS]);
- printf("R_ES = 0x%x\n", uregs[R_ES]);
- printf("R_DS = 0x%x\n", uregs[R_DS]);
- printf("R_EDI = 0x%x\n", uregs[R_EDI]);
- printf("R_ESI = 0x%x\n", uregs[R_ESI]);
- printf("R_EBP = 0x%x\n", uregs[R_EBP]);
- printf("R_EBX = 0x%x\n", uregs[R_EBX]);
- printf("R_EDX = 0x%x\n", uregs[R_EDX]);
- printf("R_ECX = 0x%x\n", uregs[R_ECX]);
- printf("R_EAX = 0x%x\n", uregs[R_EAX]);
- printf("R_TRAPNO = 0x%x\n", uregs[R_TRAPNO]);
- printf("R_ERR = 0x%x\n", uregs[R_ERR]);
- printf("R_EIP = 0x%x\n", uregs[R_EIP]);
- printf("R_CS = 0x%x\n", uregs[R_CS]);
- printf("R_EFL = 0x%x\n", uregs[R_EFL]);
- printf("R_UESP = 0x%x\n", uregs[R_UESP]);
- printf("R_SS = 0x%x\n", uregs[R_SS]);
- exit(0);
- }