public inbox for java-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug libgcj/26097]  New: [4.2 regression]: Libjava failed to build
@ 2006-02-04 17:49 hjl at lucon dot org
  2006-02-04 19:35 ` [Bug libgcj/26097] " pinskia at gcc dot gnu dot org
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: hjl at lucon dot org @ 2006-02-04 17:49 UTC (permalink / raw)
  To: java-prs

With revision 110590, I got

gnu/CORBA/NamingService/NamingServiceTransient.java: In method
'gnu.CORBA.NamingService.NamingServiceTransient.main(java.lang.String[])':
gnu/CORBA/NamingService/NamingServiceTransient.java:100: error: stack underflow
gnu/CORBA/NamingService/NamingServiceTransient.java:101: error: stack underflow
gnu/CORBA/NamingService/NamingServiceTransient.java:105: error: stack underflow
- dup* operation
gnu/CORBA/NamingService/NamingServiceTransient.java:105: error: expected type
'gnu.CORBA.OrbFunctional' but stack contains 'null'
gnu/CORBA/NamingService/NamingServiceTransient.java:105: error: stack underflow
gnu/CORBA/NamingService/NamingServiceTransient.java:107: error: stack underflow
....


-- 
           Summary: [4.2 regression]: Libjava failed to build
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libgcj
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: hjl at lucon dot org
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26097


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

* [Bug libgcj/26097] [4.2 regression]: Libjava failed to build
  2006-02-04 17:49 [Bug libgcj/26097] New: [4.2 regression]: Libjava failed to build hjl at lucon dot org
@ 2006-02-04 19:35 ` pinskia at gcc dot gnu dot org
  2006-02-04 19:36 ` [Bug java/26097] " pinskia at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-02-04 19:35 UTC (permalink / raw)
  To: java-prs



------- Comment #1 from pinskia at gcc dot gnu dot org  2006-02-04 19:35 -------
One of the following patches caused:

+2006-02-03  Jason Merrill  <jason@redhat.com>
+
+       PR c++/25979
+       * gimplify.c (gimplify_modify_expr_rhs): Disable *& optimization for
now.
+
+       PR middle-end/25977
+       * gimplify.c (gimplify_modify_expr_rhs): It's not always safe to do RVO
+       on the return slot if it's an NRV.
+
+2006-02-03  Zdenek Dvorak <dvorakz@suse.cz>
+
+       * tree-ssa-loop-ivopts.c (enum use_type): Remove USE_OUTER.
+       (dump_use, add_derived_ivs_candidates, determine_use_iv_cost,
+       rewrite_use): Do not handle USE_OUTER.
+       (find_interesting_uses_outer_or_nonlin, find_interesting_uses_outer,
+       add_iv_outer_candidates, may_replace_final_value,
+       determine_use_iv_cost_outer, rewrite_use_outer): Removed.
+       (find_interesting_uses_op): Functionality of
+       find_interesting_uses_outer_or_nonlin moved here.
+       (find_interesting_uses_outside): Use find_interesting_uses_op.


--- trunk.prev/gcc/java/ChangeLog       2006-02-03 03:01:49.000000000 -0500
+++ trunk/gcc/java/ChangeLog    2006-02-04 00:03:32.000000000 -0500
@@ -1,3 +1,24 @@
+2006-02-04  Andreas Tobler  <a.tobler@schweiz.ch>
+
+       * expr.c (java_stack_swap): Revert gcc_assert patch.
+
+2006-02-03  Ben Elliston  <bje@au.ibm.com>
+
+       * java-gimplify.c: Use gcc_assert and gcc_unreachable throughout.
+       * typeck.c: Likewise.
+       * verify-impl.c: Likewise.
+       * class.c: Likewise.
+       * decl.c: Likewise.
+       * jcf-parse.c: Likewise.
+       * constants.c: Likewise.
+       * check-init.c: Likewise.
+       * jcf-write.c: Likewise.
+       * verify-glue.c: Likewise.
+       * mangle.c: Likewise.
+       * expr.c: Likewise.
+       * lang.c: Likewise.
+       * boehm.c: Likewise.


--- trunk.prev/libjava/ChangeLog        2006-02-03 03:18:35.000000000 -0500
+++ trunk/libjava/ChangeLog     2006-02-04 00:51:03.000000000 -0500
@@ -1,3 +1,22 @@
+2006-02-03  Thomas Fitzsimmons  <fitzsim@redhat.com>
+
+       * Makefile.am (src.zip): Update src.zip file search to look in
+       classpath directory.
+       * Makefile.in: Regenerate.
+
+2006-02-03  Robert Schuster  <robertschuster@fsfe.org>
+
+       * link.cc:
+       (_Jv_Linker::create_error_method): Added missing (void *) cast.
+
+2006-02-03  Robert Schuster  <robertschuster@fsfe.org>
+
+       * include/jvm.h:
+       (_Jv_Linker::create_error_method): New method declaration.
+       * link.cc:
+       (_Jv_Linker::create_error_method): New method.
+       (_Jv_Linker::link_symbol_table): Use new method above.
+


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.2.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26097


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

* [Bug java/26097] [4.2 regression]: Libjava failed to build
  2006-02-04 17:49 [Bug libgcj/26097] New: [4.2 regression]: Libjava failed to build hjl at lucon dot org
  2006-02-04 19:35 ` [Bug libgcj/26097] " pinskia at gcc dot gnu dot org
@ 2006-02-04 19:36 ` pinskia at gcc dot gnu dot org
  2006-02-04 19:47 ` pinskia at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-02-04 19:36 UTC (permalink / raw)
  To: java-prs



------- Comment #2 from pinskia at gcc dot gnu dot org  2006-02-04 19:36 -------
I am going to put this into the java component as this is reproducible on i686,
x86_64 and powerpc64.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |critical
          Component|libgcj                      |java
  GCC build triplet|i686-pc-linux-gnu           |
   GCC host triplet|i686-pc-linux-gnu           |
 GCC target triplet|i686-pc-linux-gnu           |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26097


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

* [Bug java/26097] [4.2 regression]: Libjava failed to build
  2006-02-04 17:49 [Bug libgcj/26097] New: [4.2 regression]: Libjava failed to build hjl at lucon dot org
  2006-02-04 19:35 ` [Bug libgcj/26097] " pinskia at gcc dot gnu dot org
  2006-02-04 19:36 ` [Bug java/26097] " pinskia at gcc dot gnu dot org
@ 2006-02-04 19:47 ` pinskia at gcc dot gnu dot org
  2006-02-04 20:01 ` rguenth at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-02-04 19:47 UTC (permalink / raw)
  To: java-prs



------- Comment #3 from pinskia at gcc dot gnu dot org  2006-02-04 19:47 -------
Quick question, what options did you use to bootstrap (Please say
--disable-checking)?


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |build, ice-on-valid-code,
                   |                            |rejects-valid


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26097


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

* [Bug java/26097] [4.2 regression]: Libjava failed to build
  2006-02-04 17:49 [Bug libgcj/26097] New: [4.2 regression]: Libjava failed to build hjl at lucon dot org
                   ` (2 preceding siblings ...)
  2006-02-04 19:47 ` pinskia at gcc dot gnu dot org
@ 2006-02-04 20:01 ` rguenth at gcc dot gnu dot org
  2006-02-04 20:05 ` hjl at lucon dot org
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-02-04 20:01 UTC (permalink / raw)
  To: java-prs



------- Comment #4 from rguenth at gcc dot gnu dot org  2006-02-04 20:01 -------
Reproduces with --disable-checking but not without on x86_64.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26097


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

* [Bug java/26097] [4.2 regression]: Libjava failed to build
  2006-02-04 17:49 [Bug libgcj/26097] New: [4.2 regression]: Libjava failed to build hjl at lucon dot org
                   ` (3 preceding siblings ...)
  2006-02-04 20:01 ` rguenth at gcc dot gnu dot org
@ 2006-02-04 20:05 ` hjl at lucon dot org
  2006-02-04 20:21 ` pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: hjl at lucon dot org @ 2006-02-04 20:05 UTC (permalink / raw)
  To: java-prs



------- Comment #5 from hjl at lucon dot org  2006-02-04 20:05 -------
Yes, I used --disable-checking. I saw it on i686, x86-64 and ia64.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26097


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

* [Bug java/26097] [4.2 regression]: Libjava failed to build
  2006-02-04 17:49 [Bug libgcj/26097] New: [4.2 regression]: Libjava failed to build hjl at lucon dot org
                   ` (4 preceding siblings ...)
  2006-02-04 20:05 ` hjl at lucon dot org
@ 2006-02-04 20:21 ` pinskia at gcc dot gnu dot org
  2006-02-04 21:49 ` tromey at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-02-04 20:21 UTC (permalink / raw)
  To: java-prs



------- Comment #6 from pinskia at gcc dot gnu dot org  2006-02-04 20:21 -------
CCing Ben as I think his abort -> gcc_assert patch caused this.
I suspect one of the conversion caused a side effect to be removed when doing
--disable-checking (which disables also the asserts).


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bje at gcc dot gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26097


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

* [Bug java/26097] [4.2 regression]: Libjava failed to build
  2006-02-04 17:49 [Bug libgcj/26097] New: [4.2 regression]: Libjava failed to build hjl at lucon dot org
                   ` (5 preceding siblings ...)
  2006-02-04 20:21 ` pinskia at gcc dot gnu dot org
@ 2006-02-04 21:49 ` tromey at gcc dot gnu dot org
  2006-02-04 21:53 ` tromey at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: tromey at gcc dot gnu dot org @ 2006-02-04 21:49 UTC (permalink / raw)
  To: java-prs



------- Comment #7 from tromey at gcc dot gnu dot org  2006-02-04 21:49 -------
At least the change in push_type is wrong.
Perhaps others too, I'm looking.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26097


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

* [Bug java/26097] [4.2 regression]: Libjava failed to build
  2006-02-04 17:49 [Bug libgcj/26097] New: [4.2 regression]: Libjava failed to build hjl at lucon dot org
                   ` (6 preceding siblings ...)
  2006-02-04 21:49 ` tromey at gcc dot gnu dot org
@ 2006-02-04 21:53 ` tromey at gcc dot gnu dot org
  2006-02-04 22:05 ` tromey at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: tromey at gcc dot gnu dot org @ 2006-02-04 21:53 UTC (permalink / raw)
  To: java-prs



------- Comment #8 from tromey at gcc dot gnu dot org  2006-02-04 21:53 -------
Created an attachment (id=10778)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10778&action=view)
proposed patch

Please try this patch.
Thanks.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26097


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

* [Bug java/26097] [4.2 regression]: Libjava failed to build
  2006-02-04 17:49 [Bug libgcj/26097] New: [4.2 regression]: Libjava failed to build hjl at lucon dot org
                   ` (7 preceding siblings ...)
  2006-02-04 21:53 ` tromey at gcc dot gnu dot org
@ 2006-02-04 22:05 ` tromey at gcc dot gnu dot org
  2006-02-04 22:26 ` andreast at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: tromey at gcc dot gnu dot org @ 2006-02-04 22:05 UTC (permalink / raw)
  To: java-prs



-- 

tromey at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tromey at gcc dot gnu dot
                   |                            |org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-02-04 22:05:18
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26097


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

* [Bug java/26097] [4.2 regression]: Libjava failed to build
  2006-02-04 17:49 [Bug libgcj/26097] New: [4.2 regression]: Libjava failed to build hjl at lucon dot org
                   ` (8 preceding siblings ...)
  2006-02-04 22:05 ` tromey at gcc dot gnu dot org
@ 2006-02-04 22:26 ` andreast at gcc dot gnu dot org
  2006-02-04 23:30 ` tromey at gcc dot gnu dot org
  2006-02-04 23:30 ` tromey at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: andreast at gcc dot gnu dot org @ 2006-02-04 22:26 UTC (permalink / raw)
  To: java-prs



------- Comment #9 from andreast at gcc dot gnu dot org  2006-02-04 22:26 -------
build completes with the patch from Tom. (#8)


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26097


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

* [Bug java/26097] [4.2 regression]: Libjava failed to build
  2006-02-04 17:49 [Bug libgcj/26097] New: [4.2 regression]: Libjava failed to build hjl at lucon dot org
                   ` (10 preceding siblings ...)
  2006-02-04 23:30 ` tromey at gcc dot gnu dot org
@ 2006-02-04 23:30 ` tromey at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: tromey at gcc dot gnu dot org @ 2006-02-04 23:30 UTC (permalink / raw)
  To: java-prs



------- Comment #10 from tromey at gcc dot gnu dot org  2006-02-04 23:30 -------
Subject: Bug 26097

Author: tromey
Date: Sat Feb  4 23:30:01 2006
New Revision: 110598

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=110598
Log:
        PR java/26097:
        * expr.c (push_type): Avoid side effect in gcc_assert.

Modified:
    trunk/gcc/java/ChangeLog
    trunk/gcc/java/expr.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26097


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

* [Bug java/26097] [4.2 regression]: Libjava failed to build
  2006-02-04 17:49 [Bug libgcj/26097] New: [4.2 regression]: Libjava failed to build hjl at lucon dot org
                   ` (9 preceding siblings ...)
  2006-02-04 22:26 ` andreast at gcc dot gnu dot org
@ 2006-02-04 23:30 ` tromey at gcc dot gnu dot org
  2006-02-04 23:30 ` tromey at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: tromey at gcc dot gnu dot org @ 2006-02-04 23:30 UTC (permalink / raw)
  To: java-prs



------- Comment #11 from tromey at gcc dot gnu dot org  2006-02-04 23:30 -------
Fix checked in.


-- 

tromey at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26097


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

end of thread, other threads:[~2006-02-04 23:30 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-02-04 17:49 [Bug libgcj/26097] New: [4.2 regression]: Libjava failed to build hjl at lucon dot org
2006-02-04 19:35 ` [Bug libgcj/26097] " pinskia at gcc dot gnu dot org
2006-02-04 19:36 ` [Bug java/26097] " pinskia at gcc dot gnu dot org
2006-02-04 19:47 ` pinskia at gcc dot gnu dot org
2006-02-04 20:01 ` rguenth at gcc dot gnu dot org
2006-02-04 20:05 ` hjl at lucon dot org
2006-02-04 20:21 ` pinskia at gcc dot gnu dot org
2006-02-04 21:49 ` tromey at gcc dot gnu dot org
2006-02-04 21:53 ` tromey at gcc dot gnu dot org
2006-02-04 22:05 ` tromey at gcc dot gnu dot org
2006-02-04 22:26 ` andreast at gcc dot gnu dot org
2006-02-04 23:30 ` tromey at gcc dot gnu dot org
2006-02-04 23:30 ` tromey at gcc dot gnu dot org

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).