You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.8 KiB

  1. /* Copyright 2016 Fred Sundvik
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #pragma once
  17. // For more information about the variable tracing see the readme.
  18. #include "print.h"
  19. #ifdef NUM_TRACED_VARIABLES
  20. // Start tracing a variable at the memory address addr
  21. // The name can be anything and is used only for reporting
  22. // The size should usually be the same size as the variable you are interested in
  23. # define ADD_TRACED_VARIABLE(name, addr, size) add_traced_variable(PSTR(name), (void*)addr, size, PSTR(__FILE__), __LINE__)
  24. // Stop tracing the variable with the given name
  25. # define REMOVE_TRACED_VARIABLE(name) remove_traced_variable(PSTR(name), PSTR(__FILE__), __LINE__)
  26. // Call to get messages when the variable has been changed
  27. # define VERIFY_TRACED_VARIABLES() verify_traced_variables(PSTR(__FILE__), __LINE__)
  28. #else
  29. # define ADD_TRACED_VARIABLE(name, addr, size)
  30. # define REMOVE_TRACED_VARIABLE(name)
  31. # define VERIFY_TRACED_VARIABLES()
  32. #endif
  33. // Don't call directly, use the macros instead
  34. void add_traced_variable(const char* name, void* addr, unsigned size, const char* func, int line);
  35. void remove_traced_variable(const char* name, const char* func, int line);
  36. void verify_traced_variables(const char* func, int line);