Home | History | Annotate | Line # | Download | only in ddb
db_write_cmd.c revision 1.5
      1  1.5  mycroft /*	$NetBSD: db_write_cmd.c,v 1.5 1994/10/09 08:56:30 mycroft Exp $	*/
      2  1.4      cgd 
      3  1.1      cgd /*
      4  1.1      cgd  * Mach Operating System
      5  1.1      cgd  * Copyright (c) 1991,1990 Carnegie Mellon University
      6  1.1      cgd  * All Rights Reserved.
      7  1.1      cgd  *
      8  1.1      cgd  * Permission to use, copy, modify and distribute this software and its
      9  1.1      cgd  * documentation is hereby granted, provided that both the copyright
     10  1.1      cgd  * notice and this permission notice appear in all copies of the
     11  1.1      cgd  * software, derivative works or modified versions, and any portions
     12  1.1      cgd  * thereof, and that both notices appear in supporting documentation.
     13  1.1      cgd  *
     14  1.1      cgd  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
     15  1.1      cgd  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
     16  1.1      cgd  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     17  1.1      cgd  *
     18  1.1      cgd  * Carnegie Mellon requests users of this software to return to
     19  1.1      cgd  *
     20  1.1      cgd  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     21  1.1      cgd  *  School of Computer Science
     22  1.1      cgd  *  Carnegie Mellon University
     23  1.1      cgd  *  Pittsburgh PA 15213-3890
     24  1.1      cgd  *
     25  1.1      cgd  * any improvements or extensions that they make and grant Carnegie the
     26  1.1      cgd  * rights to redistribute these changes.
     27  1.1      cgd  *
     28  1.1      cgd  *	Author: David B. Golub,  Carnegie Mellon University
     29  1.1      cgd  *	Date:	7/90
     30  1.1      cgd  */
     31  1.1      cgd 
     32  1.3  mycroft #include <sys/param.h>
     33  1.3  mycroft #include <sys/proc.h>
     34  1.3  mycroft 
     35  1.1      cgd #include <machine/db_machdep.h>
     36  1.1      cgd 
     37  1.1      cgd #include <ddb/db_lex.h>
     38  1.1      cgd #include <ddb/db_access.h>
     39  1.1      cgd #include <ddb/db_command.h>
     40  1.1      cgd #include <ddb/db_sym.h>
     41  1.1      cgd 
     42  1.1      cgd /*
     43  1.1      cgd  * Write to file.
     44  1.1      cgd  */
     45  1.1      cgd /*ARGSUSED*/
     46  1.1      cgd void
     47  1.1      cgd db_write_cmd(address, have_addr, count, modif)
     48  1.1      cgd 	db_expr_t	address;
     49  1.1      cgd 	boolean_t	have_addr;
     50  1.1      cgd 	db_expr_t	count;
     51  1.1      cgd 	char *		modif;
     52  1.1      cgd {
     53  1.1      cgd 	register
     54  1.1      cgd 	db_addr_t	addr;
     55  1.1      cgd 	register
     56  1.1      cgd 	db_expr_t	old_value;
     57  1.1      cgd 	db_expr_t	new_value;
     58  1.1      cgd 	register int	size;
     59  1.1      cgd 	boolean_t	wrote_one = FALSE;
     60  1.1      cgd 
     61  1.1      cgd 	addr = (db_addr_t) address;
     62  1.1      cgd 
     63  1.1      cgd 	switch (modif[0]) {
     64  1.1      cgd 	    case 'b':
     65  1.1      cgd 		size = 1;
     66  1.1      cgd 		break;
     67  1.1      cgd 	    case 'h':
     68  1.1      cgd 		size = 2;
     69  1.1      cgd 		break;
     70  1.1      cgd 	    case 'l':
     71  1.1      cgd 	    case '\0':
     72  1.1      cgd 		size = 4;
     73  1.1      cgd 		break;
     74  1.1      cgd 	    default:
     75  1.1      cgd 		db_error("Unknown size\n");
     76  1.5  mycroft 		/*NOTREACHED*/
     77  1.1      cgd 	}
     78  1.1      cgd 
     79  1.1      cgd 	while (db_expression(&new_value)) {
     80  1.1      cgd 	    old_value = db_get_value(addr, size, FALSE);
     81  1.1      cgd 	    db_printsym(addr, DB_STGY_ANY);
     82  1.1      cgd 	    db_printf("\t\t%#8n\t=\t%#8n\n", old_value, new_value);
     83  1.1      cgd 	    db_put_value(addr, size, new_value);
     84  1.1      cgd 	    addr += size;
     85  1.1      cgd 
     86  1.1      cgd 	    wrote_one = TRUE;
     87  1.1      cgd 	}
     88  1.1      cgd 
     89  1.5  mycroft 	if (!wrote_one) {
     90  1.1      cgd 	    db_error("Nothing written.\n");
     91  1.5  mycroft 	    /*NOTREACHED*/
     92  1.5  mycroft 	}
     93  1.1      cgd 
     94  1.1      cgd 	db_next = addr;
     95  1.1      cgd 	db_prev = addr - size;
     96  1.1      cgd 
     97  1.1      cgd 	db_skip_to_eol();
     98  1.1      cgd }
     99  1.1      cgd 
    100