db_access.c revision 1.7 1 /* $NetBSD: db_access.c,v 1.7 1994/10/09 08:29:55 mycroft Exp $ */
2
3 /*
4 * Mach Operating System
5 * Copyright (c) 1991,1990 Carnegie Mellon University
6 * All Rights Reserved.
7 *
8 * Permission to use, copy, modify and distribute this software and its
9 * documentation is hereby granted, provided that both the copyright
10 * notice and this permission notice appear in all copies of the
11 * software, derivative works or modified versions, and any portions
12 * thereof, and that both notices appear in supporting documentation.
13 *
14 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
15 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
16 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
17 *
18 * Carnegie Mellon requests users of this software to return to
19 *
20 * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
21 * School of Computer Science
22 * Carnegie Mellon University
23 * Pittsburgh PA 15213-3890
24 *
25 * any improvements or extensions that they make and grant Carnegie the
26 * rights to redistribute these changes.
27 *
28 * Author: David B. Golub, Carnegie Mellon University
29 * Date: 7/90
30 */
31
32 #include <sys/param.h>
33 #include <sys/proc.h>
34
35 #include <machine/db_machdep.h> /* type definitions */
36
37 #include <ddb/db_access.h>
38
39 /*
40 * Access unaligned data items on aligned (longword)
41 * boundaries.
42 */
43
44 int db_extend[] = { /* table for sign-extending */
45 0,
46 0xFFFFFF80,
47 0xFFFF8000,
48 0xFF800000
49 };
50
51 db_expr_t
52 db_get_value(addr, size, is_signed)
53 db_addr_t addr;
54 register size_t size;
55 boolean_t is_signed;
56 {
57 char data[sizeof(int)];
58 register db_expr_t value;
59 register size_t i;
60
61 db_read_bytes(addr, size, data);
62
63 value = 0;
64 #ifdef BYTE_MSF
65 for (i = 0; i < size; i++)
66 #else /* BYTE_LSF */
67 for (i = size - 1; i >= 0; i--)
68 #endif
69 value = (value << 8) + (data[i] & 0xFF);
70
71 if (size < 4) {
72 if (is_signed && (value & db_extend[size]) != 0)
73 value |= db_extend[size];
74 }
75 return (value);
76 }
77
78 void
79 db_put_value(addr, size, value)
80 db_addr_t addr;
81 register size_t size;
82 register db_expr_t value;
83 {
84 char data[sizeof(int)];
85 register size_t i;
86
87 #ifdef BYTE_MSF
88 for (i = size - 1; i >= 0; i--)
89 #else /* BYTE_LSF */
90 for (i = 0; i < size; i++)
91 #endif
92 {
93 data[i] = value & 0xFF;
94 value >>= 8;
95 }
96
97 db_write_bytes(addr, size, data);
98 }
99