From: Richard Henderson Date: Tue, 22 Sep 2009 15:11:45 +0000 (-0700) Subject: alpha.c (alpha_trampoline_init): Rename from alpha_initialize_trampoline. X-Git-Tag: releases/gcc-4.5.0~3377 X-Git-Url: https://gcc.gnu.org/git/?a=commitdiff_plain;h=2d7b663adf5e348d6a83fb742668d50d5509c401;p=gcc.git alpha.c (alpha_trampoline_init): Rename from alpha_initialize_trampoline. * config/alpha/alpha.c (alpha_trampoline_init): Rename from alpha_initialize_trampoline. Make static. Merge VMS parameter differences into the TARGET_ABI_OPEN_VMS code block. (TARGET_TRAMPOLINE_INIT): New. * config/alpha/alpha.h (TRAMPOLINE_TEMPLATE): Remove. (TRAMPOLINE_SECTION, INITIALIZE_TRAMPOLINE): Remove. * config/alpha/vms.h (TRAMPOLINE_SIZE, TRAMPOLINE_ALIGNMENT): * Remove. (INITIALIZE_TRAMPOLINE): Remove. From-SVN: r151984 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a918f3941af3..999f019067dd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -35,6 +35,15 @@ targetm.asm_out.trampoline_template. Make the memory block const and set its size. + * config/alpha/alpha.c (alpha_trampoline_init): Rename from + alpha_initialize_trampoline. Make static. Merge VMS parameter + differences into the TARGET_ABI_OPEN_VMS code block. + (TARGET_TRAMPOLINE_INIT): New. + * config/alpha/alpha.h (TRAMPOLINE_TEMPLATE): Remove. + (TRAMPOLINE_SECTION, INITIALIZE_TRAMPOLINE): Remove. + * config/alpha/vms.h (TRAMPOLINE_SIZE, TRAMPOLINE_ALIGNMENT): Remove. + (INITIALIZE_TRAMPOLINE): Remove. + 2009-09-22 Richard Guenther PR middle-end/41395 diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 46ad8f4be2d0..86fd1ee5599b 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -5541,34 +5541,23 @@ print_operand_address (FILE *file, rtx addr) } /* Emit RTL insns to initialize the variable parts of a trampoline at - TRAMP. 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. + M_TRAMP. FNDECL is target function's decl. CHAIN_VALUE is an rtx + for the static chain value for the function. */ - The three offset parameters are for the individual template's - layout. A JMPOFS < 0 indicates that the trampoline does not - contain instructions at all. - - We assume here that a function will be called many more times than - its address is taken (e.g., it might be passed to qsort), so we - take the trouble to initialize the "hint" field in the JMP insn. - Note that the hint field is PC (new) + 4 * bits 13:0. */ - -void -alpha_initialize_trampoline (rtx tramp, rtx fnaddr, rtx cxt, - int fnofs, int cxtofs, int jmpofs) +static void +alpha_trampoline_init (rtx m_tramp, tree fndecl, rtx chain_value) { - rtx addr; - /* VMS really uses DImode pointers in memory at this point. */ - enum machine_mode mode = TARGET_ABI_OPEN_VMS ? Pmode : ptr_mode; + rtx fnaddr, mem, word1, word2; + + fnaddr = XEXP (DECL_RTL (fndecl), 0); #ifdef POINTERS_EXTEND_UNSIGNED - fnaddr = convert_memory_address (mode, fnaddr); - cxt = convert_memory_address (mode, cxt); + fnaddr = convert_memory_address (Pmode, fnaddr); + chain_value = convert_memory_address (Pmode, chain_value); #endif if (TARGET_ABI_OPEN_VMS) { - rtx temp1, traddr; const char *fnname; char *trname; @@ -5577,37 +5566,48 @@ alpha_initialize_trampoline (rtx tramp, rtx fnaddr, rtx cxt, trname = (char *) alloca (strlen (fnname) + 5); strcpy (trname, fnname); strcat (trname, "..tr"); - traddr = gen_rtx_SYMBOL_REF - (mode, ggc_alloc_string (trname, strlen (trname) + 1)); + fnname = ggc_alloc_string (trname, strlen (trname) + 1); + word2 = gen_rtx_SYMBOL_REF (Pmode, fnname); /* Trampoline (or "bounded") procedure descriptor is constructed from the function's procedure descriptor with certain fields zeroed IAW the VMS calling standard. This is stored in the first quadword. */ - temp1 = force_reg (DImode, gen_rtx_MEM (DImode, fnaddr)); - temp1 = expand_and (DImode, temp1, - GEN_INT (0xffff0fff0000fff0), NULL_RTX); - addr = memory_address (mode, plus_constant (tramp, 0)); - emit_move_insn (gen_rtx_MEM (DImode, addr), temp1); - - /* Trampoline transfer address is stored in the second quadword - of the trampoline. */ - addr = memory_address (mode, plus_constant (tramp, 8)); - emit_move_insn (gen_rtx_MEM (mode, addr), traddr); + word1 = force_reg (DImode, gen_const_mem (DImode, fnaddr)); + word1 = expand_and (DImode, word1, GEN_INT (0xffff0fff0000fff0), NULL); } + else + { + /* These 4 instructions are: + ldq $1,24($27) + ldq $27,16($27) + jmp $31,($27),0 + nop + We don't bother setting the HINT field of the jump; the nop + is merely there for padding. */ + word1 = GEN_INT (0xa77b0010a43b0018); + word2 = GEN_INT (0x47ff041f6bfb0000); + } + + /* Store the first two words, as computed above. */ + mem = adjust_address (m_tramp, DImode, 0); + emit_move_insn (mem, word1); + mem = adjust_address (m_tramp, DImode, 8); + emit_move_insn (mem, word2); + + /* Store function address and static chain value. */ + mem = adjust_address (m_tramp, Pmode, 16); + emit_move_insn (mem, fnaddr); + mem = adjust_address (m_tramp, Pmode, 24); + emit_move_insn (mem, chain_value); - /* Store function address and CXT. */ - addr = memory_address (mode, plus_constant (tramp, fnofs)); - emit_move_insn (gen_rtx_MEM (mode, addr), fnaddr); - addr = memory_address (mode, plus_constant (tramp, cxtofs)); - emit_move_insn (gen_rtx_MEM (mode, addr), cxt); - + if (!TARGET_ABI_OPEN_VMS) + { + emit_insn (gen_imb ()); #ifdef ENABLE_EXECUTE_STACK - emit_library_call (init_one_libfunc ("__enable_execute_stack"), - LCT_NORMAL, VOIDmode, 1, tramp, Pmode); + emit_library_call (init_one_libfunc ("__enable_execute_stack"), + LCT_NORMAL, VOIDmode, 1, XEXP (m_tramp, 0), Pmode); #endif - - if (jmpofs >= 0) - emit_insn (gen_imb ()); + } } /* Determine where to put an argument to a function. @@ -11114,6 +11114,8 @@ alpha_init_libfuncs (void) #define TARGET_GIMPLIFY_VA_ARG_EXPR alpha_gimplify_va_arg #undef TARGET_ARG_PARTIAL_BYTES #define TARGET_ARG_PARTIAL_BYTES alpha_arg_partial_bytes +#undef TARGET_TRAMPOLINE_INIT +#define TARGET_TRAMPOLINE_INIT alpha_trampoline_init #undef TARGET_SECONDARY_RELOAD #define TARGET_SECONDARY_RELOAD alpha_secondary_reload diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index cd8c11e32867..6235d9ff90af 100644 --- a/gcc/config/alpha/alpha.h +++ b/gcc/config/alpha/alpha.h @@ -838,28 +838,6 @@ extern int alpha_memory_latency; #define EPILOGUE_USES(REGNO) ((REGNO) == 26) -/* Output assembler code for a block containing the constant parts - of a trampoline, leaving space for the variable parts. - - The trampoline should set the static chain pointer to value placed - into the trampoline and should branch to the specified routine. - Note that $27 has been set to the address of the trampoline, so we can - use it for addressability of the two data items. */ - -#define TRAMPOLINE_TEMPLATE(FILE) \ -do { \ - fprintf (FILE, "\tldq $1,24($27)\n"); \ - fprintf (FILE, "\tldq $27,16($27)\n"); \ - fprintf (FILE, "\tjmp $31,($27),0\n"); \ - fprintf (FILE, "\tnop\n"); \ - fprintf (FILE, "\t.quad 0,0\n"); \ -} while (0) - -/* Section in which to place the trampoline. On Alpha, instructions - may only be placed in a text segment. */ - -#define TRAMPOLINE_SECTION text_section - /* Length in units of the trampoline for entering a nested function. */ #define TRAMPOLINE_SIZE 32 @@ -868,13 +846,6 @@ do { \ #define TRAMPOLINE_ALIGNMENT 64 -/* 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. */ - -#define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT) \ - alpha_initialize_trampoline (TRAMP, FNADDR, CXT, 16, 24, 8) - /* A C expression whose value is RTL representing the value of the return address for the frame COUNT steps up from the current frame. FRAMEADDR is the frame pointer of the COUNT frame, or the frame pointer of diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index ca9032750f39..277300828c98 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -4869,7 +4869,7 @@ "jmp $31,(%0),0" [(set_attr "type" "ibr")]) -;; Cache flush. Used by INITIALIZE_TRAMPOLINE. 0x86 is PAL_imb, but we don't +;; Cache flush. Used by alpha_trampoline_init. 0x86 is PAL_imb, but we don't ;; want to have to include pal.h in our .s file. (define_insn "imb" [(unspec_volatile [(const_int 0)] UNSPECV_IMB)] diff --git a/gcc/config/alpha/vms.h b/gcc/config/alpha/vms.h index cb84a040eee6..c0b20f89d61b 100644 --- a/gcc/config/alpha/vms.h +++ b/gcc/config/alpha/vms.h @@ -225,26 +225,6 @@ typedef struct {int num_args; enum avms_arg_type atypes[6];} avms_arg_info; #define ASM_OUTPUT_ALIGNED_DECL_COMMON(FILE, DECL, NAME, SIZE, ALIGN) \ vms_output_aligned_decl_common (FILE, DECL, NAME, SIZE, ALIGN) -#undef TRAMPOLINE_TEMPLATE - -/* Length in units of the trampoline for entering a nested function. */ - -#undef TRAMPOLINE_SIZE -#define TRAMPOLINE_SIZE 32 - -/* The alignment of a trampoline, in bits. */ - -#undef TRAMPOLINE_ALIGNMENT -#define TRAMPOLINE_ALIGNMENT 64 - -/* 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. */ - -#undef INITIALIZE_TRAMPOLINE -#define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT) \ - alpha_initialize_trampoline (TRAMP, FNADDR, CXT, 16, 24, -1) - /* Control how constructors and destructors are emitted. */ #define TARGET_ASM_CONSTRUCTOR vms_asm_out_constructor #define TARGET_ASM_DESTRUCTOR vms_asm_out_destructor