Lines Matching refs:fde
67 fde = Fde(int(m[1], 16), int(m[2], 16), section)
68 if fde.addr != 0:
69 results.append(fde)
94 def get_cfa(fde: Fde) -> List[Cfa]:
98 return [Cfa(int(addr, 16), cfa) for addr, cfa in cfa_re.findall(fde.data)]
170 def check_fde(fde: Fde, insts: List[Inst], srcs, verbose: bool = False) -> Tuple[str, Set[int]]:
174 cfas = get_cfa(fde)
205 for fde in fdes:
206 if fde.addr not in srcs:
211 while asms and asms[0].addr < fde.end:
213 if asm.addr < fde.addr:
225 error, seen_addrs = check_fde(fde, all_insts, srcs)
228 check_fde(fde, all_insts, srcs, True)