svn commit: trunk/busybox/coreutils

Bernhard Fischer rep.dot.nop at gmail.com
Thu Jan 18 08:14:00 UTC 2007


On Wed, Jan 17, 2007 at 04:53:35PM -0800, vda at busybox.net wrote:
>Author: vda
>Date: 2007-01-17 16:53:35 -0800 (Wed, 17 Jan 2007)
>New Revision: 17359
>
>Log:
>stop using global variable needlessly

define needlessly..
On i386, i have:

$ size coreutils/stty.o*
   text    data     bss     dec     hex filename
   6184       8      14    6206    183e coreutils/stty.o.r17358
   6213       8      14    6235    185b coreutils/stty.o.r17359

What figures do you see? If the patch below makes it really smaller,
then i'm interrested to hear what toolchain and target you're using..

thanks,
>
>Modified:
>   trunk/busybox/coreutils/stty.c
>
>
>Changeset:
>Modified: trunk/busybox/coreutils/stty.c
>===================================================================
>--- trunk/busybox/coreutils/stty.c	2007-01-18 00:16:06 UTC (rev 17358)
>+++ trunk/busybox/coreutils/stty.c	2007-01-18 00:53:35 UTC (rev 17359)
>@@ -901,19 +901,21 @@
> 	mode->c_cc[info->offset] = value;
> }
> 
>-#define STTY_require_set_attr	(1<<0)
>-#define STTY_speed_was_set		(1<<1)
>-#define STTY_verbose_output		(1<<2)
>-#define STTY_recoverable_output	(1<<3)
>-#define STTY_noargs				(1<<4)
>+#define STTY_require_set_attr   (1<<0)
>+#define STTY_speed_was_set      (1<<1)
>+#define STTY_verbose_output     (1<<2)
>+#define STTY_recoverable_output (1<<3)
>+#define STTY_noargs             (1<<4)
> int stty_main(int argc, char **argv)
> {
> 	struct termios mode;
> 	void (*output_func)(const struct termios *, const int);
> 	const char *file_name = NULL;
>+	int display_all = 0;
>+	int stty_state;
> 	int k;
>-	int display_all = 0;
>-	option_mask32 = STTY_noargs;
>+
>+	stty_state = STTY_noargs;
> 	output_func = do_display;
> 
> 	/* First pass: only parse/verify command line params */
>@@ -931,7 +933,7 @@
> 			if (mp) {
> 				if (!(mp->flags & REV))
> 					goto invalid_argument;
>-				option_mask32 &= ~STTY_noargs;
>+				stty_state &= ~STTY_noargs;
> 				continue;
> 			}
> 			/* It is an option - parse it */
>@@ -939,12 +941,12 @@
> 			while (arg[++i]) {
> 				switch (arg[i]) {
> 				case 'a':
>-					option_mask32 |= STTY_verbose_output;
>+					stty_state |= STTY_verbose_output;
> 					output_func = do_display;
> 					display_all = 1;
> 					break;
> 				case 'g':
>-					option_mask32 |= STTY_recoverable_output;
>+					stty_state |= STTY_recoverable_output;
> 					output_func = display_recoverable;
> 					break;
> 				case 'F':
>@@ -971,7 +973,7 @@
> 
> 		mp = find_mode(arg);
> 		if (mp) {
>-			option_mask32 &= ~STTY_noargs;
>+			stty_state &= ~STTY_noargs;
> 			continue;
> 		}
> 
>@@ -981,7 +983,7 @@
> 				bb_error_msg_and_die(bb_msg_requires_arg, arg);
> 			/* called for the side effect of xfunc death only */
> 			set_control_char_or_die(cp, argnext, &mode);
>-			option_mask32 &= ~STTY_noargs;
>+			stty_state &= ~STTY_noargs;
> 			++k;
> 			continue;
> 		}
>@@ -1024,16 +1026,16 @@
> invalid_argument:
> 			bb_error_msg_and_die("invalid argument '%s'", arg);
> 		}
>-		option_mask32 &= ~STTY_noargs;
>+		stty_state &= ~STTY_noargs;
> 	}
> 
> 	/* Specifying both -a and -g is an error */
>-	if ((option_mask32 & (STTY_verbose_output | STTY_recoverable_output)) ==
>+	if ((stty_state & (STTY_verbose_output | STTY_recoverable_output)) ==
> 		(STTY_verbose_output | STTY_recoverable_output))
> 		bb_error_msg_and_die("verbose and stty-readable output styles are mutually exclusive");
> 	/* Specifying -a or -g with non-options is an error */
>-	if (!(option_mask32 & STTY_noargs) &&
>-		(option_mask32 & (STTY_verbose_output | STTY_recoverable_output)))
>+	if (!(stty_state & STTY_noargs) &&
>+		(stty_state & (STTY_verbose_output | STTY_recoverable_output)))
> 		bb_error_msg_and_die("modes may not be set when specifying an output style");
> 
> 	/* Now it is safe to start doing things */
>@@ -1057,7 +1059,7 @@
> 	if (tcgetattr(STDIN_FILENO, &mode))
> 		perror_on_device_and_die("%s");
> 
>-	if (option_mask32 & (STTY_verbose_output | STTY_recoverable_output | STTY_noargs)) {
>+	if (stty_state & (STTY_verbose_output | STTY_recoverable_output | STTY_noargs)) {
> 		get_terminal_width_height(STDOUT_FILENO, &max_col, NULL);
> 		output_func(&mode, display_all);
> 		return EXIT_SUCCESS;
>@@ -1076,7 +1078,7 @@
> 			mp = find_mode(arg+1);
> 			if (mp) {
> 				set_mode(mp, 1 /* reversed */, &mode);
>-				option_mask32 |= STTY_require_set_attr;
>+				stty_state |= STTY_require_set_attr;
> 			}
> 			/* It is an option - already parsed. Skip it */
> 			continue;
>@@ -1085,7 +1087,7 @@
> 		mp = find_mode(arg);
> 		if (mp) {
> 			set_mode(mp, 0 /* non-reversed */, &mode);
>-			option_mask32 |= STTY_require_set_attr;
>+			stty_state |= STTY_require_set_attr;
> 			continue;
> 		}
> 
>@@ -1093,7 +1095,7 @@
> 		if (cp) {
> 			++k;
> 			set_control_char_or_die(cp, argnext, &mode);
>-			option_mask32 |= STTY_require_set_attr;
>+			stty_state |= STTY_require_set_attr;
> 			continue;
> 		}
> 
>@@ -1106,7 +1108,7 @@
> #ifdef HAVE_C_LINE
> 		case param_line:
> 			mode.c_line = xatoul_sfx(argnext, stty_suffixes);
>-			option_mask32 |= STTY_require_set_attr;
>+			stty_state |= STTY_require_set_attr;
> 			break;
> #endif
> #ifdef TIOCGWINSZ
>@@ -1125,24 +1127,24 @@
> 			break;
> 		case param_ispeed:
> 			set_speed_or_die(input_speed, argnext, &mode);
>-			option_mask32 |= (STTY_require_set_attr | STTY_speed_was_set);
>+			stty_state |= (STTY_require_set_attr | STTY_speed_was_set);
> 			break;
> 		case param_ospeed:
> 			set_speed_or_die(output_speed, argnext, &mode);
>-			option_mask32 |= (STTY_require_set_attr | STTY_speed_was_set);
>+			stty_state |= (STTY_require_set_attr | STTY_speed_was_set);
> 			break;
> 		default:
> 			if (recover_mode(arg, &mode) == 1)
>-				option_mask32 |= STTY_require_set_attr;
>+				stty_state |= STTY_require_set_attr;
> 			else /* true: if (tty_value_to_baud(xatou(arg)) != (speed_t) -1) */{
> 				set_speed_or_die(both_speeds, arg, &mode);
>-				option_mask32 |= (STTY_require_set_attr | STTY_speed_was_set);
>+				stty_state |= (STTY_require_set_attr | STTY_speed_was_set);
> 			} /* else - impossible (caught in the first pass):
> 				bb_error_msg_and_die("invalid argument '%s'", arg); */
> 		}
> 	}
> 
>-	if (option_mask32 & STTY_require_set_attr) {
>+	if (stty_state & STTY_require_set_attr) {
> 		struct termios new_mode;
> 
> 		if (tcsetattr(STDIN_FILENO, TCSADRAIN, &mode))
>@@ -1173,8 +1175,8 @@
> 			   error for a true failure to set the baud rate */
> 
> 			new_mode.c_cflag &= (~CIBAUD);
>-			if (option_mask32 & STTY_speed_was_set ||
>-				memcmp(&mode, &new_mode, sizeof(mode)) != 0)
>+			if ((stty_state & STTY_speed_was_set)
>+			 || memcmp(&mode, &new_mode, sizeof(mode)) != 0)
> #endif
> 				perror_on_device_and_die("%s: cannot perform all requested operations");
> 		}
>
>_______________________________________________
>busybox-cvs mailing list
>busybox-cvs at busybox.net
>http://busybox.net/cgi-bin/mailman/listinfo/busybox-cvs
>



More information about the busybox mailing list