Home
last modified time | relevance | path

Searched defs:basicblock_ (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/python/cpython2/Python/
Dcompile.c56 typedef struct basicblock_ { struct
60 struct basicblock_ *b_list; argument
69 struct basicblock_ *b_next; argument
71 unsigned b_seen : 1;
73 unsigned b_return : 1;
75 int b_startdepth;
77 int b_offset;
/aosp_15_r20/external/python/cpython3/Python/
Dcompile.c233 typedef struct basicblock_ { struct
237 struct basicblock_ *b_list; argument
244 struct basicblock_ *b_next; argument
246 int b_iused;
248 int b_ialloc;
250 int b_predecessors;
252 int b_startdepth;
254 int b_offset;
256 unsigned b_nofallthrough : 1;
258 unsigned b_preserve_lasti : 1;
[all …]