Searched refs:bitmap (Results 1 - 25 of 190) sorted by relevance

12345678

/haiku-buildtools/gcc/gcc/
H A Dtree-ssa-ter.h23 extern bitmap find_replaceable_exprs (var_map);
24 extern void dump_replaceable_exprs (FILE *, bitmap);
H A Dipa-reference.h25 bitmap ipa_reference_get_not_read_global (struct cgraph_node *fn);
26 bitmap ipa_reference_get_not_written_global (struct cgraph_node *fn);
H A Dtree-cfgcleanup.h24 extern bitmap cfgcleanup_altered_bbs;
H A Dgcse-common.h39 extern void compute_transp (const_rtx, int, sbitmap *, bitmap,
40 bitmap, vec<modify_pair> *);
44 bitmap, bitmap);
H A Dvaltrack.h25 #include "bitmap.h"
89 bitmap used;
100 /* Linked list of the above, with a bitmap of the REGs in the
109 /* A bitmap that has bits set for each REG used in the
112 bitmap used;
113 /* A bitmap that has bits set for each INSN that is to be
115 bitmap to_rescan;
141 extern void dead_debug_global_init (struct dead_debug_global *, bitmap);
142 extern void dead_debug_global_finish (struct dead_debug_global *, bitmap);
143 extern void dead_debug_local_init (struct dead_debug_local *, bitmap,
[all...]
H A Dtree-stdarg.h26 bitmap va_list_vars, va_list_escape_vars;
H A Dgraphds.h59 vec<int> *, bool, bitmap);
60 int graphds_scc (struct graph *, bitmap);
H A Dcfganal.h39 bitmap get_edges_dependent_on (int);
46 vec<bitmap> control_dependence_map;
72 extern bitmap compute_idf (bitmap, struct bitmap_head *);
H A Dbitmap.h111 SparseSet or simple bitmap representations may be more efficient than a
134 /* Fundamental storage type for bitmap. */
147 /* Number of bits in each actual element of a bitmap. */
177 /* Head of bitmap linked list. The 'current' member points to something
183 site of this bitmap, for detailed
192 extern bitmap_element bitmap_zero_bits; /* Zero bitmap element */
193 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
195 /* Clear a bitmap by freeing up the linked list. */
196 extern void bitmap_clear (bitmap);
198 /* Copy a bitmap t
[all...]
H A Dtree-outof-ssa.h35 bitmap values;
43 bit I will be set in this bitmap. */
44 bitmap partition_has_default_def;
H A Dcselib.h86 extern rtx cselib_expand_value_rtx (rtx, bitmap, int);
87 typedef rtx (*cselib_expand_callback)(rtx, bitmap, int, void *);
88 extern rtx cselib_expand_value_rtx_cb (rtx, bitmap, int,
90 extern bool cselib_dummy_expand_value_rtx_cb (rtx, bitmap, int,
H A Dinit-regs.c78 bitmap already_genned = BITMAP_ALLOC (NULL);
91 bitmap lr = DF_LR_IN (bb);
92 bitmap ur = DF_LIVE_IN (bb);
H A Ddf.h28 #include "bitmap.h"
198 typedef void (*df_alloc_function) (bitmap);
201 to be cleared when ever the set of blocks changes. The bitmap
206 typedef void (*df_reset_function) (bitmap);
213 typedef void (*df_local_compute_function) (bitmap);
216 typedef void (*df_init_function) (bitmap);
219 typedef void (*df_dataflow_function) (struct dataflow *, bitmap, int *, int);
233 typedef void (*df_finalizer_function) (bitmap);
315 bitmap out_of_date_transfer_functions;
546 bitmap blocks_to_analyz
[all...]
H A Dtree-ssa-alias.h51 /* Nonzero if the vars bitmap includes a variable included in 'nonlocal'. */
53 /* Nonzero if the vars bitmap includes a variable included in 'escaped'. */
55 /* Nonzero if the vars bitmap includes a anonymous heap variable that
60 bitmap vars;
120 unsigned int *, bitmap *, bool,
131 void *, bitmap *,
151 extern void pt_solution_set (struct pt_solution *, bitmap, bool);
H A Dtree-ssa-loop-manip.h27 extern void rewrite_into_loop_closed_ssa (bitmap, unsigned);
H A Dtree-into-ssa.h36 extern void debug_decl_set (bitmap set);
H A Dregrename.h37 /* A bitmap to record conflicts with other chains. */
90 extern void regrename_analyze (bitmap);
H A Dregstat.c116 static bitmap setjmp_crosses;
128 bitmap live, bitmap artificial_uses,
129 bitmap local_live, bitmap local_processed,
356 bitmap live = BITMAP_ALLOC (&df_bitmap_obstack);
357 bitmap artificial_uses = BITMAP_ALLOC (&df_bitmap_obstack);
358 bitmap local_live = BITMAP_ALLOC (&df_bitmap_obstack);
359 bitmap local_processed = BITMAP_ALLOC (&df_bitmap_obstack);
413 /* Return a bitmap containin
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dalias-10.c15 typedef struct bitmap_head_def *bitmap; typedef in typeref:struct:bitmap_head_def
19 void foo (bitmap head, bitmap_element *elt)
/haiku-buildtools/legacy/gcc/gcc/
H A Dbitmap.h27 /* Number of bits in each actual element of a bitmap. We get slightly better
47 /* Head of bitmap linked list. */
52 } bitmap_head, *bitmap; typedef in typeref:struct:bitmap_head_def
62 extern bitmap_element *bitmap_free; /* Freelist of bitmap elements */
63 extern bitmap_element bitmap_zero; /* Zero bitmap element */
65 /* Clear a bitmap by freeing up the linked list. */
66 extern void bitmap_clear PROTO((bitmap));
68 /* Copy a bitmap to another bitmap. */
69 extern void bitmap_copy PROTO((bitmap, bitma
[all...]
H A Dsbitmap.h21 /* It's not clear yet whether using bitmap.[ch] will be a win.
44 /* set bit number bitno in the bitmap */
45 #define SET_BIT(bitmap, bitno) \
46 ((bitmap)->elms [(bitno) / SBITMAP_ELT_BITS] \
49 /* test if bit number bitno in the bitmap is set */
50 #define TEST_BIT(bitmap, bitno) \
51 ((bitmap)->elms [(bitno) / SBITMAP_ELT_BITS] >> (bitno) % SBITMAP_ELT_BITS & 1)
53 /* reset bit number bitno in the bitmap */
54 #define RESET_BIT(bitmap, bitno) \
55 ((bitmap)
[all...]
H A Dbitmap.c29 /* Obstack to allocate bitmap elements from. */
45 bitmap_element *bitmap_free; /* Freelist of bitmap elements. */
47 static void bitmap_element_free PROTO((bitmap, bitmap_element *));
50 static void bitmap_element_link PROTO((bitmap, bitmap_element *));
51 static bitmap_element *bitmap_find_bit PROTO((bitmap, unsigned int));
54 /* Free a bitmap element */
58 bitmap head;
83 /* Allocate a bitmap element. The bits are cleared, but nothing else is. */
101 print-rtl.c now calls bitmap functions, and bitmap i
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp87.c8 typedef struct bitmap_head_def *bitmap; typedef in typeref:struct:bitmap_head_def
34 bitmap_elt_ior (bitmap dst, bitmap_element * dst_elt,
55 bitmap_ior_into (bitmap a, const_bitmap b)
H A Dssa-dom-thread-4.c4 typedef struct bitmap_head_def *bitmap; typedef in typeref:struct:bitmap_head_def
22 bitmap_ior_and_compl (bitmap dst, const_bitmap a, const_bitmap b,
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Davx-vzeroupper-24.c13 typedef struct bitmap_head_def *bitmap; typedef in typeref:struct:bitmap_head_def
17 bitmap_and_compl_into (bitmap a, const_bitmap b)

Completed in 711 milliseconds

12345678