Fixxingissuses

Chapter 13 - Fixing Issues & Debugging #

Alright, so your code/electronics/computer/life was working fine just a second ago, and now it’s just not working at all. Take a deep breath, and relax. Let’s work though this.

🦆 Grab a rubber duck #

This won’t always be applicable, but assuming it’s a system- code, or electronics, or a math problem, something that can be analyzed - explain it. Out loud. To a rubber duck. If it’s code, do so line by line. if it’s electronics, go connection by connection. Don’t assume anything is working, just drop all assumptions and find the problem.

☑️ Check your assumptions again. #

Did you actually check all of your assumptions? Compilers aren’t always perfect. Your oscilloscope probe might need calibrated. Don’t dive into the weeds until you’ve double checked everything first, but if you still can’t figure it out, dig for what assumptions you’re making. Did something actually change between now and when it was last working? Is something else giving you false readings?

… just make sure to stop short of questioning your own sanity.

👀 Fix by working comparison #

Yeah, not always applicable advice, but if you have something that’s even similar, first check that it still works, then check for what the differences are between what you’re doing and the reference you have.

🧪 Check your Test Cases are Valid #

What are your conditions for success? Are you even testing for these conditions correctly?

Archive.org backup of Twitter embed

🐜 Actually use a debugger #

For some reason a ton of programmers are allergic to their debuggers. There’s more to life than print debugging. Set a break point. You can do it. I believe in you. If you want to know more about debugging, keep reading on this page.

➗ Binary Search Debugging #

The binary search algorithm looks a bit like this:

Chad250, CC BY-SA 4.0, via Wikimedia Commons

So, what does this have to do with debugging? Apply the same idea- find things you can try to narrow down the problem seach space. Comment out some of the non-vital code, then bring it back in half at a time until the problem comes back, etc. Often, finding the problem is the hardest part, so having a strategy to search for it can be a big help.

📋 Keep a list of what you’ve tried and what you haven’t tried #

This is easy, just make a todo style list, if you come up with a new idea halfway though and try it real quick, add it and immediately check it off. This prevents the possibility of being 3 hours in and repeating the same ‘fixes’ as an exercise in insanity.


Other Resources: #

How Game Designers Solved These 11 Problems (Game Maker’s Toolkit, YouTube)

Debugging #

./missing-semester - Debugging and Profiling

see: Print Debugging Should Go Away and the tools recommended in it, like rr.

Software Debugging #

[TODO]

GDB with Gef, interpreted languages, embedded systems, non-code issues (boot problems, glitchy behavior), hardware failures, valgrind, various trace programs, print debugging extended

Debuggers #

GDB Frontend

GDB + GEF

The State of Linux Debuggers (Jamie Brandon’s Blog) ← This is a decent rant about why most debuggers sort of suck. And yeah, they do. But we still sorta need them

Advanced GDB Usage (Interrupt)

https://rr-project.org

+ valgrid in here somewhere, ref 11- low level prog

Static Analysis #

CodeChecker using LLVM/Clang (GitHub)

Hardware Debugging #

common interfaces, simulation, serial/print debugging (slow), internal data logging, physical indicators of internal state, hardware to facilitate debugging (LED ‘byte’)

[TODO] Embedded C/C++ Unit Testing Basics (Interrupt)

[TODO] Faster Debugging with Watchpoints (Interrupt)

TODO: Mention looking at peripheral registers, how to handle interrupts, etc.


If you would like to support my development of OpGuides, please consider supporting me on GitHub Sponsors or dropping me some spare change on Venmo @vegadeftwing - every little bit helps ❤️