4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 #ifndef _SYS_ASM_MISC_H
27 #define _SYS_ASM_MISC_H
29 #pragma ident "%Z%%M% %I% %E% SMI"
35 #ifdef _ASM /* The remainder of this file is only for assembly files */
37 /* Load reg with pointer to per-CPU structure */
39 #define LOADCPU(reg) \
40 movq %gs:CPU_SELF, reg;
42 #define LOADCPU(reg) \
43 movl %gs:CPU_SELF, reg;
46 #define RET_INSTR 0xc3
47 #define NOP_INSTR 0x90
48 #define STI_INSTR 0xfb
49 #define JMP_INSTR 0x00eb
54 #define _HOT_PATCH_PROLOG \
61 #define _HOT_PATCH(srcaddr, dstaddr, size) \
62 movl $srcaddr, %esi; \
63 movl $dstaddr, %edi; \
67 movzbl (%esi), %eax; \
70 call hot_patch_kernel_text; \
78 #define _HOT_PATCH_EPILOG \
90 * While as doesn't support fxsaveq/fxrstorq (fxsave/fxrstor with REX.W = 1)
91 * we will use the FXSAVEQ/FXRSTORQ macro
110 #endif /* _SYS_ASM_MISC_H */