Last change
on this file since 39333 was 37955, checked in by vboxsync, 13 years ago |
Moved VBox/x86.h/mac to iprt/x86.h/mac.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.4 KB
|
Line | |
---|
1 | /* $Id: IEMAllAImplC.cpp 37955 2011-07-14 12:23:02Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IEM - Instruction Implementation in Assembly, portable C variant.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2011 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | /*******************************************************************************
|
---|
19 | * Header Files *
|
---|
20 | *******************************************************************************/
|
---|
21 | #include "IEMInternal.h"
|
---|
22 | #include <VBox/vmm/vm.h>
|
---|
23 | #include <iprt/x86.h>
|
---|
24 |
|
---|
25 | #if 0
|
---|
26 |
|
---|
27 |
|
---|
28 | IEM_DECL_IMPL_DEF(void, iemImpl_add_u8,(uint8_t *pu8Dst, uint8_t u8Src, uint32_t *pEFlags))
|
---|
29 | {
|
---|
30 | /* incorrect sketch (testing fastcall + gcc) */
|
---|
31 | uint8_t u8Dst = *pu8Dst;
|
---|
32 | uint8_t u8Res = u8Dst + u8Src;
|
---|
33 | *pu8Dst = u8Res;
|
---|
34 |
|
---|
35 | if (u8Res)
|
---|
36 | *pEFlags &= X86_EFL_ZF;
|
---|
37 | else
|
---|
38 | *pEFlags |= X86_EFL_ZF;
|
---|
39 | }
|
---|
40 |
|
---|
41 | IEM_DECL_IMPL_DEF(void, iemImpl_add_u8_locked,(uint8_t *pu8Dst, uint8_t u8Src, uint32_t *pEFlags))
|
---|
42 | {
|
---|
43 | iemImpl_add_u8(pu8Dst, u8Src, pEFlags);
|
---|
44 | }
|
---|
45 |
|
---|
46 |
|
---|
47 | #endif
|
---|
48 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.