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

  /src/external/gpl3/gcc/dist/gcc/
ipa.cc 942 /* When target does not have ctors and dtors, we call all constructor
950 record_cdtor_fn (struct cgraph_node *node, vec<tree> *ctors, vec<tree> *dtors)
953 ctors->safe_push (node->decl);
1081 As the functions are built, they are appended to the CTORs vector. */
1084 build_cxa_dtor_registrations (const vec<tree> &dtors, vec<tree> *ctors)
1139 /* Add this to the list of ctors. */
1140 ctors->safe_push (new_ctor);
1238 for targets that do not support .ctors/.dtors sections. These
1242 build_cdtor_fns (vec<tree> *ctors, vec<tree> *dtors)
1244 if (!ctors->is_empty ()
1300 auto_vec<tree, 20> ctors; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/
modules.cc 80 vec <tree, va_gc> *ctors; member in struct:module_info
172 /* D static ctors, static dtors, unittests, and the ModuleInfo
404 `minfo' section. Then create the global ctors/dtors to call the
765 if (mitest.ctors || mitest.ctorgates)
767 mitest.ctors, mitest.ctorgates);
795 if (mi.ctors || mi.ctorgates)
797 mi.ctors, mi.ctorgates);
871 vec_safe_push (minfo->ctors, decl);
  /src/external/gpl3/gcc.old/dist/gcc/
ipa.cc 941 /* When target does not have ctors and dtors, we call all constructor
949 record_cdtor_fn (struct cgraph_node *node, vec<tree> *ctors, vec<tree> *dtors)
952 ctors->safe_push (node->decl);
1080 As the functions are built, they are appended to the CTORs vector. */
1083 build_cxa_dtor_registrations (const vec<tree> &dtors, vec<tree> *ctors)
1138 /* Add this to the list of ctors. */
1139 ctors->safe_push (new_ctor);
1237 for targets that do not support .ctors/.dtors sections. These
1241 build_cdtor_fns (vec<tree> *ctors, vec<tree> *dtors)
1243 if (!ctors->is_empty ()
1299 auto_vec<tree, 20> ctors; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/
darwin.cc 95 static GTY(()) vec<cdtor_record, va_gc> *ctors = NULL; variable
1865 cdtor_record new_elt = {symbol, priority, vec_safe_length (ctors)};
1867 vec_safe_push (ctors, new_elt);
1916 if (vec_safe_length (ctors) > 1)
1917 ctors->qsort (sort_cdtor_records);
1918 FOR_EACH_VEC_SAFE_ELT (ctors, i, elt)
3128 if (!vec_safe_is_empty (ctors))
  /src/external/gpl3/gcc.old/dist/gcc/config/
darwin.cc 95 static GTY(()) vec<cdtor_record, va_gc> *ctors = NULL; variable
1826 cdtor_record new_elt = {symbol, priority, vec_safe_length (ctors)};
1828 vec_safe_push (ctors, new_elt);
1877 if (vec_safe_length (ctors) > 1)
1878 ctors->qsort (sort_cdtor_records);
1879 FOR_EACH_VEC_SAFE_ELT (ctors, i, elt)
3089 if (!vec_safe_is_empty (ctors))
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclCXX.h 650 ctor_range ctors() const { return ctor_range(ctor_begin(), ctor_end()); } function in class:clang::CXXRecordDecl
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenModule.cpp 1428 auto ctors = builder.beginArray(CtorStructTy); local
1430 auto ctor = ctors.beginStruct(CtorStructTy);
1437 ctor.finishAndAddTo(ctors);
1441 ctors.finishAndCreateGlobal(GlobalName, getPointerAlign(),
6045 // TODO: should we report variant information for ctors/dtors?
  /src/external/gpl3/gcc.old/dist/gcc/cp/
constexpr.cc 1624 releasing_vec ctors;
1625 vec_safe_push (ctors, t);
1626 while (!ctors->is_empty ())
1628 tree c = ctors->pop ();
1634 vec_safe_push (ctors, ce->value);
2804 releasing_vec ctors; local
2830 vec_safe_push (ctors, arg);
2925 while (!ctors->is_empty ())
2927 tree c = ctors->pop ();
5729 releasing_vec ctors, indexes local
    [all...]
call.cc 4091 argument first, but only consider list ctors. */
4118 /* We aren't looking for list-ctors anymore. */
4140 tree ctors = NULL_TREE; local
4162 ctors = get_class_binding (totype, complete_ctor_identifier);
4195 if (ctors)
4203 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_FIRST (ctors))
4204 && !DECL_HAS_VTT_PARM_P (OVL_FIRST (ctors)));
4210 add_list_candidates (ctors, first_arg, args, totype, NULL_TREE,
4216 add_candidates (ctors, first_arg, args, NULL_TREE, NULL_TREE, false,
8682 /* And inheriting ctors. *
    [all...]
  /src/external/gpl3/gcc/dist/gcc/cp/
call.cc 4218 argument first, but only consider list ctors. */
4237 /* We aren't looking for list-ctors anymore. */
4425 tree ctors = NULL_TREE; local
4447 ctors = get_class_binding (totype, complete_ctor_identifier);
4480 if (ctors)
4488 gcc_assert (!DECL_HAS_IN_CHARGE_PARM_P (OVL_FIRST (ctors))
4489 && !DECL_HAS_VTT_PARM_P (OVL_FIRST (ctors)));
4495 add_list_candidates (ctors, first_arg, args, totype, NULL_TREE,
4501 add_candidates (ctors, first_arg, args, NULL_TREE, NULL_TREE, false,
9318 /* And inheriting ctors. *
    [all...]

Completed in 59 milliseconds