mirror of https://gitlab.com/qemu-project/qemu
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			33 lines
		
	
	
		
			881 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			33 lines
		
	
	
		
			881 B
		
	
	
	
		
			Bash
		
	
| #!/bin/sh
 | |
| # SPDX-License-Identifier: GPL-2.0-only
 | |
| 
 | |
| in="$1"
 | |
| out="$2"
 | |
| my_abis=`echo "($3)" | tr ',' '|'`
 | |
| prefix="$4"
 | |
| offset="$5"
 | |
| 
 | |
| fileguard=LINUX_USER_M68K_`basename "$out" | sed \
 | |
|     -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' \
 | |
|     -e 's/[^A-Z0-9_]/_/g' -e 's/__/_/g'`
 | |
| grep -E "^[0-9A-Fa-fXx]+[[:space:]]+${my_abis}" "$in" | sort -n | (
 | |
|     printf "#ifndef %s\n" "${fileguard}"
 | |
|     printf "#define %s\n" "${fileguard}"
 | |
|     printf "\n"
 | |
| 
 | |
|     nxt=0
 | |
|     while read nr abi name entry ; do
 | |
|         if [ -z "$offset" ]; then
 | |
|             printf "#define TARGET_NR_%s%s\t%s\n" \
 | |
|                 "${prefix}" "${name}" "${nr}"
 | |
|         else
 | |
|             printf "#define TARGET_NR_%s%s\t(%s + %s)\n" \
 | |
|                 "${prefix}" "${name}" "${offset}" "${nr}"
 | |
|         fi
 | |
|         nxt=$((nr+1))
 | |
|     done
 | |
| 
 | |
|     printf "\n"
 | |
|     printf "#endif /* %s */\n" "${fileguard}"
 | |
| ) > "$out"
 |