Changeset 102451 in vbox
- Timestamp:
- Dec 4, 2023 1:28:57 PM (16 months ago)
- svn:sync-xref-src-repo-rev:
- 160594
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllInstPython.py
r102450 r102451 2883 2883 'IEM_MC_FETCH_GREG_U64': (McBlock.parseMcGeneric, False, True, ), 2884 2884 'IEM_MC_FETCH_GREG_U64_ZX_U64': (McBlock.parseMcGeneric, False, True, ), 2885 'IEM_MC_FETCH_GREG_U8': (McBlock.parseMcGeneric, False, True, ), 2886 'IEM_MC_FETCH_GREG_U8_SX_U16': (McBlock.parseMcGeneric, False, True, ), 2887 'IEM_MC_FETCH_GREG_U8_SX_U32': (McBlock.parseMcGeneric, False, True, ), 2888 'IEM_MC_FETCH_GREG_U8_SX_U64': (McBlock.parseMcGeneric, False, True, ), 2889 'IEM_MC_FETCH_GREG_U8_ZX_U16': (McBlock.parseMcGeneric, False, True, ), 2890 'IEM_MC_FETCH_GREG_U8_ZX_U32': (McBlock.parseMcGeneric, False, True, ), 2891 'IEM_MC_FETCH_GREG_U8_ZX_U64': (McBlock.parseMcGeneric, False, True, ), 2885 'IEM_MC_FETCH_GREG_U8': (McBlock.parseMcGeneric, False, True, ), # thrd var 2886 'IEM_MC_FETCH_GREG_U8_SX_U16': (McBlock.parseMcGeneric, False, True, ), # thrd var 2887 'IEM_MC_FETCH_GREG_U8_SX_U32': (McBlock.parseMcGeneric, False, True, ), # thrd var 2888 'IEM_MC_FETCH_GREG_U8_SX_U64': (McBlock.parseMcGeneric, False, True, ), # thrd var 2889 'IEM_MC_FETCH_GREG_U8_ZX_U16': (McBlock.parseMcGeneric, False, True, ), # thrd var 2890 'IEM_MC_FETCH_GREG_U8_ZX_U32': (McBlock.parseMcGeneric, False, True, ), # thrd var 2891 'IEM_MC_FETCH_GREG_U8_ZX_U64': (McBlock.parseMcGeneric, False, True, ), # thrd var 2892 2892 'IEM_MC_FETCH_GREG_PAIR_U32': (McBlock.parseMcGeneric, False, False, ), 2893 2893 'IEM_MC_FETCH_GREG_PAIR_U64': (McBlock.parseMcGeneric, False, False, ), … … 3136 3136 'IEM_MC_STORE_GREG_U64': (McBlock.parseMcGeneric, True, True, ), 3137 3137 'IEM_MC_STORE_GREG_U64_CONST': (McBlock.parseMcGeneric, True, True, ), 3138 'IEM_MC_STORE_GREG_U8': (McBlock.parseMcGeneric, True, False, ),3139 'IEM_MC_STORE_GREG_U8_CONST': (McBlock.parseMcGeneric, True, False, ),3138 'IEM_MC_STORE_GREG_U8': (McBlock.parseMcGeneric, True, True, ), # thrd var 3139 'IEM_MC_STORE_GREG_U8_CONST': (McBlock.parseMcGeneric, True, True, ), # thrd var 3140 3140 'IEM_MC_STORE_GREG_PAIR_U32': (McBlock.parseMcGeneric, True, False, ), 3141 3141 'IEM_MC_STORE_GREG_PAIR_U64': (McBlock.parseMcGeneric, True, False, ),
Note:
See TracChangeset
for help on using the changeset viewer.