summaryrefslogtreecommitdiff
path: root/testsuite/tests/asmcomp/m68k.S
blob: f15ddcbb40915b9c458bdb44f32973190793d800 (plain)
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
|***********************************************************************
|*                                                                     *
|*                                OCaml                                *
|*                                                                     *
|*            Xavier Leroy, projet Cristal, INRIA Rocquencourt         *
|*                                                                     *
|*  Copyright 1996 Institut National de Recherche en Informatique et   *
|*  en Automatique.  All rights reserved.  This file is distributed    *
|*  under the terms of the Q Public License version 1.0.               *
|*                                                                     *
|***********************************************************************

| $Id$

| call_gen_code is used with the following types:
|       unit -> int
|       int -> int
|       int -> double
|       int * int * address -> void
|       int * int -> void
|       unit -> unit
| Hence arg1 -> d0, arg2 -> d1, arg3 -> a0, 
| and we need a special case for int -> double

        .text
        .globl  _call_gen_code
_call_gen_code:
        link    a6, #0
        movem   d2-d7/a2-a6, a7@-
        fmovem  fp2-fp7, a7@-
        movel   a6@(8), a1
        movel   a6@(12), d0
        movel   a6@(16), d1
        movel   a6@(20), a0
        jsr     a1@
        fmovem  a7@+, fp2-fp7
        movem   a7@+, d2-d7/a2-a6
        unlk    a6
        rts

        .globl  _call_gen_code_float
_call_gen_code_float:
        link    a6, #0
        moveml  d2-d7/a2-a6, a7@-
        fmovem  fp2-fp7, a7@-
        movel   a6@(8), a1
        movel   a6@(12), d0
        jsr     a1@
        fmoved  fp0, a7@-
        movel   a7@+, d0
        movel   a7@+, d1
        fmovem  a7@+, fp2-fp7
        moveml  a7@+, d2-d7/a2-a6
        unlk    a6
        rts

        .globl  _caml_c_call
_caml_c_call:
        jmp     a0@