Subject: Re: Problems using Vortex on x86/linux/gcc-2.96
From: Christopher League (league@cs.yale.edu)
Date: Thu Sep 27 2001 - 09:42:21 PDT
| Then you have to compile the Vortex compiler with this change, and then use the
| resulting executable. But to compile the Vortex compiler, you first have to
| avoid the problem to C-compile the new compiler.
Eek.. it's tempting to try and hack g++ to ignore this error
instead! :)
As you suggested, I turned off debug_support. The DBG_E statements
disappeared, and I managed to build the Java towers example. That
will do for now. I suppose rebuilding the compiler shouldn't be too
much more difficult.
Just for the record, I'll append a diff of the things I had to
change (so far) for my version of gcc (2.96) and linux (2.2.16).
Thanks for your help. I'll be in touch again if I get stuck. :)
--Chris
diff -ur vortex-orig/bin/src/zap.c vortex/bin/src/zap.c
--- vortex-orig/bin/src/zap.c Wed Feb 17 13:43:48 1999
+++ vortex/bin/src/zap.c Wed Sep 26 12:03:40 2001
@@ -13,6 +13,7 @@
#include <sys/param.h>
#include <unistd.h>
#include <stdlib.h>
+#include <string.h>
#ifdef VORTEX_SOLARIS
# include <sys/systeminfo.h>
@@ -60,8 +61,6 @@
kill( pid, SIGKILL);
}
}
-
-extern "C" FILE *popen(...);
main(int argc, char **argv) {
FILE *fin;
diff -ur vortex-orig/runtime/gc/conservative-gc/src/cord/cordprnt.c vortex/runtime/gc/conservative-gc/src/cord/cordprnt.c
--- vortex-orig/runtime/gc/conservative-gc/src/cord/cordprnt.c Wed Feb 17 13:43:58 1999
+++ vortex/runtime/gc/conservative-gc/src/cord/cordprnt.c Wed Sep 26 12:05:57 2001
@@ -231,7 +231,7 @@
goto done;
case 'c':
if (width == NONE && prec == NONE) {
- register char c = va_arg(args, char);
+ register char c = va_arg(args, int);
CORD_ec_append(result, c);
goto done;
diff -ur vortex-orig/runtime/makefiles/VortexConfig.default vortex/runtime/makefiles/VortexConfig.default
--- vortex-orig/runtime/makefiles/VortexConfig.default Wed Feb 17 13:44:01 1999
+++ vortex/runtime/makefiles/VortexConfig.default Thu Sep 27 12:17:23 2001
@@ -17,7 +17,7 @@
VORTEX_LINK_FLAGS = ${VORTEX_LINK_LIBS} ${VORTEX_CC_OPTIONS}
# for gcc-2.6.3 and gcc-2.7.2.1:
-VORTEX_LINK_LIBS = -lg++
+VORTEX_LINK_LIBS = -lstdc++
# for gcc-2.8.1:
#VORTEX_LINK_LIBS = -lg++ -liostream -lstdc++
diff -ur vortex-orig/runtime/pic/src/array.h vortex/runtime/pic/src/array.h
--- vortex-orig/runtime/pic/src/array.h Wed Feb 17 13:44:13 1999
+++ vortex/runtime/pic/src/array.h Wed Sep 26 12:28:02 2001
@@ -32,7 +32,7 @@
void reduceArray();
public:
- initArray(int init_size = 2, bool atomic = false) {
+ void initArray(int init_size = 2, bool atomic = false) {
size = init_size;
point = 0;
isAtomic = atomic;
@@ -90,7 +90,7 @@
public: \
name##Array(int init_size = 2, bool atomic = false) \
: array(init_size, atomic) {} \
- initArray(int init_size = 2, bool atomic = false) { \
+ void initArray(int init_size = 2, bool atomic = false) { \
array.initArray(init_size, atomic); \
} \
void add(type a) { array.add((T) a); } \
diff -ur vortex-orig/runtime/pic/src/oop.c vortex/runtime/pic/src/oop.c
--- vortex-orig/runtime/pic/src/oop.c Wed Feb 17 13:44:16 1999
+++ vortex/runtime/pic/src/oop.c Wed Sep 26 13:43:53 2001
@@ -23,6 +23,7 @@
globalVars = n;
}
+void
CecilMap::initCecilMap(int ID, char* n, int nps, bool is_concrete,
OOPList* p, int count,
PredicateTestProc pTest, ObjectKind k) {
diff -ur vortex-orig/runtime/pic/src/oop.h vortex/runtime/pic/src/oop.h
--- vortex-orig/runtime/pic/src/oop.h Wed Feb 17 13:44:16 1999
+++ vortex/runtime/pic/src/oop.h Thu Sep 27 12:21:42 2001
@@ -919,13 +919,15 @@
CecilMap() { }
- initCecilMap(int ID, char* n, int nps, bool is_concrete,
+ void initCecilMap(int ID, char* n, int nps, bool is_concrete,
OOPList* p, int count, PredicateTestProc pTest,
ObjectKind k = GenericObject);
- initCecilMap(int ID, char* n, int nps, bool is_concrete,
+ void initCecilMap(int ID, char* n, int nps, bool is_concrete,
OOPList* p, int count, ObjectKind k = GenericObject) {
initCecilMap(ID, n, nps, is_concrete, p, count, NULL, k);
}
char* name();
void setMapID(int ID) {
diff -ur vortex-orig/runtime/pic/src/send-macros.h vortex/runtime/pic/src/send-macros.h
--- vortex-orig/runtime/pic/src/send-macros.h Wed Feb 17 13:44:17 1999
+++ vortex/runtime/pic/src/send-macros.h Thu Sep 27 11:57:52 2001
@@ -92,7 +92,7 @@
#ifdef PIC_PROFILING
#define GD(nm, arg_list, num_args) \
- (*nm.lookupFunc)(STRIP_PARENS_COMMA##num_args##arg_list &nm)
+ (*nm.lookupFunc)(STRIP_PARENS_COMMA##num_args arg_list &nm)
#else
#define GD(nm, args, num_args) 0
#endif
@@ -124,10 +124,10 @@
FrameMarker __marker(CallingCecilFrame); \
COUNT_NLR_SEND; \
EXTRACT(result_var,nlr_var,nlr_arg, \
- (*(PairTypeP<typeof(result_var)>(*)(TYPES_COMMA##num_args##arg_list \
+ (*(PairTypeP<typeof(result_var)>(*)(TYPES_COMMA##num_args arg_list \
IF_DEBUG(EnvOOP COMMA) PIC*))( \
PIC_var->lookupFunc))( \
- STRIP_PARENS_COMMA##num_args##arg_list \
+ STRIP_PARENS_COMMA##num_args arg_list \
IF_DEBUG(env COMMA) PIC_var)); \
}
@@ -136,11 +136,11 @@
FrameMarker __marker(CallingCecilFrame); \
COUNT_NLR_SEND; \
EXTRACT(result_var,nlr_var,nlr_arg, \
- (*(PairTypeP<typeof(result_var)>(*)(TYPES_COMMA##num_args##arg_list \
+ (*(PairTypeP<typeof(result_var)>(*)(TYPES_COMMA##num_args arg_list \
IF_DEBUG(EnvOOP COMMA) \
ResendPIC*))( \
PIC_var->lookupFunc))( \
- STRIP_PARENS_COMMA##num_args##arg_list \
+ STRIP_PARENS_COMMA##num_args arg_list \
IF_DEBUG(env COMMA) PIC_var)); \
}
@@ -149,8 +149,8 @@
FrameMarker __marker(CallingCecilFrame); \
COUNT_NLR_CALL; \
EXTRACT(result_var,nlr_var,nlr_arg, \
- c_name(IF_DEBUG_ELSE(STRIP_PARENS_COMMA##num_args##arg_list env, \
- STRIP_PARENS##num_args##arg_list))); \
+ c_name(IF_DEBUG_ELSE(STRIP_PARENS_COMMA##num_args arg_list env, \
+ STRIP_PARENS##num_args arg_list))); \
}
#define _NO_NLR_SEND(result_var,arg_list,PIC_var,env,num_args) \
@@ -241,10 +241,10 @@
PIC_var = new PIC(selector, cs); \
} \
FrameMarker __marker(CallingCecilFrame); \
- pair = (*(typeof(pair)(*)(TYPES_COMMA##num_args##arg_list \
+ pair = (*(typeof(pair)(*)(TYPES_COMMA##num_args arg_list \
IF_DEBUG(EnvOOP COMMA) PIC*))( \
PIC_var->lookupFunc))( \
- STRIP_PARENS_COMMA##num_args##arg_list \
+ STRIP_PARENS_COMMA##num_args arg_list \
IF_DEBUG(currentEnv COMMA) PIC_var); \
}
_______________________________________________
Cecil mailing list
Cecil@cs.washington.edu
http://majordomo.cs.washington.edu/mailman/listinfo/cecil
This archive was generated by hypermail 2b25 : Thu Sep 27 2001 - 10:35:05 PDT