From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21039 invoked by alias); 13 Feb 2012 18:35:39 -0000 Received: (qmail 20959 invoked by uid 22791); 13 Feb 2012 18:35:38 -0000 X-SWARE-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 13 Feb 2012 18:35:25 +0000 From: "jojelino at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libffi/52221] [libffi] r184021 needs to be fixed. Date: Mon, 13 Feb 2012 18:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libffi X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jojelino at gmail dot com X-Bugzilla-Status: WAITING X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2012-02/txt/msg01351.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52221 --- Comment #5 from gee 2012-02-13 18:35:18 UTC --- Created attachment 26653 --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=26653 proposed patch sorry for pr51500 attachment 26584, it was very bad idea. thiscall trampoline uses call insn so it needed to create related stub function. i was releutant to create stub function in win32.S and it resulted in disaster. in this patch these problem is considered. and thiscall trampoline subs esp and then call fun, this is bad idea. it works only when #of argument is 1.(passed only this) already i encountered the problem that are described above. `/tmp/gcc/i686-pc-mingw32/libjava/.libs/libgcj-13.dll' has changed; re-reading symbols. Starting program: /tmp/gcc/i686-pc-mingw32/libjava/testsuite/ExtraClassLoader [New Thread 5276.0x19bc] Breakpoint 5, java::lang::Class::newInstance (this=0xe20e40) at ../.././libjava/java/lang/natClass.cc:667 667 ((void (__thiscall *) (jobject)) meth->ncode) (r); (gdb) Continuing. Program received signal SIGSEGV, Segmentation fault. _Jv_GetStringUTFLength (string=0x69e61688) at ../.././libjava/java/lang/natString.cc:324 324 jchar ch = *ptr++; in this case string parameter is wrong.