public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* [ssa-branch]libmudflap/mf-runtime.c and OS other than Linux
@ 2002-12-27  9:32 Andrew Pinski
  2002-12-27 13:36 ` Daniel Berlin
  2002-12-27 16:09 ` Frank Ch. Eigler
  0 siblings, 2 replies; 6+ messages in thread
From: Andrew Pinski @ 2002-12-27  9:32 UTC (permalink / raw)
  To: gcc; +Cc: Andrew Pinski

I have a problem compiling the ssa-branch on powerpc-apple-darwin6.3:
execinfo.h is a header file which does not exist.

Also if I compile with --disable-checking it stops compiling sooner,
stage1 compiling objc/objc-act.c: trace back of the compiler:
**********

Date/Time:  2002-12-26 22:34:09 -0500
OS Version: 10.2.3 (Build 6G30)
Host:       halo.i.pinski.fam

Command:    cc1
PID:        14727

Exception:  EXC_BAD_ACCESS (0x0001)
Codes:      KERN_PROTECTION_FAILURE (0x0002) at 0x00000008

Thread 0 Crashed:
  #0   0x0045b510 in remove_all_occurrences (et-forest.c:342)
  #1   0x0045bacc in et_forest_remove_node (et-forest.c:536)
  #2   0x003ca810 in delete_from_dominance_info (dominance.c:820)
  #3   0x003856a4 in find_if_case_1 (ifcvt.c:2698)
  #4   0x003846b0 in find_if_header (ifcvt.c:2135)
  #5   0x00386688 in if_convert (ifcvt.c:3109)
  #6   0x000b79b4 in rest_of_compilation (toplev.c:3459)
  #7   0x0001af00 in c_expand_body (c-decl.c:6587)
  #8   0x0001aac4 in finish_function (c-decl.c:6413)
  #9   0x00003ca0 in yyparse (c-parse.c:406)
  #10  0x0000ba48 in c_common_parse_file (c-lex.c:162)
  #11  0x000b5604 in compile_file (toplev.c:2160)
  #12  0x000bc954 in do_compile (toplev.c:5401)
  #13  0x000bc9d8 in toplev_main (toplev.c:5431)
  #14  0x0007a0a4 in main (main.c:37)
  #15  0x00002458 in _start (crt.c:267)
  #16  0x000022d8 in start

PPC Thread State:
   srr0: 0x0045b510 srr1: 0x0200f930                vrsave: 0x00000000
    xer: 0x00000000   lr: 0x0045bacc  ctr: 0x90073ac0   mq: 0x00000000
     r0: 0x0045bacc   r1: 0xbfffe8f0   r2: 0x00000000   r3: 0x00000000
     r4: 0x00000000   r5: 0x00000000   r6: 0x00000010   r7: 0x00000000
     r8: 0x00ce6010   r9: 0x00000000  r10: 0x01922950  r11: 0x0142cc60
    r12: 0x90073ac0  r13: 0x00000000  r14: 0x00000000  r15: 0x00000000
    r16: 0x00000000  r17: 0x00000000  r18: 0x00000000  r19: 0x00000000
    r20: 0x00000000  r21: 0x00000000  r22: 0x00000000  r23: 0x00000000
    r24: 0x00000000  r25: 0x00000000  r26: 0xbffff4a4  r27: 0x000000bc
    r28: 0x0000002e  r29: 0x0054918c  r30: 0xbfffe8f0  r31: 0x00385498

Thanks,
Andrew Pinski

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ssa-branch]libmudflap/mf-runtime.c and OS other than Linux
  2002-12-27  9:32 [ssa-branch]libmudflap/mf-runtime.c and OS other than Linux Andrew Pinski
@ 2002-12-27 13:36 ` Daniel Berlin
  2002-12-30  7:42   ` Aldy Hernandez
  2002-12-27 16:09 ` Frank Ch. Eigler
  1 sibling, 1 reply; 6+ messages in thread
From: Daniel Berlin @ 2002-12-27 13:36 UTC (permalink / raw)
  To: Andrew Pinski; +Cc: gcc



On Fri, 27 Dec 2002, Andrew Pinski wrote:

> I have a problem compiling the ssa-branch on powerpc-apple-darwin6.3:
> execinfo.h is a header file which does not exist.

Errr, I bootstrap it all the time without any trouble on
powerpc-apple-darwin6.3

In fact, that's what i develop on most of the time.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ssa-branch]libmudflap/mf-runtime.c and OS other than Linux
  2002-12-27 16:09 ` Frank Ch. Eigler
@ 2002-12-27 16:09   ` Andrew Pinski
  0 siblings, 0 replies; 6+ messages in thread
From: Andrew Pinski @ 2002-12-27 16:09 UTC (permalink / raw)
  To: Frank Ch. Eigler; +Cc: Andrew Pinski, gcc

>
>
>> Also if I compile with --disable-checking it stops compiling sooner,
>> stage1 compiling objc/objc-act.c: trace back of the compiler:
>> [...]
>> Thread 0 Crashed:
>>   #0   0x0045b510 in remove_all_occurrences (et-forest.c:342)
>>   #1   0x0045bacc in et_forest_remove_node (et-forest.c:536)
>>   #2   0x003ca810 in delete_from_dominance_info (dominance.c:820)
>>   #3   0x003856a4 in find_if_case_1 (ifcvt.c:2698)
>> [...]
>
> I assume this build was not done with BOOT_CFLAGS=-fmudflap, therefore
> this would be an ordinary ssa-branch failure, and not possibly related
> to mudflap.
>
>

Yes this is not related to mudflap, I just wanted to see if someone saw 
this before, that is all?

> - FChE
>
>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ssa-branch]libmudflap/mf-runtime.c and OS other than Linux
  2002-12-27  9:32 [ssa-branch]libmudflap/mf-runtime.c and OS other than Linux Andrew Pinski
  2002-12-27 13:36 ` Daniel Berlin
@ 2002-12-27 16:09 ` Frank Ch. Eigler
  2002-12-27 16:09   ` Andrew Pinski
  1 sibling, 1 reply; 6+ messages in thread
From: Frank Ch. Eigler @ 2002-12-27 16:09 UTC (permalink / raw)
  To: Andrew Pinski; +Cc: gcc


Andrew Pinski <pinskia@physics.uc.edu> writes:

> I have a problem compiling the ssa-branch on powerpc-apple-darwin6.3:
> execinfo.h is a header file which does not exist.

I will add some configury extensions to libmudflap to allow it to
build for more hosts/targets.  If you are not interested in mudflap
instrumentation, you could simply remove libmudflap from your source
tree.  ("cvs release -d gcc/libmudflap".)


> Also if I compile with --disable-checking it stops compiling sooner,
> stage1 compiling objc/objc-act.c: trace back of the compiler:
> [...]
> Thread 0 Crashed:
>   #0   0x0045b510 in remove_all_occurrences (et-forest.c:342)
>   #1   0x0045bacc in et_forest_remove_node (et-forest.c:536)
>   #2   0x003ca810 in delete_from_dominance_info (dominance.c:820)
>   #3   0x003856a4 in find_if_case_1 (ifcvt.c:2698)
> [...]

I assume this build was not done with BOOT_CFLAGS=-fmudflap, therefore
this would be an ordinary ssa-branch failure, and not possibly related
to mudflap.


- FChE

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ssa-branch]libmudflap/mf-runtime.c and OS other than Linux
  2002-12-27 13:36 ` Daniel Berlin
@ 2002-12-30  7:42   ` Aldy Hernandez
  2002-12-30 10:28     ` Daniel Berlin
  0 siblings, 1 reply; 6+ messages in thread
From: Aldy Hernandez @ 2002-12-30  7:42 UTC (permalink / raw)
  To: Daniel Berlin; +Cc: Andrew Pinski, gcc

>>>>> "Daniel" == Daniel Berlin <dberlin@dberlin.org> writes:

 > On Fri, 27 Dec 2002, Andrew Pinski wrote:

 >> I have a problem compiling the ssa-branch on powerpc-apple-darwin6.3:
 >> execinfo.h is a header file which does not exist.

 > Errr, I bootstrap it all the time without any trouble on
 > powerpc-apple-darwin6.3

 > In fact, that's what i develop on most of the time.

Whaaaaat?  I get the same exact error Andrew gets, and I have gotten
it for ages.  Mudflap don't build on Darwin.  I'd like to know how you
get it to work.

At least on my tree, mudflap gets built by default on tree-ssa.

Aldy

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ssa-branch]libmudflap/mf-runtime.c and OS other than Linux
  2002-12-30  7:42   ` Aldy Hernandez
@ 2002-12-30 10:28     ` Daniel Berlin
  0 siblings, 0 replies; 6+ messages in thread
From: Daniel Berlin @ 2002-12-30 10:28 UTC (permalink / raw)
  To: Aldy Hernandez; +Cc: Andrew Pinski, gcc


On Monday, December 30, 2002, at 08:25  AM, Aldy Hernandez wrote:

>>>>>> "Daniel" == Daniel Berlin <dberlin@dberlin.org> writes:
>
>> On Fri, 27 Dec 2002, Andrew Pinski wrote:
>
>>> I have a problem compiling the ssa-branch on powerpc-apple-darwin6.3:
>>> execinfo.h is a header file which does not exist.
>
>> Errr, I bootstrap it all the time without any trouble on
>> powerpc-apple-darwin6.3
>
>> In fact, that's what i develop on most of the time.
>
> Whaaaaat?  I get the same exact error Andrew gets, and I have gotten
> it for ages.  Mudflap don't build on Darwin.  I'd like to know how you
> get it to work.
>
I've had it disabled for ages.
> At least on my tree, mudflap gets built by default on tree-ssa.
>
Yeah, I forgot i had disabled it on darwin in my tree.
Sorry about that.

> Aldy

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2002-12-30 17:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-12-27  9:32 [ssa-branch]libmudflap/mf-runtime.c and OS other than Linux Andrew Pinski
2002-12-27 13:36 ` Daniel Berlin
2002-12-30  7:42   ` Aldy Hernandez
2002-12-30 10:28     ` Daniel Berlin
2002-12-27 16:09 ` Frank Ch. Eigler
2002-12-27 16:09   ` Andrew Pinski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).