2003-11-28 21:55:59 +01:00
|
|
|
#!/usr/bin/perl -s
|
2006-03-01 21:20:22 +01:00
|
|
|
# Copyright 2003, 2004, 2005 Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# This file is part of Cygwin.
|
|
|
|
#
|
|
|
|
# This software is a copyrighted work licensed under the terms of the
|
|
|
|
# Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
# details.
|
|
|
|
#
|
2003-11-28 21:55:59 +01:00
|
|
|
my $tls = shift;
|
|
|
|
my $tls_out = shift;
|
|
|
|
open(TLS, $tls) or die "$0: couldn't open tls file \"$tls\" - $!\n";
|
|
|
|
my $struct = '';
|
|
|
|
my @fields = ();
|
|
|
|
my $def = '';
|
2004-01-15 20:51:49 +01:00
|
|
|
$tls = join('', <TLS>);
|
2003-12-23 17:26:31 +01:00
|
|
|
$tls =~ s/\n[^\n]*gentls_offsets[^\n]*\n(.+)\Z/$1/os;
|
|
|
|
my $pre = $`;
|
|
|
|
substr($tls, 0, length($pre)) = '';
|
|
|
|
$pre =~ s/\n#ifndef _[^\n]+\n/\n/os;
|
|
|
|
$pre .= "\n//*/";
|
2003-12-06 19:08:38 +01:00
|
|
|
$tls =~ s%/\*\s*gentls_offsets.*?/\*\s*gentls_offsets\s*\*/%%ogs;
|
|
|
|
foreach ($tls =~ /^.*\n/mg) {
|
2006-05-16 05:14:24 +02:00
|
|
|
/^}|\s*(?:typedef|const)/o and do {
|
2003-11-28 21:55:59 +01:00
|
|
|
$def .= $_ ;
|
|
|
|
next;
|
|
|
|
};
|
2006-05-16 05:14:24 +02:00
|
|
|
$def .= $_ if $struct;
|
2003-11-28 21:55:59 +01:00
|
|
|
if (!s/;.*$//o) {
|
|
|
|
if (!$struct && /^\s*(?:struct|class)\s*([a-z_0-9]+)/o) {
|
|
|
|
$def .= $_;
|
2005-02-13 19:17:29 +01:00
|
|
|
$struct = $1
|
2003-11-28 21:55:59 +01:00
|
|
|
}
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
s/(?:\[[^\]]*\]|struct|class)//o;
|
|
|
|
s/^\s+\S+\s+//o;
|
|
|
|
s/[\*\s()]+//go;
|
|
|
|
for my $f (split(/,/)) {
|
|
|
|
push(@fields, $f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close TLS;
|
|
|
|
open(TMP, '>', "/tmp/$$.cc") or die "$0: couldn't open temporary index file \"/tmp/$$.c\" - $!\n";
|
|
|
|
print TMP <<EOF;
|
2003-12-23 17:26:31 +01:00
|
|
|
#define __INSIDE_CYGWIN__
|
2003-12-06 19:08:38 +01:00
|
|
|
#define __attribute__(X)
|
2003-11-28 21:55:59 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <signal.h>
|
2005-07-03 04:40:30 +02:00
|
|
|
#include <windows.h>
|
2003-12-23 17:26:31 +01:00
|
|
|
$pre
|
2003-11-28 21:55:59 +01:00
|
|
|
$def
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
2006-05-16 05:14:24 +02:00
|
|
|
$struct *foo;
|
|
|
|
# define foo_beg ((char *) foo)
|
|
|
|
# define offset(f) (-CYGTLS_PADSIZE + ((char *) &(foo->f)) - foo_beg)
|
2004-02-08 20:59:27 +01:00
|
|
|
# define poffset(f) (((char *) &(foo->f)) - ((char *) foo))
|
2003-11-28 21:55:59 +01:00
|
|
|
EOF
|
|
|
|
print TMP 'puts ("//;# autogenerated: Do not edit.\n");', "\n\n";
|
2004-02-25 05:08:00 +01:00
|
|
|
print TMP "printf (\"//; \$tls::sizeof_$struct = %d;\\n\", sizeof($struct\));\n";
|
2003-11-28 21:55:59 +01:00
|
|
|
for my $f (@fields) {
|
|
|
|
print TMP ' printf ("//; $tls::', $f, ' = %d;\n", ', "offset($f));\n";
|
2004-02-08 20:59:27 +01:00
|
|
|
print TMP ' printf ("//; $tls::p', $f, ' = %d;\n", ', "poffset($f));\n";
|
2003-11-28 21:55:59 +01:00
|
|
|
}
|
|
|
|
print TMP ' puts ("//; __DATA__\n");', "\n";
|
|
|
|
for my $f (@fields) {
|
|
|
|
print TMP ' printf ("#define tls_', $f, ' (%d)\n", ', "offset($f));\n";
|
2004-02-08 20:59:27 +01:00
|
|
|
print TMP ' printf ("#define tls_p', $f, ' (%d)\n", ', "poffset($f));\n";
|
2003-11-28 21:55:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
print TMP <<EOF;
|
|
|
|
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
close TMP;
|
|
|
|
system @ARGV, '-o', "/tmp/$$-1.cc", '-E', "/tmp/$$.cc";
|
2005-03-31 17:53:57 +02:00
|
|
|
system 'g++', '-m32', '-o', "/tmp/$$.a.out", "/tmp/$$-1.cc" and
|
|
|
|
($? == 127 && system 'c++', '-m32', '-o', "/tmp/$$.a.out", "/tmp/$$-1.cc") and
|
2003-11-28 21:55:59 +01:00
|
|
|
die "$0: couldn't generate executable for offset calculation \"/tmp/$$.a.out\" - $!\n";
|
2006-02-13 19:59:01 +01:00
|
|
|
open(TLS_OUT, '>', $tls_out) or die "$0: couldn't open tls index file \"$tls_out\" - $!\n";
|
2003-11-28 21:55:59 +01:00
|
|
|
open(OFFS, "/tmp/$$.a.out|") or die "$0: couldn't run \"/tmp/$$.a.out\" - $!\n";
|
|
|
|
print TLS_OUT <OFFS>;
|
|
|
|
close OFFS;
|
|
|
|
close TLS_OUT;
|
2004-01-15 20:51:49 +01:00
|
|
|
unlink "/tmp/$$.cc", "/tmp/$$.a.out";
|
2003-11-28 21:55:59 +01:00
|
|
|
exit(0);
|