Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
check_asm.sh
Package: linux-2.4.20.tar.gz [view]
Upload User: jlfgdled
Upload Date: 2013-04-10
Package Size: 33168k
Code Size: 1k
Category:
Linux-Unix program
Development Platform:
Unix_Linux
- #!/bin/sh
- case $1 in
- -printf)
- sed -n -e '/^#/d;/struct[ ]*'$2'_struct[ ]*{/,/};/p' < $3 | sed '/struct[ ]*'$2'_struct[ ]*{/d;/:[0-9]*[ ]*;/d;/^[ ]*$/d;/};/d;s/^[ ]*//;s/volatile[ ]*//;s/(unsigned|signed|struct)[ ]*//;s/([|__attribute__).*;[ ]*$//;s/(*//;s/)(.*)//;s/;[ ]*$//;s/^[^ ]*[ ]*//;s/,/
- /g' | sed 's/^[ *]*//;s/[ ]*$//;s/^.*$/printf ("#define AOFF_'$2'_ 0x%08x\n", check_asm_data[i++]); printf("#define ASIZ_'$2'_ 0x%08x\n", check_asm_data[i++]);/' >> $4
- echo "printf ("#define ASIZ_$2\t0x%08x\n", check_asm_data[i++]);" >> $4
- ;;
- -data)
- sed -n -e '/^#/d;/struct[ ]*'$2'_struct[ ]*{/,/};/p' < $3 | sed '/struct[ ]*'$2'_struct[ ]*{/d;/:[0-9]*[ ]*;/d;/^[ ]*$/d;/};/d;s/^[ ]*//;s/volatile[ ]*//;s/(unsigned|signed|struct)[ ]*//;s/([|__attribute__).*;[ ]*$//;s/(*//;s/)(.*)//;s/;[ ]*$//;s/^[^ ]*[ ]*//;s/,/
- /g' | sed 's/^[ *]*//;s/[ ]*$//;s/^.*$/ ((char *)&((struct '$2'_struct *)0)->) - ((char *)((struct '$2'_struct *)0)), sizeof(((struct '$2'_struct *)0)->),/' >> $4
- echo " sizeof(struct $2_struct)," >> $4
- ;;
- -ints)
- sed -n -e '/check_asm_data:/,/.size/p' <$2 | sed -e 's/check_asm_data://' -e 's/.size.*//' -e 's/.ident.*//' -e 's/.global.*//' -e 's/.long[ ]([0-9]*)/1,/' >>$3
- ;;
- *)
- exit 1
- ;;
- esac
- exit 0