Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 15045 invoked from network); 2 Aug 2007 13:43:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Aug 2007 13:43:23 -0000 Received: (qmail 74733 invoked by uid 500); 2 Aug 2007 13:43:15 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 74715 invoked by uid 500); 2 Aug 2007 13:43:15 -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 74694 invoked by uid 99); 2 Aug 2007 13:43:15 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2007 06:43:15 -0700 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; Thu, 02 Aug 2007 13:43:15 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 29D65714159 for ; Thu, 2 Aug 2007 06:42:53 -0700 (PDT) Message-ID: <983970.1186062173167.JavaMail.jira@brutus> Date: Thu, 2 Aug 2007 06:42:53 -0700 (PDT) From: "Mikhail Fursov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Reopened: (HARMONY-4595) [drlvm][jit][jet] Incorrect handling of long type in JET compiler In-Reply-To: <25633760.1186053413045.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-4595?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mikhail Fursov reopened HARMONY-4595: ------------------------------------- > [drlvm][jit][jet] Incorrect handling of long type in JET compiler > ----------------------------------------------------------------- > > Key: HARMONY-4595 > URL: https://issues.apache.org/jira/browse/HARMONY-4595 > Project: Harmony > Issue Type: Bug > Components: DRLVM > Reporter: Mikhail Fursov > Assignee: Mikhail Fursov > Priority: Critical > Attachments: 4595.patch > > > JET fails to run this test (output is not the same with RI or OPT compilers) > public class Test { > XGraphics2D g2d = new XGraphics2D(); > A a = new A(); > public static void main(String args[]) { > new Test().test(); > } > class A { > void in(long l1, long l2, long l3){ > System.out.println("in:"+l1); > } > } > void test() { > long l = get(); > before(l); > a.in(g2d.display, g2d.drawable, g2d.imageGC); > } > long get(){ > return 4; > } > > void before(long l){ > System.out.println("before:"+g2d.display); > } > } > class XGraphics2D { > long drawable = 10000001; > long display = 10000002; > long imageGC = 10000003; > } > This bug is critical, because it affects swing applications (and SwingSet2 demo too) on Linux IA32 platform -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.