Lines Matching refs:bl
60 block_function (const struct block *bl) in block_function() argument
62 while (BLOCK_FUNCTION (bl) == 0 && BLOCK_SUPERBLOCK (bl) != 0) in block_function()
63 bl = BLOCK_SUPERBLOCK (bl); in block_function()
65 return BLOCK_FUNCTION (bl); in block_function()
79 struct blockvector *bl; in blockvector_for_pc_sect() local
89 bl = BLOCKVECTOR (symtab); in blockvector_for_pc_sect()
90 b = BLOCKVECTOR_BLOCK (bl, 0); in blockvector_for_pc_sect()
96 top = BLOCKVECTOR_NBLOCKS (bl); in blockvector_for_pc_sect()
101 b = BLOCKVECTOR_BLOCK (bl, bot + half); in blockvector_for_pc_sect()
112 b = BLOCKVECTOR_BLOCK (bl, bot); in blockvector_for_pc_sect()
117 return bl; in blockvector_for_pc_sect()
141 struct blockvector *bl; in block_for_pc_sect() local
144 bl = blockvector_for_pc_sect (pc, section, &index, NULL); in block_for_pc_sect()
145 if (bl) in block_for_pc_sect()
146 return BLOCKVECTOR_BLOCK (bl, index); in block_for_pc_sect()
284 struct block *bl = obstack_alloc (obstack, sizeof (struct block)); in allocate_block() local
286 BLOCK_START (bl) = 0; in allocate_block()
287 BLOCK_END (bl) = 0; in allocate_block()
288 BLOCK_FUNCTION (bl) = NULL; in allocate_block()
289 BLOCK_SUPERBLOCK (bl) = NULL; in allocate_block()
290 BLOCK_DICT (bl) = NULL; in allocate_block()
291 BLOCK_NAMESPACE (bl) = NULL; in allocate_block()
292 BLOCK_GCC_COMPILED (bl) = 0; in allocate_block()
294 return bl; in allocate_block()