[M3devel] compiler problems on Snow Leopard
Jay K
jay.krell at cornell.edu
Mon Dec 13 09:49:21 CET 2010
Head looks much better than release here. I'm not "just" saying that.
release has stuff like m3front/src/misc/CG.m3:
ELSIF (t = Target.Word.cg_type) OR (t = Target.Integer.cg_type) THEN
...
ELSE Err("unaligned..."
where head has:
ELSIF (t = Target.Word.cg_type) OR (t = Target.Integer.cg_type)
OR (t = Target.Long.cg_type) OR (t = Target.Longint.cg_type) THEN
...
ELSE Err("unaligned..."
several instances.
Please try head.
- Jay
> From: hosking at cs.purdue.edu
> Date: Sun, 12 Dec 2010 15:25:13 -0500
> To: mika at async.caltech.edu
> CC: m3devel at elegosoft.com
> Subject: Re: [M3devel] compiler problems on Snow Leopard
>
> That's an alignment problem alright. Perhaps the alignment information for VAL is wrong? Or for LONGINT? Jay, any ideas?
>
> On Dec 12, 2010, at 3:14 PM, Mika Nystrom wrote:
>
> > Hi everyone,
> >
> > Well I was able to get past all my linking issues (mostly questions
> > of dynamic vs. static linking and how to do it, which seems to change from
> > version to version...)
> >
> > But now I did hit a real problem.
> >
> > "../I386_DARWIN/FSSchemeStubs.m3", line 934: ** INTERNAL CG ERROR *** unaligned store type=6 s/o/a=32/0/32
> > "../I386_DARWIN/FSSchemeStubs.m3", line 981: ** INTERNAL CG ERROR *** unaligned load_indirect type=6 s/a=32/32
> >
> > Here is the code, but it's not likely to be of much help...
> >
> > PROCEDURE ToScheme_File_Status(READONLY x : File.Status) : SchemeObject.T RAISES { Scheme.E } =
> > BEGIN
> > VAR res : SchemePair.T:=NIL; BEGIN
> > res := SchemeUtils.Cons(SchemeUtils.Cons(SchemeSymbol.FromText("type"),ToScheme_Atom_T(x.type)),res);
> > res := SchemeUtils.Cons(SchemeUtils.Cons(SchemeSymbol.FromText("modificationTime"),SchemeModula3Types.ToScheme_LONGREAL(x.modificationTime)),res);
> > res := SchemeUtils.Cons(SchemeUtils.Cons(SchemeSymbol.FromText("size"),ToScheme_VAL0LONGINT__VAL16778080LONGINT(x.size)),res); (* line 934 *)
> > RETURN res
> > END
> > END ToScheme_File_Status;
> >
> >
> > ...
> >
> > PROCEDURE ToScheme_VAL0LONGINT__VAL16778080LONGINT(READONLY x : [ VAL(0, LONGINT )..VAL(16778080, LONGINT ) ]) : SchemeObject.T RAISES { Scheme.E } =
> > BEGIN
> > RETURN ToScheme_LONGINT(x) (* line 981 *)
> > END ToScheme_VAL0LONGINT__VAL16778080LONGINT;
> >
> >
> > for reference, ToScheme_LONGINT is:
> >
> > PROCEDURE ToScheme_LONGINT(READONLY x : LONGINT ) : SchemeObject.T RAISES { Scheme.E } =
> > BEGIN
> > WITH ref = NEW(REF LONGINT) DO
> > ref^ := x;
> > RETURN SchemeModula3Types.ToScheme_LONGINT(ref)
> > END
> > END ToScheme_LONGINT;
> >
> > Mika
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://m3lists.elegosoft.com/pipermail/m3devel/attachments/20101213/b00bc33b/attachment-0002.html>
More information about the M3devel
mailing list