ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/uae_cpu/spcflags.h
(Generate patch)

Comparing BasiliskII/src/uae_cpu/spcflags.h (file contents):
Revision 1.2 by gbeauche, 2002-09-01T16:32:02Z vs.
Revision 1.4 by gbeauche, 2005-06-06T18:49:51Z

# Line 18 | Line 18 | enum {
18          SPCFLAG_TRACE                           = 0x08,
19          SPCFLAG_DOTRACE                         = 0x10,
20          SPCFLAG_DOINT                           = 0x20,
21 + #if USE_JIT
22 +        SPCFLAG_JIT_END_COMPILE         = 0x40,
23 +        SPCFLAG_JIT_EXEC_RETURN         = 0x80,
24 + #else
25          SPCFLAG_JIT_END_COMPILE         = 0,
26          SPCFLAG_JIT_EXEC_RETURN         = 0,
27 + #endif
28 +        
29          SPCFLAG_ALL                                     = SPCFLAG_STOP
30                                                                  | SPCFLAG_INT
31                                                                  | SPCFLAG_BRK
# Line 27 | Line 33 | enum {
33                                                                  | SPCFLAG_DOTRACE
34                                                                  | SPCFLAG_DOINT
35                                                                  | SPCFLAG_JIT_END_COMPILE
36 <                                                                | SPCFLAG_JIT_EXEC_RETURN,
36 >                                                                | SPCFLAG_JIT_EXEC_RETURN
37 >                                                                ,
38 >        
39          SPCFLAG_ALL_BUT_EXEC_RETURN     = SPCFLAG_ALL & ~SPCFLAG_JIT_EXEC_RETURN
40   };
41  
# Line 49 | Line 57 | enum {
57          regs.spcflags &= ~(m); \
58   } while (0)
59  
60 < #elif defined(__i386__) && defined(X86_ASSEMBLY)
60 > #elif (defined(__i386__) || defined(__x86_64__)) && defined(X86_ASSEMBLY)
61  
62   #define HAVE_HARDWARE_LOCKS
63  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines