Changeset 53576 in vbox for trunk/src/VBox
- Timestamp:
- Dec 19, 2014 12:55:32 PM (10 years ago)
- Location:
- trunk/src/VBox/ValidationKit/utils/cpu
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/cpu/cidet-app.cpp
r53575 r53576 1023 1023 static int CidetAppCreate(PPCIDETAPP ppThis) 1024 1024 { 1025 *ppThis = NULL; 1026 1025 1027 PCIDETAPP pThis = (PCIDETAPP)RTMemAlloc(sizeof(*pThis)); 1026 1028 if (!pThis) … … 1094 1096 rc = RTTestIFailedRc(rc, "RTRandAdvCreate failed: %Rrc", rc); 1095 1097 RTMemFree(pThis); 1096 *ppThis = NULL;1097 1098 return rc; 1098 1099 } -
trunk/src/VBox/ValidationKit/utils/cpu/cidet-instr-1.cpp
r53548 r53576 45 45 { 46 46 "add Eb,Gb", cidetInOutAdd, 1, {0x00, 0, 0}, 0, 2, 47 { CIDET_OF_K_GPR | CIDET_OF_Z_BYTE | CIDET_OF_M_RM ,48 CIDET_OF_K_GPR | CIDET_OF_Z_BYTE | CIDET_OF_M_REG ,47 { CIDET_OF_K_GPR | CIDET_OF_Z_BYTE | CIDET_OF_M_RM | CIDET_OF_A_RW, 48 CIDET_OF_K_GPR | CIDET_OF_Z_BYTE | CIDET_OF_M_REG | CIDET_OF_A_R, 49 49 0, 0 }, CIDET_IF_MODRM 50 50 }, -
trunk/src/VBox/ValidationKit/utils/cpu/cidet.h
r53563 r53576 84 84 #define CIDET_OF_M_RM (CIDET_OF_M_RM_ONLY_R | CIDET_OF_M_RM_ONLY_M) 85 85 #define CIDET_OF_M_REG UINT32_C(0x00040000) 86 87 #define CIDET_OF_A_R UINT32_C(0x00080000) /**< Read access. */ 88 #define CIDET_OF_A_W UINT32_C(0x00100000) /**< Write access. */ 89 #define CIDET_OF_A_RW UINT32_C(0x00180000) /**< Read & write access. */ 86 90 87 91 /** The operand defaults to 64-bit width in 64-bit mode, making 32-bit width
Note:
See TracChangeset
for help on using the changeset viewer.