Lines Matching refs:pc
543 def __init__(self, sp, pc): argument
545 self.pc = pc
582 def is_in_icommon(self, pc): argument
586 if self.at_iframe_setup is not None and pc == self.at_iframe_setup:
592 return pc >= self.interrupt_common_begin_addr and pc < end_addr
601 pc = pending_frame.read_register("rip").cast(self.uintptr_t)
603 if not self.is_in_icommon(pc):
611 frame_id = self.FrameId(sp, pc)
834 def __init__(self, pc): argument
853 for addr in range(pc, pc+0x10000000, 0x10000):
906 pc = _cast_ull(gdb.parse_and_eval("$pc"))
907 x = KASLRBootWatchpoint(pc)
922 def _identify_offset_to_reload(pc): argument
927 if (pc >> 63) != 1:
948 addr = pc
949 while addr > (pc - max_size):
966 def _is_earlyboot_pc(pc): argument
968 return not (pc >> 32)
974 pc = _cast_ull(gdb.parse_and_eval("$pc"))
975 if not _is_earlyboot_pc(pc):
977 _identify_offset_to_reload(pc)
984 x = KASLRBootWatchpoint(pc)