From owner-freebsd-java@FreeBSD.ORG Thu Feb 9 01:35:41 2006 Return-Path: X-Original-To: java@freebsd.org Delivered-To: freebsd-java@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49E7216A420; Thu, 9 Feb 2006 01:35:41 +0000 (GMT) (envelope-from sean@mcneil.com) Received: from mail.mcneil.com (mcneil.com [24.199.45.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id F14BD43D45; Thu, 9 Feb 2006 01:35:40 +0000 (GMT) (envelope-from sean@mcneil.com) Received: from localhost (localhost.mcneil.com [127.0.0.1]) by mail.mcneil.com (Postfix) with ESMTP id AFAE6F209A; Wed, 8 Feb 2006 17:35:40 -0800 (PST) Received: from mail.mcneil.com ([127.0.0.1]) by localhost (triton.mcneil.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 84910-03; Wed, 8 Feb 2006 17:35:39 -0800 (PST) Received: from mcneil.com (mcneil.com [24.199.45.54]) by mail.mcneil.com (Postfix) with ESMTP id C4E7FF1B5E; Wed, 8 Feb 2006 17:35:39 -0800 (PST) From: Sean McNeil To: java@freebsd.org, eclipse@freebsd.org Content-Type: multipart/mixed; boundary="=-B1icf46kNvVNqXOLmP09" Date: Wed, 08 Feb 2006 17:35:39 -0800 Message-Id: <1139448939.84197.4.camel@triton.mcneil.com> Mime-Version: 1.0 X-Mailer: Evolution 2.4.2.1 FreeBSD GNOME Team Port X-Virus-Scanned: by amavisd-new at mcneil.com Cc: Subject: stability problems under eclipse on amd64 platform X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Feb 2006 01:35:41 -0000 --=-B1icf46kNvVNqXOLmP09 Content-Type: text/plain Content-Transfer-Encoding: 7bit I would like the following patch file to be tested and committed to the java/jdk15 port until patch 6 is released on FreeBSD. This patch has eliminated crashes for me and has made a significant difference in the stability of eclipse. Cheers, Sean --=-B1icf46kNvVNqXOLmP09 Content-Disposition: attachment; filename="patch-hotspot::src::cpu::amd64::vm::amd64.ad" Content-Type: text/plain; name="patch-hotspot::src::cpu::amd64::vm::amd64.ad"; charset=us-ascii Content-Transfer-Encoding: 7bit --- ../../hotspot/src/cpu/amd64/vm/amd64.ad.orig Wed Feb 8 15:18:24 2006 +++ ../../hotspot/src/cpu/amd64/vm/amd64.ad Wed Feb 8 15:17:35 2006 @@ -7246,7 +7246,7 @@ format %{ "negl $dst\t# int" %} opcode(0xF7, 0x03); // Opcode F7 /3 - ins_encode(REX_reg(dst), OpcP, RM_opc_mem(secondary, dst)); + ins_encode(REX_mem(dst), OpcP, RM_opc_mem(secondary, dst)); ins_pipe(ialu_reg); %} --=-B1icf46kNvVNqXOLmP09--