aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/libffi/src/powerpc/ffi.c
blob: 5d618cc0dd8b83493030c1dd74ca14bb42b210ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/* ----------------------------------------------------------------------- 
   ffi.c - Copyright (C) 2013 IBM 
           Copyright (C) 2011 Anthony Green 
           Copyright (C) 2011 Kyle Moffett 
           Copyright (C) 2008 Red Hat, Inc 
           Copyright (C) 2007, 2008 Free Software Foundation, Inc 
	   Copyright (c) 1998 Geoffrey Keating 
 
   PowerPC Foreign Function Interface 
 
   Permission is hereby granted, free of charge, to any person obtaining 
   a copy of this software and associated documentation files (the 
   ``Software''), to deal in the Software without restriction, including 
   without limitation the rights to use, copy, modify, merge, publish, 
   distribute, sublicense, and/or sell copies of the Software, and to 
   permit persons to whom the Software is furnished to do so, subject to 
   the following conditions: 
 
   The above copyright notice and this permission notice shall be included 
   in all copies or substantial portions of the Software. 
 
   THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS 
   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
   IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR 
   OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 
   ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 
   OTHER DEALINGS IN THE SOFTWARE. 
   ----------------------------------------------------------------------- */ 
 
#include "ffi.h" 
#include "ffi_common.h" 
#include "ffi_powerpc.h" 
 
#if HAVE_LONG_DOUBLE_VARIANT 
/* Adjust ffi_type_longdouble.  */ 
void FFI_HIDDEN 
ffi_prep_types (ffi_abi abi) 
{ 
# if FFI_TYPE_LONGDOUBLE != FFI_TYPE_DOUBLE 
#  ifdef POWERPC64 
  ffi_prep_types_linux64 (abi); 
#  else 
  ffi_prep_types_sysv (abi); 
#  endif 
# endif 
} 
#endif 
 
/* Perform machine dependent cif processing */ 
ffi_status FFI_HIDDEN 
ffi_prep_cif_machdep (ffi_cif *cif) 
{ 
#ifdef POWERPC64 
  return ffi_prep_cif_linux64 (cif); 
#else 
  return ffi_prep_cif_sysv (cif); 
#endif 
} 
 
ffi_status FFI_HIDDEN 
ffi_prep_cif_machdep_var (ffi_cif *cif, 
			  unsigned int nfixedargs MAYBE_UNUSED, 
			  unsigned int ntotalargs MAYBE_UNUSED) 
{ 
#ifdef POWERPC64 
  return ffi_prep_cif_linux64_var (cif, nfixedargs, ntotalargs); 
#else 
  return ffi_prep_cif_sysv (cif); 
#endif 
} 
 
static void 
ffi_call_int (ffi_cif *cif, 
	      void (*fn) (void), 
	      void *rvalue, 
	      void **avalue, 
	      void *closure) 
{ 
  /* The final SYSV ABI says that structures smaller or equal 8 bytes 
     are returned in r3/r4.  A draft ABI used by linux instead returns 
     them in memory. 
 
     We bounce-buffer SYSV small struct return values so that sysv.S 
     can write r3 and r4 to memory without worrying about struct size. 
    
     For ELFv2 ABI, use a bounce buffer for homogeneous structs too, 
     for similar reasons. This bounce buffer must be aligned to 16 
     bytes for use with homogeneous structs of vectors (float128).  */ 
  float128 smst_buffer[8]; 
  extended_cif ecif; 
 
  ecif.cif = cif; 
  ecif.avalue = avalue; 
 
  ecif.rvalue = rvalue; 
  if ((cif->flags & FLAG_RETURNS_SMST) != 0) 
    ecif.rvalue = smst_buffer; 
  /* Ensure that we have a valid struct return value. 
     FIXME: Isn't this just papering over a user problem?  */ 
  else if (!rvalue && cif->rtype->type == FFI_TYPE_STRUCT) 
    ecif.rvalue = alloca (cif->rtype->size); 
 
#ifdef POWERPC64 
  ffi_call_LINUX64 (&ecif, fn, ecif.rvalue, cif->flags, closure, 
		    -(long) cif->bytes); 
#else 
  ffi_call_SYSV (&ecif, fn, ecif.rvalue, cif->flags, closure, -cif->bytes); 
#endif 
 
  /* Check for a bounce-buffered return value */ 
  if (rvalue && ecif.rvalue == smst_buffer) 
    { 
      unsigned int rsize = cif->rtype->size; 
#ifndef __LITTLE_ENDIAN__ 
      /* The SYSV ABI returns a structure of up to 4 bytes in size 
	 left-padded in r3.  */ 
# ifndef POWERPC64 
      if (rsize <= 4) 
	memcpy (rvalue, (char *) smst_buffer + 4 - rsize, rsize); 
      else 
# endif 
	/* The SYSV ABI returns a structure of up to 8 bytes in size 
	   left-padded in r3/r4, and the ELFv2 ABI similarly returns a 
	   structure of up to 8 bytes in size left-padded in r3. But 
	   note that a structure of a single float is not paddded.  */ 
	if (rsize <= 8 && (cif->flags & FLAG_RETURNS_FP) == 0) 
	  memcpy (rvalue, (char *) smst_buffer + 8 - rsize, rsize); 
	else 
#endif 
	  memcpy (rvalue, smst_buffer, rsize); 
    } 
} 
 
void 
ffi_call (ffi_cif *cif, void (*fn) (void), void *rvalue, void **avalue) 
{ 
  ffi_call_int (cif, fn, rvalue, avalue, NULL); 
} 
 
void 
ffi_call_go (ffi_cif *cif, void (*fn) (void), void *rvalue, void **avalue, 
	     void *closure) 
{ 
  ffi_call_int (cif, fn, rvalue, avalue, closure); 
} 
 
ffi_status 
ffi_prep_closure_loc (ffi_closure *closure, 
		      ffi_cif *cif, 
		      void (*fun) (ffi_cif *, void *, void **, void *), 
		      void *user_data, 
		      void *codeloc) 
{ 
#ifdef POWERPC64 
  return ffi_prep_closure_loc_linux64 (closure, cif, fun, user_data, codeloc); 
#else 
  return ffi_prep_closure_loc_sysv (closure, cif, fun, user_data, codeloc); 
#endif 
} 
 
ffi_status 
ffi_prep_go_closure (ffi_go_closure *closure, 
		     ffi_cif *cif, 
		     void (*fun) (ffi_cif *, void *, void **, void *)) 
{ 
#ifdef POWERPC64 
  closure->tramp = ffi_go_closure_linux64; 
#else 
  closure->tramp = ffi_go_closure_sysv; 
#endif 
  closure->cif = cif; 
  closure->fun = fun; 
  return FFI_OK; 
}