On Tue, 31 Oct 2000, Jeff V. Merkey wrote: > > One could create a 'kernel' that does: > > for(;;) > > { > > proc0(); > > proc1(); > > proc2(); > > proc3(); > > etc(); > > } > > would be coded like this (no C compiler): > > proc0: > > proc1: > > proc2: > > proc3: > > etc: > > label: > jmp proc0 oh, and what happens if it turns out that some other place wants to call proc3 as well? Recode the assembly - cool! Not. > I just avoided 5 x 20 bytes of pushes and pops on the stack ad optimized > for a simple fall through case. FYI, GCC does not generate 5 x 20 bytes of pushes and pops. In fact in the above specific case it will not generate a single push (automatically - you dont have to worry about it). Ingo - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] Please read the FAQ at http://www.tux.org/lkml/
- Re: 2.2.18Pre Lan Performance Rocks! David Lang
- Re: 2.2.18Pre Lan Performance Rocks! Jeff V. Merkey
- Re: 2.2.18Pre Lan Performance Rocks! David Lang
- Re: 2.2.18Pre Lan Performance Rocks! Ingo Molnar
- Re: 2.2.18Pre Lan Performance Rocks! Jeff V. Merkey
- Re: 2.2.18Pre Lan Performance Rocks! Alan Cox
- Re: 2.2.18Pre Lan Performance Rocks! Jeff V. Merkey
- Re: 2.2.18Pre Lan Performance Rocks! Horst von Brand
- Re: 2.2.18Pre Lan Performance Rocks! Richard B. Johnson
- Re: 2.2.18Pre Lan Performance Rocks! Jeff V. Merkey
- Re: 2.2.18Pre Lan Performance Rocks! Ingo Molnar
- Re: 2.2.18Pre Lan Performance Rocks! Jeff V. Merkey
- Re: 2.2.18Pre Lan Performance Rocks! Ingo Molnar
- Re: 2.2.18Pre Lan Performance Rocks! Daniel Phillips
- Re: 2.2.18Pre Lan Performance Rocks! Daniel Phillips
- Re: 2.2.18Pre Lan Performance Rocks! Michael H. Warfield
- Re: 2.2.18Pre Lan Performance Rocks! Ingo Molnar
- Re: 2.2.18Pre Lan Performance Rocks! Jeff V. Merkey
- Re: 2.2.18Pre Lan Performance Rocks! David Woodhouse
- Re: 2.2.18Pre Lan Performance Rocks! Jeff V. Merkey
- Re: 2.2.18Pre Lan Performance Rocks! Roger Larsson