Gpc
Threads by month
- ----- 2026 -----
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2000 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1999 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1998 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1997 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1996 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 1995 -----
- December
- November
- October
- September
January 2003
- 39 participants
- 52 discussions
I have to migrate a pascal application to a 64-bit solaris platform.
I'd like to know if GPC generates 64-bit code programs, if GPC runs on a
64-bit solaris platform ?
Thank You
1
0
I have found a much simpler way to build gpc (with gcc-3.2.1) on Mac OS
X, than what I did before. A summary is given below. I will put full
instructions, together with binaries, on my website, somewhere next
week (I hope).
Regards,
Adriaan van Os
---------
The following has been tested on Mac OS X.2.3 out-of-the-box. It might
also work on Mac OS X.2 or X.2.2 (but I didn't test).
(1) Get the gpc-20021128 and gcc-core-3.2.1 sources
(2) Remove the space after "-D" in p/Make-lang.in (Frank Heckenbach)
$(CC) -o $@ -c $(ALL_GPC_FLAGS)
-DRTS_VERSION_CHECK="\"__GPC_RTS_VERSION_`cat
$(RTSSRCDIR)/rts-version`__\"" $<
(3) Patch p/parse.y (Frank Heckenbach)
Try this (patch may need manual applying, since I've changed some
other things in my copy meanwhile).
*** p/parse.y.orig Fri Jan 3 09:44:04 2003
--- p/parse.y Fri Jan 3 09:49:25 2003
***************
*** 792,799 ****
tree name = get_module_destructor_name (current_module);
const char *save_filename = start_dummy_file_name ();
context = build_nt (CALL_EXPR, name, no_parameters (),
NULL_TREE);
! if (!start_function (chainon (build_tree_list (NULL_TREE,
static_id),
! build_tree_list (NULL_TREE,
void_type_node)),
context, NULL_TREE, 0))
YYERROR1;
store_parm_decls ();
--- 792,798 ----
tree name = get_module_destructor_name (current_module);
const char *save_filename = start_dummy_file_name ();
context = build_nt (CALL_EXPR, name, no_parameters (),
NULL_TREE);
! if (!start_function (build_tree_list (NULL_TREE,
void_type_node),
context, NULL_TREE, 0))
YYERROR1;
store_parm_decls ();
(4) Patch stddef.h (Andreas Tobler).
The patch can be found at
http://gcc.gnu.org/ml/gcc/2002-08/msg01681.html.
--- gcc-04072002/gcc/ginclude/stddef.h Wed Jan 9 13:28:06 2002
+++ gccsrc/gcc/gcc/ginclude/stddef.h Thu Jul 4 18:37:27 2002
@@ -242,6 +242,7 @@
#ifndef _WCHAR_T_
#ifndef _BSD_WCHAR_T_
#ifndef _BSD_WCHAR_T_DEFINED_ /* Darwin */
+#ifndef _BSD_RUNE_T_DEFINED_ /* Darwin */
#ifndef _WCHAR_T_DEFINED_
#ifndef _WCHAR_T_DEFINED
#ifndef _WCHAR_T_H
@@ -278,6 +279,7 @@
#ifdef _BSD_RUNE_T_
#if !defined (_ANSI_SOURCE) && !defined (_POSIX_SOURCE)
typedef _BSD_RUNE_T_ rune_t;
+#define _BSD_RUNE_T_DEFINED_
#define _BSD_WCHAR_T_DEFINED_
#if defined (__FreeBSD__)
/* Why is this file so hard to maintain properly? In constrast to
@@ -295,6 +297,7 @@
#endif
#ifndef __cplusplus
typedef __WCHAR_TYPE__ wchar_t;
+#endif
#endif
#endif
#endif
(5) Create a build directory and run configure with the right options
(as described in the gpc docs)
(6) Now, type "make bootstrap" instead of "make". This will build a
gcc-3.2.1 and a gpc-3.2.1 compiler. The first stage of the bootstrap
uses the gcc compiler that came with Mac OS X.2.3.
1
0
As part of my testing of our code compiled with gpc 20021128 based on
gcc-3.2.1 I have passed some of the executables to an associate. The
code was compiled (and runs) on a system running RedHat Linux 7.3. My
associates system is running RedHat 7.2. He reports that attempting to
run a program called manager.e fails with the message :
manager.e: /lib/libc.so.6:version: "GCC_3.0" not found (required by
manager.e)
This is obviously a library problem. What do I need to do to fix it?
--
Martin Liddle, Tynemouth Computer Services, 27 Garforth Close,
Cramlington, Northumberland, England, NE23 6EW.
Phone: 01670-712624. Fax: 01670-717324.
Web site: <http://www.tynecomp.co.uk>.
3
2
Boris Herman wrote:
> Hi
>
>>> I'm sure this has already been asked here but I can't seem to find
>>> an answer in archives or FAQs. So - is there a way of using GPC
>>> under Mac OS X?
>> I am working on it, with help of Pascal Pignard and support from the
>> GPC maintainers.
>> I may summarize previous messages. My plans are:
>> (1) Try to build GPC on Darwin (Mac OS X) -- done
>> (2) Try to build the Hello program -- done
>>
> That may just as well be enough for me. I have a program that only
> does heavy calculations, reads from text files and writes to files and
> to console. Where could I get this compiler to try it out?
I can put the binaries on my website (somewhere next week, I hope),
with these provisions:
(1) It is based on an alpha version of the gpc frontend (gpc-20021128)
(2) It is based on a standard version of the gcc backend (gcc-3.2.1),
so apple specific compiler options are not supported
(3) It passes most of the gpc testsuite, but not all (which means there
are known problems with the compiler)
(4) It can be used with Mac OS 10.2 only (but a build for Mac OS 10.2.3
is planned)
(5) It is entirely your risk to use it.
Alternatively, you may prefer to build the compiler yourself.
Regards,
Adriaan van Os
1
0
Hello
I'm sure this has already been asked here but I can't seem to find an
answer in archives or FAQs. So - is there a way of using GPC under Mac
OS X?
TIA,
Boris
2
1
Hi Adriaan,
I've try many times to port GPC to MAC OS X / Darwin without the succes
I wished, before I fall in Ada language, more strict but more
functionnal.
Nevertheless I've modified 'gpcpp.c' the preprocessor source code in
order to accept Mac Pascal directives.
If you or any one want it let me know I will put it on my web site.
Best , Pascal Pignard.
http://perso.wanadoo.fr/blady
Best
> Frank Heckenbach wrote:
>
>> I.e., we might choose to implement them for compatibility's sake.
>> Then again, how far is GPC compatible to CW in other respects? Is it
>> reasonable to claim (or strive for) compatibility at all?
>
> Well, I don't mind writing different code, where compilers and
> platforms are different. I am striving for the possibility to do so
> within one conditionalized source code. One might call this the lowest
> level of compatibility, the possibilty to write a conditional compiler
> expression IFxx ELSExx ENDxx in a way that both compilers understand.
>
> In CodeWarrior Pascal, you have the choice between "Apple style" and
> "BP style" conditional expressions (the latter not strictly BP, but
> enhanced with Apple-like features) You can use either, but you can't
> mix them in the same project, e.g.
>
> {$ifc condition} ... {$elsec} ... {$endc}
>
> or either
>
> {$if condition} ... {$else} ... {$endif}
>
> in all sources.
>
> Most Macintosh programmers traditionally will use "Apple style"
> conditional expressions, since they are used in Apple's Pascal
> Interfaces to MacOS. I, for one, am lucky to maintain my own Pascal
> Interfaces to MacOS, so for me the choice is free. Also, I am free to
> make any changes to those Interfaces, needed for GPC.
>
> To put it in a nutshell, I will be very grateful if GPC supports
>
> {$if condition} ... {$else} ... {$endif}
>
> and it would be nice if
>
> {$ifc condition} ... {$elsec} ... {$endc}
>
> is supported also. The other items from the CodeWarrior Reference are
> non-essential.
>
> Best regards,
>
> Adriaan van Os
3
2
Frank Heckenbach wrote:
> As you probably know, GPC currently converts all identifiers to
> first letter upper-case/rest lower-case. Since this is often not
> nice, I plan to change this....
I support Pierre's concerns that it will affect c function interfaces. For
example, I have Pascal code
PROCEDURE xflush; EXTERNAL;
Knowing that Pascal converts this to Xflush, that is the name of the c
function it calls. If you are suggesting type conversion is no longer done,
I presume this will remain as xflush and I could rename the c function.
Alternatively I could use asmname. I also assume of course the basic case
insensitivity of Pascal will still treat multiple declarations will
differing case as identical.
However, I don't really support compiler changes which force legacy code to
be changed, regardless of whether there are new warnings or not. I can live
with the change and update the code but it is an irritation to our small
community number of code developers.
If it goes ahead, the warning name is fine, I think it should default to off
and a tristate switch would be preferable.
Given that most Pascal built-in's such as ReadLn and WriteLn (or writeln or
WRITELN!) are redefinable identifiers, are all these variations going to be
flagged up as warnings. I see a long road ahead to get back to
squeaky-clean code!
Regards
David Wood, QinetiQ Farnborough
The Information contained in this E-Mail and any subsequent correspondence
is private and is intended solely for the intended recipient(s).
For those other than the recipient any disclosure, copying, distribution,
or any action taken or omitted to be taken in reliance on such information
is prohibited and may be unlawful.
1
0
Below is a report of an internal error in gpc for fjf664.pas.
I can send in more information if needed.
Regards,
Adriaan van Os
----------
Last login: Mon Jan 6 18:20:47 on ttyp1
Welcome to Darwin!
[G4:~] adriaan% cd test/testp
[G4:~/test/testp] adriaan% gpc -v
Reading specs from
/usr/local/gpc321d2/lib/gcc-lib/powerpc-apple-darwin6.0/3.2.1/specs
Configured with: /Users/adriaan/gpc-3.2.1/configure
--enable-languages=pascal --prefix=/usr/local/gpc321d2
Thread model: single
gpc version 20021128, based on gcc-3.2.1
[G4:~/test/testp] adriaan% make clean
rm -f *.dat *.o *.s *.gpm *.gpi *.gpd *.gpc core a.out stderr.out *.exe
testmake.tmp dummy.c dummy.pas dummy.out diff_cr*.tmp fixcr fixcr.exe
rm -f todo/a.out todo/*.exe todo/*.o todo/*.s todo/*.gpm todo/*.gpi
todo/*.gpd todo/core
[G4:~/test/testp] adriaan% make MASK="fjf664.pas"
Running the GPC Test Suite. This may take a while ...
rm -f *.dat *.o *.s *.gpm *.gpi *.gpd *.gpc core a.out stderr.out *.exe
testmake.tmp dummy.c dummy.pas dummy.out diff_cr*.tmp fixcr fixcr.exe
rm -f todo/a.out todo/*.exe todo/*.o todo/*.s todo/*.gpm todo/*.gpi
todo/*.gpd todo/core
{ gpc --version | head -1; gpc --print-search-dirs | grep install |
head -1; hostname || echo "unknown host"; } | \
sed -e 's,^,Testing ,;N;s,\n.*gcc-lib[/\], (,;s,[/\].*,),;N;s,\n,
(,;s,$,),'
Testing gpc 20021128, based on gcc-3.2.1 (powerpc-apple-darwin6.0)
(G4.local.)
echo "gpc -g -O3 -W -Wall -Wundef -Wpointer-arith -Wno-unused "
gpc -g -O3 -W -Wall -Wundef -Wpointer-arith -Wno-unused
PC="gpc" PFLAGS="--autobuild -g -O3 -W -Wall -Wundef -Wpointer-arith
-Wno-unused " SRCDIR="." TEST_MAKE_FLAG=test-make-flag "./test_run"
"fjf664.pas" | "./test_sum"
TEST fjf664.pas: gpc: Internal error: Illegal instruction
(program gpc1)
Please submit a full bug report to <gpc(a)gnu.de>.
failed
awk: null file name in print or getline
input record number 8, file
source line number 14
make: *** [pascal.check-nomsg] Error 2
**********
Date/Time: 2003-01-06 18:22:39 +0100
OS Version: 10.2 (Build 6C115)
Host: G4.local.
Command: gpc1
PID: 3654
Exception: EXC_BAD_ACCESS (0x0001)
Codes: KERN_INVALID_ADDRESS (0x0001) at 0xbff7fff0
Thread 0 Crashed:
#0 0x000dcacc in reset_used_flags (emit-rtl.c:2639)
#1 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#2 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#3 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#4 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#5 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#6 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#7 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#8 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#9 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#10 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#11 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#12 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#13 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#14 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#15 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#16 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#17 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#18 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#19 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#20 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#21 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#22 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#23 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#24 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#25 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#26 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#27 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#28 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#29 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#30 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#31 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#32 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#33 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#34 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#35 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#36 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#37 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#38 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#39 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#40 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#41 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#42 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#43 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#44 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#45 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#46 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#47 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#48 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#49 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#50 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#51 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#52 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#53 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#54 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#55 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#56 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#57 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#58 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#59 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#60 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#61 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#62 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#63 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#64 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#65 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#66 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#67 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#68 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#69 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#70 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#71 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#72 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#73 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#74 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#75 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#76 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#77 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#78 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#79 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#80 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#81 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#82 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#83 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#84 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#85 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#86 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#87 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#88 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#89 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#90 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#91 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#92 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#93 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#94 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#95 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#96 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#97 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#98 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#99 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#100 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#101 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#102 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#103 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#104 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#105 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#106 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#107 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#108 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#109 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#110 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#111 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#112 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#113 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#114 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#115 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#116 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#117 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#118 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#119 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#120 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#121 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#122 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#123 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#124 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#125 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#126 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#127 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#128 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#129 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#130 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#131 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#132 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#133 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#134 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#135 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#136 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#137 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#138 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#139 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#140 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#141 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#142 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#143 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#144 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#145 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#146 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#147 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#148 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#149 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#150 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#151 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#152 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#153 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#154 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#155 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#156 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#157 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#158 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#159 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#160 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#161 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#162 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#163 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#164 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#165 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#166 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#167 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#168 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#169 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#170 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#171 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#172 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#173 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#174 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#175 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#176 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#177 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#178 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#179 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#180 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#181 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#182 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#183 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#184 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#185 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#186 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#187 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#188 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#189 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#190 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#191 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#192 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#193 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#194 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#195 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#196 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#197 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#198 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#199 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#200 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#201 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#202 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#203 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#204 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#205 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#206 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#207 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#208 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#209 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#210 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#211 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#212 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#213 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#214 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#215 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#216 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#217 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#218 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#219 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#220 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#221 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#222 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#223 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#224 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#225 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#226 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#227 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#228 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#229 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#230 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#231 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#232 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#233 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#234 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#235 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#236 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#237 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#238 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#239 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#240 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#241 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#242 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#243 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#244 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#245 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#246 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#247 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#248 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#249 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#250 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#251 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#252 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#253 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#254 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#255 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#256 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#257 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#258 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#259 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#260 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#261 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#262 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#263 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#264 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#265 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#266 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#267 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#268 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#269 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#270 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#271 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#272 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#273 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#274 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#275 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#276 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#277 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#278 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#279 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#280 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#281 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#282 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#283 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#284 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#285 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#286 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#287 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#288 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#289 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#290 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#291 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#292 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#293 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#294 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#295 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#296 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#297 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#298 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#299 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#300 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#301 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#302 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#303 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#304 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#305 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#306 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#307 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#308 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#309 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#310 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#311 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#312 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#313 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#314 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#315 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#316 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#317 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#318 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#319 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#320 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#321 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#322 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#323 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#324 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#325 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#326 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#327 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#328 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#329 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#330 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#331 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#332 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#333 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#334 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#335 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#336 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#337 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#338 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#339 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#340 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#341 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#342 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#343 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#344 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#345 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#346 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#347 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#348 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#349 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#350 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#351 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#352 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#353 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#354 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#355 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#356 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#357 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#358 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#359 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#360 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#361 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#362 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#363 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#364 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#365 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#366 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#367 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#368 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#369 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#370 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#371 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#372 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#373 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#374 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#375 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#376 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#377 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#378 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#379 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#380 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#381 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#382 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#383 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#384 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#385 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#386 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#387 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#388 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#389 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#390 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#391 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#392 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#393 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#394 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#395 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#396 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#397 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#398 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#399 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#400 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#401 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#402 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#403 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#404 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#405 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#406 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#407 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#408 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#409 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#410 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#411 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#412 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#413 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#414 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#415 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#416 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#417 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#418 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#419 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#420 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#421 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#422 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#423 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#424 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#425 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#426 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#427 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#428 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#429 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#430 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#431 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#432 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#433 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#434 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#435 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#436 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#437 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#438 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#439 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#440 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#441 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#442 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#443 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#444 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#445 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#446 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#447 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#448 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#449 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#450 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#451 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#452 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#453 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#454 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#455 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#456 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#457 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#458 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#459 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#460 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#461 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#462 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#463 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#464 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#465 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#466 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#467 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#468 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#469 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#470 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#471 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#472 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#473 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#474 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#475 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#476 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#477 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#478 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#479 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#480 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#481 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#482 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#483 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#484 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#485 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#486 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#487 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#488 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#489 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#490 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#491 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#492 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#493 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#494 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#495 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#496 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#497 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#498 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#499 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#500 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#501 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#502 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#503 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#504 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#505 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#506 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#507 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
#508 0x000dcc24 in reset_used_flags (emit-rtl.c:2687)
PPC Thread State:
srr0: 0x000dcacc srr1: 0x0000d930 vrsave: 0x00000000
xer: 0x00000000 lr: 0x000dcac0 ctr: 0x000dcba0 mq: 0x00000000
r0: 0x000dcc24 r1: 0xbff80050 r2: 0x0080c010 r3: 0x00c61010
r4: 0x02f910d0 r5: 0x00002dd2 r6: 0x0000002c r7: 0x002ced18
r8: 0x0000004b r9: 0x002cfcb8 r10: 0x0000012c r11: 0x002c6d98
r12: 0x900044a0 r13: 0x002ced18 r14: 0x04de7000 r15: 0x04a42ea0
r16: 0x00000000 r17: 0x00dc61a0 r18: 0x002ced18 r19: 0x002ced18
r20: 0x00000000 r21: 0x002ced18 r22: 0x002ced18 r23: 0x000080a8
r24: 0x0033a790 r25: 0x00000002 r26: 0x00000000 r27: 0x02dee600
r28: 0x00296385 r29: 0x002ca4b8 r30: 0x002cc17c r31: 0x000dcac0
2
2
Below is a report of an internal error in gpc for fjf434a.pas. The same
problem can be reported for readg1.pas, readg2.pas, readg3.pas,
readg4.pas, readg5.pas, readg6.pas, readg7.pas, readg8.pas, readg9.pas
and readg10.pas
I can send in more information if needed.
Regards,
Adriaan van Os
----------
Last login: Mon Jan 6 18:00:47 on ttyp1
Welcome to Darwin!
[G4:~] adriaan% cd test/testp
[G4:~/test/testp] adriaan% gpc -v
Reading specs from
/usr/local/gpc321d2/lib/gcc-lib/powerpc-apple-darwin6.0/3.2.1/specs
Configured with: /Users/adriaan/gpc-3.2.1/configure
--enable-languages=pascal --prefix=/usr/local/gpc321d2
Thread model: single
gpc version 20021128, based on gcc-3.2.1
[G4:~/test/testp] adriaan% make clean
rm -f *.dat *.o *.s *.gpm *.gpi *.gpd *.gpc core a.out stderr.out *.exe
testmake.tmp dummy.c dummy.pas dummy.out diff_cr*.tmp fixcr fixcr.exe
rm -f todo/a.out todo/*.exe todo/*.o todo/*.s todo/*.gpm todo/*.gpi
todo/*.gpd todo/core
[G4:~/test/testp] adriaan% make MASK="fjf434a.pas"
Running the GPC Test Suite. This may take a while ...
rm -f *.dat *.o *.s *.gpm *.gpi *.gpd *.gpc core a.out stderr.out *.exe
testmake.tmp dummy.c dummy.pas dummy.out diff_cr*.tmp fixcr fixcr.exe
rm -f todo/a.out todo/*.exe todo/*.o todo/*.s todo/*.gpm todo/*.gpi
todo/*.gpd todo/core
{ gpc --version | head -1; gpc --print-search-dirs | grep install |
head -1; hostname || echo "unknown host"; } | \
sed -e 's,^,Testing ,;N;s,\n.*gcc-lib[/\], (,;s,[/\].*,),;N;s,\n,
(,;s,$,),'
Testing gpc 20021128, based on gcc-3.2.1 (powerpc-apple-darwin6.0)
(G4.local.)
echo "gpc -g -O3 -W -Wall -Wundef -Wpointer-arith -Wno-unused "
gpc -g -O3 -W -Wall -Wundef -Wpointer-arith -Wno-unused
PC="gpc" PFLAGS="--autobuild -g -O3 -W -Wall -Wundef -Wpointer-arith
-Wno-unused " SRCDIR="." TEST_MAKE_FLAG=test-make-flag "./test_run"
"fjf434a.pas" | "./test_sum"
TEST fjf434a.pas: gpc: Internal error: Illegal instruction
(program gpc1)
Please submit a full bug report to <gpc(a)gnu.de>.
failed
awk: null file name in print or getline
input record number 8, file
source line number 14
make: *** [pascal.check-nomsg] Error 2
**********
Date/Time: 2003-01-06 18:03:26 +0100
OS Version: 10.2 (Build 6C115)
Host: G4.local.
Command: gpc1
PID: 2955
Exception: EXC_BAD_ACCESS (0x0001)
Codes: KERN_INVALID_ADDRESS (0x0001) at 0xbff7ffd0
Thread 0 Crashed:
#0 0x000cb4c8 in ggc_mark_rtx_children_1 (ggc-common.c:317)
#1 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#2 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#3 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#4 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#5 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#6 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#7 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#8 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#9 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#10 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#11 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#12 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#13 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#14 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#15 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#16 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#17 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#18 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#19 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#20 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#21 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#22 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#23 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#24 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#25 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#26 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#27 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#28 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#29 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#30 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#31 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#32 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#33 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#34 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#35 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#36 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#37 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#38 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#39 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#40 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#41 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#42 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#43 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#44 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#45 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#46 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#47 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#48 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#49 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#50 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#51 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#52 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#53 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#54 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#55 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#56 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#57 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#58 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#59 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#60 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#61 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#62 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#63 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#64 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#65 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#66 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#67 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#68 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#69 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#70 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#71 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#72 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#73 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#74 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#75 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#76 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#77 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#78 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#79 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#80 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#81 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#82 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#83 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#84 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#85 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#86 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#87 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#88 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#89 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#90 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#91 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#92 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#93 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#94 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#95 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#96 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#97 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#98 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#99 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#100 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#101 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#102 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#103 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#104 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#105 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#106 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#107 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#108 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#109 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#110 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#111 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#112 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#113 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#114 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#115 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#116 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#117 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#118 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#119 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#120 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#121 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#122 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#123 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#124 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#125 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#126 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#127 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#128 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#129 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#130 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#131 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#132 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#133 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#134 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#135 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#136 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#137 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#138 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#139 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#140 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#141 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#142 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#143 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#144 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#145 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#146 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#147 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#148 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#149 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#150 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#151 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#152 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#153 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#154 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#155 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#156 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#157 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#158 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#159 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#160 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#161 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#162 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#163 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#164 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#165 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#166 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#167 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#168 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#169 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#170 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#171 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#172 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#173 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#174 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#175 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#176 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#177 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#178 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#179 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#180 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#181 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#182 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#183 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#184 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#185 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#186 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#187 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#188 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#189 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#190 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#191 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#192 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#193 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#194 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#195 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#196 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#197 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#198 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#199 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#200 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#201 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#202 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#203 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#204 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#205 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#206 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#207 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#208 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#209 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#210 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#211 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#212 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#213 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#214 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#215 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#216 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#217 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#218 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#219 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#220 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#221 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#222 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#223 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#224 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#225 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#226 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#227 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#228 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#229 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#230 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#231 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#232 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#233 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#234 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#235 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#236 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#237 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#238 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#239 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#240 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#241 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#242 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#243 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#244 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#245 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#246 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#247 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#248 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#249 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#250 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#251 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#252 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#253 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#254 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#255 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#256 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#257 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#258 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#259 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#260 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#261 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#262 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#263 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#264 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#265 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#266 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#267 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#268 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#269 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#270 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#271 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#272 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#273 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#274 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#275 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#276 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#277 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#278 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#279 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#280 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#281 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#282 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#283 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#284 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#285 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#286 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#287 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#288 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#289 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#290 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#291 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#292 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#293 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#294 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#295 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#296 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#297 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#298 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#299 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#300 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#301 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#302 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#303 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#304 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#305 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#306 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#307 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#308 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#309 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#310 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#311 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#312 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#313 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#314 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#315 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#316 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#317 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#318 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#319 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#320 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#321 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#322 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#323 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#324 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#325 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#326 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#327 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#328 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#329 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#330 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#331 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#332 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#333 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#334 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#335 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#336 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#337 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#338 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#339 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#340 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#341 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#342 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#343 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#344 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#345 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#346 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#347 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#348 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#349 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#350 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#351 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#352 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#353 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#354 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#355 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#356 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#357 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#358 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#359 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#360 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#361 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#362 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#363 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#364 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#365 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#366 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#367 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#368 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#369 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#370 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#371 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#372 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#373 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#374 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#375 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#376 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#377 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#378 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#379 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#380 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#381 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#382 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#383 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#384 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#385 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#386 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#387 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#388 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#389 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#390 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#391 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#392 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#393 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#394 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#395 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#396 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#397 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#398 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#399 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#400 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#401 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#402 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#403 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#404 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#405 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#406 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#407 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#408 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#409 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#410 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#411 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#412 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#413 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#414 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#415 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#416 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#417 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#418 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#419 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#420 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#421 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#422 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#423 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#424 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#425 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#426 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#427 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#428 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#429 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#430 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#431 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#432 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#433 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#434 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#435 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#436 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#437 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#438 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#439 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#440 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#441 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#442 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#443 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#444 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#445 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#446 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#447 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#448 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#449 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#450 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#451 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#452 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#453 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#454 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#455 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#456 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#457 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#458 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#459 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#460 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#461 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#462 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#463 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#464 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#465 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#466 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#467 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#468 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#469 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#470 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#471 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#472 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#473 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#474 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#475 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#476 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#477 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#478 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#479 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#480 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#481 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#482 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#483 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#484 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#485 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#486 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#487 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#488 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#489 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#490 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#491 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#492 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#493 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#494 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#495 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#496 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#497 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#498 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#499 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#500 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#501 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#502 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#503 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#504 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#505 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#506 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
#507 0x000cb494 in ggc_mark_rtx_children (ggc-common.c:311)
#508 0x000cb698 in ggc_mark_rtx_children_1 (ggc-common.c:396)
PPC Thread State:
srr0: 0x000cb4c8 srr1: 0x0000d930 vrsave: 0x00000000
xer: 0x20000000 lr: 0x000cb4b4 ctr: 0x000cb5b8 mq: 0x00000000
r0: 0x000cb494 r1: 0xbff80030 r2: 0x28000248 r3: 0x01448f30
r4: 0x00001000 r5: 0x00000000 r6: 0x00000000 r7: 0x00080000
r8: 0x012eb900 r9: 0xffffffe4 r10: 0x002e6558 r11: 0x012eb91c
r12: 0x44044282 r13: 0x002c9070 r14: 0x002c9070 r15: 0x0033a770
r16: 0x002c9070 r17: 0x002c9070 r18: 0x002cdc6c r19: 0x002edc6c
r20: 0x00000001 r21: 0x002e65e0 r22: 0x002e64d0 r23: 0x00000022
r24: 0x002cb4b4 r25: 0x002eb4b4 r26: 0x010a7220 r27: 0x01448f30
r28: 0x01448f30 r29: 0x01448f30 r30: 0x01448f48 r31: 0x000cb4b4
1
0
Hello Adriaan,
I put my modified version of gpcpp.c on line on my web site - as
promised:
http://perso.wanadoo.fr/blady/creations.html#gpcpp
Sorry for the French texts.
Tell me if it helps you.
As you know I am a fervent supporter of Pascal Language, and I will
modestly support your work to port GPC on Mac OS X as it is a lack.
However some great works has been done for about more than one year
about Ada language on Mac OS X see in the text.
I stop my work on GPC port as I fall in two problems:
1) the compiler refuse in some cases the last pass "Unable to generate
reloads...",
2) the linker fails, I was told that Apple dynamic link processing is
very different than Linux does that is for GNU GCC too.
(see my web site http://perso.wanadoo.fr/blady/creations.html#portagegpc)
Sorry for the French texts, a translator link may be found at home page.
I think both problems are linked about dynamic adresses management.
And as Apple or FSF (as you want) won't meet the same process it should
be impossible. But it was before revison gcc 3, maybe now...
If you have some contacts in Apple staff, you can ask them for that.
Greetings for 2003, Pascal Pignard.
http://perso.wanadoo.fr/blady
> Being an optimist, I am currently trying to build GPC for Darwin (Mac
> OS X) myself. I welcome the gpcpp.c changes.
>
>
> Frank Heckenbach wrote:
>
> I.e., we might choose to implement them for compatibility's sake.
> Then again, how far is GPC compatible to CW in other respects? Is it
> reasonable to claim (or strive for) compatibility at all?
>
>
> I will be pleased to discuss CodeWarrior Pascal, it's EBNF is at the
> bottom of this message. My goals however, are rather pragmatic (unless
> somebody else has more ambitious plans).
>
> (1) Try to build GPC on Darwin (Mac OS X)
Done for Ada with gnat-osx
> (2) Try to build the Hello program
Done for Ada with gnat-osx
> (3) Try to build a sample GUI program (for Mac OS X "Carbon")
Done for Ada with gnat-osx
> (4) Try to integrate GPC with Apple's "Project Builder"
Done for Ada with gnat-osx
> (4) Try to port a large (300.000 lines) program to GPC
Done for Ada with gnat-osx
> (5) Write a compatibilty-report for porting from CodeWarrior Pascal to
> GPC
Done for Ada with P2Ada
> (6) Same for maintaining a common (conditionalized) source code for
> CodeWarrior Pascal and GPC
> (7) Filter out a handful of compiler features that would really assist
> GPC development on Mac OS X (and porting from CodeWarrior). On this
> list wil be UNIV parameters, I guess, but this is premature.
> (8) Either talk to Nick Kledzik (who maintains Apple's Pascal
> Interfaces) or maintain our own GPC Interfaces for Mac OS X
> (9) Setup a GPC compatibility website for Mac OS X
Done for Ada with gnat-osx
>
> I am willing to spend time on this all, except for working in C on the
> compiler itself. Any help is welcome.
>
> Best regards,
>
> Adriaan van Os
>
2
1