Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 49437 invoked from network); 17 Dec 2007 10:24:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Dec 2007 10:24:04 -0000 Received: (qmail 87364 invoked by uid 500); 17 Dec 2007 10:23:53 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 87340 invoked by uid 500); 17 Dec 2007 10:23:52 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 87331 invoked by uid 99); 17 Dec 2007 10:23:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Dec 2007 02:23:52 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Dec 2007 10:23:39 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 0304C714246 for ; Mon, 17 Dec 2007 02:23:43 -0800 (PST) Message-ID: <25572054.1197887023002.JavaMail.jira@brutus> Date: Mon, 17 Dec 2007 02:23:43 -0800 (PST) From: "George Timoshenko (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (HARMONY-5305) [drlvm][jit][EUT] regression in jdtdebug in Linux x86_64 In-Reply-To: <30787473.1197556304976.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-5305?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12552364 ] George Timoshenko commented on HARMONY-5305: -------------------------------------------- the only note I'd like to make: instead of int __stdcall rt_h_i64_2_i32(int64 i) { return (int32)(i & 0xffffffff); }; That turns into: push %rbp mov %rsp,%rbp mov %rdi,0xfffffffffffffff8(%rbp) mov 0xfffffffffffffff8(%rbp),%rax mov %eax,%edx mov $0xffffffff,%eax and %edx,%eax leaveq retq I'd suggest int __stdcall rt_h_i64_2_i32(int64 i) { return 0xffffffff & (int32)i; }; The result is exactly what we need: push %rbp mov %rsp,%rbp mov %rdi,0xfffffffffffffff8(%rbp) mov 0xfffffffffffffff8(%rbp),%rax leaveq retq > [drlvm][jit][EUT] regression in jdtdebug in Linux x86_64 > -------------------------------------------------------- > > Key: HARMONY-5305 > URL: https://issues.apache.org/jira/browse/HARMONY-5305 > Project: Harmony > Issue Type: Bug > Components: DRLVM > Environment: Linux x86_64 > Reporter: Vladimir Beliaev > Attachments: Breakpoints.java, IBreakpoints.java > > > The jdtdebug suite start hanging on Linux x86_64. > The issue migt be the same to HARMONY-5303, still CC start repoting this crash earlier - the latest non-crashed revision is 595048 (15-Nov-2007) > http://people.apache.org/~smishura/r595048/Linux_x86_64/eut33/results/html/org.eclipse.jdt.debug.tests_linux.gtk.x86_64.html > See the run instruction in HARMONY-5303, still use jdtdebug instead of coreresources. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.