| 
									
										
										
										
											2013-06-28 14:22:32 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * m68k specific CPU ABI and functions for linux-user | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2005-2007 CodeSourcery | 
					
						
							|  |  |  |  * Written by Paul Brook | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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 | 
					
						
							| 
									
										
										
										
											2019-01-29 14:43:58 +01:00
										 |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2013-06-28 14:22:32 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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 | 
					
						
							| 
									
										
										
										
											2019-01-29 14:43:58 +01:00
										 |  |  |  * Lesser General Public License for more details. | 
					
						
							| 
									
										
										
										
											2013-06-28 14:22:32 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-29 16:05:18 +02:00
										 |  |  | #ifndef M68K_TARGET_CPU_H
 | 
					
						
							|  |  |  | #define M68K_TARGET_CPU_H
 | 
					
						
							| 
									
										
										
										
											2013-06-28 14:22:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-06 12:33:15 +01:00
										 |  |  | static inline void cpu_clone_regs_child(CPUM68KState *env, target_ulong newsp, | 
					
						
							|  |  |  |                                         unsigned flags) | 
					
						
							| 
									
										
										
										
											2013-06-28 14:22:32 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     if (newsp) { | 
					
						
							|  |  |  |         env->aregs[7] = newsp; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     env->dregs[0] = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-06 12:33:16 +01:00
										 |  |  | static inline void cpu_clone_regs_parent(CPUM68KState *env, unsigned flags) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 18:44:55 +01:00
										 |  |  | static inline void cpu_set_tls(CPUM68KState *env, target_ulong newtls) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-03-22 18:23:25 -07:00
										 |  |  |     CPUState *cs = env_cpu(env); | 
					
						
							| 
									
										
										
										
											2013-08-26 18:14:44 +02:00
										 |  |  |     TaskState *ts = cs->opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-16 18:44:55 +01:00
										 |  |  |     ts->tp_value = newtls; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-06-28 14:22:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-29 21:42:00 +02:00
										 |  |  | static inline abi_ulong get_sp_from_cpustate(CPUM68KState *state) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return state->aregs[7]; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-06-28 14:22:32 +01:00
										 |  |  | #endif
 |