Lines Matching refs:name
44 asm_newsym (AsmScn_t *asmscn, const char *name, GElf_Xword size,
58 if (name == NULL)
60 /* If a local symbol name is created the symbol better have
71 name = tempsym;
74 size_t name_len = strlen (name) + 1;
89 memcpy (result + 1, name, name_len));
93 /* We are only interested in the name and don't need to know whether
94 it is a local name or not. */
97 fprintf (asmscn->ctx->out.file, "\t.globl\t%s\n", name);
99 fprintf (asmscn->ctx->out.file, "\t.weak\t%s\n", name);
103 fprintf (asmscn->ctx->out.file, "\t.type\t%s,@object\n", name);
105 fprintf (asmscn->ctx->out.file, "\t.type\t%s,@function\n", name);
109 name, (uintmax_t) size, name);
114 if (asm_symbol_tab_insert (&asmscn->ctx->symbol_tab, elf_hash (name),
122 is already a symbol with this name. In this case the
124 name. */
128 else if (name != tempsym && asm_emit_symbol_p (name))