Changeset 108196 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Feb 13, 2025 3:18:18 PM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167514
- Location:
- trunk/src/VBox/VMM/VMMAll/target-x86
- Files:
-
- 8 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/target-x86/IEMAllAImpl-x86-amd64.asm
r108195 r108196 1 1 ; $Id$ 2 2 ;; @file 3 ; IEM - Instruction Implementation in Assembly .3 ; IEM - Instruction Implementation in Assembly, x86 target, amd64 host. 4 4 ; 5 5 -
trunk/src/VBox/VMM/VMMAll/target-x86/IEMAllAImpl-x86-arm64.S
r108195 r108196 1 1 /* $Id$ */ 2 2 /** @file 3 * IEM - Instruction Implementation in Assembly, ARM64 variant.3 * IEM - Instruction Implementation in Assembly, x86 target, ARM64 host. 4 4 */ 5 5 -
trunk/src/VBox/VMM/VMMAll/target-x86/IEMAllAImplC-x86.cpp
r108195 r108196 1 1 /* $Id$ */ 2 2 /** @file 3 * IEM - Instruction Implementation in Assembly, portable C variant.3 * IEM - Instruction Implementation in Assembly, x86 target, portable C variant. 4 4 */ 5 5 -
trunk/src/VBox/VMM/VMMAll/target-x86/IEMAllCImpl-x86.cpp
r108195 r108196 1 1 /* $Id$ */ 2 2 /** @file 3 * IEM - Instruction Implementation in C/C++ (code include).3 * IEM - Instruction Implementation in C/C++, x86 target. 4 4 */ 5 5 … … 8351 8351 #define OP_SIZE 8 8352 8352 #define ADDR_SIZE 16 8353 #include "IEMAllCImplStrInstr .cpp.h"8353 #include "IEMAllCImplStrInstr-x86.cpp.h" 8354 8354 #define OP_SIZE 8 8355 8355 #define ADDR_SIZE 32 8356 #include "IEMAllCImplStrInstr .cpp.h"8356 #include "IEMAllCImplStrInstr-x86.cpp.h" 8357 8357 #define OP_SIZE 8 8358 8358 #define ADDR_SIZE 64 8359 #include "IEMAllCImplStrInstr .cpp.h"8359 #include "IEMAllCImplStrInstr-x86.cpp.h" 8360 8360 8361 8361 #define OP_SIZE 16 8362 8362 #define ADDR_SIZE 16 8363 #include "IEMAllCImplStrInstr .cpp.h"8363 #include "IEMAllCImplStrInstr-x86.cpp.h" 8364 8364 #define OP_SIZE 16 8365 8365 #define ADDR_SIZE 32 8366 #include "IEMAllCImplStrInstr .cpp.h"8366 #include "IEMAllCImplStrInstr-x86.cpp.h" 8367 8367 #define OP_SIZE 16 8368 8368 #define ADDR_SIZE 64 8369 #include "IEMAllCImplStrInstr .cpp.h"8369 #include "IEMAllCImplStrInstr-x86.cpp.h" 8370 8370 8371 8371 #define OP_SIZE 32 8372 8372 #define ADDR_SIZE 16 8373 #include "IEMAllCImplStrInstr .cpp.h"8373 #include "IEMAllCImplStrInstr-x86.cpp.h" 8374 8374 #define OP_SIZE 32 8375 8375 #define ADDR_SIZE 32 8376 #include "IEMAllCImplStrInstr .cpp.h"8376 #include "IEMAllCImplStrInstr-x86.cpp.h" 8377 8377 #define OP_SIZE 32 8378 8378 #define ADDR_SIZE 64 8379 #include "IEMAllCImplStrInstr .cpp.h"8379 #include "IEMAllCImplStrInstr-x86.cpp.h" 8380 8380 8381 8381 #define OP_SIZE 64 8382 8382 #define ADDR_SIZE 32 8383 #include "IEMAllCImplStrInstr .cpp.h"8383 #include "IEMAllCImplStrInstr-x86.cpp.h" 8384 8384 #define OP_SIZE 64 8385 8385 #define ADDR_SIZE 64 8386 #include "IEMAllCImplStrInstr .cpp.h"8386 #include "IEMAllCImplStrInstr-x86.cpp.h" 8387 8387 8388 8388 -
trunk/src/VBox/VMM/VMMAll/target-x86/IEMAllCImplStrInstr-x86.cpp.h
r108195 r108196 1 1 /* $Id$ */ 2 2 /** @file 3 * IEM - String Instruction Implementation Code Template .3 * IEM - String Instruction Implementation Code Template, x86 target. 4 4 */ 5 5 -
trunk/src/VBox/VMM/VMMAll/target-x86/IEMAllCImplSvmInstr-x86.cpp
r108195 r108196 1 1 /* $Id$ */ 2 2 /** @file 3 * IEM - AMD-V (Secure Virtual Machine) instruction implementation .3 * IEM - AMD-V (Secure Virtual Machine) instruction implementation (x86 target). 4 4 */ 5 5 -
trunk/src/VBox/VMM/VMMAll/target-x86/IEMAllCImplVmxInstr-x86.cpp
r108195 r108196 1 1 /* $Id$ */ 2 2 /** @file 3 * IEM - VT-x instruction implementation .3 * IEM - VT-x instruction implementation (x86 target). 4 4 */ 5 5 -
trunk/src/VBox/VMM/VMMAll/target-x86/IEMAllDbg-x86.cpp
r108195 r108196 1 1 /* $Id$ */ 2 2 /** @file 3 * IEM - Debug and Logging.3 * IEM - Syscall Logging, x86 targets. 4 4 */ 5 5
Note:
See TracChangeset
for help on using the changeset viewer.