HomeSort by: relevance | last modified time | path
    Searched defs:symver (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libgcc/
unwind-compat.h 25 #define symver(name, version) \ macro
26 __asm__ (".symver " #name"," #name "@" #version)
  /src/external/gpl3/gcc.old/dist/gcc/d/
d-attribs.cc 212 ATTR_SPEC ("symver", 1, -1, true, false, false, false,
1059 /* Handle a "symver" and attribute; arguments as in
1068 "%<symver%> attribute only applies to functions and variables");
1076 "%<symver%> attribute is only applicable to symbols");
1083 tree symver = TREE_VALUE (args); local
1084 if (TREE_CODE (symver) != STRING_CST)
1086 error ("%<symver%> attribute argument not a string constant");
1091 const char *symver_str = TREE_STRING_POINTER (symver);
1094 for (int n = 0; (int)n < TREE_STRING_LENGTH (symver); n++)
1100 error ("symver attribute argument must have format %<name@nodename%>")
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
cgraphunit.cc 718 /* Process a symver attribute. */
723 tree value = lookup_attribute ("symver", DECL_ATTRIBUTES (n->decl));
729 .symver foo, bar@V1
730 .symver foo, baz@V2
733 if (strcmp (purpose, "symver") != 0)
736 tree symver = get_identifier_with_length local
739 symtab_node *def = symtab_node::get_for_asmname (symver);
792 SET_DECL_ASSEMBLER_NAME (new_decl, symver);
799 symver_node->symver = true;
1774 if (alias->symver)
    [all...]
  /src/external/gpl3/binutils/dist/include/
bfdlink.h 1060 /* Defined by ".symver". */
1061 unsigned int symver : 1;
1058 unsigned int symver : 1; member in struct:bfd_elf_version_expr
  /src/external/gpl3/binutils.old/dist/include/
bfdlink.h 1048 /* Defined by ".symver". */
1049 unsigned int symver : 1;
1046 unsigned int symver : 1; member in struct:bfd_elf_version_expr
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-attribs.cc 537 { "symver", 1, -1, true, false, false, false,
2640 /* Handle a "symver" attribute. */
2646 tree symver; local
2652 "%<symver%> attribute only applies to functions and variables");
2660 "%<symver%> attribute is only applicable to symbols");
2667 symver = TREE_VALUE (args);
2668 if (TREE_CODE (symver) != STRING_CST)
2670 error ("%<symver%> attribute argument not a string constant");
2675 symver_str = TREE_STRING_POINTER (symver);
2678 for (int n = 0; (int)n < TREE_STRING_LENGTH (symver); n++
    [all...]

Completed in 49 milliseconds