2 * User-only accessor function support
4 * Generate inline load/store functions for one data size.
6 * Generate a store function as well as signed and unsigned loads.
8 * Not used directly but included from cpu_ldst.h.
10 * Copyright (c) 2015 Linaro Limited
12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public
14 * License as published by the Free Software Foundation; either
15 * version 2 of the License, or (at your option) any later version.
17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
26 #if !defined(CODE_ACCESS)
30 #include "trace/mem.h"
35 #define DATA_TYPE uint64_t
39 #define DATA_TYPE uint32_t
43 #define DATA_TYPE uint16_t
44 #define DATA_STYPE int16_t
48 #define DATA_TYPE uint8_t
49 #define DATA_STYPE int8_t
51 #error unsupported data size
55 #define RES_TYPE uint64_t
57 #define RES_TYPE uint32_t
60 static inline RES_TYPE
61 glue(glue(cpu_ld
, USUFFIX
), MEMSUFFIX
)(CPUArchState
*env
, target_ulong ptr
)
63 #if !defined(CODE_ACCESS)
64 trace_guest_mem_before_exec(
65 ENV_GET_CPU(env
), ptr
,
66 trace_mem_build_info(DATA_SIZE
, false, MO_TE
, false));
68 return glue(glue(ld
, USUFFIX
), _p
)(g2h(ptr
));
71 static inline RES_TYPE
72 glue(glue(glue(cpu_ld
, USUFFIX
), MEMSUFFIX
), _ra
)(CPUArchState
*env
,
76 return glue(glue(cpu_ld
, USUFFIX
), MEMSUFFIX
)(env
, ptr
);
81 glue(glue(cpu_lds
, SUFFIX
), MEMSUFFIX
)(CPUArchState
*env
, target_ulong ptr
)
83 #if !defined(CODE_ACCESS)
84 trace_guest_mem_before_exec(
85 ENV_GET_CPU(env
), ptr
,
86 trace_mem_build_info(DATA_SIZE
, true, MO_TE
, false));
88 return glue(glue(lds
, SUFFIX
), _p
)(g2h(ptr
));
92 glue(glue(glue(cpu_lds
, SUFFIX
), MEMSUFFIX
), _ra
)(CPUArchState
*env
,
96 return glue(glue(cpu_lds
, SUFFIX
), MEMSUFFIX
)(env
, ptr
);
102 glue(glue(cpu_st
, SUFFIX
), MEMSUFFIX
)(CPUArchState
*env
, target_ulong ptr
,
105 #if !defined(CODE_ACCESS)
106 trace_guest_mem_before_exec(
107 ENV_GET_CPU(env
), ptr
,
108 trace_mem_build_info(DATA_SIZE
, false, MO_TE
, true));
110 glue(glue(st
, SUFFIX
), _p
)(g2h(ptr
), v
);
114 glue(glue(glue(cpu_st
, SUFFIX
), MEMSUFFIX
), _ra
)(CPUArchState
*env
,
119 glue(glue(cpu_st
, SUFFIX
), MEMSUFFIX
)(env
, ptr
, v
);