mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	Leading underscores are ill-advised because such identifiers are reserved. Trailing underscores are merely ugly. Strip both. Our header guards commonly end in _H. Normalize the exceptions. Done with scripts/clean-header-guards.pl. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190315145123.28030-7-armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> [Changes to slirp/ dropped, as we're about to spin it off]
		
			
				
	
	
		
			82 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////
 | |
| //
 | |
| //  Copyright (C) 2001-2012  The Bochs Project
 | |
| //  Copyright (C) 2017 Google Inc.
 | |
| //
 | |
| //  This library is free software; you can redistribute it and/or
 | |
| //  modify it under the terms of the GNU Lesser General Public
 | |
| //  License as published by the Free Software Foundation; either
 | |
| //  version 2 of the License, or (at your option) any later version.
 | |
| //
 | |
| //  This library is distributed in the hope that it will be useful,
 | |
| //  but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
| //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | |
| //  Lesser General Public License for more details.
 | |
| //
 | |
| //  You should have received a copy of the GNU Lesser General Public
 | |
| //  License along with this library; if not, write to the Free Software
 | |
| //  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA B 02110-1301 USA
 | |
| /////////////////////////////////////////////////////////////////////////
 | |
| /*
 | |
|  * x86 eflags functions
 | |
|  */
 | |
| 
 | |
| #ifndef X86_FLAGS_H
 | |
| #define X86_FLAGS_H
 | |
| 
 | |
| #include "cpu.h"
 | |
| void lflags_to_rflags(CPUX86State *env);
 | |
| void rflags_to_lflags(CPUX86State *env);
 | |
| 
 | |
| bool get_PF(CPUX86State *env);
 | |
| void set_PF(CPUX86State *env, bool val);
 | |
| bool get_CF(CPUX86State *env);
 | |
| void set_CF(CPUX86State *env, bool val);
 | |
| bool get_AF(CPUX86State *env);
 | |
| void set_AF(CPUX86State *env, bool val);
 | |
| bool get_ZF(CPUX86State *env);
 | |
| void set_ZF(CPUX86State *env, bool val);
 | |
| bool get_SF(CPUX86State *env);
 | |
| void set_SF(CPUX86State *env, bool val);
 | |
| bool get_OF(CPUX86State *env);
 | |
| void set_OF(CPUX86State *env, bool val);
 | |
| 
 | |
| void SET_FLAGS_OxxxxC(CPUX86State *env, uint32_t new_of, uint32_t new_cf);
 | |
| 
 | |
| void SET_FLAGS_OSZAPC_SUB32(CPUX86State *env, uint32_t v1, uint32_t v2,
 | |
|                             uint32_t diff);
 | |
| void SET_FLAGS_OSZAPC_SUB16(CPUX86State *env, uint16_t v1, uint16_t v2,
 | |
|                             uint16_t diff);
 | |
| void SET_FLAGS_OSZAPC_SUB8(CPUX86State *env, uint8_t v1, uint8_t v2,
 | |
|                            uint8_t diff);
 | |
| 
 | |
| void SET_FLAGS_OSZAPC_ADD32(CPUX86State *env, uint32_t v1, uint32_t v2,
 | |
|                             uint32_t diff);
 | |
| void SET_FLAGS_OSZAPC_ADD16(CPUX86State *env, uint16_t v1, uint16_t v2,
 | |
|                             uint16_t diff);
 | |
| void SET_FLAGS_OSZAPC_ADD8(CPUX86State *env, uint8_t v1, uint8_t v2,
 | |
|                            uint8_t diff);
 | |
| 
 | |
| void SET_FLAGS_OSZAP_SUB32(CPUX86State *env, uint32_t v1, uint32_t v2,
 | |
|                            uint32_t diff);
 | |
| void SET_FLAGS_OSZAP_SUB16(CPUX86State *env, uint16_t v1, uint16_t v2,
 | |
|                            uint16_t diff);
 | |
| void SET_FLAGS_OSZAP_SUB8(CPUX86State *env, uint8_t v1, uint8_t v2,
 | |
|                           uint8_t diff);
 | |
| 
 | |
| void SET_FLAGS_OSZAP_ADD32(CPUX86State *env, uint32_t v1, uint32_t v2,
 | |
|                            uint32_t diff);
 | |
| void SET_FLAGS_OSZAP_ADD16(CPUX86State *env, uint16_t v1, uint16_t v2,
 | |
|                            uint16_t diff);
 | |
| void SET_FLAGS_OSZAP_ADD8(CPUX86State *env, uint8_t v1, uint8_t v2,
 | |
|                           uint8_t diff);
 | |
| 
 | |
| void SET_FLAGS_OSZAPC_LOGIC32(CPUX86State *env, uint32_t v1, uint32_t v2,
 | |
|                               uint32_t diff);
 | |
| void SET_FLAGS_OSZAPC_LOGIC16(CPUX86State *env, uint16_t v1, uint16_t v2,
 | |
|                               uint16_t diff);
 | |
| void SET_FLAGS_OSZAPC_LOGIC8(CPUX86State *env, uint8_t v1, uint8_t v2,
 | |
|                              uint8_t diff);
 | |
| 
 | |
| #endif /* X86_FLAGS_H */
 |