mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-17 13:58:46 +00:00
vc: switch state to bool
The code currently uses bitfields to store true-false values. Switch all of that to bools. Apart from the cleanup, it saves 20B of code as many shifts, ANDs, and ORs became simple movzb's. Signed-off-by: Jiri Slaby <jslaby@suse.cz> Link: https://lore.kernel.org/r/20200615074910.19267-3-jslaby@suse.cz Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b84ae3dc70
commit
77bc14f273
@ -706,8 +706,8 @@ void update_region(struct vc_data *vc, unsigned long start, int count)
|
|||||||
/* Structure of attributes is hardware-dependent */
|
/* Structure of attributes is hardware-dependent */
|
||||||
|
|
||||||
static u8 build_attr(struct vc_data *vc, u8 _color,
|
static u8 build_attr(struct vc_data *vc, u8 _color,
|
||||||
enum vc_intensity _intensity, u8 _blink, u8 _underline,
|
enum vc_intensity _intensity, bool _blink, bool _underline,
|
||||||
u8 _reverse, u8 _italic)
|
bool _reverse, bool _italic)
|
||||||
{
|
{
|
||||||
if (vc->vc_sw->con_build_attr)
|
if (vc->vc_sw->con_build_attr)
|
||||||
return vc->vc_sw->con_build_attr(vc, _color, _intensity,
|
return vc->vc_sw->con_build_attr(vc, _color, _intensity,
|
||||||
@ -755,8 +755,8 @@ static void update_attr(struct vc_data *vc)
|
|||||||
vc->state.blink, vc->state.underline,
|
vc->state.blink, vc->state.underline,
|
||||||
vc->state.reverse ^ vc->vc_decscnm, vc->state.italic);
|
vc->state.reverse ^ vc->vc_decscnm, vc->state.italic);
|
||||||
vc->vc_video_erase_char = ' ' | (build_attr(vc, vc->state.color,
|
vc->vc_video_erase_char = ' ' | (build_attr(vc, vc->state.color,
|
||||||
VCI_NORMAL, vc->state.blink, 0, vc->vc_decscnm,
|
VCI_NORMAL, vc->state.blink, false,
|
||||||
0) << 8);
|
vc->vc_decscnm, false) << 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Note: inverting the screen twice should revert to the original state */
|
/* Note: inverting the screen twice should revert to the original state */
|
||||||
@ -1614,10 +1614,10 @@ static void csi_X(struct vc_data *vc, int vpar) /* erase the following vpar posi
|
|||||||
static void default_attr(struct vc_data *vc)
|
static void default_attr(struct vc_data *vc)
|
||||||
{
|
{
|
||||||
vc->state.intensity = VCI_NORMAL;
|
vc->state.intensity = VCI_NORMAL;
|
||||||
vc->state.italic = 0;
|
vc->state.italic = false;
|
||||||
vc->state.underline = 0;
|
vc->state.underline = false;
|
||||||
vc->state.reverse = 0;
|
vc->state.reverse = false;
|
||||||
vc->state.blink = 0;
|
vc->state.blink = false;
|
||||||
vc->state.color = vc->vc_def_color;
|
vc->state.color = vc->vc_def_color;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1723,7 +1723,7 @@ static void csi_m(struct vc_data *vc)
|
|||||||
vc->state.intensity = VCI_HALF_BRIGHT;
|
vc->state.intensity = VCI_HALF_BRIGHT;
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
vc->state.italic = 1;
|
vc->state.italic = true;
|
||||||
break;
|
break;
|
||||||
case 21:
|
case 21:
|
||||||
/*
|
/*
|
||||||
@ -1731,13 +1731,13 @@ static void csi_m(struct vc_data *vc)
|
|||||||
* convert it to a single underline.
|
* convert it to a single underline.
|
||||||
*/
|
*/
|
||||||
case 4:
|
case 4:
|
||||||
vc->state.underline = 1;
|
vc->state.underline = true;
|
||||||
break;
|
break;
|
||||||
case 5:
|
case 5:
|
||||||
vc->state.blink = 1;
|
vc->state.blink = true;
|
||||||
break;
|
break;
|
||||||
case 7:
|
case 7:
|
||||||
vc->state.reverse = 1;
|
vc->state.reverse = true;
|
||||||
break;
|
break;
|
||||||
case 10: /* ANSI X3.64-1979 (SCO-ish?)
|
case 10: /* ANSI X3.64-1979 (SCO-ish?)
|
||||||
* Select primary font, don't display control chars if
|
* Select primary font, don't display control chars if
|
||||||
@ -1769,16 +1769,16 @@ static void csi_m(struct vc_data *vc)
|
|||||||
vc->state.intensity = VCI_NORMAL;
|
vc->state.intensity = VCI_NORMAL;
|
||||||
break;
|
break;
|
||||||
case 23:
|
case 23:
|
||||||
vc->state.italic = 0;
|
vc->state.italic = false;
|
||||||
break;
|
break;
|
||||||
case 24:
|
case 24:
|
||||||
vc->state.underline = 0;
|
vc->state.underline = false;
|
||||||
break;
|
break;
|
||||||
case 25:
|
case 25:
|
||||||
vc->state.blink = 0;
|
vc->state.blink = false;
|
||||||
break;
|
break;
|
||||||
case 27:
|
case 27:
|
||||||
vc->state.reverse = 0;
|
vc->state.reverse = false;
|
||||||
break;
|
break;
|
||||||
case 38:
|
case 38:
|
||||||
i = vc_t416_color(vc, i, rgb_foreground);
|
i = vc_t416_color(vc, i, rgb_foreground);
|
||||||
|
@ -303,7 +303,8 @@ sisusbcon_deinit(struct vc_data *c)
|
|||||||
/* interface routine */
|
/* interface routine */
|
||||||
static u8
|
static u8
|
||||||
sisusbcon_build_attr(struct vc_data *c, u8 color, enum vc_intensity intensity,
|
sisusbcon_build_attr(struct vc_data *c, u8 color, enum vc_intensity intensity,
|
||||||
u8 blink, u8 underline, u8 reverse, u8 unused)
|
bool blink, bool underline, bool reverse,
|
||||||
|
bool unused)
|
||||||
{
|
{
|
||||||
u8 attr = color;
|
u8 attr = color;
|
||||||
|
|
||||||
|
@ -396,7 +396,8 @@ static inline u16 mda_convert_attr(u16 ch)
|
|||||||
|
|
||||||
static u8 mdacon_build_attr(struct vc_data *c, u8 color,
|
static u8 mdacon_build_attr(struct vc_data *c, u8 color,
|
||||||
enum vc_intensity intensity,
|
enum vc_intensity intensity,
|
||||||
u8 blink, u8 underline, u8 reverse, u8 italic)
|
bool blink, bool underline, bool reverse,
|
||||||
|
bool italic)
|
||||||
{
|
{
|
||||||
/* The attribute is just a bit vector:
|
/* The attribute is just a bit vector:
|
||||||
*
|
*
|
||||||
@ -407,10 +408,10 @@ static u8 mdacon_build_attr(struct vc_data *c, u8 color,
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
return (intensity & VCI_MASK) |
|
return (intensity & VCI_MASK) |
|
||||||
((underline & 1) << 2) |
|
(underline << 2) |
|
||||||
((reverse & 1) << 3) |
|
(reverse << 3) |
|
||||||
(!!italic << 4) |
|
(italic << 4) |
|
||||||
((blink & 1) << 7);
|
(blink << 7);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mdacon_invert_region(struct vc_data *c, u16 *p, int count)
|
static void mdacon_invert_region(struct vc_data *c, u16 *p, int count)
|
||||||
|
@ -290,7 +290,8 @@ static unsigned long sticon_getxy(struct vc_data *conp, unsigned long pos,
|
|||||||
|
|
||||||
static u8 sticon_build_attr(struct vc_data *conp, u8 color,
|
static u8 sticon_build_attr(struct vc_data *conp, u8 color,
|
||||||
enum vc_intensity intens,
|
enum vc_intensity intens,
|
||||||
u8 blink, u8 underline, u8 reverse, u8 italic)
|
bool blink, bool underline, bool reverse,
|
||||||
|
bool italic)
|
||||||
{
|
{
|
||||||
u8 attr = ((color & 0x70) >> 1) | ((color & 7));
|
u8 attr = ((color & 0x70) >> 1) | ((color & 7));
|
||||||
|
|
||||||
|
@ -631,7 +631,8 @@ static void vgacon_deinit(struct vc_data *c)
|
|||||||
|
|
||||||
static u8 vgacon_build_attr(struct vc_data *c, u8 color,
|
static u8 vgacon_build_attr(struct vc_data *c, u8 color,
|
||||||
enum vc_intensity intensity,
|
enum vc_intensity intensity,
|
||||||
u8 blink, u8 underline, u8 reverse, u8 italic)
|
bool blink, bool underline, bool reverse,
|
||||||
|
bool italic)
|
||||||
{
|
{
|
||||||
u8 attr = color;
|
u8 attr = color;
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ struct consw {
|
|||||||
void (*con_save_screen)(struct vc_data *vc);
|
void (*con_save_screen)(struct vc_data *vc);
|
||||||
u8 (*con_build_attr)(struct vc_data *vc, u8 color,
|
u8 (*con_build_attr)(struct vc_data *vc, u8 color,
|
||||||
enum vc_intensity intensity,
|
enum vc_intensity intensity,
|
||||||
u8 blink, u8 underline, u8 reverse, u8 italic);
|
bool blink, bool underline, bool reverse, bool italic);
|
||||||
void (*con_invert_region)(struct vc_data *vc, u16 *p, int count);
|
void (*con_invert_region)(struct vc_data *vc, u16 *p, int count);
|
||||||
u16 *(*con_screen_pos)(struct vc_data *vc, int offset);
|
u16 *(*con_screen_pos)(struct vc_data *vc, int offset);
|
||||||
unsigned long (*con_getxy)(struct vc_data *vc, unsigned long position,
|
unsigned long (*con_getxy)(struct vc_data *vc, unsigned long position,
|
||||||
|
@ -54,10 +54,10 @@ struct vc_state {
|
|||||||
|
|
||||||
/* attribute flags */
|
/* attribute flags */
|
||||||
enum vc_intensity intensity;
|
enum vc_intensity intensity;
|
||||||
unsigned int italic : 1;
|
bool italic;
|
||||||
unsigned int underline : 1;
|
bool underline;
|
||||||
unsigned int blink : 1;
|
bool blink;
|
||||||
unsigned int reverse : 1;
|
bool reverse;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user