Lines Matching refs:insts
187 def get_dwarf_cfa_offsets(insts: List[Inst], fde: Fde) -> CfaOffsets:
196 raise Error(insts[0].pc, "No trivial CFA offsets. Add function to IGNORE list?")
201 for pc, inst in insts:
207 def get_inferred_cfa_offsets(insts: List[Inst]) -> CfaOffsets:
213 for pc, inst in insts:
224 if insts[0].pc <= new_pc <= insts[-1].pc:
234 def check_fde(fde: Fde, insts: List[Inst], srcs) -> None:
237 dwarf_cfa_offsets = get_dwarf_cfa_offsets(insts, fde)
238 inferred_cfa_offsets = get_inferred_cfa_offsets(insts)
240 for pc, inst in insts:
243 for inst2 in insts:
272 insts = get_instructions(asm)
274 seen.update([inst.pc for inst in insts])
276 all_insts.extend(insts)