+2019-11-09 Iain Sandoe <iain@sandoe.co.uk>
+
+ * config/darwin.c (machopic_mcount_stub_name): Validate the
+ symbol stub name when it is created.
+ * config/i386/darwin.h (FUNCTION_PROFILER): Remove the symbol
+ stub validation.
+
2019-11-09 Jakub Jelinek <jakub@redhat.com>
* symtab.c: Fix comment typos.
return p->ptr_name;
}
-/* Return the name of the stub for the mcount function. */
-
-const char*
-machopic_mcount_stub_name (void)
-{
- rtx symbol = gen_rtx_SYMBOL_REF (Pmode, "*mcount");
- return machopic_indirection_name (symbol, /*stub_p=*/true);
-}
-
/* If NAME is the name of a stub or a non-lazy pointer , mark the stub
or non-lazy pointer as used -- and mark the object to which the
pointer/stub refers as used as well, since the pointer/stub will
except_table_label_num++);
ASM_OUTPUT_LABEL (file, section_start_label);
}
+
+/* Return, and mark as used, the name of the stub for the mcount function.
+ Currently, this is only called by X86 code in the expansion of the
+ FUNCTION_PROFILER macro, when stubs are enabled. */
+
+const char*
+machopic_mcount_stub_name (void)
+{
+ rtx symbol = gen_rtx_SYMBOL_REF (Pmode, "*mcount");
+ const char *name = machopic_indirection_name (symbol, /*stub_p=*/true);
+ machopic_validate_stub_or_non_lazy_ptr (name);
+ return name;
+}
+
/* Generate a PC-relative reference to a Mach-O non-lazy-symbol. */
void
#undef TARGET_ASM_OUTPUT_IDENT
#define TARGET_ASM_OUTPUT_IDENT default_asm_output_ident_directive
-/* Darwin profiling -- call mcount. */
+/* Darwin profiling -- call mcount.
+ If we need a stub, then we unconditionally mark it as used. */
#undef FUNCTION_PROFILER
#define FUNCTION_PROFILER(FILE, LABELNO) \
do { \
{ \
const char *name = machopic_mcount_stub_name (); \
fprintf (FILE, "\tcall %s\n", name+1); /* skip '&' */ \
- machopic_validate_stub_or_non_lazy_ptr (name); \
} \
else fprintf (FILE, "\tcall mcount\n"); \
} while (0)