]> git.proxmox.com Git - mirror_qemu.git/blame - include/exec/user/thunk.h
thunk: Drop unused NO_THUNK_TYPE_SIZE guards
[mirror_qemu.git] / include / exec / user / thunk.h
CommitLineData
3ef693a0
FB
1/*
2 * Generic thunking code to convert data between host and target CPU
5fafdf24 3 *
3ef693a0
FB
4 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
8167ee88 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
3ef693a0 18 */
31e31b8a
FB
19#ifndef THUNK_H
20#define THUNK_H
21
35b66fc4 22#include "cpu.h"
34313956 23
31e31b8a
FB
24/* types enums definitions */
25
26typedef enum argtype {
27 TYPE_NULL,
28 TYPE_CHAR,
29 TYPE_SHORT,
30 TYPE_INT,
31 TYPE_LONG,
32 TYPE_ULONG,
33 TYPE_PTRVOID, /* pointer on unknown data */
34 TYPE_LONGLONG,
35 TYPE_ULONGLONG,
36 TYPE_PTR,
37 TYPE_ARRAY,
38 TYPE_STRUCT,
6083abd9 39 TYPE_OLDDEVT,
31e31b8a
FB
40} argtype;
41
42#define MK_PTR(type) TYPE_PTR, type
43#define MK_ARRAY(type, size) TYPE_ARRAY, size, type
44#define MK_STRUCT(id) TYPE_STRUCT, id
45
46#define THUNK_TARGET 0
47#define THUNK_HOST 1
48
49typedef struct {
50 /* standard struct handling */
51 const argtype *field_types;
52 int nb_fields;
53 int *field_offsets[2];
54 /* special handling */
55 void (*convert[2])(void *dst, const void *src);
56 int size[2];
57 int align[2];
58 const char *name;
59} StructEntry;
60
61/* Translation table for bitmasks... */
62typedef struct bitmask_transtbl {
63 unsigned int x86_mask;
64 unsigned int x86_bits;
65 unsigned int alpha_mask;
66 unsigned int alpha_bits;
67} bitmask_transtbl;
68
69void thunk_register_struct(int id, const char *name, const argtype *types);
8e853dc7
BS
70void thunk_register_struct_direct(int id, const char *name,
71 const StructEntry *se1);
5fafdf24 72const argtype *thunk_convert(void *dst, const void *src,
31e31b8a
FB
73 const argtype *type_ptr, int to_host);
74
8be656b8 75extern StructEntry *struct_entries;
24374901 76
26553115
JM
77int thunk_type_size_array(const argtype *type_ptr, int is_host);
78int thunk_type_align_array(const argtype *type_ptr, int is_host);
79
24374901
FB
80static inline int thunk_type_size(const argtype *type_ptr, int is_host)
81{
82 int type, size;
83 const StructEntry *se;
84
85 type = *type_ptr;
86 switch(type) {
87 case TYPE_CHAR:
88 return 1;
89 case TYPE_SHORT:
90 return 2;
91 case TYPE_INT:
92 return 4;
93 case TYPE_LONGLONG:
94 case TYPE_ULONGLONG:
95 return 8;
96 case TYPE_LONG:
97 case TYPE_ULONG:
98 case TYPE_PTRVOID:
99 case TYPE_PTR:
100 if (is_host) {
9c6ecf3e 101 return sizeof(void *);
24374901 102 } else {
992f48a0 103 return TARGET_ABI_BITS / 8;
24374901
FB
104 }
105 break;
6083abd9
AG
106 case TYPE_OLDDEVT:
107 if (is_host) {
108#if defined(HOST_X86_64)
109 return 8;
110#elif defined(HOST_ALPHA) || defined(HOST_IA64) || defined(HOST_MIPS) || \
111 defined(HOST_PARISC) || defined(HOST_SPARC64)
112 return 4;
113#elif defined(HOST_PPC)
65074706 114 return sizeof(void *);
6083abd9
AG
115#else
116 return 2;
117#endif
118 } else {
119#if defined(TARGET_X86_64)
120 return 8;
121#elif defined(TARGET_ALPHA) || defined(TARGET_IA64) || defined(TARGET_MIPS) || \
122 defined(TARGET_PARISC) || defined(TARGET_SPARC64)
123 return 4;
124#elif defined(TARGET_PPC)
125 return TARGET_ABI_BITS / 8;
126#else
127 return 2;
128#endif
129 }
130 break;
24374901
FB
131 case TYPE_ARRAY:
132 size = type_ptr[1];
26553115 133 return size * thunk_type_size_array(type_ptr + 2, is_host);
24374901
FB
134 case TYPE_STRUCT:
135 se = struct_entries + type_ptr[1];
136 return se->size[is_host];
137 default:
138 return -1;
139 }
140}
141
142static inline int thunk_type_align(const argtype *type_ptr, int is_host)
143{
144 int type;
145 const StructEntry *se;
146
147 type = *type_ptr;
148 switch(type) {
149 case TYPE_CHAR:
150 return 1;
151 case TYPE_SHORT:
152 return 2;
153 case TYPE_INT:
154 return 4;
155 case TYPE_LONGLONG:
156 case TYPE_ULONGLONG:
157 return 8;
158 case TYPE_LONG:
159 case TYPE_ULONG:
160 case TYPE_PTRVOID:
161 case TYPE_PTR:
162 if (is_host) {
9c6ecf3e 163 return sizeof(void *);
24374901 164 } else {
992f48a0 165 return TARGET_ABI_BITS / 8;
24374901
FB
166 }
167 break;
6083abd9
AG
168 case TYPE_OLDDEVT:
169 return thunk_type_size(type_ptr, is_host);
24374901 170 case TYPE_ARRAY:
26553115 171 return thunk_type_align_array(type_ptr + 2, is_host);
24374901
FB
172 case TYPE_STRUCT:
173 se = struct_entries + type_ptr[1];
174 return se->align[is_host];
175 default:
176 return -1;
177 }
178}
179
5fafdf24 180unsigned int target_to_host_bitmask(unsigned int x86_mask,
b39bc503 181 const bitmask_transtbl * trans_tbl);
5fafdf24 182unsigned int host_to_target_bitmask(unsigned int alpha_mask,
b39bc503 183 const bitmask_transtbl * trans_tbl);
31e31b8a 184
8be656b8
AG
185void thunk_init(unsigned int max_structs);
186
31e31b8a 187#endif