Re: Specifying time limits in source code ?

Dan Truong <dtruong@irisa.fr>
20 Jul 1999 01:11:04 -0400

          From comp.compilers

Related articles
Specifying time limits in source code ? hat@se-46.wpa.wtb.tue.nl (1999-07-14)
Re: Specifying time limits in source code ? chase@world.std.com (David Chase) (1999-07-19)
Re: Specifying time limits in source code ? cbrtjr@ix.netcom.com (Charles E. Bortle, Jr.) (1999-07-19)
Re: Specifying time limits in source code ? rweaver@ix.netcom.com (1999-07-19)
Re: Specifying time limits in source code ? kgatlin@cs.ucsd.edu (KSG) (1999-07-19)
Re: Specifying time limits in source code ? dtruong@irisa.fr (Dan Truong) (1999-07-20)
Re: Specifying time limits in source code ? mslamm@mscc.huji.ac.il (Ehud Lamm) (1999-07-20)
Re: Specifying time limits in source code ? mslamm@mscc.huji.ac.il (Ehud Lamm) (1999-07-21)
Re: Specifying time limits in source code ? gneuner@dyn.com (1999-07-23)
| List of all articles for this month |

From: Dan Truong <dtruong@irisa.fr>
Newsgroups: comp.compilers
Date: 20 Jul 1999 01:11:04 -0400
Organization: IRISA, FRANCE
References: 99-07-049 99-07-061
Keywords: realtime

For caches and prefetching, these are speed optimizations, in the best
case you go faster, otherwise you must assume you're slow as DRAM (or
even Hard disk) because cache can be flushed.


-> Cannot rely on estimations for mission critical time (a peak time
is a worst case, where you have to fetch from hard disk the page,
handle a few interrupts, miss the cache, the cache flushes...), but OK
for average performance if it is critical to have decent throughput.


However:
- DRAM references take 50 to 100 cycles on CURRENT machines, more in the
future.
- You can do software optimizations
- for Icache : block layout, static branch optimization, hot path
optimization
Check Pettis&Hansen90 Kaeli97, DEC WRL... and Torrellas for OS code.
- for Dcache : data layout and code tranformations (actually: arrays,
strucutres/objects, scalars have been studied, but implemented
for arrays only on compilers)
Prefetching software/hardware
- for TLB : I know of little work on TLBs though they have a very
significant impact
on large data sets (works are old too)
- Swapping : ask the database people... or add memory ands limit number
of tasks.


What to do: colocate data used together to fit in small number of
contiguous blocks Sw Prefetching works OK for handcrafted code, but I
don't think compilers use it well yet.


Check computer architecutre research for studies on software cache
optimizations (PLDI ASPLOS PACT HPCA MICRO ISCA... conferneces, and
associatied workshops and journals) from 1990 to now.


If you work in realtime systems, you can assume you know your
environment, and I guess even you won't be in a multitask
environment. If it's really critical, you'd use a 10 year old proven
CPU technology w/o caching, and adequate memory (ROM SRAM or FLASH),
and maybe even hand code the works. Anyhow, pay the price...


At our lab people work on case based compilation, investigate feedback
driven code optimization and the such... I believe too that profiling
will even break through as a standard compilation optimization
procedure for developpers. There's so much potential...


Note: for superscalar CPUs, you've got the same problem to compute
execution cycles: even 4way superscalar CPUs have CPIs ranging fro .5
to 1, and rarely below... Limitations come from many problems: a
limited ressource (Mem, FPU unit), complex ops, branches,
dependancies...


Dan-
--
Dan N. Truong, IRISA, Campus de Beaulieu, 35042 Rennes Cedex, FRANCE
tel:(+33)2 99 84 73 36 fax:(+33)2 99 84 25 28
mailto:dtruong@irisa.fr http://www.irisa.fr/caps/PEOPLE/Dan
gsm:06 14 78 06 95 -> http://www.sfr.fr/html/annexes/sms/sendsms.html


Post a followup to this message

Return to the comp.compilers page.
Search the comp.compilers archives again.