Changeset 102876 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jan 15, 2024 2:26:27 PM (15 months ago)
- svn:sync-xref-src-repo-rev:
- 161096
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/IEMInline.h
r102586 r102876 2061 2061 * Stacks} 2062 2062 */ 2063 static VBOXSTRICTRC iemFinishInstructionWithFlagsSet(PVMCPUCC pVCpu ) RT_NOEXCEPT2063 static VBOXSTRICTRC iemFinishInstructionWithFlagsSet(PVMCPUCC pVCpu, int rcNormal) RT_NOEXCEPT 2064 2064 { 2065 2065 /* … … 2102 2102 } 2103 2103 pVCpu->cpum.GstCtx.eflags.uBoth &= ~CPUMCTX_DBG_DBGF_MASK; 2104 Assert(rcStrict != VINF_SUCCESS); 2104 2105 return rcStrict; 2105 2106 } 2106 return VINF_SUCCESS;2107 return rcNormal; 2107 2108 } 2108 2109 … … 2112 2113 * 2113 2114 * @param pVCpu The cross context virtual CPU structure of the calling thread. 2114 */ 2115 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegFinishClearingRF(PVMCPUCC pVCpu) RT_NOEXCEPT 2115 * @param rcNormal VINF_SUCCESS to continue TB. 2116 * VINF_IEM_REEXEC_BREAK to force TB exit when 2117 * taking the wrong conditional branhc. 2118 */ 2119 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegFinishClearingRF(PVMCPUCC pVCpu, int rcNormal) RT_NOEXCEPT 2116 2120 { 2117 2121 /* … … 2121 2125 if (RT_LIKELY(!( pVCpu->cpum.GstCtx.eflags.uBoth 2122 2126 & (X86_EFL_TF | X86_EFL_RF | CPUMCTX_INHIBIT_SHADOW | CPUMCTX_DBG_HIT_DRX_MASK | CPUMCTX_DBG_DBGF_MASK)) )) 2123 return VINF_SUCCESS;2124 return iemFinishInstructionWithFlagsSet(pVCpu );2127 return rcNormal; 2128 return iemFinishInstructionWithFlagsSet(pVCpu, rcNormal); 2125 2129 } 2126 2130 … … 2136 2140 { 2137 2141 iemRegAddToRip(pVCpu, cbInstr); 2138 return iemRegFinishClearingRF(pVCpu );2142 return iemRegFinishClearingRF(pVCpu, VINF_SUCCESS); 2139 2143 } 2140 2144 … … 2148 2152 * @param pVCpu The cross context virtual CPU structure of the calling thread. 2149 2153 * @param cbInstr The number of bytes to add. 2150 */ 2151 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegAddToRip64AndFinishingClearingRF(PVMCPUCC pVCpu, uint8_t cbInstr) RT_NOEXCEPT 2154 * @param rcNormal VINF_SUCCESS to continue TB. 2155 * VINF_IEM_REEXEC_BREAK to force TB exit when 2156 * taking the wrong conditional branhc. 2157 */ 2158 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegAddToRip64AndFinishingClearingRF(PVMCPUCC pVCpu, uint8_t cbInstr, int rcNormal) RT_NOEXCEPT 2152 2159 { 2153 2160 pVCpu->cpum.GstCtx.rip = pVCpu->cpum.GstCtx.rip + cbInstr; 2154 return iemRegFinishClearingRF(pVCpu );2161 return iemRegFinishClearingRF(pVCpu, rcNormal); 2155 2162 } 2156 2163 … … 2164 2171 * @param pVCpu The cross context virtual CPU structure of the calling thread. 2165 2172 * @param cbInstr The number of bytes to add. 2166 */ 2167 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegAddToEip32AndFinishingClearingRF(PVMCPUCC pVCpu, uint8_t cbInstr) RT_NOEXCEPT 2173 * @param rcNormal VINF_SUCCESS to continue TB. 2174 * VINF_IEM_REEXEC_BREAK to force TB exit when 2175 * taking the wrong conditional branhc. 2176 */ 2177 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegAddToEip32AndFinishingClearingRF(PVMCPUCC pVCpu, uint8_t cbInstr, int rcNormal) RT_NOEXCEPT 2168 2178 { 2169 2179 pVCpu->cpum.GstCtx.rip = (uint32_t)(pVCpu->cpum.GstCtx.eip + cbInstr); 2170 return iemRegFinishClearingRF(pVCpu );2180 return iemRegFinishClearingRF(pVCpu, rcNormal); 2171 2181 } 2172 2182 … … 2180 2190 * @param pVCpu The cross context virtual CPU structure of the calling thread. 2181 2191 * @param cbInstr The number of bytes to add. 2182 */ 2183 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegAddToIp16AndFinishingClearingRF(PVMCPUCC pVCpu, uint8_t cbInstr) RT_NOEXCEPT 2192 * @param rcNormal VINF_SUCCESS to continue TB. 2193 * VINF_IEM_REEXEC_BREAK to force TB exit when 2194 * taking the wrong conditional branhc. 2195 */ 2196 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegAddToIp16AndFinishingClearingRF(PVMCPUCC pVCpu, uint8_t cbInstr, int rcNormal) RT_NOEXCEPT 2184 2197 { 2185 2198 pVCpu->cpum.GstCtx.rip = (uint16_t)(pVCpu->cpum.GstCtx.ip + cbInstr); 2186 return iemRegFinishClearingRF(pVCpu );2199 return iemRegFinishClearingRF(pVCpu, rcNormal); 2187 2200 } 2188 2201 … … 2192 2205 * 2193 2206 * @param pVCpu The cross context virtual CPU structure of the calling thread. 2194 */ 2195 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegFinishNoFlags(PVMCPUCC pVCpu) RT_NOEXCEPT 2207 * @param rcNormal VINF_SUCCESS to continue TB. 2208 * VINF_IEM_REEXEC_BREAK to force TB exit when 2209 * taking the wrong conditional branhc. 2210 */ 2211 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegFinishNoFlags(PVMCPUCC pVCpu, int rcNormal) RT_NOEXCEPT 2196 2212 { 2197 2213 AssertCompile(CPUMCTX_INHIBIT_SHADOW < UINT32_MAX); … … 2199 2215 & (X86_EFL_TF | X86_EFL_RF | CPUMCTX_INHIBIT_SHADOW | CPUMCTX_DBG_HIT_DRX_MASK | CPUMCTX_DBG_DBGF_MASK)) ); 2200 2216 RT_NOREF(pVCpu); 2201 return VINF_SUCCESS;2217 return rcNormal; 2202 2218 } 2203 2219 … … 2211 2227 * @param pVCpu The cross context virtual CPU structure of the calling thread. 2212 2228 * @param cbInstr The number of bytes to add. 2213 */ 2214 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegAddToRip64AndFinishingNoFlags(PVMCPUCC pVCpu, uint8_t cbInstr) RT_NOEXCEPT 2229 * @param rcNormal VINF_SUCCESS to continue TB. 2230 * VINF_IEM_REEXEC_BREAK to force TB exit when 2231 * taking the wrong conditional branhc. 2232 */ 2233 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegAddToRip64AndFinishingNoFlags(PVMCPUCC pVCpu, uint8_t cbInstr, int rcNormal) RT_NOEXCEPT 2215 2234 { 2216 2235 pVCpu->cpum.GstCtx.rip = pVCpu->cpum.GstCtx.rip + cbInstr; 2217 return iemRegFinishNoFlags(pVCpu );2236 return iemRegFinishNoFlags(pVCpu, rcNormal); 2218 2237 } 2219 2238 … … 2227 2246 * @param pVCpu The cross context virtual CPU structure of the calling thread. 2228 2247 * @param cbInstr The number of bytes to add. 2229 */ 2230 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegAddToEip32AndFinishingNoFlags(PVMCPUCC pVCpu, uint8_t cbInstr) RT_NOEXCEPT 2248 * @param rcNormal VINF_SUCCESS to continue TB. 2249 * VINF_IEM_REEXEC_BREAK to force TB exit when 2250 * taking the wrong conditional branhc. 2251 */ 2252 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegAddToEip32AndFinishingNoFlags(PVMCPUCC pVCpu, uint8_t cbInstr, int rcNormal) RT_NOEXCEPT 2231 2253 { 2232 2254 pVCpu->cpum.GstCtx.rip = (uint32_t)(pVCpu->cpum.GstCtx.eip + cbInstr); 2233 return iemRegFinishNoFlags(pVCpu );2255 return iemRegFinishNoFlags(pVCpu, rcNormal); 2234 2256 } 2235 2257 … … 2243 2265 * @param pVCpu The cross context virtual CPU structure of the calling thread. 2244 2266 * @param cbInstr The number of bytes to add. 2245 */ 2246 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegAddToIp16AndFinishingNoFlags(PVMCPUCC pVCpu, uint8_t cbInstr) RT_NOEXCEPT 2267 * @param rcNormal VINF_SUCCESS to continue TB. 2268 * VINF_IEM_REEXEC_BREAK to force TB exit when 2269 * taking the wrong conditional branhc. 2270 * 2271 */ 2272 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegAddToIp16AndFinishingNoFlags(PVMCPUCC pVCpu, uint8_t cbInstr, int rcNormal) RT_NOEXCEPT 2247 2273 { 2248 2274 pVCpu->cpum.GstCtx.rip = (uint16_t)(pVCpu->cpum.GstCtx.ip + cbInstr); 2249 return iemRegFinishNoFlags(pVCpu );2275 return iemRegFinishNoFlags(pVCpu, rcNormal); 2250 2276 } 2251 2277 … … 2261 2287 * @param offNextInstr The offset of the next instruction. 2262 2288 * @param enmEffOpSize Effective operand size. 2289 * @param rcNormal VINF_SUCCESS to continue TB. 2290 * VINF_IEM_REEXEC_BREAK to force TB exit when 2291 * taking the wrong conditional branhc. 2263 2292 */ 2264 2293 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegRip64RelativeJumpS8AndFinishClearingRF(PVMCPUCC pVCpu, uint8_t cbInstr, int8_t offNextInstr, 2265 IEMMODE enmEffOpSize ) RT_NOEXCEPT2294 IEMMODE enmEffOpSize, int rcNormal) RT_NOEXCEPT 2266 2295 { 2267 2296 Assert(IEM_IS_64BIT_CODE(pVCpu)); … … 2284 2313 * Clear RF and finish the instruction (maybe raise #DB). 2285 2314 */ 2286 return iemRegFinishClearingRF(pVCpu );2315 return iemRegFinishClearingRF(pVCpu, rcNormal); 2287 2316 } 2288 2317 … … 2299 2328 * @param offNextInstr The offset of the next instruction. 2300 2329 * @param enmEffOpSize Effective operand size. 2330 * @param rcNormal VINF_SUCCESS to continue TB. 2331 * VINF_IEM_REEXEC_BREAK to force TB exit when 2332 * taking the wrong conditional branhc. 2301 2333 */ 2302 2334 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegEip32RelativeJumpS8AndFinishClearingRF(PVMCPUCC pVCpu, uint8_t cbInstr, int8_t offNextInstr, 2303 IEMMODE enmEffOpSize ) RT_NOEXCEPT2335 IEMMODE enmEffOpSize, int rcNormal) RT_NOEXCEPT 2304 2336 { 2305 2337 Assert(!IEM_IS_64BIT_CODE(pVCpu)); … … 2321 2353 * Clear RF and finish the instruction (maybe raise #DB). 2322 2354 */ 2323 return iemRegFinishClearingRF(pVCpu );2355 return iemRegFinishClearingRF(pVCpu, rcNormal); 2324 2356 } 2325 2357 … … 2334 2366 * @param cbInstr Instruction size. 2335 2367 * @param offNextInstr The offset of the next instruction. 2368 * @param rcNormal VINF_SUCCESS to continue TB. 2369 * VINF_IEM_REEXEC_BREAK to force TB exit when 2370 * taking the wrong conditional branhc. 2336 2371 */ 2337 2372 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegIp16RelativeJumpS8AndFinishClearingRF(PVMCPUCC pVCpu, uint8_t cbInstr, 2338 int8_t offNextInstr ) RT_NOEXCEPT2373 int8_t offNextInstr, int rcNormal) RT_NOEXCEPT 2339 2374 { 2340 2375 Assert(!IEM_IS_64BIT_CODE(pVCpu)); … … 2353 2388 * Clear RF and finish the instruction (maybe raise #DB). 2354 2389 */ 2355 return iemRegFinishClearingRF(pVCpu );2390 return iemRegFinishClearingRF(pVCpu, rcNormal); 2356 2391 } 2357 2392 … … 2368 2403 * @param offNextInstr The offset of the next instruction. 2369 2404 * @param enmEffOpSize Effective operand size. 2405 * @param rcNormal VINF_SUCCESS to continue TB. 2406 * VINF_IEM_REEXEC_BREAK to force TB exit when 2407 * taking the wrong conditional branhc. 2370 2408 */ 2371 2409 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegRip64RelativeJumpS8AndFinishNoFlags(PVMCPUCC pVCpu, uint8_t cbInstr, int8_t offNextInstr, 2372 IEMMODE enmEffOpSize ) RT_NOEXCEPT2410 IEMMODE enmEffOpSize, int rcNormal) RT_NOEXCEPT 2373 2411 { 2374 2412 Assert(IEM_IS_64BIT_CODE(pVCpu)); … … 2387 2425 iemOpcodeFlushLight(pVCpu, cbInstr); 2388 2426 #endif 2389 return iemRegFinishNoFlags(pVCpu );2427 return iemRegFinishNoFlags(pVCpu, rcNormal); 2390 2428 } 2391 2429 … … 2402 2440 * @param offNextInstr The offset of the next instruction. 2403 2441 * @param enmEffOpSize Effective operand size. 2442 * @param rcNormal VINF_SUCCESS to continue TB. 2443 * VINF_IEM_REEXEC_BREAK to force TB exit when 2444 * taking the wrong conditional branhc. 2404 2445 */ 2405 2446 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegEip32RelativeJumpS8AndFinishNoFlags(PVMCPUCC pVCpu, uint8_t cbInstr, int8_t offNextInstr, 2406 IEMMODE enmEffOpSize ) RT_NOEXCEPT2447 IEMMODE enmEffOpSize, int rcNormal) RT_NOEXCEPT 2407 2448 { 2408 2449 Assert(!IEM_IS_64BIT_CODE(pVCpu)); … … 2420 2461 iemOpcodeFlushLight(pVCpu, cbInstr); 2421 2462 #endif 2422 return iemRegFinishNoFlags(pVCpu );2463 return iemRegFinishNoFlags(pVCpu, rcNormal); 2423 2464 } 2424 2465 … … 2434 2475 * @param cbInstr Instruction size. 2435 2476 * @param offNextInstr The offset of the next instruction. 2477 * @param rcNormal VINF_SUCCESS to continue TB. 2478 * VINF_IEM_REEXEC_BREAK to force TB exit when 2479 * taking the wrong conditional branhc. 2436 2480 */ 2437 2481 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegIp16RelativeJumpS8AndFinishNoFlags(PVMCPUCC pVCpu, uint8_t cbInstr, 2438 int8_t offNextInstr ) RT_NOEXCEPT2482 int8_t offNextInstr, int rcNormal) RT_NOEXCEPT 2439 2483 { 2440 2484 Assert(!IEM_IS_64BIT_CODE(pVCpu)); … … 2449 2493 iemOpcodeFlushLight(pVCpu, cbInstr); 2450 2494 #endif 2451 return iemRegFinishNoFlags(pVCpu );2495 return iemRegFinishNoFlags(pVCpu, rcNormal); 2452 2496 } 2453 2497 … … 2460 2504 * @param cbInstr Instruction size. 2461 2505 * @param offNextInstr The offset of the next instruction. 2506 * @param rcNormal VINF_SUCCESS to continue TB. 2507 * VINF_IEM_REEXEC_BREAK to force TB exit when 2508 * taking the wrong conditional branhc. 2462 2509 */ 2463 2510 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegRip64RelativeJumpS16AndFinishClearingRF(PVMCPUCC pVCpu, uint8_t cbInstr, 2464 int16_t offNextInstr ) RT_NOEXCEPT2511 int16_t offNextInstr, int rcNormal) RT_NOEXCEPT 2465 2512 { 2466 2513 Assert(IEM_IS_64BIT_CODE(pVCpu)); … … 2475 2522 * Clear RF and finish the instruction (maybe raise #DB). 2476 2523 */ 2477 return iemRegFinishClearingRF(pVCpu );2524 return iemRegFinishClearingRF(pVCpu, rcNormal); 2478 2525 } 2479 2526 … … 2489 2536 * @param cbInstr Instruction size. 2490 2537 * @param offNextInstr The offset of the next instruction. 2538 * @param rcNormal VINF_SUCCESS to continue TB. 2539 * VINF_IEM_REEXEC_BREAK to force TB exit when 2540 * taking the wrong conditional branhc. 2491 2541 * 2492 2542 * @note This is also used by 16-bit code in pre-386 mode, as the code is … … 2494 2544 */ 2495 2545 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegEip32RelativeJumpS16AndFinishClearingRF(PVMCPUCC pVCpu, uint8_t cbInstr, 2496 int16_t offNextInstr ) RT_NOEXCEPT2546 int16_t offNextInstr, int rcNormal) RT_NOEXCEPT 2497 2547 { 2498 2548 Assert(!IEM_IS_64BIT_CODE(pVCpu)); … … 2511 2561 * Clear RF and finish the instruction (maybe raise #DB). 2512 2562 */ 2513 return iemRegFinishClearingRF(pVCpu );2563 return iemRegFinishClearingRF(pVCpu, rcNormal); 2514 2564 } 2515 2565 … … 2523 2573 * @param cbInstr Instruction size. 2524 2574 * @param offNextInstr The offset of the next instruction. 2575 * @param rcNormal VINF_SUCCESS to continue TB. 2576 * VINF_IEM_REEXEC_BREAK to force TB exit when 2577 * taking the wrong conditional branhc. 2525 2578 */ 2526 2579 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegRip64RelativeJumpS16AndFinishNoFlags(PVMCPUCC pVCpu, uint8_t cbInstr, 2527 int16_t offNextInstr ) RT_NOEXCEPT2580 int16_t offNextInstr, int rcNormal) RT_NOEXCEPT 2528 2581 { 2529 2582 Assert(IEM_IS_64BIT_CODE(pVCpu)); … … 2534 2587 iemOpcodeFlushLight(pVCpu, cbInstr); 2535 2588 #endif 2536 return iemRegFinishNoFlags(pVCpu );2589 return iemRegFinishNoFlags(pVCpu, rcNormal); 2537 2590 } 2538 2591 … … 2549 2602 * @param cbInstr Instruction size. 2550 2603 * @param offNextInstr The offset of the next instruction. 2604 * @param rcNormal VINF_SUCCESS to continue TB. 2605 * VINF_IEM_REEXEC_BREAK to force TB exit when 2606 * taking the wrong conditional branhc. 2551 2607 * 2552 2608 * @note This is also used by 16-bit code in pre-386 mode, as the code is … … 2554 2610 */ 2555 2611 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegEip32RelativeJumpS16AndFinishNoFlags(PVMCPUCC pVCpu, uint8_t cbInstr, 2556 int16_t offNextInstr ) RT_NOEXCEPT2612 int16_t offNextInstr, int rcNormal) RT_NOEXCEPT 2557 2613 { 2558 2614 Assert(!IEM_IS_64BIT_CODE(pVCpu)); … … 2567 2623 iemOpcodeFlushLight(pVCpu, cbInstr); 2568 2624 #endif 2569 return iemRegFinishNoFlags(pVCpu );2625 return iemRegFinishNoFlags(pVCpu, rcNormal); 2570 2626 } 2571 2627 … … 2585 2641 * @param cbInstr Instruction size. 2586 2642 * @param offNextInstr The offset of the next instruction. 2643 * @param rcNormal VINF_SUCCESS to continue TB. 2644 * VINF_IEM_REEXEC_BREAK to force TB exit when 2645 * taking the wrong conditional branhc. 2587 2646 */ 2588 2647 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegRip64RelativeJumpS32AndFinishClearingRF(PVMCPUCC pVCpu, uint8_t cbInstr, 2589 int32_t offNextInstr ) RT_NOEXCEPT2648 int32_t offNextInstr, int rcNormal) RT_NOEXCEPT 2590 2649 { 2591 2650 Assert(IEM_IS_64BIT_CODE(pVCpu)); … … 2604 2663 * Clear RF and finish the instruction (maybe raise #DB). 2605 2664 */ 2606 return iemRegFinishClearingRF(pVCpu );2665 return iemRegFinishClearingRF(pVCpu, rcNormal); 2607 2666 } 2608 2667 … … 2622 2681 * @param cbInstr Instruction size. 2623 2682 * @param offNextInstr The offset of the next instruction. 2683 * @param rcNormal VINF_SUCCESS to continue TB. 2684 * VINF_IEM_REEXEC_BREAK to force TB exit when 2685 * taking the wrong conditional branhc. 2624 2686 */ 2625 2687 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegEip32RelativeJumpS32AndFinishClearingRF(PVMCPUCC pVCpu, uint8_t cbInstr, 2626 int32_t offNextInstr ) RT_NOEXCEPT2688 int32_t offNextInstr, int rcNormal) RT_NOEXCEPT 2627 2689 { 2628 2690 Assert(!IEM_IS_64BIT_CODE(pVCpu)); … … 2642 2704 * Clear RF and finish the instruction (maybe raise #DB). 2643 2705 */ 2644 return iemRegFinishClearingRF(pVCpu );2706 return iemRegFinishClearingRF(pVCpu, rcNormal); 2645 2707 } 2646 2708 … … 2661 2723 * @param cbInstr Instruction size. 2662 2724 * @param offNextInstr The offset of the next instruction. 2725 * @param rcNormal VINF_SUCCESS to continue TB. 2726 * VINF_IEM_REEXEC_BREAK to force TB exit when 2727 * taking the wrong conditional branhc. 2663 2728 */ 2664 2729 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegRip64RelativeJumpS32AndFinishNoFlags(PVMCPUCC pVCpu, uint8_t cbInstr, 2665 int32_t offNextInstr ) RT_NOEXCEPT2730 int32_t offNextInstr, int rcNormal) RT_NOEXCEPT 2666 2731 { 2667 2732 Assert(IEM_IS_64BIT_CODE(pVCpu)); … … 2676 2741 iemOpcodeFlushLight(pVCpu, cbInstr); 2677 2742 #endif 2678 return iemRegFinishNoFlags(pVCpu );2743 return iemRegFinishNoFlags(pVCpu, rcNormal); 2679 2744 } 2680 2745 … … 2695 2760 * @param cbInstr Instruction size. 2696 2761 * @param offNextInstr The offset of the next instruction. 2762 * @param rcNormal VINF_SUCCESS to continue TB. 2763 * VINF_IEM_REEXEC_BREAK to force TB exit when 2764 * taking the wrong conditional branhc. 2697 2765 */ 2698 2766 DECL_FORCE_INLINE(VBOXSTRICTRC) iemRegEip32RelativeJumpS32AndFinishNoFlags(PVMCPUCC pVCpu, uint8_t cbInstr, 2699 int32_t offNextInstr ) RT_NOEXCEPT2767 int32_t offNextInstr, int rcNormal) RT_NOEXCEPT 2700 2768 { 2701 2769 Assert(!IEM_IS_64BIT_CODE(pVCpu)); … … 2711 2779 iemOpcodeFlushLight(pVCpu, cbInstr); 2712 2780 #endif 2713 return iemRegFinishNoFlags(pVCpu );2781 return iemRegFinishNoFlags(pVCpu, rcNormal); 2714 2782 } 2715 2783 … … 2755 2823 iemRegAddToRip(pVCpu, cbInstr); 2756 2824 if (!(fEflOld & X86_EFL_TF)) 2757 return iemRegFinishClearingRF(pVCpu );2825 return iemRegFinishClearingRF(pVCpu, VINF_SUCCESS); 2758 2826 return iemFinishInstructionWithTfSet(pVCpu); 2759 2827 } … … 2791 2859 else 2792 2860 return iemRaiseGeneralProtectionFault0(pVCpu); 2793 return iemRegFinishNoFlags(pVCpu );2861 return iemRegFinishNoFlags(pVCpu, VINF_SUCCESS); 2794 2862 } 2795 2863 … … 2812 2880 else 2813 2881 return iemRaiseGeneralProtectionFault0(pVCpu); 2814 return iemRegFinishNoFlags(pVCpu );2882 return iemRegFinishNoFlags(pVCpu, VINF_SUCCESS); 2815 2883 } 2816 2884 … … 2833 2901 else 2834 2902 return iemRaiseGeneralProtectionFault0(pVCpu); 2835 return iemRegFinishNoFlags(pVCpu );2903 return iemRegFinishNoFlags(pVCpu, VINF_SUCCESS); 2836 2904 } 2837 2905 … … 2859 2927 RT_NOREF_PV(cbInstr); 2860 2928 #endif 2861 return iemRegFinishClearingRF(pVCpu );2929 return iemRegFinishClearingRF(pVCpu, VINF_SUCCESS); 2862 2930 } 2863 2931 … … 2885 2953 RT_NOREF_PV(cbInstr); 2886 2954 #endif 2887 return iemRegFinishClearingRF(pVCpu );2955 return iemRegFinishClearingRF(pVCpu, VINF_SUCCESS); 2888 2956 } 2889 2957 … … 2911 2979 RT_NOREF_PV(cbInstr); 2912 2980 #endif 2913 return iemRegFinishClearingRF(pVCpu );2981 return iemRegFinishClearingRF(pVCpu, VINF_SUCCESS); 2914 2982 } 2915 2983 -
trunk/src/VBox/VMM/include/IEMMc.h
r102586 r102876 2841 2841 && !!(pVCpu->cpum.GstCtx.eflags.u & (a_fBit1)) \ 2842 2842 == !!(pVCpu->cpum.GstCtx.eflags.u & (a_fBit2)) ) { 2843 #define IEM_MC_IF_CX_IS_NZ() if (pVCpu->cpum.GstCtx.cx != 0) {2843 #define IEM_MC_IF_CX_IS_NZ() if (pVCpu->cpum.GstCtx.cx != 0) { 2844 2844 #define IEM_MC_IF_ECX_IS_NZ() if (pVCpu->cpum.GstCtx.ecx != 0) { 2845 2845 #define IEM_MC_IF_RCX_IS_NZ() if (pVCpu->cpum.GstCtx.rcx != 0) { 2846 #define IEM_MC_IF_CX_IS_NOT_ONE() if (pVCpu->cpum.GstCtx.cx != 1) { 2847 #define IEM_MC_IF_ECX_IS_NOT_ONE() if (pVCpu->cpum.GstCtx.ecx != 1) { 2848 #define IEM_MC_IF_RCX_IS_NOT_ONE() if (pVCpu->cpum.GstCtx.rcx != 1) { 2846 2849 /** @note Not for IOPL or IF testing. */ 2847 #define IEM_MC_IF_CX_IS_N Z_AND_EFL_BIT_SET(a_fBit) \2848 if ( pVCpu->cpum.GstCtx.cx != 0\2850 #define IEM_MC_IF_CX_IS_NOT_ONE_AND_EFL_BIT_SET(a_fBit) \ 2851 if ( pVCpu->cpum.GstCtx.cx != 1 \ 2849 2852 && (pVCpu->cpum.GstCtx.eflags.u & a_fBit)) { 2850 2853 /** @note Not for IOPL or IF testing. */ 2851 #define IEM_MC_IF_ECX_IS_N Z_AND_EFL_BIT_SET(a_fBit) \2852 if ( pVCpu->cpum.GstCtx.ecx != 0\2854 #define IEM_MC_IF_ECX_IS_NOT_ONE_AND_EFL_BIT_SET(a_fBit) \ 2855 if ( pVCpu->cpum.GstCtx.ecx != 1 \ 2853 2856 && (pVCpu->cpum.GstCtx.eflags.u & a_fBit)) { 2854 2857 /** @note Not for IOPL or IF testing. */ 2855 #define IEM_MC_IF_RCX_IS_N Z_AND_EFL_BIT_SET(a_fBit) \2856 if ( pVCpu->cpum.GstCtx.rcx != 0\2858 #define IEM_MC_IF_RCX_IS_NOT_ONE_AND_EFL_BIT_SET(a_fBit) \ 2859 if ( pVCpu->cpum.GstCtx.rcx != 1 \ 2857 2860 && (pVCpu->cpum.GstCtx.eflags.u & a_fBit)) { 2858 2861 /** @note Not for IOPL or IF testing. */ 2859 #define IEM_MC_IF_CX_IS_N Z_AND_EFL_BIT_NOT_SET(a_fBit) \2860 if ( pVCpu->cpum.GstCtx.cx != 0\2862 #define IEM_MC_IF_CX_IS_NOT_ONE_AND_EFL_BIT_NOT_SET(a_fBit) \ 2863 if ( pVCpu->cpum.GstCtx.cx != 1 \ 2861 2864 && !(pVCpu->cpum.GstCtx.eflags.u & a_fBit)) { 2862 2865 /** @note Not for IOPL or IF testing. */ 2863 #define IEM_MC_IF_ECX_IS_N Z_AND_EFL_BIT_NOT_SET(a_fBit) \2864 if ( pVCpu->cpum.GstCtx.ecx != 0\2866 #define IEM_MC_IF_ECX_IS_NOT_ONE_AND_EFL_BIT_NOT_SET(a_fBit) \ 2867 if ( pVCpu->cpum.GstCtx.ecx != 1 \ 2865 2868 && !(pVCpu->cpum.GstCtx.eflags.u & a_fBit)) { 2866 2869 /** @note Not for IOPL or IF testing. */ 2867 #define IEM_MC_IF_RCX_IS_N Z_AND_EFL_BIT_NOT_SET(a_fBit) \2868 if ( pVCpu->cpum.GstCtx.rcx != 0\2870 #define IEM_MC_IF_RCX_IS_NOT_ONE_AND_EFL_BIT_NOT_SET(a_fBit) \ 2871 if ( pVCpu->cpum.GstCtx.rcx != 1 \ 2869 2872 && !(pVCpu->cpum.GstCtx.eflags.u & a_fBit)) { 2870 2873 #define IEM_MC_IF_LOCAL_IS_Z(a_Local) if ((a_Local) == 0) { -
trunk/src/VBox/VMM/include/IEMN8veRecompilerEmit.h
r102857 r102876 4963 4963 4964 4964 4965 /** 4966 * Emits a compare of a 32-bit GPR with a constant value, settings status 4967 * flags/whatever for use with conditional instruction. 4968 * 4969 * @note ARM64: Helper register is required (@a idxTmpReg) for isolating the 4970 * 16-bit value from @a iGrpLeft. 4971 * @note On ARM64 the @a uImm value must be in the range 0x000..0xfff or that 4972 * shifted 12 bits to the left (e.g. 0x1000..0xfff0000 with the lower 12 4973 * bits all zero). Will release assert or throw exception if the caller 4974 * violates this restriction. 4975 */ 4976 DECL_FORCE_INLINE_THROW(uint32_t) 4977 iemNativeEmitCmpGpr16WithImmEx(PIEMNATIVEINSTR pCodeBuf, uint32_t off, uint8_t iGprLeft, uint16_t uImm, 4978 uint8_t idxTmpReg = UINT8_MAX) 4979 { 4980 #ifdef RT_ARCH_AMD64 4981 pCodeBuf[off++] = X86_OP_PRF_SIZE_OP; 4982 if (iGprLeft >= 8) 4983 pCodeBuf[off++] = X86_OP_REX_B; 4984 if (uImm <= UINT32_C(0x7f)) 4985 { 4986 /* cmp Ev, Ib */ 4987 pCodeBuf[off++] = 0x83; 4988 pCodeBuf[off++] = X86_MODRM_MAKE(X86_MOD_REG, 7, iGprLeft & 7); 4989 pCodeBuf[off++] = (uint8_t)uImm; 4990 } 4991 else 4992 { 4993 /* cmp Ev, imm */ 4994 pCodeBuf[off++] = 0x81; 4995 pCodeBuf[off++] = X86_MODRM_MAKE(X86_MOD_REG, 7, iGprLeft & 7); 4996 pCodeBuf[off++] = RT_BYTE1(uImm); 4997 pCodeBuf[off++] = RT_BYTE2(uImm); 4998 } 4999 RT_NOREF(idxTmpReg); 5000 5001 #elif defined(RT_ARCH_ARM64) 5002 # ifdef IEM_WITH_THROW_CATCH 5003 AssertStmt(idxTmpReg < 32, IEMNATIVE_DO_LONGJMP(NULL, VERR_IEM_IPE_9)); 5004 # else 5005 AssertReleaseStmt(idxTmpReg < 32, off = UINT32_MAX); 5006 # endif 5007 Assert(Armv8A64ConvertImmRImmS2Mask32(15, 0) == 0xffff); 5008 pCodeBuf[off++] = Armv8A64MkInstrAndImm(idxTmpReg, iGprLeft, 15, 0, false /*f64Bit*/); 5009 off = iemNativeEmitCmpGpr32WithImmEx(pCodeBuf, off, idxTmpReg, uImm); 5010 5011 #else 5012 # error "Port me!" 5013 #endif 5014 return off; 5015 } 5016 5017 5018 /** 5019 * Emits a compare of a 16-bit GPR with a constant value, settings status 5020 * flags/whatever for use with conditional instruction. 5021 * 5022 * @note ARM64: Helper register is required (idxTmpReg). 5023 */ 5024 DECL_INLINE_THROW(uint32_t) 5025 iemNativeEmitCmpGpr16WithImm(PIEMRECOMPILERSTATE pReNative, uint32_t off, uint8_t iGprLeft, uint16_t uImm, 5026 uint8_t idxTmpReg = UINT8_MAX) 5027 { 5028 #ifdef RT_ARCH_AMD64 5029 off = iemNativeEmitCmpGpr16WithImmEx(iemNativeInstrBufEnsure(pReNative, off, 7), off, iGprLeft, uImm, idxTmpReg); 5030 #elif defined(RT_ARCH_ARM64) 5031 off = iemNativeEmitCmpGpr16WithImmEx(iemNativeInstrBufEnsure(pReNative, off, 2), off, iGprLeft, uImm, idxTmpReg); 5032 #else 5033 # error "Port me!" 5034 #endif 5035 IEMNATIVE_ASSERT_INSTR_BUF_ENSURE(pReNative, off); 5036 return off; 5037 } 5038 5039 4965 5040 4966 5041 /********************************************************************************************************************************* … … 5974 6049 5975 6050 6051 /* if (Grp1 == 0) Jmp idxLabel; */ 6052 5976 6053 /** 5977 6054 * Emits code that jumps to @a idxLabel if @a iGprSrc is zero. … … 6014 6091 6015 6092 6093 /* if (Grp1 != 0) Jmp idxLabel; */ 6094 6016 6095 /** 6017 6096 * Emits code that jumps to @a idxLabel if @a iGprSrc is not zero. … … 6054 6133 6055 6134 6135 /* if (Grp1 != Gpr2) Jmp idxLabel; */ 6136 6056 6137 /** 6057 6138 * Emits code that jumps to the given label if @a iGprLeft and @a iGprRight … … 6081 6162 6082 6163 6164 /* if (Grp != Imm) Jmp idxLabel; */ 6165 6083 6166 /** 6084 6167 * Emits code that jumps to the given label if @a iGprSrc differs from @a uImm. … … 6131 6214 uint32_t const idxLabel = iemNativeLabelCreate(pReNative, enmLabelType, UINT32_MAX /*offWhere*/, uData); 6132 6215 return iemNativeEmitTestIfGpr32NotEqualImmAndJmpToLabel(pReNative, off, iGprSrc, uImm, idxLabel); 6216 } 6217 6218 6219 /** 6220 * Emits code that jumps to the given label if 16-bit @a iGprSrc differs from 6221 * @a uImm. 6222 */ 6223 DECL_INLINE_THROW(uint32_t) iemNativeEmitTestIfGpr16NotEqualImmAndJmpToLabel(PIEMRECOMPILERSTATE pReNative, uint32_t off, 6224 uint8_t iGprSrc, uint16_t uImm, uint32_t idxLabel) 6225 { 6226 off = iemNativeEmitCmpGpr16WithImm(pReNative, off, iGprSrc, uImm); 6227 off = iemNativeEmitJnzToLabel(pReNative, off, idxLabel); 6228 return off; 6229 } 6230 6231 6232 /** 6233 * Emits code that jumps to a new label if 16-bit @a iGprSrc differs from 6234 * @a uImm. 6235 */ 6236 DECL_INLINE_THROW(uint32_t) 6237 iemNativeEmitTestIfGpr16NotEqualImmAndJmpToNewLabel(PIEMRECOMPILERSTATE pReNative, uint32_t off, 6238 uint8_t iGprSrc, uint16_t uImm, 6239 IEMNATIVELABELTYPE enmLabelType, uint16_t uData = 0) 6240 { 6241 uint32_t const idxLabel = iemNativeLabelCreate(pReNative, enmLabelType, UINT32_MAX /*offWhere*/, uData); 6242 return iemNativeEmitTestIfGpr16NotEqualImmAndJmpToLabel(pReNative, off, iGprSrc, uImm, idxLabel); 6243 } 6244 6245 6246 /* if (Grp == Imm) Jmp idxLabel; */ 6247 6248 /** 6249 * Emits code that jumps to the given label if @a iGprSrc equals @a uImm. 6250 */ 6251 DECL_INLINE_THROW(uint32_t) 6252 iemNativeEmitTestIfGprEqualsImmAndJmpToLabel(PIEMRECOMPILERSTATE pReNative, uint32_t off, 6253 uint8_t iGprSrc, uint64_t uImm, uint32_t idxLabel) 6254 { 6255 off = iemNativeEmitCmpGprWithImm(pReNative, off, iGprSrc, uImm); 6256 off = iemNativeEmitJzToLabel(pReNative, off, idxLabel); 6257 return off; 6258 } 6259 6260 6261 /** 6262 * Emits code that jumps to a new label if @a iGprSrc equals from @a uImm. 6263 */ 6264 DECL_INLINE_THROW(uint32_t) 6265 iemNativeEmitTestIfGprEqualsImmAndJmpToNewLabel(PIEMRECOMPILERSTATE pReNative, uint32_t off, uint8_t iGprSrc, uint64_t uImm, 6266 IEMNATIVELABELTYPE enmLabelType, uint16_t uData = 0) 6267 { 6268 uint32_t const idxLabel = iemNativeLabelCreate(pReNative, enmLabelType, UINT32_MAX /*offWhere*/, uData); 6269 return iemNativeEmitTestIfGprEqualsImmAndJmpToLabel(pReNative, off, iGprSrc, uImm, idxLabel); 6270 } 6271 6272 6273 /** 6274 * Emits code that jumps to the given label if 32-bit @a iGprSrc equals @a uImm. 6275 */ 6276 DECL_INLINE_THROW(uint32_t) iemNativeEmitTestIfGpr32EqualsImmAndJmpToLabel(PIEMRECOMPILERSTATE pReNative, uint32_t off, 6277 uint8_t iGprSrc, uint32_t uImm, uint32_t idxLabel) 6278 { 6279 off = iemNativeEmitCmpGpr32WithImm(pReNative, off, iGprSrc, uImm); 6280 off = iemNativeEmitJzToLabel(pReNative, off, idxLabel); 6281 return off; 6282 } 6283 6284 6285 /** 6286 * Emits code that jumps to a new label if 32-bit @a iGprSrc equals @a uImm. 6287 */ 6288 DECL_INLINE_THROW(uint32_t) 6289 iemNativeEmitTestIfGpr32EqualsImmAndJmpToNewLabel(PIEMRECOMPILERSTATE pReNative, uint32_t off, uint8_t iGprSrc, uint32_t uImm, 6290 IEMNATIVELABELTYPE enmLabelType, uint16_t uData = 0) 6291 { 6292 uint32_t const idxLabel = iemNativeLabelCreate(pReNative, enmLabelType, UINT32_MAX /*offWhere*/, uData); 6293 return iemNativeEmitTestIfGpr32EqualsImmAndJmpToLabel(pReNative, off, iGprSrc, uImm, idxLabel); 6294 } 6295 6296 6297 /** 6298 * Emits code that jumps to the given label if 16-bit @a iGprSrc equals @a uImm. 6299 * 6300 * @note ARM64: Helper register is required (idxTmpReg). 6301 */ 6302 DECL_INLINE_THROW(uint32_t) iemNativeEmitTestIfGpr16EqualsImmAndJmpToLabel(PIEMRECOMPILERSTATE pReNative, uint32_t off, 6303 uint8_t iGprSrc, uint16_t uImm, uint32_t idxLabel, 6304 uint8_t idxTmpReg = UINT8_MAX) 6305 { 6306 off = iemNativeEmitCmpGpr16WithImm(pReNative, off, iGprSrc, uImm, idxTmpReg); 6307 off = iemNativeEmitJzToLabel(pReNative, off, idxLabel); 6308 return off; 6309 } 6310 6311 6312 /** 6313 * Emits code that jumps to a new label if 16-bit @a iGprSrc equals @a uImm. 6314 * 6315 * @note ARM64: Helper register is required (idxTmpReg). 6316 */ 6317 DECL_INLINE_THROW(uint32_t) 6318 iemNativeEmitTestIfGpr16EqualsImmAndJmpToNewLabel(PIEMRECOMPILERSTATE pReNative, uint32_t off, uint8_t iGprSrc, uint16_t uImm, 6319 IEMNATIVELABELTYPE enmLabelType, uint16_t uData = 0, 6320 uint8_t idxTmpReg = UINT8_MAX) 6321 { 6322 uint32_t const idxLabel = iemNativeLabelCreate(pReNative, enmLabelType, UINT32_MAX /*offWhere*/, uData); 6323 return iemNativeEmitTestIfGpr16EqualsImmAndJmpToLabel(pReNative, off, iGprSrc, uImm, idxLabel, idxTmpReg); 6133 6324 } 6134 6325
Note:
See TracChangeset
for help on using the changeset viewer.