Home | History | Annotate | Download | only in gdb

Lines Matching defs:limit_pc

503 		     CORE_ADDR pc, CORE_ADDR limit_pc,
514 for (; pc < limit_pc; pc += 2)
580 && (pc + 2 < limit_pc))
624 limit_pc = std::min (limit_pc, pc + (2 * 6));
632 for (; pc < limit_pc; pc += 2)
664 if (pc + 2 < limit_pc)
688 CORE_ADDR post_prologue_pc, func_addr, func_end_addr, limit_pc;
707 limit_pc = skip_prologue_using_sal (gdbarch, pc);
708 if (limit_pc == 0)
710 limit_pc = pc + (2 * 28);
712 /* Do not allow limit_pc to be past the function end, if we know
715 limit_pc = std::min (limit_pc, func_end_addr);
718 post_prologue_pc = sh_analyze_prologue (gdbarch, pc, limit_pc, &cache, 0);