Generate jit/ARCH_DIR/offsets.h
authortwisti <none@none>
Wed, 30 Jun 2004 19:12:01 +0000 (19:12 +0000)
committertwisti <none@none>
Wed, 30 Jun 2004 19:12:01 +0000 (19:12 +0000)
genoffsets.c [new file with mode: 0644]
src/vm/jit/tools/genoffsets.c [new file with mode: 0644]

diff --git a/genoffsets.c b/genoffsets.c
new file mode 100644 (file)
index 0000000..813070c
--- /dev/null
@@ -0,0 +1,99 @@
+/* genoffsets.c - generate asmpart offsets of structures
+
+   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+   R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser,
+   M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck,
+   P. Tomsich, J. Wenninger
+
+   This file is part of CACAO.
+
+   This program is free software; you can redistribute it and/or
+   modify it under the terms of the GNU General Public License as
+   published by the Free Software Foundation; either version 2, or (at
+   your option) any later version.
+
+   This program is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+   02111-1307, USA.
+
+   Contact: cacao@complang.tuwien.ac.at
+
+   Authors: Christian Thalinger
+
+   Changes:
+
+   $Id: genoffsets.c 1221 2004-06-30 19:12:01Z twisti $
+
+*/
+
+
+#include <stdio.h>
+#include "config.h"
+#include "types.h"
+#include "global.h"
+#include "threads/thread.h"
+#include "toolbox/memory.h"
+
+
+int main(int argc, char **argv)
+{
+       printf("/* This file is machine generated, don't edit it !*/\n\n"); 
+
+       printf("#define offobjvftbl           %3d\n", (s4) OFFSET(java_objectheader, vftbl));
+       printf("#define offarraysize          %3d\n", (s4) OFFSET(java_arrayheader, size));
+       printf("#define offobjarrdata         %3d\n\n", (s4) OFFSET(java_objectarray, data[0]));
+
+       printf("#define offbaseval            %3d\n", (s4) OFFSET(vftbl, baseval));
+       printf("#define offdiffval            %3d\n\n", (s4) OFFSET(vftbl, diffval));
+
+       printf("#define offclass              %3d\n\n", (s4) OFFSET(vftbl, class));
+
+       printf("#define offclassvftbl         %3d\n", (s4) OFFSET(classinfo, vftbl));
+       printf("#define offclassinit          %3d\n", (s4) OFFSET(classinfo, initialized));
+       printf("#define offclassloaded        %3d\n", (s4) OFFSET(classinfo, loaded));
+       printf("#define offclasslinked        %3d\n\n", (s4) OFFSET(classinfo, linked));
+
+       printf("#define offjniitemtype        %3d\n", (s4) OFFSET(jni_callblock, itemtype));
+       printf("#define offjniitem            %3d\n", (s4) OFFSET(jni_callblock, item));
+       printf("#define sizejniblock          %3d\n\n", (s4) sizeof(jni_callblock));
+
+       printf("#define offclassmethodinfo    %3d\n\n", (s4) OFFSET(methodinfo,class));
+
+       printf("#define offmethodnative       %3d\n", (s4) OFFSET(native_stackframeinfo,method));
+       /*      printf("#define offreturnfromnative %3d\n", (s4) OFFSET(native_stackframeinfo,returnFromNative));
+               printf("#define offaddrreturnfromnative %3d\n", (s4) OFFSET(native_stackframeinfo,addrReturnFromNative));
+               printf("#define offprevnative %3d\n", (s4) OFFSET(native_stackframeinfo,prev));
+               printf("#define offnextnative %3d\n", (s4) OFFSET(native_stackframeinfo,next));*/
+
+       printf("\n");
+
+       printf("#define offcast_super_baseval %3d\n", (s4) OFFSET(castinfo, super_baseval));
+       printf("#define offcast_super_diffval %3d\n", (s4) OFFSET(castinfo, super_diffval));
+       printf("#define offcast_sub_baseval   %3d\n", (s4) OFFSET(castinfo, sub_baseval));
+
+       /* everything is ok */
+
+       return 0;
+}
+
+
+/*
+ * These are local overrides for various environment variables in Emacs.
+ * Please do not remove this and leave it at the end of the file, where
+ * Emacs will automagically detect them.
+ * ---------------------------------------------------------------------
+ * Local variables:
+ * mode: c
+ * indent-tabs-mode: t
+ * c-basic-offset: 4
+ * tab-width: 4
+ * End:
+ */
+
+  
diff --git a/src/vm/jit/tools/genoffsets.c b/src/vm/jit/tools/genoffsets.c
new file mode 100644 (file)
index 0000000..813070c
--- /dev/null
@@ -0,0 +1,99 @@
+/* genoffsets.c - generate asmpart offsets of structures
+
+   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+   R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser,
+   M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck,
+   P. Tomsich, J. Wenninger
+
+   This file is part of CACAO.
+
+   This program is free software; you can redistribute it and/or
+   modify it under the terms of the GNU General Public License as
+   published by the Free Software Foundation; either version 2, or (at
+   your option) any later version.
+
+   This program is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+   02111-1307, USA.
+
+   Contact: cacao@complang.tuwien.ac.at
+
+   Authors: Christian Thalinger
+
+   Changes:
+
+   $Id: genoffsets.c 1221 2004-06-30 19:12:01Z twisti $
+
+*/
+
+
+#include <stdio.h>
+#include "config.h"
+#include "types.h"
+#include "global.h"
+#include "threads/thread.h"
+#include "toolbox/memory.h"
+
+
+int main(int argc, char **argv)
+{
+       printf("/* This file is machine generated, don't edit it !*/\n\n"); 
+
+       printf("#define offobjvftbl           %3d\n", (s4) OFFSET(java_objectheader, vftbl));
+       printf("#define offarraysize          %3d\n", (s4) OFFSET(java_arrayheader, size));
+       printf("#define offobjarrdata         %3d\n\n", (s4) OFFSET(java_objectarray, data[0]));
+
+       printf("#define offbaseval            %3d\n", (s4) OFFSET(vftbl, baseval));
+       printf("#define offdiffval            %3d\n\n", (s4) OFFSET(vftbl, diffval));
+
+       printf("#define offclass              %3d\n\n", (s4) OFFSET(vftbl, class));
+
+       printf("#define offclassvftbl         %3d\n", (s4) OFFSET(classinfo, vftbl));
+       printf("#define offclassinit          %3d\n", (s4) OFFSET(classinfo, initialized));
+       printf("#define offclassloaded        %3d\n", (s4) OFFSET(classinfo, loaded));
+       printf("#define offclasslinked        %3d\n\n", (s4) OFFSET(classinfo, linked));
+
+       printf("#define offjniitemtype        %3d\n", (s4) OFFSET(jni_callblock, itemtype));
+       printf("#define offjniitem            %3d\n", (s4) OFFSET(jni_callblock, item));
+       printf("#define sizejniblock          %3d\n\n", (s4) sizeof(jni_callblock));
+
+       printf("#define offclassmethodinfo    %3d\n\n", (s4) OFFSET(methodinfo,class));
+
+       printf("#define offmethodnative       %3d\n", (s4) OFFSET(native_stackframeinfo,method));
+       /*      printf("#define offreturnfromnative %3d\n", (s4) OFFSET(native_stackframeinfo,returnFromNative));
+               printf("#define offaddrreturnfromnative %3d\n", (s4) OFFSET(native_stackframeinfo,addrReturnFromNative));
+               printf("#define offprevnative %3d\n", (s4) OFFSET(native_stackframeinfo,prev));
+               printf("#define offnextnative %3d\n", (s4) OFFSET(native_stackframeinfo,next));*/
+
+       printf("\n");
+
+       printf("#define offcast_super_baseval %3d\n", (s4) OFFSET(castinfo, super_baseval));
+       printf("#define offcast_super_diffval %3d\n", (s4) OFFSET(castinfo, super_diffval));
+       printf("#define offcast_sub_baseval   %3d\n", (s4) OFFSET(castinfo, sub_baseval));
+
+       /* everything is ok */
+
+       return 0;
+}
+
+
+/*
+ * These are local overrides for various environment variables in Emacs.
+ * Please do not remove this and leave it at the end of the file, where
+ * Emacs will automagically detect them.
+ * ---------------------------------------------------------------------
+ * Local variables:
+ * mode: c
+ * indent-tabs-mode: t
+ * c-basic-offset: 4
+ * tab-width: 4
+ * End:
+ */
+
+