~hilaire-fernandes/drgeo/trunk

« back to all changes in this revision

Viewing changes to VMs/iPad/source/unix/plugins/SqueakFFIPrims/ppc-sysv-asm.S

  • Committer: Hilaire Fernandes
  • Date: 2012-01-27 21:15:40 UTC
  • Revision ID: hilaire.fernandes@gmail.com-20120127211540-912spf97bhpx6mve
Initial additions

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ppc-sysv-asm.S -- PowerPC FFI trampoline for SVr4-like ABIs          -*- asm -*-
 
2
 *
 
3
 * Author: Ian.Piumarta@INRIA.Fr
 
4
 *
 
5
 * Last edited: 2006-10-18 10:07:42 by piumarta on emilia.local
 
6
 *
 
7
 *   Copyright (C) 1996-2004 by Ian Piumarta and other authors/contributors
 
8
 *                              listed elsewhere in this file.
 
9
 *   All rights reserved.
 
10
 *   
 
11
 *   This file is part of Unix Squeak.
 
12
 * 
 
13
 *   Permission is hereby granted, free of charge, to any person obtaining a copy
 
14
 *   of this software and associated documentation files (the "Software"), to deal
 
15
 *   in the Software without restriction, including without limitation the rights
 
16
 *   to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
17
 *   copies of the Software, and to permit persons to whom the Software is
 
18
 *   furnished to do so, subject to the following conditions:
 
19
 * 
 
20
 *   The above copyright notice and this permission notice shall be included in
 
21
 *   all copies or substantial portions of the Software.
 
22
 * 
 
23
 *   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
24
 *   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
25
 *   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
26
 *   AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
27
 *   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
28
 *   OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 
29
 *   SOFTWARE.
 
30
 */
 
31
 
 
32
#define r0 0
 
33
#define sp 1
 
34
#define r2 2
 
35
#define r3 3
 
36
#define r4 4
 
37
#define r5 5
 
38
#define r6 6
 
39
#define r7 7
 
40
#define r8 8
 
41
#define r9 9
 
42
#define r10 10
 
43
#define r11 11
 
44
#define r12 12
 
45
#define f1 1
 
46
#define f2 2
 
47
#define f3 3
 
48
#define f4 4
 
49
#define f5 5
 
50
#define f6 6
 
51
#define f7 7
 
52
#define f8 8
 
53
#define f9 9
 
54
#define f10 10
 
55
#define f11 11
 
56
#define f12 12
 
57
#define f13 13
 
58
 
 
59
/* V.4 stack frames look like this (higher addresses first):
 
60
 
 
61
      old SP--> | back chain to caller's caller         |
 
62
                | Save area for FP registers (F)        | 8+P+A+V+L+X+C+G
 
63
                | Save area for GP registers (G)        | 8+P+A+V+L+X+C
 
64
                | saved CR (C)                          | 8+P+A+V+L+X
 
65
                | Float/int conversion temporary (X)    | 8+P+A+V+L
 
66
                | Local variable space (L)              | 8+P+A+V
 
67
                | Varargs save area (V)                 | 8+P+A
 
68
                | Alloca space (A)                      | 8+P
 
69
                | Parameter save area (P)               | 8
 
70
                | caller's saved LR                     | 4
 
71
          SP--> | back chain to caller                  | 0
 
72
*/
 
73
        
 
74
#define fn      r3
 
75
#define ngpr    r4
 
76
#define nfpr    r5
 
77
#define nparam  r6
 
78
 
 
79
        .text
 
80
        .globl  ffiCallAddressOf
 
81
 
 
82
ffiCallAddressOf:
 
83
        stwu    sp, -16(sp)                     // push trampoline frame
 
84
        mflr    r0
 
85
        stw     r0, 20(sp)
 
86
        mfcr    r0
 
87
        stw     r0, 12(sp)                      // saved ccr
 
88
        mtlr    fn                              // destination fn address
 
89
        slwi    r10, nparam, 2                  // param save area size
 
90
        addi    r10, r10, 16+15                 // round to quad word
 
91
        rlwinm  r10, r10, 0,0,27
 
92
        neg     r10, r10
 
93
        stwux   sp, sp, r10                     // push ffi caller frame
 
94
        cmpwi   nparam, 0                       // have params?
 
95
        beq+    2f
 
96
        mtctr   nparam                          // words to move
 
97
        lis     r10, (ffiStack-4)@ha
 
98
        la      r10, (ffiStack-4)@l(r10)        // ffi param stack - 4
 
99
        addi    r11, sp, 4                      // param save area - 4
 
100
1:      lwzu    r0, 4(r10)                      // copy param save area
 
101
        stwu    r0, 4(r11)
 
102
        bdnz    1b
 
103
2:      cmpwi   nfpr, 0
 
104
        beq+    4f                              // no fp args
 
105
        lis     r11, ffiFPRs@ha
 
106
        la      r11, ffiFPRs@l(r11)
 
107
        cmpwi   nfpr, 4
 
108
        ble+    3f
 
109
        lfd     f5,  32(r11)
 
110
        lfd     f6,  40(r11)
 
111
        lfd     f7,  48(r11)
 
112
        lfd     f8,  56(r11)
 
113
3:      lfd     f1,   0(r11)
 
114
        lfd     f2,   8(r11)
 
115
        lfd     f3,  16(r11)
 
116
        lfd     f4,  24(r11)
 
117
4:      cmpwi   ngpr, 0
 
118
        beq-    6f                              // no int args
 
119
        lis     r11, ffiGPRs@ha
 
120
        la      r11, ffiGPRs@l(r11)
 
121
        cmpwi   ngpr, 4
 
122
        ble+    5f
 
123
        lwz     r7,  16(r11)
 
124
        lwz     r8,  20(r11)
 
125
        lwz     r9,  24(r11)
 
126
        lwz     r10, 28(r11)
 
127
5:      lwz     r3,   0(r11)
 
128
        lwz     r4,   4(r11)
 
129
        lwz     r5,   8(r11)
 
130
        lwz     r6,  12(r11)
 
131
6:      blrl                                    // callout
 
132
        lwz     sp, 0(sp)                       // pop ffi caller frame
 
133
        lis     r5, ffiLongReturnValue@ha
 
134
        la      r5, ffiLongReturnValue@l(r5)
 
135
        stw     r3, 0(r5)
 
136
        stw     r4, 4(r5)
 
137
        lis     r5, ffiFloatReturnValue@ha
 
138
        stfd    f1, ffiFloatReturnValue@l(r5)
 
139
        lwz     r0, 20(sp)
 
140
        mtlr    r0
 
141
        lwz     r0, 12(sp)                      // saved ccr
 
142
        mtcr    r0
 
143
        addi    sp, sp, 16                      // pop trampoline frame
 
144
        blr