ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/uae_cpu/compiler/flags_x86.h
Revision: 1.4
Committed: 2005-01-30T21:42:16Z (19 years, 5 months ago) by gbeauche
Content type: text/plain
Branch: MAIN
CVS Tags: nigel-build-19, nigel-build-17
Changes since 1.3: +2 -2 lines
Log Message:
Happy New Year!

File Contents

# User Rev Content
1 gbeauche 1.2 /*
2     * compiler/flags_x86.h - Native flags definitions for IA-32
3     *
4     * Original 68040 JIT compiler for UAE, copyright 2000-2002 Bernd Meyer
5     *
6 gbeauche 1.4 * Adaptation for Basilisk II and improvements, copyright 2000-2005
7 gbeauche 1.2 * Gwenole Beauchesne
8     *
9 gbeauche 1.4 * Basilisk II (C) 1997-2005 Christian Bauer
10 gbeauche 1.2 *
11     * This program is free software; you can redistribute it and/or modify
12     * it under the terms of the GNU General Public License as published by
13     * the Free Software Foundation; either version 2 of the License, or
14     * (at your option) any later version.
15     *
16     * This program is distributed in the hope that it will be useful,
17     * but WITHOUT ANY WARRANTY; without even the implied warranty of
18     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19     * GNU General Public License for more details.
20     *
21     * You should have received a copy of the GNU General Public License
22     * along with this program; if not, write to the Free Software
23     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24     */
25    
26 gbeauche 1.1 #ifndef NATIVE_FLAGS_X86_H
27     #define NATIVE_FLAGS_X86_H
28    
29     /* Native integer code conditions */
30     enum {
31     NATIVE_CC_HI = 7,
32     NATIVE_CC_LS = 6,
33     NATIVE_CC_CC = 3,
34     NATIVE_CC_CS = 2,
35     NATIVE_CC_NE = 5,
36     NATIVE_CC_EQ = 4,
37     NATIVE_CC_VC = 11,
38     NATIVE_CC_VS = 10,
39     NATIVE_CC_PL = 9,
40     NATIVE_CC_MI = 8,
41     NATIVE_CC_GE = 13,
42     NATIVE_CC_LT = 12,
43     NATIVE_CC_GT = 15,
44     NATIVE_CC_LE = 14
45     };
46    
47     #endif /* NATIVE_FLAGS_X86_H */