From patchwork Sat Apr 14 01:00:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Max Filippov X-Patchwork-Id: 152462 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id F29F0B6FFC for ; Sat, 14 Apr 2012 11:00:48 +1000 (EST) Received: from localhost ([::1]:43885 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SIrM6-0000qc-T9 for incoming@patchwork.ozlabs.org; Fri, 13 Apr 2012 21:00:46 -0400 Received: from eggs.gnu.org ([208.118.235.92]:50609) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SIrLw-0000qL-1C for qemu-devel@nongnu.org; Fri, 13 Apr 2012 21:00:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SIrLu-0007cc-4T for qemu-devel@nongnu.org; Fri, 13 Apr 2012 21:00:35 -0400 Received: from mail-lb0-f173.google.com ([209.85.217.173]:34612) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SIrLt-0007c2-Pz for qemu-devel@nongnu.org; Fri, 13 Apr 2012 21:00:34 -0400 Received: by lbbgn12 with SMTP id gn12so2341887lbb.4 for ; Fri, 13 Apr 2012 18:00:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:mime-version :content-type:content-transfer-encoding; bh=LzHU0VpkM5+lB+8SE7QRT+EDucP1obW6UftZ3Iii1bo=; b=irSyBx1mmEX+cBdQ7VnwcRMPh9RgeNhH3U4YRVe3Q6fIea+30Bark/OO4wWWhn2xWz KcQYjcjzXDeGEoX1BRrFSQj0Pu7VwvJ24hhoFcVNHPbwUVjL4XcqsSKy0xRlg3taF3QP P8VjCL9wVHkKBPkV7MEt+5p85j3CFlZALVryY1gfeReuvzGw3ycFTu3CgW3yB95sa6ak /iLLFooSL8t+NRzRd9wptk95Qjrwp5jGtcOyrAPTxXYCuwgXkOenLXNJwTFqaZa6Zj20 yXLESQ7ucGWTBnwl9zQ9H9gh9VEcwrCuxl49A9/s7/XGWzTle5DwsVrv86LIID06HR7r Oa1Q== Received: by 10.112.84.74 with SMTP id w10mr1529376lby.91.1334365231427; Fri, 13 Apr 2012 18:00:31 -0700 (PDT) Received: from octofox.metropolis ([188.134.19.124]) by mx.google.com with ESMTPS id mk9sm11148911lab.0.2012.04.13.18.00.28 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 13 Apr 2012 18:00:29 -0700 (PDT) From: Max Filippov To: qemu-devel@nongnu.org Date: Sat, 14 Apr 2012 05:00:08 +0400 Message-Id: <1334365213-15986-1-git-send-email-jcmvbkbc@gmail.com> X-Mailer: git-send-email 1.7.7.6 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.217.173 Cc: Blue Swirl , Max Filippov , Anthony Liguori Subject: [Qemu-devel] [PULL 0/5] target-xtensa queue X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The following changes since commit 7672725d41d1a04195affc1a7bd5676ba6314b14: Merge remote-tracking branch 'stefanha/trivial-patches' into staging (2012-04-13 08:04:43 -0500) are available in the git repository at: git://jcmvbkbc.spb.ru/dumb/qemu-xtensa.git xtensa Andreas Färber (3): target-xtensa: QOM'ify CPU target-xtensa: QOM'ify CPU reset target-xtensa: Start QOM'ifying CPU init Lluís Vilanova (1): target-xtensa: Move helpers.h to helper.h Max Filippov (1): target-xtensa: improve unit tests debugging Makefile.target | 1 + target-xtensa/cpu-qom.h | 80 ++++++++++++++++++++++++++++++ target-xtensa/cpu.c | 88 +++++++++++++++++++++++++++++++++ target-xtensa/cpu.h | 2 + target-xtensa/helper.c | 20 ++------ target-xtensa/{helpers.h => helper.h} | 0 target-xtensa/op_helper.c | 2 +- target-xtensa/translate.c | 6 +- tests/tcg/xtensa/Makefile | 3 + tests/tcg/xtensa/macros.inc | 17 ++++++ xtensa-semi.c | 2 +- 11 files changed, 201 insertions(+), 20 deletions(-) create mode 100644 target-xtensa/cpu-qom.h create mode 100644 target-xtensa/cpu.c rename target-xtensa/{helpers.h => helper.h} (100%)