From mboxrd@z Thu Jan 1 00:00:00 1970 From: Glauber Costa Subject: [PATCH 0/10] Factorize code in translate.c Date: Fri, 25 Apr 2008 00:23:00 -0300 Message-ID: <12090937903925-git-send-email-gcosta@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Cc: kvm-devel@lists.sourceforge.net, avi@qumranet.com To: qemu-devel@nongnu.org Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: kvm-devel-bounces@lists.sourceforge.net Errors-To: kvm-devel-bounces@lists.sourceforge.net List-Id: kvm.vger.kernel.org Hi, This series is an (initial) attempt to make qemu code a little bit more modular. In this patch series specifically, I'm removing some #ifdef TARGET_* from the general-purpose translate.c, and rather, replacing them with a common function implemented in architecture specific files. Any rants and complaints, let me know Hope you like it ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JpEc6-0006Gx-TZ for qemu-devel@nongnu.org; Thu, 24 Apr 2008 23:28:43 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JpEc5-0006Ep-KJ for qemu-devel@nongnu.org; Thu, 24 Apr 2008 23:28:42 -0400 Received: from [199.232.76.173] (port=42079 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JpEc5-0006EG-8F for qemu-devel@nongnu.org; Thu, 24 Apr 2008 23:28:41 -0400 Received: from mx1.redhat.com ([66.187.233.31]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JpEc4-0000ns-M5 for qemu-devel@nongnu.org; Thu, 24 Apr 2008 23:28:41 -0400 From: Glauber Costa Date: Fri, 25 Apr 2008 00:23:00 -0300 Message-Id: <12090937903925-git-send-email-gcosta@redhat.com> Subject: [Qemu-devel] [PATCH 0/10] Factorize code in translate.c Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kvm-devel@lists.sourceforge.net Hi, This series is an (initial) attempt to make qemu code a little bit more modular. In this patch series specifically, I'm removing some #ifdef TARGET_* from the general-purpose translate.c, and rather, replacing them with a common function implemented in architecture specific files. Any rants and complaints, let me know Hope you like it