Re: [Wireshark-dev] Startup speed up - assembler usage

2007-11-21 Thread Didier
Hi, On Wed, 21 Nov 2007 09:39:02 +0100, Kukosa, Tomas wrote Hi, sorry for my delay but I was little bit busy during last days. What I have done: I have renamed and made few new functions in proto.c for more comfortable profiling. g_strcmp() renamed to wrs_strcmp() g_str_hash() from

Re: [Wireshark-dev] Startup speed up - assembler usage

2007-11-08 Thread Guy Harris
Kukosa, Tomas wrote: E.g. I was able (with about 80 lines in assembler) to reduce time spent in libwireshark.dll during startup from cca 2600ms to 1300ms on my PC. Which code did you change from C to assembler to get that speedup? ___ Wireshark-dev

Re: [Wireshark-dev] Startup speed up - assembler usage

2007-11-07 Thread Anders Broman
profiling startup sequence (in Windows environment) the result is that writing few small functions in assembler could speeded it up visibly. My idea is to have some code pieces written in C but optionally written in assembler for some OSs a CPU/platforms where it make sense. E.g. I was able

Re: [Wireshark-dev] Startup speed up - assembler usage

2007-11-07 Thread Fulko Hew
On Nov 7, 2007 8:20 AM, Kukosa, Tomas [EMAIL PROTECTED] wrote: profiling startup sequence (in Windows environment) the result is that writing few small functions in assembler could speeded it up visibly. My idea is to have some code pieces written in C but optionally written in assembler for

[Wireshark-dev] Startup speed up - assembler usage

2007-11-07 Thread Kukosa, Tomas
Hi profiling startup sequence (in Windows environment) the result is that writing few small functions in assembler could speeded it up visibly. My idea is to have some code pieces written in C but optionally written in assembler for some OSs a CPU/platforms where it make sence. E.g. I was

Re: [Wireshark-dev] Startup speed up - assembler usage

2007-11-07 Thread Stephen Fisher
On Wed, Nov 07, 2007 at 02:20:36PM +0100, Kukosa, Tomas wrote: My idea is to have some code pieces written in C but optionally written in assembler for some OSs a CPU/platforms where it make sence. What dou you think about this way? I ike the idea of speeding up load times. However, some