Changeset 57358 in vbox for trunk/src/recompiler
- Timestamp:
- Aug 14, 2015 3:16:38 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102121
- Location:
- trunk/src/recompiler
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/Sun/testmath.c
r42474 r57358 5 5 6 6 7 /******************************************************************************* 8 * Header Files *9 ******************************************************************************* /7 /********************************************************************************************************************************* 8 * Header Files * 9 *********************************************************************************************************************************/ 10 10 #ifndef MATHTEST_STANDALONE 11 11 # include <iprt/assert.h> -
trunk/src/recompiler/VBoxREMWrapper.cpp
r55988 r57358 149 149 150 150 151 /******************************************************************************* 152 * Defined Constants And Macros *153 ******************************************************************************* /151 /********************************************************************************************************************************* 152 * Defined Constants And Macros * 153 *********************************************************************************************************************************/ 154 154 /** @def USE_REM_STUBS 155 155 * Define USE_REM_STUBS to stub the entire REM stuff. This is useful during … … 193 193 194 194 195 /******************************************************************************* 196 * Header Files *197 ******************************************************************************* /195 /********************************************************************************************************************************* 196 * Header Files * 197 *********************************************************************************************************************************/ 198 198 #define LOG_GROUP LOG_GROUP_REM 199 199 #include <VBox/vmm/rem.h> … … 226 226 227 227 228 /******************************************************************************* 229 * Structures and Typedefs *230 ******************************************************************************* /228 /********************************************************************************************************************************* 229 * Structures and Typedefs * 230 *********************************************************************************************************************************/ 231 231 /** 232 232 * Parameter descriptor. … … 331 331 332 332 333 /******************************************************************************* 334 * Global Variables *335 ******************************************************************************* /333 /********************************************************************************************************************************* 334 * Global Variables * 335 *********************************************************************************************************************************/ 336 336 #ifndef USE_REM_STUBS 337 337 /** Loader handle of the REM object/DLL. */ … … 1395 1395 1396 1396 1397 /******************************************************************************* 1398 * Internal Functions *1399 ******************************************************************************* /1397 /********************************************************************************************************************************* 1398 * Internal Functions * 1399 *********************************************************************************************************************************/ 1400 1400 # ifndef VBOX_USE_BITNESS_SELECTOR 1401 1401 static int remGenerateExportGlue(PRTUINTPTR pValue, PCREMFNDESC pDesc); -
trunk/src/recompiler/VBoxRecompiler.c
r56984 r57358 17 17 18 18 19 /******************************************************************************* 20 * Header Files *21 ******************************************************************************* /19 /********************************************************************************************************************************* 20 * Header Files * 21 *********************************************************************************************************************************/ 22 22 #define LOG_GROUP LOG_GROUP_REM 23 23 #include <stdio.h> /* FILE */ … … 72 72 73 73 74 /******************************************************************************* 75 * Defined Constants And Macros *76 ******************************************************************************* /74 /********************************************************************************************************************************* 75 * Defined Constants And Macros * 76 *********************************************************************************************************************************/ 77 77 78 78 /** Copy 80-bit fpu register at pSrc to pDst. … … 94 94 95 95 96 /******************************************************************************* 97 * Internal Functions *98 ******************************************************************************* /96 /********************************************************************************************************************************* 97 * Internal Functions * 98 *********************************************************************************************************************************/ 99 99 static DECLCALLBACK(int) remR3Save(PVM pVM, PSSMHANDLE pSSM); 100 100 static DECLCALLBACK(int) remR3Load(PVM pVM, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass); … … 121 121 122 122 123 /******************************************************************************* 124 * Global Variables *125 ******************************************************************************* /123 /********************************************************************************************************************************* 124 * Global Variables * 125 *********************************************************************************************************************************/ 126 126 127 127 /** @todo Move stats to REM::s some rainy day we have nothing do to. */ … … 237 237 238 238 239 /******************************************************************************* 240 * Internal Functions *241 ******************************************************************************* /239 /********************************************************************************************************************************* 240 * Internal Functions * 241 *********************************************************************************************************************************/ 242 242 void remAbort(int rc, const char *pszTip); 243 243 extern int testmath(void);
Note:
See TracChangeset
for help on using the changeset viewer.