Changeset 40882 in vbox
- Timestamp:
- Apr 11, 2012 11:42:42 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bldprogs/VBoxTpG.cpp
r40878 r40882 608 608 " ; off=%u\n" 609 609 " db %2u ; Argument count\n" 610 " db %u ; fHaveLargeArgs" 610 611 " db 0, 0, 0 ; Reserved\n" 611 , off, pProbe->cArgs );612 , off, pProbe->cArgs, pProbe->fHaveLargeArgs); 612 613 off += 4; 613 614 RTListForEach(&pProbe->ArgHead, pArg, VTGARG, ListEntry) … … 977 978 if (pArg->fType & VTG_TYPE_FIXED_SIZED) 978 979 ScmStreamPrintf(pStrm, 979 " AssertCompile(sizeof(%s) <= sizeof(uint32_t));\\\n"980 " AssertCompile(sizeof(%s) <= sizeof(uint32_t));\\\n",980 " /*AssertCompile(sizeof(%s) <= sizeof(uint32_t));*/ \\\n" 981 " /*AssertCompile(sizeof(%s) <= sizeof(uint32_t));*/ \\\n", 981 982 pArg->pszName, 982 983 pArg->pszType); … … 1592 1593 * screw up the probe argument handling. 1593 1594 */ 1595 if (MY_STRMATCH("int")) return VTG_TYPE_FIXED_SIZED | sizeof(int) | VTG_TYPE_SIGNED; 1596 if (MY_STRMATCH("uintptr_t")) return VTG_TYPE_HC_ARCH_SIZED | VTG_TYPE_UNSIGNED; 1597 if (MY_STRMATCH("intptr_t")) return VTG_TYPE_HC_ARCH_SIZED | VTG_TYPE_SIGNED; 1598 1594 1599 //if (MY_STRMATCH("uint128_t")) return VTG_TYPE_FIXED_SIZED | sizeof(uint128_t) | VTG_TYPE_UNSIGNED; 1595 1600 if (MY_STRMATCH("uint64_t")) return VTG_TYPE_FIXED_SIZED | sizeof(uint64_t) | VTG_TYPE_UNSIGNED; … … 1610 1615 if (MY_STRMATCH("RTMSINTERVAL")) return VTG_TYPE_FIXED_SIZED | sizeof(RTMSINTERVAL) | VTG_TYPE_UNSIGNED; 1611 1616 if (MY_STRMATCH("RTTIMESPEC")) return VTG_TYPE_FIXED_SIZED | sizeof(RTTIMESPEC) | VTG_TYPE_SIGNED; 1617 if (MY_STRMATCH("RTPROCESS")) return VTG_TYPE_FIXED_SIZED | sizeof(RTPROCESS) | VTG_TYPE_UNSIGNED; 1612 1618 if (MY_STRMATCH("RTHCPHYS")) return VTG_TYPE_FIXED_SIZED | sizeof(RTHCPHYS) | VTG_TYPE_UNSIGNED | VTG_TYPE_PHYS; 1613 1619 … … 1673 1679 if ( MY_STRMATCH("unsigned") 1674 1680 || MY_STRMATCH("signed") 1675 || MY_STRMATCH("int")1676 1681 || MY_STRMATCH("signed int") 1677 1682 || MY_STRMATCH("unsigned int") … … 1683 1688 if (MY_STRMATCH("unsigned")) return VTG_TYPE_FIXED_SIZED | sizeof(int) | VTG_TYPE_UNSIGNED; 1684 1689 if (MY_STRMATCH("unsigned int")) return VTG_TYPE_FIXED_SIZED | sizeof(int) | VTG_TYPE_UNSIGNED; 1685 if (MY_STRMATCH("int")) return VTG_TYPE_FIXED_SIZED | sizeof(int) | VTG_TYPE_SIGNED;1686 1690 if (MY_STRMATCH("signed")) return VTG_TYPE_FIXED_SIZED | sizeof(int) | VTG_TYPE_SIGNED; 1687 1691 if (MY_STRMATCH("signed int")) return VTG_TYPE_FIXED_SIZED | sizeof(int) | VTG_TYPE_SIGNED; … … 1806 1810 if (VTG_TYPE_IS_LARGE(pArg->fType)) 1807 1811 pProbe->fHaveLargeArgs = true; 1812 1808 1813 pArg = NULL; 1809 1814 cchName = cchArg = 0;
Note:
See TracChangeset
for help on using the changeset viewer.