Lines Matching refs:priority

58    and/or destructions required for a particular priority level.  */
60 /* Nonzero if there have been any initializations at this priority
63 /* Nonzero if there have been any destructions at this priority
2431 /* A map from priority levels to information about that priority
2479 /* Take this opportunity to initialize the map from priority
2480 numbers to information about that priority level. */
2550 get_priority_info (int priority)
2556 (splay_tree_key) priority);
2559 /* Create a new priority information structure, and insert it
2565 (splay_tree_key) priority,
2574 /* The effective initialization priority of a DECL. */
2728 int priority;
2740 priority. */
2741 priority = DECL_EFFECTIVE_INIT_PRIORITY (decl);
2742 pi = get_priority_info (priority);
2748 /* Conditionalize this initialization on being in the right priority
2753 build_int_cst (NULL_TREE, priority));
2756 /* Process initializers with same priority. */
2758 && DECL_EFFECTIVE_INIT_PRIORITY (TREE_VALUE (node)) == priority;
2764 /* Finish up the priority if-stmt body. */
2856 generate_ctor_or_dtor_function (bool constructor_p, int priority,
2882 if (c_dialect_objc () && (priority == DEFAULT_INIT_PRIORITY)
2885 body = start_objects (function_key, priority);
2897 body = start_objects (function_key, priority);
2900 build_int_cst (NULL_TREE, priority),
2912 if (priority == DEFAULT_INIT_PRIORITY)
2926 body = start_objects (function_key, priority);
2934 finish_objects (function_key, priority, body);
2937 /* Generate constructor and destructor functions for the priority
2944 int priority = (int) n->key;
2950 || (priority == DEFAULT_INIT_PRIORITY && static_ctors))
2951 generate_ctor_or_dtor_function (/*constructor_p=*/true, priority, locus);
2953 || (priority == DEFAULT_INIT_PRIORITY && static_dtors))
2954 generate_ctor_or_dtor_function (/*constructor_p=*/false, priority, locus);