blob: effc5e24462fa76a432bf9e5eeadfa110ce77ace [file] [log] [blame]
bellard3ef693a2003-03-23 20:17:16 +00001/*
2 * Generic thunking code to convert data between host and target CPU
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard3ef693a2003-03-23 20:17:16 +00004 * 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
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
bellard31e31b82003-02-18 22:55:36 +000020#ifndef THUNK_H
21#define THUNK_H
22
23#include <inttypes.h>
bellard35b66fc2004-01-24 15:26:06 +000024#include "cpu.h"
bellard34313952003-02-18 23:03:03 +000025
bellard31e31b82003-02-18 22:55:36 +000026/* types enums definitions */
27
28typedef enum argtype {
29 TYPE_NULL,
30 TYPE_CHAR,
31 TYPE_SHORT,
32 TYPE_INT,
33 TYPE_LONG,
34 TYPE_ULONG,
35 TYPE_PTRVOID, /* pointer on unknown data */
36 TYPE_LONGLONG,
37 TYPE_ULONGLONG,
38 TYPE_PTR,
39 TYPE_ARRAY,
40 TYPE_STRUCT,
41} argtype;
42
43#define MK_PTR(type) TYPE_PTR, type
44#define MK_ARRAY(type, size) TYPE_ARRAY, size, type
45#define MK_STRUCT(id) TYPE_STRUCT, id
46
47#define THUNK_TARGET 0
48#define THUNK_HOST 1
49
50typedef struct {
51 /* standard struct handling */
52 const argtype *field_types;
53 int nb_fields;
54 int *field_offsets[2];
55 /* special handling */
56 void (*convert[2])(void *dst, const void *src);
57 int size[2];
58 int align[2];
59 const char *name;
60} StructEntry;
61
62/* Translation table for bitmasks... */
63typedef struct bitmask_transtbl {
64 unsigned int x86_mask;
65 unsigned int x86_bits;
66 unsigned int alpha_mask;
67 unsigned int alpha_bits;
68} bitmask_transtbl;
69
70void thunk_register_struct(int id, const char *name, const argtype *types);
blueswir18e853dc2008-10-05 10:49:32 +000071void thunk_register_struct_direct(int id, const char *name,
72 const StructEntry *se1);
ths5fafdf22007-09-16 21:08:06 +000073const argtype *thunk_convert(void *dst, const void *src,
bellard31e31b82003-02-18 22:55:36 +000074 const argtype *type_ptr, int to_host);
bellard0ad041d2003-06-25 22:11:41 +000075#ifndef NO_THUNK_TYPE_SIZE
bellard31e31b82003-02-18 22:55:36 +000076
bellard24374902003-06-15 19:52:54 +000077extern StructEntry struct_entries[];
78
j_mayer26553112007-11-19 01:06:24 +000079int thunk_type_size_array(const argtype *type_ptr, int is_host);
80int thunk_type_align_array(const argtype *type_ptr, int is_host);
81
bellard24374902003-06-15 19:52:54 +000082static inline int thunk_type_size(const argtype *type_ptr, int is_host)
83{
84 int type, size;
85 const StructEntry *se;
86
87 type = *type_ptr;
88 switch(type) {
89 case TYPE_CHAR:
90 return 1;
91 case TYPE_SHORT:
92 return 2;
93 case TYPE_INT:
94 return 4;
95 case TYPE_LONGLONG:
96 case TYPE_ULONGLONG:
97 return 8;
98 case TYPE_LONG:
99 case TYPE_ULONG:
100 case TYPE_PTRVOID:
101 case TYPE_PTR:
102 if (is_host) {
103 return HOST_LONG_SIZE;
104 } else {
blueswir1992f48a2007-10-14 16:27:31 +0000105 return TARGET_ABI_BITS / 8;
bellard24374902003-06-15 19:52:54 +0000106 }
107 break;
108 case TYPE_ARRAY:
109 size = type_ptr[1];
j_mayer26553112007-11-19 01:06:24 +0000110 return size * thunk_type_size_array(type_ptr + 2, is_host);
bellard24374902003-06-15 19:52:54 +0000111 case TYPE_STRUCT:
112 se = struct_entries + type_ptr[1];
113 return se->size[is_host];
114 default:
115 return -1;
116 }
117}
118
119static inline int thunk_type_align(const argtype *type_ptr, int is_host)
120{
121 int type;
122 const StructEntry *se;
123
124 type = *type_ptr;
125 switch(type) {
126 case TYPE_CHAR:
127 return 1;
128 case TYPE_SHORT:
129 return 2;
130 case TYPE_INT:
131 return 4;
132 case TYPE_LONGLONG:
133 case TYPE_ULONGLONG:
134 return 8;
135 case TYPE_LONG:
136 case TYPE_ULONG:
137 case TYPE_PTRVOID:
138 case TYPE_PTR:
139 if (is_host) {
140 return HOST_LONG_SIZE;
141 } else {
blueswir1992f48a2007-10-14 16:27:31 +0000142 return TARGET_ABI_BITS / 8;
bellard24374902003-06-15 19:52:54 +0000143 }
144 break;
145 case TYPE_ARRAY:
j_mayer26553112007-11-19 01:06:24 +0000146 return thunk_type_align_array(type_ptr + 2, is_host);
bellard24374902003-06-15 19:52:54 +0000147 case TYPE_STRUCT:
148 se = struct_entries + type_ptr[1];
149 return se->align[is_host];
150 default:
151 return -1;
152 }
153}
154
bellard0ad041d2003-06-25 22:11:41 +0000155#endif /* NO_THUNK_TYPE_SIZE */
156
ths5fafdf22007-09-16 21:08:06 +0000157unsigned int target_to_host_bitmask(unsigned int x86_mask,
blueswir1b39bc502008-10-05 10:51:10 +0000158 const bitmask_transtbl * trans_tbl);
ths5fafdf22007-09-16 21:08:06 +0000159unsigned int host_to_target_bitmask(unsigned int alpha_mask,
blueswir1b39bc502008-10-05 10:51:10 +0000160 const bitmask_transtbl * trans_tbl);
bellard31e31b82003-02-18 22:55:36 +0000161
162#endif