From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44917) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bN221-0001RP-7u for qemu-devel@nongnu.org; Tue, 12 Jul 2016 14:03:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bN21x-00009Z-Mk for qemu-devel@nongnu.org; Tue, 12 Jul 2016 14:03:41 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:9982 helo=mx0a-001b2d01.pphosted.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bN21x-00009S-Hr for qemu-devel@nongnu.org; Tue, 12 Jul 2016 14:03:37 -0400 Received: from pps.filterd (m0098413.ppops.net [127.0.0.1]) by mx0b-001b2d01.pphosted.com (8.16.0.11/8.16.0.11) with SMTP id u6CHrQq4123276 for ; Tue, 12 Jul 2016 14:03:35 -0400 Received: from e23smtp02.au.ibm.com (e23smtp02.au.ibm.com [202.81.31.144]) by mx0b-001b2d01.pphosted.com with ESMTP id 243enscfs7-1 (version=TLSv1.2 cipher=AES256-SHA bits=256 verify=NOT) for ; Tue, 12 Jul 2016 14:03:34 -0400 Received: from localhost by e23smtp02.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 13 Jul 2016 04:03:30 +1000 From: Nikunj A Dadhania Date: Tue, 12 Jul 2016 23:33:16 +0530 Message-Id: <1468346602-20700-1-git-send-email-nikunj@linux.vnet.ibm.com> Subject: [Qemu-devel] [RFC 0/6] POWER9 TCG enablements - part1 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-ppc@nongnu.org, david@gibson.dropbear.id.au Cc: qemu-devel@nongnu.org, aneesh.kumar@linux.vnet.ibm.com, benh@kernel.crashing.org, nikunj@linux.vnet.ibm.com This set starts adding new instructions for POWER9 described in ISA3.0. First two patches adds the required POWER9 cpu model and ISA defines. Next four patches adds following instructions: addpcis : Add PC Immediate Shifted cmprb : Compare Ranged Byte moduw : Modulo Unsigned Word modsw : Modulo Signed Word modud : Modulo Unsigned Dword modsd : Modulo Signed Dword Aneesh Kumar K.V (1): target-ppc: Introduce Power9 family Nikunj A Dadhania (5): target-ppc: Introduce POWER ISA 3.0 flag target-ppc: adding addpcis instruction target-ppc: add cmprb instruction target-ppc: add modulo word operations target-ppc: add modulo dword operations target-ppc/cpu-models.c | 5 ++ target-ppc/cpu-models.h | 2 + target-ppc/cpu-qom.h | 7 ++ target-ppc/cpu.h | 5 +- target-ppc/mmu_helper.c | 3 +- target-ppc/translate.c | 162 ++++++++++++++++++++++++++++++++++++++++++++ target-ppc/translate_init.c | 85 ++++++++++++++++++++++- 7 files changed, 266 insertions(+), 3 deletions(-) -- 2.7.4