VirtualBox

Changeset 106341 in vbox for trunk/src/VBox/Runtime


Ignore:
Timestamp:
Oct 16, 2024 8:24:59 AM (6 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
165154
Message:

Runtime: Add ACPI table builder API to dynamically generate a DSDT/SSDT, bugref:10733 [build fix]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/misc/acpi.cpp

    r106337 r106341  
    8787    uint8_t                     *pbTblBuf;
    8888    /** Size of the table buffer. */
    89     size_t                      cbTblBuf;
     89    uint32_t                    cbTblBuf;
    9090    /** Current offset into the table buffer. */
    9191    uint32_t                    offTblBuf;
     
    162162 * @param cbAdd                 How many bytes to add to the package length.
    163163 */
    164 DECL_FORCE_INLINE(void) rtAcpiTblUpdatePkgLength(PRTACPITBLINT pThis, size_t cbAdd)
     164DECL_FORCE_INLINE(void) rtAcpiTblUpdatePkgLength(PRTACPITBLINT pThis, uint32_t cbAdd)
    165165{
    166166    PRTACPITBLSTACKELEM pPkgElem = &pThis->paPkgStack[pThis->idxPkgStackElem];
     
    176176 * @param cbReq                 Amount of bytes requested.
    177177 */
    178 static uint8_t *rtAcpiTblBufEnsureSpace(PRTACPITBLINT pThis, size_t cbReq)
     178static uint8_t *rtAcpiTblBufEnsureSpace(PRTACPITBLINT pThis, uint32_t cbReq)
    179179{
    180180    if (RT_LIKELY(pThis->cbTblBuf - pThis->offTblBuf >= cbReq))
     
    185185    }
    186186
    187     size_t const cbNew = RT_ALIGN_Z(pThis->cbTblBuf + cbReq, _4K);
     187    uint32_t const cbNew = RT_ALIGN_32(pThis->cbTblBuf + cbReq, _4K);
    188188    uint8_t *pbNew = (uint8_t *)RTMemRealloc(pThis->pbTblBuf, cbNew);
    189189    if (RT_UNLIKELY(!pbNew))
     
    324324     * Note! PkgLength will also include its own length.
    325325     */
    326     uint8_t *pbPkgLength = pPkgElem->pbPkgLength;
    327     size_t cbThisPkg    = pPkgElem->cbPkg;
     326    uint8_t  *pbPkgLength = pPkgElem->pbPkgLength;
     327    uint32_t cbThisPkg    = pPkgElem->cbPkg;
    328328    if (cbThisPkg + 1 <= 63)
    329329    {
     
    419419DECLINLINE(void) rtAcpiTblAppendNameString(PRTACPITBLINT pThis, const char *pszName)
    420420{
    421     size_t cbName = *pszName == '\\' ? 5 : 4;
     421    uint32_t cbName = *pszName == '\\' ? 5 : 4;
    422422    uint8_t *pb = rtAcpiTblBufEnsureSpace(pThis, cbName);
    423423    if (pb)
     
    548548{
    549549    PRTACPITBLINT pThis = hAcpiTbl;
    550     AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
     550    AssertPtrReturn(pThis, 0);
    551551    AssertRCReturn(pThis->rcErr, 0);
    552552    AssertReturn(pThis->fFinalized, 0);
     
    707707
    708708    rtAcpiTblAppendByte(pThis, ACPI_AML_BYTE_CODE_PREFIX_STRING);
    709     rtAcpiTblAppendData(pThis, psz, strlen(psz) + 1);
     709    rtAcpiTblAppendData(pThis, psz, (uint32_t)strlen(psz) + 1);
    710710    return pThis->rcErr;
    711711}
     
    761761    AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
    762762    AssertReturn(!cbBuf || RT_VALID_PTR(pvBuf), VERR_INVALID_PARAMETER);
     763    AssertReturn(cbBuf <= UINT32_MAX, VERR_BUFFER_OVERFLOW);
    763764
    764765    rtAcpiTblPkgStart(pThis, ACPI_AML_BYTE_CODE_OP_BUFFER);
    765766    RTAcpiTblIntegerAppend(hAcpiTbl, cbBuf);
    766767    if (pvBuf)
    767         rtAcpiTblAppendData(pThis, pvBuf, cbBuf);
     768        rtAcpiTblAppendData(pThis, pvBuf, (uint32_t)cbBuf);
    768769    return rtAcpiTblPkgFinish(pThis, ACPI_AML_BYTE_CODE_OP_BUFFER);
    769770}
     
    814815 * @param   cbReq               Number of free bytes required.
    815816 */
    816 static uint8_t *rtAcpiResBufEnsureSpace(PRTACPIRESINT pThis, size_t cbReq)
     817static uint8_t *rtAcpiResBufEnsureSpace(PRTACPIRESINT pThis, uint32_t cbReq)
    817818{
    818819    if (RT_LIKELY(pThis->cbResBuf - pThis->offResBuf >= cbReq))
Note: See TracChangeset for help on using the changeset viewer.

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