Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8496099
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T23:45:28+00:00 2026-06-10T23:45:28+00:00

I ‘m wondering if it ‘s possible to create a script that will continue

  • 0

I ‘m wondering if it ‘s possible to create a script that will continue the program ‘s execution (after a break) step by step based on the memory address value.
So, if I ‘m tracing a function and it goes into a high memory value, I ‘d call the gdb script until the memory value is below a set value – then it would break again.

I ‘m very new to gdb and still reading the manual/tutorials, but I ‘d like to know if my goal is possible 🙂 – and if you could bump me to the proper direction, even better 😉

Thanks!

Edit, updated with pseudocode:

while (1) {
    cma = getMemoryAddressForCurrentInstruction();
    if (cma > 0xdeadbeef) {
        stepi;
    } else {
        break;
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T23:45:29+00:00Added an answer on June 10, 2026 at 11:45 pm

    You’re talking about the Program Counter (sometimes called the instruction pointer). It’s available in gdb as $pc. Your pseudocode can be translated into this actual gdb command:

    while $pc <= 0xdeadbeef
        stepi
    

    It’ll be slow, since it’s starting and stopping the program for every instruction, but as far as I know there’s no fast way to do it if you don’t know exactly what address you’re looking for. If you do, then you can just set a breakpoint there:

    break *0xf0abcdef
    cont
    

    will run until the program counter hits 0xf0abcdef

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create a RegEx expression that will successfully parse the following
I downloaded PostgreSQL from the official website and ran the .dmg installer. After that
I need a function that will clean a strings' special characters. I do NOT
I'm trying to create an if statement in PHP that prevents a single post
I've got a string that has curly quotes in it. I'd like to replace
I'm running a Octopress blog which is based on Jekyll . Now I wanted
I am doing a simple coin flipping experiment for class that involves flipping a
I have a text area in my form which accepts all possible characters from
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is
I have just tried to save a simple *.rtf file with some websites and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.