diff src/share/vm/utilities/macros.hpp @ 5114:dad1ac9dba7d

finished first implementation of disabling runtime feedback selectively based on deoptimization history
author Christian Haeubl <christian.haeubl@oracle.com>
date Mon, 19 Mar 2012 14:43:15 -0700
parents 723df37192d6
children ab038e0d6b43
line wrap: on
line diff
--- a/src/share/vm/utilities/macros.hpp	Thu Mar 15 17:01:44 2012 -0700
+++ b/src/share/vm/utilities/macros.hpp	Mon Mar 19 14:43:15 2012 -0700
@@ -76,8 +76,10 @@
 
 #ifdef GRAAL
 #define IS_GRAAL(code) code
+#define NOT_GRAAL(code)
 #else
 #define IS_GRAAL(code)
+#define NOT_GRAAL(code) code
 #endif
 
 #ifdef TIERED