From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by sourceware.org (Postfix) with ESMTPS id B92143858D35 for ; Wed, 28 Jun 2023 10:52:01 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org B92143858D35 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=intel.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=intel.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1687949521; x=1719485521; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=22D3dBqKVB+qD8M3OWxTKPcZmOt3xxBNZNBXUAi+wGg=; b=jXUUYFA2R95GhM8ZJpq9ITguKYnIf6VxAD1WT/nd4ET4fyaI2xm5MfzO Qr6PEqZH19utUvxllTHEEos+TvVT7W86HTuZaeMr0nfaAM+NrZoPQ9abv UwsoTJqYgN1vcI6tCR5rymiu+OWWBd7imAZ5xO0DdlhVA7AwMLxxg3RS3 e61m8L/JHj3MfUmZLmhI9H/hCU7vsqLsz3csJ5tNmUZ8FkfWqXGMknlPo TSSR+3xaJGzQ7+aY0s7MNQGuhfXA1TP4ZGxtFt784ZNfAWPDcel7uyhF2 1uUMQA7wDa/8yAAzE7Iu0Jhapi5ZXuE97ewDSooS5N7eUIMp5EJ8uINP8 g==; X-IronPort-AV: E=McAfee;i="6600,9927,10754"; a="342148667" X-IronPort-AV: E=Sophos;i="6.01,165,1684825200"; d="scan'208";a="342148667" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Jun 2023 03:51:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10754"; a="890993386" X-IronPort-AV: E=Sophos;i="6.01,165,1684825200"; d="scan'208";a="890993386" Received: from scymds03.sc.intel.com ([10.148.94.166]) by orsmga005.jf.intel.com with ESMTP; 28 Jun 2023 03:51:58 -0700 Received: from shgcc101.sh.intel.com (shgcc101.sh.intel.com [10.239.85.97]) by scymds03.sc.intel.com (Postfix) with ESMTP id 2079471; Wed, 28 Jun 2023 03:51:56 -0700 (PDT) From: "Cui, Lili" To: gcc-patches@gcc.gnu.org Cc: hongtao.liu@intel.com Subject: [PATCH] x86: Update model values for Alderlake, Rocketlake and Raptorlake. Date: Wed, 28 Jun 2023 10:52:09 +0000 Message-Id: <20230628105209.1879240-1-lili.cui@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.1 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,SPF_HELO_NONE,SPF_NONE,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi Hongtao, This patch is to update model values for Alderlake, Rocketlake and Raptorlake according to SDM. Ok for trunk? Thanks. Lili. Update model values for Alderlake, Rocketlake and Raptorlake according to SDM. gcc/ChangeLog * common/config/i386/cpuinfo.h (get_intel_cpu): Remove model value 0xa8 from Rocketlake, move model value 0xbf from Alderlake to Raptorlake. --- gcc/common/config/i386/cpuinfo.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gcc/common/config/i386/cpuinfo.h b/gcc/common/config/i386/cpuinfo.h index 61559ed9de2..ae48bc17771 100644 --- a/gcc/common/config/i386/cpuinfo.h +++ b/gcc/common/config/i386/cpuinfo.h @@ -463,7 +463,6 @@ get_intel_cpu (struct __processor_model *cpu_model, cpu_model->__cpu_subtype = INTEL_COREI7_SKYLAKE; break; case 0xa7: - case 0xa8: /* Rocket Lake. */ cpu = "rocketlake"; CHECK___builtin_cpu_is ("corei7"); @@ -536,9 +535,9 @@ get_intel_cpu (struct __processor_model *cpu_model, break; case 0x97: case 0x9a: - case 0xbf: /* Alder Lake. */ case 0xb7: + case 0xbf: /* Raptor Lake. */ case 0xaa: case 0xac: -- 2.25.1