Changeset 100821 in vbox for trunk/src/VBox
- Timestamp:
- Aug 8, 2023 3:09:43 AM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllMemRWTmplInline.cpp.h
r100820 r100821 53 53 * @note The @a iSegRef is not allowed to be UINT8_MAX! 54 54 */ 55 DECL INLINE(TMPL_MEM_TYPE)55 DECL_INLINE_THROW(TMPL_MEM_TYPE) 56 56 RT_CONCAT3(iemMemFetchData,TMPL_MEM_FN_SUFF,Jmp)(PVMCPUCC pVCpu, uint8_t iSegReg, RTGCPTR GCPtrMem) IEM_NOEXCEPT_MAY_LONGJMP 57 57 { … … 116 116 * Inlined flat addressing fetch function that longjumps on error. 117 117 */ 118 DECL INLINE(TMPL_MEM_TYPE)118 DECL_INLINE_THROW(TMPL_MEM_TYPE) 119 119 RT_CONCAT3(iemMemFlatFetchData,TMPL_MEM_FN_SUFF,Jmp)(PVMCPUCC pVCpu, RTGCPTR GCPtrMem) IEM_NOEXCEPT_MAY_LONGJMP 120 120 { … … 181 181 * @note The @a iSegRef is not allowed to be UINT8_MAX! 182 182 */ 183 DECL INLINE(void)183 DECL_INLINE_THROW(void) 184 184 RT_CONCAT3(iemMemStoreData,TMPL_MEM_FN_SUFF,Jmp)(PVMCPUCC pVCpu, uint8_t iSegReg, RTGCPTR GCPtrMem, 185 185 TMPL_MEM_TYPE uValue) IEM_NOEXCEPT_MAY_LONGJMP … … 246 246 * Inlined flat addressing store function that longjumps on error. 247 247 */ 248 DECL INLINE(void)248 DECL_INLINE_THROW(void) 249 249 RT_CONCAT3(iemMemFlatStoreData,TMPL_MEM_FN_SUFF,Jmp)(PVMCPUCC pVCpu, RTGCPTR GCPtrMem, 250 250 TMPL_MEM_TYPE uValue) IEM_NOEXCEPT_MAY_LONGJMP
Note:
See TracChangeset
for help on using the changeset viewer.