Lines Matching defs:limit_pc
2522 /* Analyze the function prologue from START_PC to LIMIT_PC. Builds
2528 CORE_ADDR start_pc, CORE_ADDR limit_pc,
2563 if (limit_pc > start_pc + 200)
2564 limit_pc = start_pc + 200;
2570 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += MIPS_INSN16_SIZE)
2984 /* Analyze the function prologue from START_PC to LIMIT_PC. Return
2989 CORE_ADDR start_pc, CORE_ADDR limit_pc,
3028 if (limit_pc > start_pc + 200)
3029 limit_pc = start_pc + 200;
3035 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += loc)
3428 /* Analyze the function prologue from START_PC to LIMIT_PC. Builds
3434 CORE_ADDR start_pc, CORE_ADDR limit_pc,
3465 if (limit_pc > start_pc + 200)
3466 limit_pc = start_pc + 200;
3478 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += MIPS_INSN32_SIZE)
6703 CORE_ADDR limit_pc;
6723 limit_pc = skip_prologue_using_sal (gdbarch, pc);
6724 if (limit_pc == 0)
6725 limit_pc = pc + 100; /* Magic. */
6728 return mips16_scan_prologue (gdbarch, pc, limit_pc, NULL, NULL);
6730 return micromips_scan_prologue (gdbarch, pc, limit_pc, NULL, NULL);
6732 return mips32_scan_prologue (gdbarch, pc, limit_pc, NULL, NULL);