VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-ExtCtxSetYmm.c@ 95397

Last change on this file since 95397 was 95397, checked in by vboxsync, 3 years ago

ValKit/bs3kit,bs3-cpu-instr-3: 128 and 256 bit wide vxorps, alignment checks. bugref:9898

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 KB
Line 
1/* $Id: bs3-cmn-ExtCtxSetYmm.c 95397 2022-06-27 17:49:40Z vboxsync $ */
2/** @file
3 * BS3Kit - Bs3ExtCtxSetYmm
4 */
5
6/*
7 * Copyright (C) 2007-2022 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#include "bs3kit-template-header.h"
32
33
34#undef Bs3ExtCtxSetYmm
35BS3_CMN_DEF(bool, Bs3ExtCtxSetYmm,(PBS3EXTCTX pExtCtx, uint8_t iReg, PCRTUINT256U pValue, uint8_t cbValue))
36{
37 BS3_ASSERT(cbValue == 16 || cbValue == 32);
38 switch (pExtCtx->enmMethod)
39 {
40 case BS3EXTCTXMETHOD_FXSAVE:
41 if (iReg < RT_ELEMENTS(pExtCtx->Ctx.x87.aXMM))
42 {
43 pExtCtx->Ctx.x87.aXMM[iReg].uXmm = pValue->DQWords.dqw0;
44 return true;
45 }
46 break;
47
48 case BS3EXTCTXMETHOD_XSAVE:
49 if (iReg < RT_ELEMENTS(pExtCtx->Ctx.x.x87.aXMM))
50 {
51 pExtCtx->Ctx.x87.aXMM[iReg].uXmm = pValue->DQWords.dqw0;
52 if (pExtCtx->fXcr0Nominal & XSAVE_C_YMM)
53 {
54 if (cbValue >= 32)
55 pExtCtx->Ctx.x.u.YmmHi.aYmmHi[iReg].uXmm = pValue->DQWords.dqw1;
56 else
57 {
58 pExtCtx->Ctx.x.u.YmmHi.aYmmHi[iReg].au64[0] = 0;
59 pExtCtx->Ctx.x.u.YmmHi.aYmmHi[iReg].au64[1] = 0;
60 }
61 /** @todo zero high ZMM part. */
62 }
63 return true;
64 }
65 break;
66 }
67 return false;
68}
69
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette