[M3devel] double double double double checking jmp_buf size/alignment
Jay K
jay.krell at cornell.edu
Wed Jan 6 14:17:34 CET 2010
Was truncated!..edited slightly to avoid..
From: jay.krell at cornell.edu
To: m3devel at elegosoft.com
Subject: double double double double checking jmp_buf size/alignment
Date: Wed, 6 Jan 2010 12:28:02 +0000
Getting this right is very important.
Well, we can overstate but it is wasteful.
So anyone with any time, please compile/run this and send the "platform" (uname -a) and the output, thanks.
Or look at m3-libs/m3core/src/C/*/Csetjmp.i3 and
m3-sys/m3middle/src/Target.m3 and see if all three agree.
I have checked a bunch of systems myself but extra checking is good.
If you have a system we do not yet or any longer support, those are ok too.
(e.g. Alpha_*, ARM_*, MIPS_*, *_Irix, *_VMS, *_Tru64 etc.)
#include <setjmp.h>
#include <stdio.h>
#ifdef __GNUC__
#define ALIGN_OF(x) ((int)(sizeof(struct { char a; x b; }) - sizeof(x)))
#else
#define ALIGN_OF(x) ((int)__alignof(x))
int main()
{
printf("%d %d\n", (int)sizeof(jmp_buf), ALIGN_OF(jmp_buf));
return 0;
}
Thanks,
- Jay
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://m3lists.elegosoft.com/pipermail/m3devel/attachments/20100106/db5c80f2/attachment-0002.html>
More information about the M3devel
mailing list