]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm64/arm64/db_trace.c
nfs client: depend on xdr
[FreeBSD/FreeBSD.git] / sys / arm64 / arm64 / db_trace.c
1 /*-
2  * Copyright (c) 2015 The FreeBSD Foundation
3  * All rights reserved.
4  *
5  * This software was developed by Semihalf under
6  * the sponsorship of the FreeBSD Foundation.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
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 AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #include "opt_ddb.h"
31
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34 #include <sys/param.h>
35 #include <sys/proc.h>
36 #include <sys/kdb.h>
37
38 #include <machine/pcb.h>
39 #include <ddb/ddb.h>
40 #include <ddb/db_sym.h>
41
42 #include <machine/armreg.h>
43 #include <machine/debug_monitor.h>
44 #include <machine/stack.h>
45
46 void
47 db_md_list_watchpoints()
48 {
49
50         dbg_show_watchpoint();
51 }
52
53 static void
54 db_stack_trace_cmd(struct thread *td, struct unwind_state *frame)
55 {
56         c_db_sym_t sym;
57         const char *name;
58         db_expr_t value;
59         db_expr_t offset;
60
61         while (1) {
62                 uintptr_t pc = frame->pc;
63
64                 if (!unwind_frame(td, frame))
65                         break;
66
67                 sym = db_search_symbol(pc, DB_STGY_ANY, &offset);
68                 if (sym == C_DB_SYM_NULL) {
69                         value = 0;
70                         name = "(null)";
71                 } else
72                         db_symbol_values(sym, &name, &value);
73
74                 db_printf("%s() at ", name);
75                 db_printsym(frame->pc, DB_STGY_PROC);
76                 db_printf("\n");
77
78                 db_printf("\t pc = 0x%016lx  lr = 0x%016lx\n", pc,
79                     frame->pc);
80                 db_printf("\t sp = 0x%016lx  fp = 0x%016lx\n", frame->sp,
81                     frame->fp);
82                 /* TODO: Show some more registers */
83                 db_printf("\n");
84         }
85 }
86
87 int
88 db_trace_thread(struct thread *thr, int count)
89 {
90         struct unwind_state frame;
91         struct pcb *ctx;
92
93         if (thr != curthread) {
94                 ctx = kdb_thr_ctx(thr);
95
96                 frame.sp = (uintptr_t)ctx->pcb_sp;
97                 frame.fp = (uintptr_t)ctx->pcb_x[29];
98                 frame.pc = (uintptr_t)ctx->pcb_lr;
99                 db_stack_trace_cmd(thr, &frame);
100         } else
101                 db_trace_self();
102         return (0);
103 }
104
105 void
106 db_trace_self(void)
107 {
108         struct unwind_state frame;
109         uintptr_t sp;
110
111         __asm __volatile("mov %0, sp" : "=&r" (sp));
112
113         frame.sp = sp;
114         frame.fp = (uintptr_t)__builtin_frame_address(0);
115         frame.pc = (uintptr_t)db_trace_self;
116         db_stack_trace_cmd(curthread, &frame);
117 }