]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sparc64/sparc64/gdb_machdep.c
Upgrade Unbound to 1.6.6. More to follow.
[FreeBSD/FreeBSD.git] / sys / sparc64 / sparc64 / gdb_machdep.c
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2004 Marcel Moolenaar
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/kdb.h>
35 #include <sys/kernel.h>
36 #include <sys/signal.h>
37
38 #include <machine/asm.h>
39 #include <machine/gdb_machdep.h>
40 #include <machine/pcb.h>
41 #include <machine/reg.h>
42
43 #include <gdb/gdb.h>
44
45 void *
46 gdb_cpu_getreg(int regnum, size_t *regsz)
47 {
48         static uint64_t synth;
49
50         *regsz = gdb_cpu_regsz(regnum);
51         switch (regnum) {
52                 /* 0-7: g0-g7 */
53                 /* 8-15: o0-o7 */
54         case 14:
55                 synth = kdb_thrctx->pcb_sp - CCFSZ;
56                 return (&synth);
57                 /* 16-23: l0-l7 */
58                 /* 24-31: i0-i7 */
59         case 30: return (&kdb_thrctx->pcb_sp);
60                 /* 32-63: f0-f31 */
61                 /* 64-79: f32-f62 (16 double FP) */     
62         case 80: return (&kdb_thrctx->pcb_pc);
63         }
64         return (NULL);
65 }
66
67 void
68 gdb_cpu_setreg(int regnum, void *val)
69 {
70         switch (regnum) {
71         }
72 }