#! /usr/bin/perl

while ($ARGV[0] =~ /(\w+):(\w+)(:\w+)?/) {
	$bitname{$2} = $1;
	$power2{$2} = $3;
	push @prefix, $2;
	shift;
}

print "/* auto generated by bitname scirpt */\n";
while (<>) {
	chomp;
	s#/\*.*\*/##;
	s#\s+$##;
	if (/^(typedef\s+)?enum\s+(\w+)\s*{?\s*(\/\*.*\*\/)?$/) {
		$name = $2;
		print "\n#ifdef __KERNEL__\n";
		print "static const struct bitname ${name}_bitname[] = {\n";
		while (<>) {
			if (/^\s*([A-Za-z_]\w*)\s*(.)/) {
				$tmp = $id = $1;
				$n = $2;
				$tmp =~ s/^[^_]+_// || $tmp =~ s/^_[^_]{1,5}//;
				$tmp =~ tr/A-Z/a-z/;
				if ($n eq '=') {
					print "\t{ $id,\t\"", $tmp, "\" },\n";
				} else {
					print "\t{ 1<<$id,\t\"", $tmp, "\" },\n";
				}
			} elsif (/}/) {
				last;
			} elsif (/^#\s*if\s+0\s*$/) {	#just skip
				while (<>) {
					last if /^#\s*endif/;
				}
			}
		}
		print "\t{ 0,\tNULL }\n};\n";
		print "#endif /*__KERNEL*/\n";

	} elsif (/^#define\s+(\w+)\s+(0x[0-9a-fA-F]+|\d+|\([<>\w]+\))[uUlL]*/) {
		$id = $1;
		$v = $2;
		foreach $prefix (@prefix) {
			if ($id =~ /^$prefix/) {
				if ($power2{$prefix}) {
					$list{$prefix} .= $id . " ";
					last;
				}
				$v = eval $v;
				for ($i = 0; $i < 64; $i++) {
					if ($v == 1<<$i) {
						$list{$prefix} .= $id . " ";
						last;
					}
				}
				last;
			}
		}
	} elsif (/^(typedef\s+)?struct\s+(\w+)\s+{$/) {
		$name = $2;
		while (<>) {
			chomp;
			s#/\*.*\*/##;	# cut comment
			s#^\s+##;	# cut top white space
			s#\s+$##;	# cut last white space
			if (/^}/) {
				last;
			} elsif (/(\w+)\s*,\s*\*?(\w+);/) {
				print "#define _", $name, "_has_$1\n";
				print "#define _", $name, "_has_$2\n";
			} elsif (/(\w+)(:\d+|\[.+\])?;/) {
				print "#define _", $name, "_has_$1\n";
			} elsif (/^[\w\s*]+\(\*(\w+)\)\s*\(/) {
				#function
				print "#define _", $name, "_has_$1\n";
			} elsif (/^#\s*if\s+0\s*$/) {	#just skip
				while (<>) {
					last if /^#\s*endif/;
				}
			}
		}
	} elsif (/^#\s*if\s+0\s*$/) {	#just skip
		while (<>) {
			last if /^#\s*endif/;
		}
	}
}

print "\n#ifdef __KERNEL__\n";
foreach $prefix (@prefix) {
	if ($list{$prefix}) {
		print "\nstatic const struct bitname ", $bitname{$prefix}, "[] = {\n";
		foreach (split / /, $list{$prefix}) {
			printf("#ifdef $_\n");
			($tmp = substr($_, length $prefix)) =~ tr/A-Z/a-z/;
			if ($power2{$prefix}) {
				print "\t{ 1<<$_,\t\"$tmp\" },\n";
			} else {
				print "\t{ $_,\t\"$tmp\" },\n";
			}
			printf("#endif\n");
		}
		print "\t{ 0,\tNULL }\n};\n";
	}
}
print "#endif /*__KERNEL__*/\n";
