Lines Matching defs:cfg
83 explicit bblock_t(cfg_t *cfg);
113 struct cfg_t *cfg;
344 cfg_first_block(struct cfg_t *cfg)
346 return (struct bblock_t *)exec_list_get_head(&cfg->block_list);
350 cfg_first_block_const(const struct cfg_t *cfg)
352 return (const struct bblock_t *)exec_list_get_head_const(&cfg->block_list);
356 cfg_last_block(struct cfg_t *cfg)
358 return (struct bblock_t *)exec_list_get_tail(&cfg->block_list);
362 cfg_last_block_const(const struct cfg_t *cfg)
364 return (const struct bblock_t *)exec_list_get_tail_const(&cfg->block_list);