Changeset 41801 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jun 17, 2012 4:46:51 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78619
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CSAMAll.cpp
r35348 r41801 48 48 * 49 49 * @returns VBox status code 50 * @param pVM The VM to operate on.50 * @param pVM Pointer to the VM. 51 51 * @param pvFault Fault address 52 52 */ … … 75 75 * 76 76 * @returns true -> scanned, false -> not scanned 77 * @param pVM The VM to operate on.77 * @param pVM Pointer to the VM. 78 78 * @param pPage GC page address 79 79 */ … … 101 101 * 102 102 * @returns VBox status code. 103 * @param pVM The VM to operate on.103 * @param pVM Pointer to the VM. 104 104 * @param pPage GC page address (not necessarily aligned) 105 105 * @param fScanned Mark as scanned or not scanned … … 172 172 * CSAM want need to scan it. 173 173 * @returns false if the page was already scanned. 174 * @param pVM The VM to operate on.174 * @param pVM Pointer to the VM. 175 175 * @param GCPtr GC pointer of page 176 176 */ … … 195 195 * 196 196 * @returns VBox status code. 197 * @param pVM The VM to operate on.197 * @param pVM Pointer to the VM. 198 198 * @param GCPtr GC pointer of page 199 199 */ … … 213 213 * 214 214 * @returns VBox status code. 215 * @param pVM The VM to operate on.215 * @param pVM Pointer to the VM. 216 216 */ 217 217 VMMDECL(int) CSAMEnableScanning(PVM pVM) … … 225 225 * 226 226 * @returns VBox status code. 227 * @param pVM The VM to operate on.227 * @param pVM Pointer to the VM. 228 228 */ 229 229 VMMDECL(int) CSAMDisableScanning(PVM pVM) … … 242 242 * 243 243 * @returns boolean 244 * @param pVM The VM to operate on.244 * @param pVM Pointer to the VM. 245 245 * @param GCPtr GC pointer of page table entry 246 246 */ -
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r41800 r41801 81 81 * 82 82 * @returns Current status. 83 * @param pVCpu The VMCPU to operate on.83 * @param pVCpu Pointer to the VMCPU. 84 84 */ 85 85 VMMDECL(EMSTATE) EMGetState(PVMCPU pVCpu) … … 91 91 * Sets the current execution manager status. (use only when you know what you're doing!) 92 92 * 93 * @param pVCpu The VMCPU to operate on.93 * @param pVCpu Pointer to the VMCPU. 94 94 */ 95 95 VMMDECL(void) EMSetState(PVMCPU pVCpu, EMSTATE enmNewState) … … 183 183 * 184 184 * @returns boolean 185 * @param pVCpu The VMCPU to operate on.185 * @param pVCpu Pointer to the VMCPU. 186 186 * @param pCtx Current CPU context. 187 187 */ … … 239 239 * 240 240 * @returns bool owner/not owner 241 * @param pVM The VM to operate on.241 * @param pVM Pointer to the VM. 242 242 */ 243 243 VMMDECL(bool) EMRemIsLockOwner(PVM pVM) … … 258 258 * 259 259 * @returns VBox status code 260 * @param pVM The VM to operate on.260 * @param pVM Pointer to the VM. 261 261 */ 262 262 VMMDECL(int) EMRemTryLock(PVM pVM) -
trunk/src/VBox/VMM/VMMAll/FTMAll.cpp
r35346 r41801 36 36 * @returns VBox status code. 37 37 * 38 * @param pVM The VM to operate on.38 * @param pVM Pointer to the VM. 39 39 * @param enmType Checkpoint type 40 40 */ … … 57 57 * @returns true/false 58 58 * 59 * @param pVM The VM to operate on.59 * @param pVM Pointer to the VM. 60 60 */ 61 61 VMMDECL(bool) FTMIsDeltaLoadSaveActive(PVM pVM) -
trunk/src/VBox/VMM/VMMAll/HWACCMAll.cpp
r41181 r41801 39 39 * 40 40 * @returns VBox status code. 41 * @param pVCpu The VMCPU to operate on.41 * @param pVCpu Pointer to the VMCPU. 42 42 * @param GCVirt Page to invalidate 43 43 */ … … 63 63 * 64 64 * @returns VBox status code. 65 * @param pVCpu The VMCPU to operate on.65 * @param pVCpu Pointer to the VMCPU. 66 66 * @param GCVirt Page to invalidate 67 67 */ … … 87 87 * 88 88 * @returns VBox status code. 89 * @param pVCpu The VMCPU to operate on.89 * @param pVCpu Pointer to the VMCPU. 90 90 */ 91 91 VMMDECL(int) HWACCMFlushTLB(PVMCPU pVCpu) … … 189 189 * 190 190 * @returns VBox status code. 191 * @param pVM The VM to operate on.191 * @param pVM Pointer to the VM. 192 192 * @param GCVirt Page to invalidate 193 193 */ … … 223 223 * 224 224 * @returns VBox status code. 225 * @param pVM The VM to operate on.225 * @param pVM Pointer to the VM. 226 226 */ 227 227 VMMDECL(int) HWACCMFlushTLBOnAllVCpus(PVM pVM) … … 257 257 * 258 258 * @returns boolean 259 * @param pVM The VM to operate on.259 * @param pVM Pointer to the VM. 260 260 */ 261 261 VMMDECL(bool) HWACCMIsNestedPagingActive(PVM pVM) … … 268 268 * 269 269 * @returns shadow paging mode 270 * @param pVM The VM to operate on.270 * @param pVM Pointer to the VM. 271 271 */ 272 272 VMMDECL(PGMMODE) HWACCMGetShwPagingMode(PVM pVM) … … 286 286 * 287 287 * @returns VBox status code. 288 * @param pVM The VM to operate on.288 * @param pVM Pointer to the VM. 289 289 * @param GCPhys Page to invalidate 290 290 */ … … 329 329 * 330 330 * @returns Interrupt event pending state. 331 * @param pVM The VM to operate on.331 * @param pVM Pointer to the VM. 332 332 */ 333 333 VMMDECL(bool) HWACCMHasPendingIrq(PVM pVM) -
trunk/src/VBox/VMM/VMMAll/IOMAll.cpp
r41800 r41801 44 44 * 45 45 * @returns bool owner/not owner 46 * @param pVM The VM to operate on.46 * @param pVM Pointer to the VM. 47 47 */ 48 48 VMMDECL(bool) IOMIsLockOwner(PVM pVM) -
trunk/src/VBox/VMM/VMMAll/MMAll.cpp
r41783 r41801 315 315 * 316 316 * @returns ring-3 host context address. 317 * @param pVM The VM to operate on.317 * @param pVM Pointer to the VM. 318 318 * @param R0Ptr The ring-0 host context address. 319 319 * You'll be damned if this is not in the HMA! :-) … … 334 334 * 335 335 * @returns raw-mode context address. 336 * @param pVM The VM to operate on.336 * @param pVM Pointer to the VM. 337 337 * @param R0Ptr The ring-0 host context address. 338 338 * You'll be damned if this is not in the HMA! :-) … … 354 354 * 355 355 * @returns current context address. 356 * @param pVM The VM to operate on.356 * @param pVM Pointer to the VM. 357 357 * @param R0Ptr The ring-0 host context address. 358 358 * You'll be damned if this is not in the HMA! :-) … … 374 374 * 375 375 * @returns ring-0 host context address. 376 * @param pVM The VM to operate on.376 * @param pVM Pointer to the VM. 377 377 * @param R3Ptr The ring-3 host context address. 378 378 * You'll be damned if this is not in the HMA! :-) … … 394 394 * 395 395 * @returns guest context address. 396 * @param pVM The VM to operate on.396 * @param pVM Pointer to the VM. 397 397 * @param R3Ptr The ring-3 host context address. 398 398 * You'll be damned if this is not in the HMA! :-) … … 415 415 * 416 416 * @returns current context address. 417 * @param pVM The VM to operate on.417 * @param pVM Pointer to the VM. 418 418 * @param R3Ptr The ring-3 host context address. 419 419 * You'll be damned if this is not in the HMA! :-) … … 435 435 * 436 436 * @returns ring-3 host context address. 437 * @param pVM The VM to operate on.437 * @param pVM Pointer to the VM. 438 438 * @param GCPtr The raw-mode context address. 439 439 * You'll be damned if this is not in the HMA! :-) … … 454 454 * 455 455 * @returns ring-0 host context address. 456 * @param pVM The VM to operate on.456 * @param pVM Pointer to the VM. 457 457 * @param RCPtr The raw-mode context address. 458 458 * You'll be damned if this is not in the HMA! :-) … … 473 473 * 474 474 * @returns current context address. 475 * @param pVM The VM to operate on.475 * @param pVM Pointer to the VM. 476 476 * @param RCPtr The raw-mode host context address. 477 477 * You'll be damned if this is not in the HMA! :-) … … 493 493 * 494 494 * @returns ring-3 host context address. 495 * @param pVM The VM to operate on.495 * @param pVM Pointer to the VM. 496 496 * @param pv The current context address. 497 497 * You'll be damned if this is not in the HMA! :-) … … 513 513 * 514 514 * @returns ring-0 host context address. 515 * @param pVM The VM to operate on.515 * @param pVM Pointer to the VM. 516 516 * @param pv The current context address. 517 517 * You'll be damned if this is not in the HMA! :-) … … 534 534 * 535 535 * @returns guest context address. 536 * @param pVM The VM to operate on.536 * @param pVM Pointer to the VM. 537 537 * @param pv The current context address. 538 538 * You'll be damned if this is not in the HMA! :-) -
trunk/src/VBox/VMM/VMMAll/MMAllHyper.cpp
r41800 r41801 198 198 * 199 199 * @returns VBox status code. 200 * @param pVM The VM to operate on.200 * @param pVM Pointer to the VM. 201 201 * @param cb Number of bytes to allocate. 202 202 * @param uAlignment Required memory alignment in bytes. … … 757 757 * 758 758 * @returns VBox status code. 759 * @param pVM The VM to operate on.759 * @param pVM Pointer to the VM. 760 760 * @param pv The memory to free. 761 761 * @remark Try avoid free hyper memory. -
trunk/src/VBox/VMM/VMMAll/PATMAll.cpp
r41800 r41801 250 250 * 251 251 * @returns VBox status code. 252 * @param pVM The VM to operate on.252 * @param pVM Pointer to the VM. 253 253 */ 254 254 VMMDECL(RCPTRTYPE(PPATMGCSTATE)) PATMQueryGCState(PVM pVM) … … 261 261 * 262 262 * @returns VBox status code. 263 * @param pVM The VM to operate on.263 * @param pVM Pointer to the VM. 264 264 * @param pAddrGC Guest context address 265 265 */ … … 323 323 * 324 324 * @returns patch record 325 * @param pVM The VM to operate on.325 * @param pVM Pointer to the VM. 326 326 * @param pInstrGC Guest context point to the instruction 327 327 * … … 447 447 * 448 448 * @returns VBox status 449 * @param pVM The VM to operate on.449 * @param pVM Pointer to the VM. 450 450 * @param pJumpTableGC Pointer to branch instruction lookup cache 451 451 * @param pBranchTarget Original branch target -
trunk/src/VBox/VMM/VMMAll/TMAll.cpp
r41800 r41801 94 94 * clocks that only ticks when we're executing guest code. 95 95 * 96 * @param pVCpu The VMCPU to operate on.96 * @param pVCpu Pointer to the VMCPU. 97 97 */ 98 98 VMMDECL(void) TMNotifyStartOfExecution(PVMCPU pVCpu) … … 116 116 * clocks that only ticks when we're executing guest code. 117 117 * 118 * @param pVCpu The VMCPU to operate on.118 * @param pVCpu Pointer to the VMCPU. 119 119 */ 120 120 VMMDECL(void) TMNotifyEndOfExecution(PVMCPU pVCpu) … … 164 164 * clocks that only ticks when we're halted. 165 165 * 166 * @param pVCpu The VMCPU to operate on.166 * @param pVCpu Pointer to the VMCPU. 167 167 */ 168 168 VMM_INT_DECL(void) TMNotifyStartOfHalt(PVMCPU pVCpu) … … 188 188 * clocks that only ticks when we're halted. 189 189 * 190 * @param pVCpu The VMCPU to operate on.190 * @param pVCpu Pointer to the VMCPU. 191 191 */ 192 192 VMM_INT_DECL(void) TMNotifyEndOfHalt(PVMCPU pVCpu) -
trunk/src/VBox/VMM/VMMAll/TMAllCpu.cpp
r41783 r41801 54 54 * 55 55 * @returns VBox status code. 56 * @param pVM The VM to operate on.57 * @param pVCpu The VMCPU to operate on.56 * @param pVM Pointer to the VM. 57 * @param pVCpu Pointer to the VMCPU. 58 58 * @internal 59 59 */ … … 84 84 * 85 85 * @returns VBox status code. 86 * @param pVCpu The VMCPU to operate on.86 * @param pVCpu Pointer to the VMCPU. 87 87 * @internal 88 88 */ … … 140 140 * 141 141 * @returns true/false accordingly. 142 * @param pVCpu The VMCPU to operate on.142 * @param pVCpu Pointer to the VMCPU. 143 143 * @param poffRealTSC The offset against the TSC of the current CPU. 144 144 * Can be NULL. … … 301 301 * 302 302 * @returns Gets the CPU tsc. 303 * @param pVCpu The VMCPU to operate on.303 * @param pVCpu Pointer to the VMCPU. 304 304 */ 305 305 DECLINLINE(uint64_t) tmCpuTickGetInternal(PVMCPU pVCpu, bool fCheckTimers) … … 339 339 * 340 340 * @returns Gets the CPU tsc. 341 * @param pVCpu The VMCPU to operate on.341 * @param pVCpu Pointer to the VMCPU. 342 342 */ 343 343 VMMDECL(uint64_t) TMCpuTickGet(PVMCPU pVCpu) … … 351 351 * 352 352 * @returns Gets the CPU tsc. 353 * @param pVCpu The VMCPU to operate on.353 * @param pVCpu Pointer to the VMCPU. 354 354 */ 355 355 VMM_INT_DECL(uint64_t) TMCpuTickGetNoCheck(PVMCPU pVCpu) -
trunk/src/VBox/VMM/VMMAll/TRPMAll.cpp
r41800 r41801 349 349 * or does not return at all (when the trap is actually forwarded) 350 350 * 351 * @param pVM The VM to operate on.351 * @param pVM Pointer to the VM. 352 352 * @param pRegFrame Pointer to the register frame for the trap. 353 353 * @param iGate Trap or interrupt gate number … … 829 829 * 830 830 * @returns VBox status code. 831 * @param pVM The VM to operate on.831 * @param pVM Pointer to the VM. 832 832 * @param iTrap Interrupt/trap number. 833 833 */
Note:
See TracChangeset
for help on using the changeset viewer.