1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #ifndef	_MEMORY_H
27 #define	_MEMORY_H
28 
29 #ifdef	__cplusplus
30 extern "C" {
31 #endif
32 
33 int page_walk_init(mdb_walk_state_t *);
34 int page_walk_step(mdb_walk_state_t *);
35 void page_walk_fini(mdb_walk_state_t *);
36 int page(uintptr_t, uint_t, int, const mdb_arg_t *);
37 int allpages_walk_init(mdb_walk_state_t *);
38 int allpages_walk_step(mdb_walk_state_t *);
39 void allpages_walk_fini(mdb_walk_state_t *);
40 int memstat(uintptr_t, uint_t, int, const mdb_arg_t *);
41 
42 int pagelookup(uintptr_t, uint_t, int, const mdb_arg_t *);
43 void pagelookup_help(void);
44 int page_num2pp(uintptr_t, uint_t, int, const mdb_arg_t *);
45 
46 int seg_walk_init(mdb_walk_state_t *);
47 int seg(uintptr_t, uint_t, int, const mdb_arg_t *);
48 
49 int vnode2smap(uintptr_t, uint_t, int, const mdb_arg_t *);
50 int addr2smap(uintptr_t, uint_t, int, const mdb_arg_t *);
51 
52 int anon_walk_init(mdb_walk_state_t *);
53 int anon_walk_step(mdb_walk_state_t *);
54 void anon_walk_fini(mdb_walk_state_t *);
55 int pmap(uintptr_t, uint_t, int, const mdb_arg_t *);
56 
57 int swap_walk_init(mdb_walk_state_t *);
58 int swap_walk_step(mdb_walk_state_t *);
59 int swapinfof(uintptr_t, uint_t, int, const mdb_arg_t *);
60 
61 int memlist_walk_step(mdb_walk_state_t *);
62 int memlist(uintptr_t, uint_t, int, const mdb_arg_t *);
63 
64 #ifdef	__cplusplus
65 }
66 #endif
67 
68 #endif	/* _MEMORY_H */
69