Searched refs:BINFO_BASE_BINFOS (Results 1 – 16 of 16) sorted by relevance
/dflybsd-src/contrib/gcc-4.7/gcc/ |
H A D | tree.h | 2566 #define BINFO_BASE_BINFOS(NODE) (&TREE_BINFO_CHECK(NODE)->binfo.base_binfos) macro 2569 #define BINFO_N_BASE_BINFOS(NODE) (VEC_length (tree, BINFO_BASE_BINFOS (NODE))) 2573 (VEC_index (tree, BINFO_BASE_BINFOS (NODE), (N))) 2575 (VEC_iterate (tree, BINFO_BASE_BINFOS (NODE), (N), (B))) 2577 (VEC_quick_push (tree, BINFO_BASE_BINFOS (NODE), (T)))
|
H A D | tree-streamer-out.c | 714 FOR_EACH_VEC_ELT (tree, BINFO_BASE_BINFOS (expr), i, t) in write_ts_binfo_tree_pointers()
|
H A D | tree-streamer-in.c | 843 VEC_quick_push (tree, BINFO_BASE_BINFOS (expr), t); in lto_input_ts_binfo_tree_pointers()
|
H A D | tree.c | 1668 VEC_embedded_init (tree, BINFO_BASE_BINFOS (t), base_binfos); in make_tree_binfo_stat() 4417 FOR_EACH_VEC_ELT (tree, BINFO_BASE_BINFOS (binfo), i, t) in free_lang_data_in_binfo() 4872 for (i = 0; VEC_iterate (tree, BINFO_BASE_BINFOS (TYPE_BINFO (t)), in find_decls_types_r()
|
/dflybsd-src/contrib/gcc-8.0/gcc/ |
H A D | tree-streamer-out.c | 837 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (expr), i, t) in write_ts_binfo_tree_pointers()
|
H A D | tree.h | 2231 #define BINFO_BASE_BINFOS(NODE) (&TREE_BINFO_CHECK (NODE)->binfo.base_binfos) macro 2234 #define BINFO_N_BASE_BINFOS(NODE) (BINFO_BASE_BINFOS (NODE)->length ()) 2238 ((*BINFO_BASE_BINFOS (NODE))[(N)]) 2240 (BINFO_BASE_BINFOS (NODE)->iterate ((N), &(B))) 2242 (BINFO_BASE_BINFOS (NODE)->quick_push ((T)))
|
H A D | print-tree.c | 946 vec_safe_length (BINFO_BASE_BINFOS (node))); in print_node()
|
H A D | tree-streamer-in.c | 992 BINFO_BASE_BINFOS (expr)->quick_push (t); in lto_input_ts_binfo_tree_pointers()
|
H A D | lto-streamer-out.c | 940 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (expr), i, t) in DFS_write_tree_body() 1333 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (t), i, b) in hash_tree()
|
H A D | tree.c | 2368 BINFO_BASE_BINFOS (t)->embedded_init (base_binfos); in make_tree_binfo() 5066 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (binfo), i, t) in free_lang_data_in_binfo() 5522 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (TYPE_BINFO (t)), i, tem) in find_decls_types_r()
|
/dflybsd-src/contrib/gcc-8.0/gcc/cp/ |
H A D | search.c | 2644 FOR_EACH_VEC_SAFE_ELT (BINFO_BASE_BINFOS (TYPE_BINFO (type)), i, base_binfo) in any_dependent_bases_p()
|
H A D | semantics.c | 3906 vec<tree, va_gc> *base_binfos = BINFO_BASE_BINFOS (TYPE_BINFO (type)); in calculate_direct_bases()
|
/dflybsd-src/contrib/gcc-4.7/gcc/lto/ |
H A D | lto.c | 472 VEC_replace (tree, BINFO_BASE_BINFOS (t), i, base); in lto_ft_binfo()
|
/dflybsd-src/contrib/gcc-8.0/gcc/lto/ |
H A D | lto.c | 1479 FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (t1), i, t) in compare_tree_sccs_1()
|
/dflybsd-src/contrib/gcc-4.7/gcc/cp/ |
H A D | semantics.c | 3452 base_binfos = BINFO_BASE_BINFOS (TYPE_BINFO (type)); in calculate_direct_bases()
|
/dflybsd-src/contrib/gcc-4.7/gcc/doc/ |
H A D | generic.texi | 2781 be obtained with @code{BINFO_BASE_BINFOS}, but normally you do not need
|