Lines Matching full:blocks
20 FunctionSummary object describes the code blocks within each function,
79 Reads the binary file and extracts functions, blocks, arcs, and
83 FileSummary object representing the functions, blocks, arcs,
151 Reads information about the basic blocks from the gcno file
155 length: number of blocks to read
156 func: FunctionSummary object for the blocks' parent function
159 parser.FileFormatError: Blocks could not be read. Corrupt file.
162 blocks = []
165 block = block_summary.BlockSummary(len(blocks), block_flag)
166 blocks.append(block)
167 func.blocks.extend(blocks)
184 src_block = func.blocks[src_block_index]
189 dst_block = func.blocks[dst_block_index]
218 func.blocks[block_number].lines = lines
225 basic blocks, functions, and arcs.
232 fuctions, blocks, and arcs in the .gcno file.