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

  /src/external/gpl3/gcc/dist/gcc/
symtab-thunks.cc 1 /* Support for thunks in symbol table.
33 #include "symtab-thunks.h"
60 /* To be PCH safe we store thunks into a vector before end of compilation
62 static GTY (()) vec<unprocessed_thunk, va_gc> *thunks; variable
164 vec_safe_push (thunks, entry);
167 /* Attach recorded thunks to cgraph_nodes.
174 if (!thunks)
177 FOR_EACH_VEC_ELT (*thunks, i, e)
181 vec_free (thunks);
182 thunks = NULL
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
symtab-thunks.cc 1 /* Support for thunks in symbol table.
33 #include "symtab-thunks.h"
60 /* To be PCH safe we store thunks into a vector before end of compilation
62 static GTY (()) vec<unprocessed_thunk, va_gc> *thunks; variable
164 vec_safe_push (thunks, entry);
167 /* Attach recorded thunks to cgraph_nodes.
174 if (!thunks)
177 FOR_EACH_VEC_ELT (*thunks, i, e)
181 vec_free (thunks);
182 thunks = NULL
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/
d-tree.h 267 tree thunks; variable
303 DECL_LANG_SPECIFIC (NODE)->thunks
  /src/external/gpl3/gcc/dist/gcc/cp/
class.cc 2962 The ABI specifies that the thunks emitted with a function are
2966 appropriate zero-this-adjustment thunk for us to use since thunks for
9707 tree thunks;
9733 for (thunks = DECL_THUNKS (thunk); thunks; thunks = TREE_CHAIN (thunks))
9734 dump_thunk (stream, indent + 2, thunks);
9737 /* Dump the thunks for FN. */
10388 requiring extra thunks which cannot be generated with the function
9699 tree thunks; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
class.cc 2736 The ABI specifies that the thunks emitted with a function are
2740 appropriate zero-this-adjustment thunk for us to use since thunks for
9316 tree thunks;
9342 for (thunks = DECL_THUNKS (thunk); thunks; thunks = TREE_CHAIN (thunks))
9343 dump_thunk (stream, indent + 2, thunks);
9346 /* Dump the thunks for FN. */
9997 requiring extra thunks which cannot be generated with the function
9308 tree thunks; local
    [all...]

Completed in 48 milliseconds