* src/vm/jit/jit.h (IS_SAVEDVAR): Added.
authortwisti <none@none>
Thu, 7 Sep 2006 09:40:25 +0000 (09:40 +0000)
committertwisti <none@none>
Thu, 7 Sep 2006 09:40:25 +0000 (09:40 +0000)
(IS_INMEMORY): Likewise.

--HG--
branch : new_instruction_format

src/vm/jit/jit.h

index fd7b0b0524c26d83f31ed5d64ebe4a22bc955bb9..a8d0277b622a84b96b9f617e45681417e1037076 100644 (file)
@@ -30,7 +30,7 @@
    Changes: Christian Thalinger
                        Edwin Steiner
 
-   $Id: jit.h 5375 2006-09-06 16:01:23Z edwin $
+   $Id: jit.h 5392 2006-09-07 09:40:25Z twisti $
 
 */
 
@@ -168,7 +168,7 @@ struct jitdata {
     ((jd)->flags & JITDATA_FLAG_VERBOSECALL)
 
 
-/************************** stack element structure ***************************/
+/* stack element structure ****************************************************/
 
 /* flags */
 
@@ -181,6 +181,10 @@ struct jitdata {
 #define STKEEP    32            /* to prevent reg_mark_copy to free this      */
                                 /* stackslot */
 
+#define IS_SAVEDVAR(x)    ((x) & SAVEDVAR)
+#define IS_INMEMORY(x)    ((x) & INMEMORY)
+
+
 /* variable kinds */
 
 #define UNDEFVAR   0            /* stack slot will become temp during regalloc*/