This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix building M32R trampolines on 64-bit hosts


Hi Guys,

  I am applying the patch below to fix building trampolines on the
  M32R target when the host machine is running a 64-bit operating
  system.  The problem was that the code includes hard coded 32-bit
  constants which it did not sign extend when the host was using
  64-bit wide integers.

  This patch reduces the number of unexpected failures in the gcc
  testsuite for a m32r-elf toolchain on a 64-bit host machine from 278
  to 66.

Cheers
  Nick

gcc/ChangeLog
2007-07-11  Nick Clifton  <nickc@redhat.com>

	* config/m32r/m32r.h (INITIALIZE_TRAMPOLINE): Provide alternative
	version for 64-bit hosts.

Index: gcc/config/m32r/m32r.h
===================================================================
--- gcc/config/m32r/m32r.h	(revision 126538)
+++ gcc/config/m32r/m32r.h	(working copy)
@@ -1006,6 +1006,37 @@ L2:     .word STATIC
 /* Emit RTL insns to initialize the variable parts of a trampoline.
    FNADDR is an RTX for the address of the function's pure code.
    CXT is an RTX for the static chain value for the function.  */
+#if HOST_BITS_PER_WIDE_INT > 32
+#define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT) 				\
+  do										\
+    {										\
+      emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 0)),		\
+		      GEN_INT							\
+		      (TARGET_LITTLE_ENDIAN ? 0x017e8e17 : 0x178e7e01));	\
+      emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 4)),		\
+		      GEN_INT							\
+		      (TARGET_LITTLE_ENDIAN ? 0x0c00ae86 : 0xffffffff86ae000c));\
+      emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 8)),		\
+		      GEN_INT							\
+		      (TARGET_LITTLE_ENDIAN ? 0xffffffffe627871e : 0x1e8727e6));\
+      emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 12)),		\
+		      GEN_INT							\
+		      (TARGET_LITTLE_ENDIAN ? 0xffffffffc616c626 : 0x26c61fc6));\
+      emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 16)),		\
+		      (CXT));							\
+      emit_move_insn (gen_rtx_MEM (SImode, plus_constant (TRAMP, 20)),		\
+		      (FNADDR));						\
+      if (m32r_cache_flush_trap >= 0)						\
+	emit_insn (gen_flush_icache (validize_mem (gen_rtx_MEM (SImode, TRAMP)),\
+				     GEN_INT (m32r_cache_flush_trap) ));	\
+      else if (m32r_cache_flush_func && m32r_cache_flush_func[0])		\
+	emit_library_call (m32r_function_symbol (m32r_cache_flush_func), 	\
+			   0, VOIDmode, 3, TRAMP, Pmode,			\
+			   GEN_INT (TRAMPOLINE_SIZE), SImode,			\
+			   GEN_INT (3), SImode);				\
+    }										\
+  while (0)
+#else
 #define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT) 				\
   do										\
     {										\
@@ -1035,6 +1066,7 @@ L2:     .word STATIC
 			   GEN_INT (3), SImode);				\
     }										\
   while (0)
+#endif
 
 #define RETURN_ADDR_RTX(COUNT, FRAME) m32r_return_addr (COUNT)
 
  


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]