Deleted Added
full compact
frame.h (176742) frame.h (189100)
1/*-
2 * Copyright (C) 1995, 1996 Wolfgang Solfrank.
3 * Copyright (C) 1995, 1996 TooLs GmbH.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * $NetBSD: frame.h,v 1.2 1999/01/10 10:13:15 tsubai Exp $
1/*-
2 * Copyright (C) 1995, 1996 Wolfgang Solfrank.
3 * Copyright (C) 1995, 1996 TooLs GmbH.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * $NetBSD: frame.h,v 1.2 1999/01/10 10:13:15 tsubai Exp $
32 * $FreeBSD: head/sys/powerpc/include/frame.h 176742 2008-03-02 17:05:57Z raj $
32 * $FreeBSD: head/sys/powerpc/include/frame.h 189100 2009-02-27 12:08:24Z raj $
33 */
34
35#ifndef _MACHINE_FRAME_H_
36#define _MACHINE_FRAME_H_
37
38#include <sys/types.h>
39
40/*

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

60 struct {
61 /* dar & dsisr are only filled on a DSI trap */
62 register_t dar;
63 int dsisr;
64 } aim;
65 struct {
66 register_t dear;
67 register_t esr;
33 */
34
35#ifndef _MACHINE_FRAME_H_
36#define _MACHINE_FRAME_H_
37
38#include <sys/types.h>
39
40/*

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

60 struct {
61 /* dar & dsisr are only filled on a DSI trap */
62 register_t dar;
63 int dsisr;
64 } aim;
65 struct {
66 register_t dear;
67 register_t esr;
68 register_t dbcr0;
68 } booke;
69 } cpu;
70};
71
72/*
73 * This is to ensure alignment of the stackpointer
74 */
75#define FRAMELEN roundup(sizeof(struct trapframe) + 8, 16)

--- 19 unchanged lines hidden ---
69 } booke;
70 } cpu;
71};
72
73/*
74 * This is to ensure alignment of the stackpointer
75 */
76#define FRAMELEN roundup(sizeof(struct trapframe) + 8, 16)

--- 19 unchanged lines hidden ---