From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jack Dennon Subject: Re: Local Symbol Names Date: Wed, 25 Jun 2003 11:50:08 -0700 Sender: linux-assembly-owner@vger.kernel.org Message-ID: <03062511461400.00228@linux24> References: Mime-Version: 1.0 Content-Transfer-Encoding: 7BIT Return-path: In-Reply-To: List-Id: Content-Type: text/plain; charset="us-ascii" To: linux-assembly@vger.kernel.org On Wednesday 25 June 2003 01:23, S kris wrote: > Hi, > > In some of the assembly files, it's noticed that Local Symbol Names have > been used that in the following way, > > ................ > call 0f > 0: popl %eax > ................ > The call is referring to immediately next statement. Please help me in > finding out the significance of the above lines in the assembly code. > > Thanks > > Kris > The call instruction probably was used to empty the the Execution Unit's instruction cache; thereby forcing it to be reloaded from memory. Or, it could be used just to force a time delay. jdennon@seasurf.com