options or sizes, recompile, and still have a working system.
------------------------------------------------------------------ */
-/* Total number of spill slots available for allocation, if a TempReg
- doesn't make it into a RealReg. Just bomb the entire system if
- this value is too small; we don't expect it will ever get
- particularly high. */
-#define VG_MAX_SPILLSLOTS 24
-
-
/* Constants for the slow translation lookup cache. */
#define VG_TRANSTAB_SLOW_BITS 11
#define VG_TRANSTAB_SLOW_SIZE (1 << VG_TRANSTAB_SLOW_BITS)
Signal stack
------------------------------------------------------------------ */
-/* Valgrind's signal stack size, in words */
-#define VG_SIGSTACK_SIZE_W 10000
-
/* We have to ask for signals to be delivered on an alternative
stack, since it is possible, although unlikely, that we'll have to run
client code from inside the Valgrind-installed signal handler. */
/* ---------------------------------------------------------------------
- Constants involving memory layout
+ Miscellaneous constants
------------------------------------------------------------------ */
-// base address of client address space
+// Total number of spill slots available for register allocation.
+#define VG_MAX_SPILLSLOTS 24
+
+// Valgrind's signal stack size, in words.
+#define VG_SIGSTACK_SIZE_W 10000
+
+// Base address of client address space.
#define CLIENT_BASE 0x00000000ul
#endif // __X86_CORE_ARCH_H