Home
last modified time | relevance | path

Searched refs:CodeLine (Results 1 – 1 of 1) sorted by relevance

/Renode-v1.15.3-c57714d/tools/execution_tracer/execution_tracer/
Ddwarf.py30 class CodeLine: class
63 self.lines: List[CodeLine] = []
65 def add_code_line(self, cl: CodeLine): argument
68 def get_exec_lines(self) -> Generator[CodeLine, None, None]:
158 …def _build_addr_map(self, code_lines_with_address: List[CodeLine], pc_length: int) -> Dict[bytes, … argument
178 …et_code_lines_by_file(self, dwarf_info: 'DWARFInfo') -> Tuple[int, int, Dict[str, List[CodeLine]]]:
179 code_lines: Dict[str, List[CodeLine]] = defaultdict(list)
184 code_lines[code_file.name].append(CodeLine(line, no + 1, code_file.name, False))
217 def report_coverage(self, trace_data: 'TraceData') -> Iterable[CodeLine]:
226 code_lines_with_address: List[CodeLine] = []
[all …]