Changeset 104008 in vbox for trunk/src/VBox/ValidationKit/bootsectors
- Timestamp:
- Mar 22, 2024 11:53:44 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-instr-2-template.c
r104000 r104008 1098 1098 static const BS3CPUINSTR2CMNSHIFTTEST s_aTests32[] = { BS3CPUINSTR2CMNSHIFTTEST_ENTRIES_32(a_Ins) }; \ 1099 1099 uint16_t const fEflUndefIntel = bs3CpuInstr2_UndefEflByCpuVendor(BS3CPUVENDOR_INTEL, a_fEflUndef); \ 1100 uint16_t const fEflUndefAmd = bs3CpuInstr2_UndefEflByCpuVendor(BS3CPUVENDOR_AMD, a_fEflUndef); \ 1100 1101 bs3CpuInstr2_CommonShiftU8(bMode, s_aTests8, RT_ELEMENTS(s_aTests8), \ 1101 1102 g_aBs3CpuInstr2_ ## a_Ins ## _intel_TestDataU8, \ 1102 1103 g_cBs3CpuInstr2_ ## a_Ins ## _intel_TestDataU8, \ 1103 1104 fEflUndefIntel, a_fIntelIbProblem); \ 1105 bs3CpuInstr2_CommonShiftU8(bMode, s_aTests8, RT_ELEMENTS(s_aTests8), \ 1106 g_aBs3CpuInstr2_ ## a_Ins ## _amd_TestDataU8, \ 1107 g_cBs3CpuInstr2_ ## a_Ins ## _amd_TestDataU8, \ 1108 fEflUndefAmd, false); \ 1104 1109 bs3CpuInstr2_CommonShiftU16(bMode, s_aTests16, RT_ELEMENTS(s_aTests16), \ 1105 1110 g_aBs3CpuInstr2_ ## a_Ins ## _intel_TestDataU16, \ 1106 1111 g_cBs3CpuInstr2_ ## a_Ins ## _intel_TestDataU16, \ 1107 1112 fEflUndefIntel, a_fIntelIbProblem); \ 1113 bs3CpuInstr2_CommonShiftU16(bMode, s_aTests16, RT_ELEMENTS(s_aTests16), \ 1114 g_aBs3CpuInstr2_ ## a_Ins ## _amd_TestDataU16, \ 1115 g_cBs3CpuInstr2_ ## a_Ins ## _amd_TestDataU16, \ 1116 fEflUndefAmd, false); \ 1108 1117 bs3CpuInstr2_CommonShiftU32(bMode, s_aTests32, RT_ELEMENTS(s_aTests32), \ 1109 1118 g_aBs3CpuInstr2_ ## a_Ins ## _intel_TestDataU32, \ 1110 1119 g_cBs3CpuInstr2_ ## a_Ins ## _intel_TestDataU32, \ 1111 1120 fEflUndefIntel, a_fIntelIbProblem); \ 1121 bs3CpuInstr2_CommonShiftU32(bMode, s_aTests32, RT_ELEMENTS(s_aTests32), \ 1122 g_aBs3CpuInstr2_ ## a_Ins ## _amd_TestDataU32, \ 1123 g_cBs3CpuInstr2_ ## a_Ins ## _amd_TestDataU32, \ 1124 fEflUndefAmd, false); \ 1112 1125 } (void)0 1113 1126 #if ARCH_BITS == 64 … … 1119 1132 g_cBs3CpuInstr2_ ## a_Ins ## _intel_TestDataU64, \ 1120 1133 bs3CpuInstr2_UndefEflByCpuVendor(BS3CPUVENDOR_INTEL, a_fEflUndef), a_fIntelIbProblem); \ 1134 bs3CpuInstr2_CommonShiftU64(bMode, s_aTests64, RT_ELEMENTS(s_aTests64), \ 1135 g_aBs3CpuInstr2_ ## a_Ins ## _amd_TestDataU64, \ 1136 g_cBs3CpuInstr2_ ## a_Ins ## _amd_TestDataU64, \ 1137 bs3CpuInstr2_UndefEflByCpuVendor(BS3CPUVENDOR_AMD, a_fEflUndef), false); \ 1121 1138 } (void)0 1122 1139 #else
Note:
See TracChangeset
for help on using the changeset viewer.