Re: Intel P6 vs P7 system call performance

Manfred Spraul (manfred@colorfullife.com)
Tue, 17 Dec 2002 17:32:35 +0100


>
>
> pushl %ebp
> movl $0xfffff000, %ebp
> call *%ebp
> popl %ebp
>
>

You could avoid clobbering a register with something like

pushl $0xfffff000
call *(%esp)
addl %esp,4

--
    Manfred

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/