|
From: Nicholas N. <nj...@ca...> - 2004-10-18 14:08:29
|
CVS commit by nethercote:
Arch-abstraction:
- just a couple more constants moved
M +0 -7 core.h 1.38
M +0 -3 vg_signals.c 1.96
M +8 -2 x86/core_arch.h 1.11
--- valgrind/coregrind/core.h #1.37:1.38
@@ -101,11 +101,4 @@
------------------------------------------------------------------ */
-/* 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
--- valgrind/coregrind/vg_signals.c #1.95:1.96
@@ -97,7 +97,4 @@ static const Char *signame(Int sigNo);
------------------------------------------------------------------ */
-/* 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
--- valgrind/coregrind/x86/core_arch.h #1.10:1.11
@@ -308,8 +308,14 @@ arch_thread_t;
/* ---------------------------------------------------------------------
- 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
|