1 /* This file is part of the program psim.
3 Copyright (C) 1994-1997, Andrew Cagney <cagney@highland.com.au>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, see <http://www.gnu.org/licenses/>.
24 typedef struct _vm vm
;
25 typedef struct _vm_data_map vm_data_map
;
26 typedef struct _vm_instruction_map vm_instruction_map
;
29 /* each PowerPC requires two virtual memory maps */
36 (vm_data_map
*) vm_create_data_map
40 (vm_instruction_map
*) vm_create_instruction_map
44 /* address translation, if the translation is invalid
45 these will not return */
48 (unsigned_word
) vm_real_data_addr
49 (vm_data_map
*data_map
,
56 (unsigned_word
) vm_real_instruction_addr
57 (vm_instruction_map
*instruction_map
,
62 /* generic block transfers. Dependant on the presence of the
63 PROCESSOR arg, either returns the number of bytes transfered or (if
64 PROCESSOR is non NULL) aborts the simulation */
67 (int) vm_data_map_read_buffer
76 (int) vm_data_map_write_buffer
81 int violate_read_only_section
,
86 /* fetch the next instruction from memory */
89 (instruction_word
) vm_instruction_map_read
90 (vm_instruction_map
*instruction_map
,
95 /* read data from memory */
97 #define DECLARE_VM_DATA_MAP_READ_N(N) \
99 (unsigned_##N) vm_data_map_read_##N \
105 DECLARE_VM_DATA_MAP_READ_N(1)
106 DECLARE_VM_DATA_MAP_READ_N(2)
107 DECLARE_VM_DATA_MAP_READ_N(4)
108 DECLARE_VM_DATA_MAP_READ_N(8)
109 DECLARE_VM_DATA_MAP_READ_N(word
)
112 /* write data to memory */
114 #define DECLARE_VM_DATA_MAP_WRITE_N(N) \
116 (void) vm_data_map_write_##N \
118 unsigned_word addr, \
123 DECLARE_VM_DATA_MAP_WRITE_N(1)
124 DECLARE_VM_DATA_MAP_WRITE_N(2)
125 DECLARE_VM_DATA_MAP_WRITE_N(4)
126 DECLARE_VM_DATA_MAP_WRITE_N(8)
127 DECLARE_VM_DATA_MAP_WRITE_N(word
)
130 /* update vm data structures due to a synchronization point */
133 (void) vm_synchronize_context
143 /* update vm data structures due to a TLB operation */
146 (void) vm_page_tlb_invalidate_entry
151 (void) vm_page_tlb_invalidate_all