Skip to content

Commit

Permalink
Support no-FPU ColdFire in sysdeps/m68k/dl-trampoline.S and refactor …
Browse files Browse the repository at this point in the history
…code.
  • Loading branch information
Joseph Myers committed Jun 30, 2013
1 parent 8145005 commit c53e2f0
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 24 deletions.
8 changes: 8 additions & 0 deletions ports/ChangeLog.m68k
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2013-06-30 Joseph Myers <joseph@codesourcery.com>

* sysdeps/m68k/dl-trampoline.S (FMOVE): Define conditional on
[__mcoldfire__] and [__mcffpu__].
(FPSPACE): Likewise.
(_dl_runtime_profile): Save and restore %fp0 with FMOVE, only if
[FMOVE]. Use FPSPACE in stack offsets.

2013-06-28 Joseph Myers <joseph@codesourcery.com>

* sysdeps/m68k/fpu_control.h: Fix preprocessor indentation.
Expand Down
43 changes: 19 additions & 24 deletions ports/sysdeps/m68k/dl-trampoline.S
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@

#include <sysdep.h>

#if !defined (__mcoldfire__)
# define FMOVE fmove.x
# define FPSPACE 12
#elif defined (__mcffpu__)
# define FMOVE fmove.d
# define FPSPACE 8
#else
# define FPSPACE 0
#endif

.text
.globl _dl_runtime_resolve
.type _dl_runtime_resolve, @function
Expand Down Expand Up @@ -174,12 +184,9 @@ _dl_runtime_profile:
+4 %a1
%sp %a0
*/
#ifdef __mcoldfire__
fmove.d %fp0, -(%sp)
cfi_adjust_cfa_offset (8)
#else
fmove.x %fp0, -(%sp)
cfi_adjust_cfa_offset (12)
#ifdef FMOVE
FMOVE %fp0, -(%sp)
cfi_adjust_cfa_offset (FPSPACE)
#endif
move.l %a0, -(%sp)
cfi_adjust_cfa_offset (4)
Expand All @@ -189,21 +196,12 @@ _dl_runtime_profile:
cfi_adjust_cfa_offset (4)
pea (%sp)
cfi_adjust_cfa_offset (4)
#ifdef __mcoldfire__
pea 24(%sp)
cfi_adjust_cfa_offset (4)
move.l 40(%sp), -(%sp)
pea (16+FPSPACE)(%sp)
cfi_adjust_cfa_offset (4)
move.l 40(%sp), -(%sp)
move.l (32+FPSPACE)(%sp), -(%sp)
cfi_adjust_cfa_offset (4)
#else
pea 28(%sp)
cfi_adjust_cfa_offset (4)
move.l 44(%sp), -(%sp)
move.l (32+FPSPACE)(%sp), -(%sp)
cfi_adjust_cfa_offset (4)
move.l 44(%sp), -(%sp)
cfi_adjust_cfa_offset (4)
#endif
jbsr _dl_call_pltexit
lea 16(%sp), %sp
cfi_adjust_cfa_offset (-16)
Expand All @@ -213,12 +211,9 @@ _dl_runtime_profile:
cfi_adjust_cfa_offset (-4)
move.l (%sp)+, %a0
cfi_adjust_cfa_offset (-4)
#ifdef __mcoldfire__
fmove.d (%sp)+, %fp0
cfi_adjust_cfa_offset (-8)
#else
fmove.x (%sp)+, %fp0
cfi_adjust_cfa_offset (-12)
#ifdef FMOVE
FMOVE (%sp)+, %fp0
cfi_adjust_cfa_offset (-FPSPACE)
#endif
lea 20(%sp), %sp
cfi_adjust_cfa_offset (-20)
Expand Down

0 comments on commit c53e2f0

Please sign in to comment.