Deleted Added
full compact
genassym.c (195228) genassym.c (195486)
1/*-
2 * Copyright (c) 1982, 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 19 unchanged lines hidden (view full) ---

28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * from: @(#)genassym.c 5.11 (Berkeley) 5/10/91
33 */
34
35#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1982, 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 19 unchanged lines hidden (view full) ---

28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * from: @(#)genassym.c 5.11 (Berkeley) 5/10/91
33 */
34
35#include <sys/cdefs.h>
36__FBSDID("$FreeBSD: head/sys/amd64/amd64/genassym.c 195228 2009-07-01 07:34:28Z dfr $");
36__FBSDID("$FreeBSD: head/sys/amd64/amd64/genassym.c 195486 2009-07-09 09:34:11Z kib $");
37
38#include "opt_compat.h"
39#include "opt_hwpmc_hooks.h"
40#include "opt_kstack_pages.h"
41
42#include <sys/param.h>
43#include <sys/systm.h>
44#include <sys/assym.h>

--- 91 unchanged lines hidden (view full) ---

136ASSYM(PCB_GSBASE, offsetof(struct pcb, pcb_gsbase));
137ASSYM(PCB_DR0, offsetof(struct pcb, pcb_dr0));
138ASSYM(PCB_DR1, offsetof(struct pcb, pcb_dr1));
139ASSYM(PCB_DR2, offsetof(struct pcb, pcb_dr2));
140ASSYM(PCB_DR3, offsetof(struct pcb, pcb_dr3));
141ASSYM(PCB_DR6, offsetof(struct pcb, pcb_dr6));
142ASSYM(PCB_DR7, offsetof(struct pcb, pcb_dr7));
143ASSYM(PCB_TSSP, offsetof(struct pcb, pcb_tssp));
37
38#include "opt_compat.h"
39#include "opt_hwpmc_hooks.h"
40#include "opt_kstack_pages.h"
41
42#include <sys/param.h>
43#include <sys/systm.h>
44#include <sys/assym.h>

--- 91 unchanged lines hidden (view full) ---

136ASSYM(PCB_GSBASE, offsetof(struct pcb, pcb_gsbase));
137ASSYM(PCB_DR0, offsetof(struct pcb, pcb_dr0));
138ASSYM(PCB_DR1, offsetof(struct pcb, pcb_dr1));
139ASSYM(PCB_DR2, offsetof(struct pcb, pcb_dr2));
140ASSYM(PCB_DR3, offsetof(struct pcb, pcb_dr3));
141ASSYM(PCB_DR6, offsetof(struct pcb, pcb_dr6));
142ASSYM(PCB_DR7, offsetof(struct pcb, pcb_dr7));
143ASSYM(PCB_TSSP, offsetof(struct pcb, pcb_tssp));
144ASSYM(PCB_FULL_IRET, offsetof(struct pcb, pcb_full_iret));
144ASSYM(PCB_DBREGS, PCB_DBREGS);
145ASSYM(PCB_32BIT, PCB_32BIT);
146ASSYM(PCB_GS32BIT, PCB_GS32BIT);
147ASSYM(PCB_FULLCTX, PCB_FULLCTX);
148
149ASSYM(PCB_FLAGS, offsetof(struct pcb, pcb_flags));
150ASSYM(PCB_SAVEFPU, offsetof(struct pcb, pcb_save));
151ASSYM(PCB_SAVEFPU_SIZE, sizeof(struct savefpu));

--- 98 unchanged lines hidden ---
145ASSYM(PCB_DBREGS, PCB_DBREGS);
146ASSYM(PCB_32BIT, PCB_32BIT);
147ASSYM(PCB_GS32BIT, PCB_GS32BIT);
148ASSYM(PCB_FULLCTX, PCB_FULLCTX);
149
150ASSYM(PCB_FLAGS, offsetof(struct pcb, pcb_flags));
151ASSYM(PCB_SAVEFPU, offsetof(struct pcb, pcb_save));
152ASSYM(PCB_SAVEFPU_SIZE, sizeof(struct savefpu));

--- 98 unchanged lines hidden ---