comp.lang.ada
 help / color / mirror / Atom feed
From: Stephen Leake <Stephe.Leake@nasa.gov>
To: comp.lang.ada@ada-france.org
Subject: Re: left-to-right (was In-Out Parameters for functions)
Date: 27 Feb 2004 09:07:12 -0500
Date: 2004-02-27T09:07:12-05:00	[thread overview]
Message-ID: <mailman.36.1077890875.327.comp.lang.ada@ada-france.org> (raw)
In-Reply-To: 3c0u3054mganvifajj3g6jealh07qoi1h7@4ax.com

Dmitry A.Kazakov <mailbox@dmitry-kazakov.de> writes:

> On 26 Feb 2004 23:58:22 -0500, Stephen Leake <Stephe.Leake@nasa.gov>
> wrote:
> 
> >Dmitry A.Kazakov <mailbox@dmitry-kazakov.de> writes:
> >
> >> The question is what gets lost if an evaluation order is fixed. I gave
> >> an example earlier:
> >> 
> >> for I in A'Range loop
> >>    Sum := Sum + A (I) + B (B'First + I - A'First);
> >>    ...
> >> 
> >> Here with left-to-right order the compiler cannot optimize neither the
> >> array index of B, 
> >
> >What do you mean by "optimize" in this sentence? the array index of B
> >is B'First + I - A'First. It must be computed before B(). In what way
> >would this be done differently by a "real Ada" compiler vs a
> >"left-to-right" Ada compiler?
> 
> A left-to-right compiler shall first evaluate B'First + I, then
> decrement it by A'First.
> 
> What I would expect from a good compiler is factoring out the cycle
> constant B'First - A'First and omitting all index checks for B when
> A'Length = B'Length. I am not sure if that will be possible for a
> strict left-to-right compiler without dealing with program
> semantics.

Ok. That is a good example.

So, Hymen; we now have (at least) two good examples of optimizations
that are useful, but would not be possible if the language required
right-to-left parameter evaluation.

Do you agree the cost of changing is to right-to-left is not worth the
gain?

> <snip>
> It is a pity that Robert Dewar isn't here.

Yes!

> >> Well, these optimizations could be made possible if the compiler
> >> might prove that the result does not depend on the order. That
> >> could be quite difficult to formally define, especially regarding
> >> numeric exceptions and floating-point accuracy stuff. Even more
> >> difficult it would be check.
> >
> >That is _precisely_ the point. Since it is difficult to formally
> >define and check the meaning of "does not depend on order", why do we
> >expect people to be able to do it? 
> 
> Exactly, they should not! People have to write programs so that they
> would be valid for any allowed order. If they don't the code is
> broken. In my view it is broken *even* if the language defined
> implicit order is the one assumed by the programmer.
> 
> My point is: either 1) the order is specified explicitly by the
> programmer, or 2) the code is valid for any order.

Hmm. You missed my point. Let me try again.

You have made two statements:

1) "the programmer must ensure the code is valid for any order of
   evaluation".

2) "it is difficult to check if things do depend on order of
   evaluation"

The second is paraphrased, but I believe it captures what you said
above.

These statements seem at odds, to me. You are requiring the programmer
to do something that is difficult. 

> >> But finally, if all that could be achived, then the compiler will be
> >> capable to simply detect that different orders give different
> >> results, and threat it as an error. Much better than fixing an
> >> arbitrary order!
> >
> >Why is that better? The goal is to have code that works (meaning
> >produces correct results :), on all compilers/platforms.
> 
> But the code has some semantics it implements, at least I hope it is
> so (:-)). This semantics is either order-dependent or not. That does
> not depend on platform. The goal is to implement that semantics. The
> rest does Ada.

Right. And _if_ the semantics happens to be order-dependent, then to
be portable, the same order must be used on every compiler/platform.
That is not possible in Ada 95; it would be possible in "left-to-right
Ada 95".

> > If I only
> >have to prove that one evaluation order is correct, that is easier
> >than if I have to think about many evaluation orders.
> 
> True. Weaker the precondition, harder to write the code. It is quite
> easy to write sqrt provided that the only valid value of the argument
> is 0. Alas, that would be not what people understand under sqrt. From
> software design point of view it is always worth to try to write
> order-independent code, like one with a weakest precondition. The
> opposite should be treated rather as an exception.

You are assuming the consequence of this argument :).

The point is that (perhaps) it is _not_ always worth writing
order-independent code.

So we need to talk about why you believe this to be the case - we
cannot simply say "yes, you are right".

> >But you haven't answered my question. Is there, in actual fact, any
> >compiler that actually does these optimizations?
> 
> Randy Brukardt gave one example. However I would like to stress that
> optimization and implementation freedom is only one, though important
> argument. Software design practice is no less important. Fixing order
> not imposed by the semantics, and thus an arbitrary order, is that
> sort of premature optimization Knuth wrote about. My concern is that
> fixing an arbitrary order would bless bad software design in favor of
> getting results now.

But it is only bad _because_ it prevents optimization. At least, that
is the only argument I have heard so far. You do _not_ give a
different argument in this paragraph; you just repeat the optimization
one.

What _other_ reason is there?

Software design practices such as "write order-independent code" are
useful simplifications of complex arguments; they allow programmers to
get on with day-to-day work without spending lots of time thinking
about arcane compiler implementation issues :). 

However, in _this_ discussion, we are trying to elucidate the complex
argument behind this particular software design practice, in order to
decide if it is still valid.

> >> >Ada is supposed to be about clear, unsurprising code. Subtle order
> >> >issues are just that - "subtle". If the language _could_ make them a
> >> >non-issue, at very little cost, I think it _should_.
> >> 
> >> Right, the present situation is not good. But IMO the solution lies in
> >> introducing formally pure functions and imposing limitations on use of
> >> impure functions (and procedures with results) in expressions.
> >
> >That's way more work than simply requiring left-to-right, and
> >therefore far less likely to happen.
> 
> AFAIK Ravescar profile would be a part of the standard. 

Yes, the Ravenscar profile will (probably :) be standardized in Ada
0Y. But that will be as an restriction pragma, allowing users to
choose a subset of Ada.

> A time may come when some SPARK ideas will be evaluated too.

If you mean that the SPARK language will be added as another optional
Ada standard, I doubt it. SPARK may become a standard on its own.

-- 
-- Stephe




  reply	other threads:[~2004-02-27 14:07 UTC|newest]

Thread overview: 465+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <3fe00b82.90228601@News.CIS.DFN.DE>
     [not found] ` <3FE026A8.3CD6A3A@yahoo.com>
     [not found]   ` <x0%Db.16$_l6.25998@news.uswest.net>
     [not found]     ` <3bf1uvg2ntadvahfud2rg6ujk24sora6gr@4ax.com>
     [not found]       ` <2u3auvogde8ktotlaq0ldiaska3g416gus@4ax.com>
     [not found]         ` <bs62ph$giu$1@newshost.mot.com>
     [not found]           ` <20619edc.0312221020.3fd1b4ee@posting.google.com>
     [not found]             ` <b5feuv06s2nmpakq0o1b7v0kpd450v3eli@4ax.com>
2003-12-23  5:06               ` Certified C compilers for safety-critical embedded systems Mike Silva
2003-12-23 15:44                 ` Alan Balmer
2003-12-23 19:32                   ` Mike Silva
2003-12-28  8:34                     ` Peter Amey
2003-12-28 15:05                       ` Chris Hills
2003-12-23 20:33                   ` Larry Kilgallen
2003-12-23 21:46                     ` Alan Balmer
2003-12-23 22:11                       ` Larry Kilgallen
2003-12-24 16:46                 ` Chris Hills
2003-12-24 18:22                   ` Alan Balmer
2003-12-24 20:35                     ` Chris Hills
2003-12-24 20:56                       ` Alan Balmer
2003-12-24 20:14                   ` Dave Hansen
2003-12-24 20:41                     ` Chris Hills
2003-12-24 22:19                       ` Dave Hansen
2003-12-26 10:44                         ` Chris Hills
2003-12-26 21:49                           ` Larry Kilgallen
2003-12-26 22:10                             ` Chris Hills
2003-12-26 23:20                               ` Robert A Duff
2003-12-27  5:29                                 ` James Rogers
2003-12-27  6:24                                   ` Jeff C,
2003-12-27  7:50                                     ` James Rogers
2003-12-28  1:00                                       ` CBFalconer
2003-12-28 23:06                                         ` Ian Bell
2003-12-27 15:27                                   ` Ian Bell
2003-12-27 16:47                                     ` Simon Wright
2003-12-27 17:08                                       ` Ian Bell
2003-12-27 21:32                                         ` Georg Bauhaus
2003-12-28 22:59                                           ` Ian Bell
2003-12-29  2:43                                             ` Robert I. Eachus
2003-12-29  7:43                                               ` Georg Bauhaus
2003-12-29 16:16                                                 ` Robert I. Eachus
2003-12-27 16:49                                     ` Georg Bauhaus
2003-12-27 17:10                                       ` Ian Bell
2003-12-27 19:54                                         ` Robert I. Eachus
2003-12-27 20:57                                         ` Georg Bauhaus
2003-12-27 17:34                                       ` Jeff C,
2003-12-27 15:34                                   ` Frank J. Lhota
2003-12-29 17:46                                   ` Dave Hansen
2003-12-29 21:13                                     ` Alex Colvin
2003-12-29 21:50                                       ` Hyman Rosen
2003-12-30 16:15                                       ` Martin Krischik
2003-12-30  1:53                                     ` James Rogers
2003-12-29  9:08                                 ` Peter Hermann
2003-12-26 23:47                               ` Larry Kilgallen
2003-12-26 16:52                       ` Martin Krischik
2003-12-26 18:42                         ` Hyman Rosen
2003-12-26 23:00                           ` Robert A Duff
2003-12-27 13:26                           ` Martin Krischik
2003-12-28 16:33                             ` Chris Hills
2003-12-29 17:46                               ` Dave Hansen
2003-12-30 10:18                                 ` Martin Krischik
2003-12-30 14:48                                   ` Dave Hansen
2003-12-30 17:08                                     ` Martin Krischik
2003-12-30 17:44                                       ` Hyman Rosen
2003-12-30 18:28                                         ` Dmitry A. Kazakov
2003-12-30 22:26                                           ` Alexandre E. Kopilovitch
2003-12-30 21:15                                         ` CBFalconer
2003-12-30 21:30                                           ` Hyman Rosen
2003-12-31 10:41                                             ` Martin Krischik
2004-01-06 19:54                                         ` Martin Dowie
2003-12-30 17:59                                       ` Chris Hills
2003-12-30 18:27                                         ` Dmitry A. Kazakov
2003-12-30 20:07                                         ` Martin Krischik
2003-12-30 18:31                                       ` CBFalconer
2003-12-30 19:20                                       ` Dave Hansen
2003-12-30 21:15                                         ` CBFalconer
2003-12-31  0:03                                           ` Dave Hansen
2003-12-31 14:27                                             ` Georg Bauhaus
2004-01-05 22:08                                               ` Dave Hansen
2004-01-05 22:36                                                 ` Stephen Leake
2004-01-06 13:54                                                   ` Frank J. Lhota
2004-01-06 14:14                                                     ` Jean-Pierre Rosen
2004-01-06 23:14                                                       ` Alexandre E. Kopilovitch
2004-01-06 23:59                                                         ` Robert I. Eachus
2004-01-07  0:51                                                       ` Stephen Leake
2004-01-07 12:24                                                         ` Martin Krischik
2004-01-07 12:56                                                       ` Marin David Condic
2004-01-07 13:39                                                         ` Dmitry A. Kazakov
2004-01-07 14:21                                                         ` Stephen Leake
2004-01-07 23:35                                                           ` Robert A Duff
2004-01-08  3:32                                                             ` Alexandre E. Kopilovitch
2004-01-08  8:35                                                               ` Dmitry A. Kazakov
2004-01-09  3:47                                                                 ` Alexandre E. Kopilovitch
2004-01-09  3:59                                                                   ` Hyman Rosen
2004-01-09 22:00                                                                     ` Robert A Duff
2004-01-10 22:48                                                                       ` Hyman Rosen
2004-01-08 16:46                                                               ` Robert A Duff
2004-01-08 17:50                                                                 ` Georg Bauhaus
2004-01-09  4:31                                                                 ` Alexandre E. Kopilovitch
2004-01-09 22:10                                                                   ` Robert A Duff
2004-01-10  3:44                                                                     ` Alexander Kopilovitch
2004-01-08 14:32                                                             ` Frank J. Lhota
2004-01-08 16:28                                                               ` Robert A Duff
2004-01-09 13:35                                                                 ` In-Out Parameters for functions (was: " Marin David Condic
2004-01-09 22:30                                                                   ` Robert A Duff
2004-01-09 23:38                                                                     ` Alexandre E. Kopilovitch
2004-01-23 14:01                                                                       ` In-Out Parameters for functions Wojtek Narczynski
2004-01-23 19:05                                                                         ` Alexandre E. Kopilovitch
2004-01-24 15:21                                                                           ` Wojtek Narczynski
2004-01-24 20:42                                                                             ` Alexandre E. Kopilovitch
2004-01-24 21:57                                                                               ` Robert A Duff
2004-01-25 21:02                                                                                 ` Alexandre E. Kopilovitch
2004-01-26 10:17                                                                                   ` Dmitry A. Kazakov
2004-01-26 20:19                                                                                     ` Alexandre E. Kopilovitch
2004-01-27  9:22                                                                                       ` Dmitry A. Kazakov
2004-01-26 14:06                                                                                   ` Wojtek Narczynski
2004-01-26 19:00                                                                                     ` Alexandre E. Kopilovitch
2004-01-27 10:24                                                                                       ` Wojtek Narczynski
2004-01-26 20:38                                                                                     ` Robert A Duff
2004-01-27 10:45                                                                                       ` Wojtek Narczynski
2004-01-26 23:12                                                                                   ` Robert A Duff
2004-01-26 23:24                                                                                     ` Hyman Rosen
2004-01-26 23:37                                                                                       ` Robert A Duff
2004-01-27  2:26                                                                                         ` Hyman Rosen
2004-01-27  8:18                                                                                           ` Stephen Leake
2004-01-27 17:37                                                                                             ` Hyman Rosen
2004-01-27 19:05                                                                                               ` David Starner
2004-01-27 19:31                                                                                                 ` Hyman Rosen
2004-01-27 20:06                                                                                               ` Robert A Duff
2004-01-28  9:29                                                                                                 ` Dmitry A. Kazakov
2004-01-28 15:20                                                                                                   ` Hyman Rosen
2004-01-29  9:08                                                                                                     ` Dmitry A. Kazakov
2004-01-29 15:37                                                                                                       ` Hyman Rosen
2004-01-29 18:43                                                                                                         ` David Starner
2004-01-29 19:46                                                                                                           ` Hyman Rosen
2004-01-29 20:23                                                                                                             ` Georg Bauhaus
2004-01-29 21:36                                                                                                               ` Hyman Rosen
2004-01-30 17:39                                                                                                                 ` Georg Bauhaus
2004-01-30 18:14                                                                                                                   ` Hyman Rosen
2004-01-30 19:32                                                                                                                     ` Georg Bauhaus
2004-01-30 20:51                                                                                                                       ` Hyman Rosen
2004-01-30 23:25                                                                                                                         ` Georg Bauhaus
2004-01-31  0:07                                                                                                                         ` Robert I. Eachus
2004-01-29 23:52                                                                                                             ` David Starner
2004-01-30  3:02                                                                                                             ` Robert I. Eachus
2004-01-30 16:09                                                                                                               ` Hyman Rosen
2004-01-30 16:31                                                                                                                 ` Peter Amey
2004-01-30 19:20                                                                                                                   ` Hyman Rosen
2004-02-02 10:39                                                                                                                     ` Peter Amey
2004-01-31  1:03                                                                                                                 ` Robert I. Eachus
2004-01-30  9:53                                                                                                             ` Dmitry A. Kazakov
2004-01-30 17:06                                                                                                               ` Hyman Rosen
2004-01-30 17:52                                                                                                                 ` David Starner
2004-01-30 20:28                                                                                                                   ` Hyman Rosen
2004-01-30 21:31                                                                                                                 ` Alexandre E. Kopilovitch
2004-02-01  4:10                                                                                                                   ` Hyman Rosen
2004-02-01 21:05                                                                                                                     ` David Starner
2004-02-01 21:55                                                                                                                       ` Hyman Rosen
2004-02-02  2:20                                                                                                                         ` David Starner
2004-02-02 14:36                                                                                                                           ` Hyman Rosen
2004-01-31  5:27                                                                                                                 ` Randy Brukardt
2004-02-01  4:02                                                                                                                   ` Hyman Rosen
2004-02-03  1:54                                                                                                                     ` Randy Brukardt
2004-02-03  3:07                                                                                                                       ` Hyman Rosen
2004-02-01  2:14                                                                                                                 ` cl1motorsports
2004-02-02  9:31                                                                                                                 ` Dmitry A. Kazakov
2004-02-02 14:33                                                                                                                   ` Hyman Rosen
2004-02-02 15:41                                                                                                                     ` Dmitry A. Kazakov
2004-02-02 17:01                                                                                                                       ` Hyman Rosen
2004-02-03  8:54                                                                                                                         ` Dmitry A. Kazakov
2004-02-03 14:06                                                                                                                           ` Hyman Rosen
2004-02-03 15:32                                                                                                                             ` Dmitry A. Kazakov
2004-02-03 16:11                                                                                                                               ` Hyman Rosen
2004-02-03 23:04                                                                                                                                 ` David Starner
2004-02-03 23:38                                                                                                                                   ` Hyman Rosen
2004-02-04  1:54                                                                                                                                     ` David Starner
2004-02-04 14:54                                                                                                                                       ` Hyman Rosen
2004-02-04  3:56                                                                                                                                     ` Alexandre E. Kopilovitch
2004-02-05 13:32                                                                                                                                       ` Hyman Rosen
2004-02-04  7:00                                                                                                                                     ` Vinzent 'Gadget' Hoefler
2004-02-04 14:57                                                                                                                                       ` Hyman Rosen
2004-02-04 15:19                                                                                                                                         ` Vinzent 'Gadget' Hoefler
2004-02-04 15:52                                                                                                                                           ` Hyman Rosen
2004-02-04 16:36                                                                                                                                             ` Vinzent 'Gadget' Hoefler
2004-02-04 17:11                                                                                                                                               ` Hyman Rosen
2004-02-04 19:58                                                                                                                                             ` David Starner
2004-02-04 10:28                                                                                                                                     ` Stuart Palin
2004-02-04 15:07                                                                                                                                       ` Hyman Rosen
2004-02-04 15:19                                                                                                                                         ` Vinzent 'Gadget' Hoefler
2004-02-04 15:54                                                                                                                                           ` Hyman Rosen
2004-02-04 16:36                                                                                                                                             ` Vinzent 'Gadget' Hoefler
2004-02-04 17:13                                                                                                                                               ` Hyman Rosen
2004-02-05 12:11                                                                                                                                         ` Stuart Palin
2004-02-05 13:22                                                                                                                                           ` Hyman Rosen
2004-02-05 14:53                                                                                                                                             ` Robert I. Eachus
2004-02-05 15:43                                                                                                                                               ` Hyman Rosen
2004-02-06  7:41                                                                                                                                                 ` Robert I. Eachus
2004-02-24  1:27                                                                                                                                                   ` Hyman Rosen
2004-02-06 10:27                                                                                                                                             ` Stuart Palin
2004-02-24  1:55                                                                                                                                               ` Hyman Rosen
2004-02-24  2:16                                                                                                                                                 ` David Starner
2004-02-24 14:51                                                                                                                                                   ` Hyman Rosen
2004-02-24 23:55                                                                                                                                                     ` David Starner
2004-02-25  0:44                                                                                                                                                       ` Stephen Leake
2004-02-25  9:21                                                                                                                                                         ` Dmitry A. Kazakov
2004-02-27  4:58                                                                                                                                                           ` left-to-right (was In-Out Parameters for functions) Stephen Leake
2004-02-27  9:43                                                                                                                                                             ` Dmitry A. Kazakov
2004-02-27 14:07                                                                                                                                                               ` Stephen Leake [this message]
2004-02-27 15:18                                                                                                                                                                 ` Preben Randhol
2004-02-27 17:06                                                                                                                                                                 ` Hyman Rosen
2004-02-27 17:11                                                                                                                                                                 ` Dmitry A. Kazakov
2004-02-28 13:22                                                                                                                                                                   ` Stephen Leake
2004-03-01 11:12                                                                                                                                                                     ` Dmitry A. Kazakov
2004-02-27 18:29                                                                                                                                                               ` Alexandre E. Kopilovitch
2004-03-01 11:12                                                                                                                                                                 ` Dmitry A. Kazakov
2004-02-28  0:12                                                                                                                                                             ` Randy Brukardt
2004-02-28 16:58                                                                                                                                                             ` Robert I. Eachus
2004-02-29 13:44                                                                                                                                                               ` Stephen Leake
2004-02-25  9:33                                                                                                                                                         ` In-Out Parameters for functions David Starner
2004-02-25 14:21                                                                                                                                                           ` Hyman Rosen
2004-02-25 14:34                                                                                                                                                             ` Vinzent 'Gadget' Hoefler
2004-02-25 15:02                                                                                                                                                               ` Hyman Rosen
2004-02-25 15:43                                                                                                                                                                 ` Vinzent 'Gadget' Hoefler
2004-02-25 15:53                                                                                                                                                                   ` Hyman Rosen
2004-02-25 16:05                                                                                                                                                                     ` Vinzent 'Gadget' Hoefler
2004-02-25 16:44                                                                                                                                                                       ` Hyman Rosen
2004-02-25 20:45                                                                                                                                                                         ` Randy Brukardt
2004-02-25 21:33                                                                                                                                                                           ` Hyman Rosen
2004-02-26  8:45                                                                                                                                                                             ` Preben Randhol
2004-02-26  8:46                                                                                                                                                                               ` Preben Randhol
2004-02-26 14:41                                                                                                                                                                               ` Hyman Rosen
2004-02-26  9:44                                                                                                                                                                             ` Vinzent 'Gadget' Hoefler
2004-02-26 13:24                                                                                                                                                                               ` Robert I. Eachus
2004-02-26 14:33                                                                                                                                                                                 ` Jean-Pierre Rosen
2004-02-28 17:11                                                                                                                                                                                   ` Robert I. Eachus
2004-02-26 15:21                                                                                                                                                                                 ` Hyman Rosen
2004-02-27  5:21                                                                                                                                                                                 ` Stephen Leake
2004-02-27  8:55                                                                                                                                                                                   ` David Starner
2004-02-26  9:44                                                                                                                                                                         ` Vinzent 'Gadget' Hoefler
2004-02-26 15:24                                                                                                                                                                           ` Hyman Rosen
2004-02-26 17:33                                                                                                                                                                             ` Vinzent 'Gadget' Hoefler
2004-02-25 16:34                                                                                                                                                                     ` Preben Randhol
2004-02-25 16:45                                                                                                                                                                       ` Hyman Rosen
2004-02-25 18:37                                                                                                                                                                         ` Frank J. Lhota
2004-02-26 13:29                                                                                                                                                                         ` Robert I. Eachus
2004-02-27  5:24                                                                                                                                                                           ` left-to-right (was In-Out Parameters for functions) Stephen Leake
2004-02-25 16:35                                                                                                                                                                     ` In-Out Parameters for functions Preben Randhol
2004-02-25 16:56                                                                                                                                                                       ` Hyman Rosen
2004-02-25 17:11                                                                                                                                                                         ` Preben Randhol
2004-02-25 17:33                                                                                                                                                                           ` Hyman Rosen
2004-02-25 15:44                                                                                                                                                                 ` Hyman Rosen
2004-02-25 16:10                                                                                                                                                                 ` Robert I. Eachus
2004-02-25 16:50                                                                                                                                                                   ` Hyman Rosen
2004-02-26 13:41                                                                                                                                                                     ` Robert I. Eachus
2004-02-26 15:44                                                                                                                                                                       ` Hyman Rosen
2004-02-28 17:34                                                                                                                                                                         ` Robert I. Eachus
2004-02-29  3:51                                                                                                                                                                           ` Hyman Rosen
2004-02-29 14:10                                                                                                                                                                             ` Robert I. Eachus
2004-02-29 15:37                                                                                                                                                                               ` Jon S. Anthony
2004-03-01 17:38                                                                                                                                                                               ` Hyman Rosen
2004-03-02  3:05                                                                                                                                                                                 ` Robert I. Eachus
2004-03-02  7:08                                                                                                                                                                                   ` Hyman Rosen
2004-03-02  8:48                                                                                                                                                                                     ` Jacob Sparre Andersen
2004-03-02 15:24                                                                                                                                                                                       ` Hyman Rosen
2004-03-02 15:42                                                                                                                                                                                         ` Jacob Sparre Andersen
2004-03-02 16:33                                                                                                                                                                                           ` Hyman Rosen
2004-03-02 22:06                                                                                                                                                                                             ` Robert I. Eachus
2004-03-02 22:43                                                                                                                                                                                             ` Randy Brukardt
2004-03-02 17:12                                                                                                                                                                                     ` Robert I. Eachus
2004-03-02 17:28                                                                                                                                                                                       ` Georg Bauhaus
2004-03-02 22:09                                                                                                                                                                                         ` Robert I. Eachus
2004-03-04  0:08                                                                                                                                                                                           ` Georg Bauhaus
2004-02-27  5:36                                                                                                                                                                       ` left-to-right (was In-Out Parameters for functions) Stephen Leake
2004-02-27 17:11                                                                                                                                                                         ` Hyman Rosen
2004-02-27  5:31                                                                                                                                                                   ` In-Out Parameters for functions Stephen Leake
2004-02-25 12:01                                                                                                                                                         ` Marin David Condic
2004-02-25 20:41                                                                                                                                                         ` Randy Brukardt
2004-02-25 22:05                                                                                                                                                         ` Jim Rogers
2004-02-25 22:19                                                                                                                                                           ` Hyman Rosen
2004-02-26  9:34                                                                                                                                                             ` Dmitry A. Kazakov
2004-02-26  9:44                                                                                                                                                             ` Vinzent 'Gadget' Hoefler
2004-02-26 15:48                                                                                                                                                               ` Hyman Rosen
2004-02-26 17:49                                                                                                                                                                 ` Vinzent 'Gadget' Hoefler
2004-02-26 18:12                                                                                                                                                                   ` Hyman Rosen
2004-02-27  0:55                                                                                                                                                                     ` David Starner
2004-02-27 23:37                                                                                                                                                               ` Randy Brukardt
2004-02-26 12:42                                                                                                                                                             ` Wojtek Narczynski
2004-02-26 12:47                                                                                                                                                               ` Lutz Donnerhacke
2004-02-26 15:56                                                                                                                                                                 ` Hyman Rosen
2004-02-26 13:50                                                                                                                                                             ` Robert I. Eachus
2004-02-26 16:00                                                                                                                                                               ` Hyman Rosen
2004-02-28 17:48                                                                                                                                                                 ` Robert I. Eachus
2004-02-27  6:00                                                                                                                                                               ` Stephen Leake
2004-02-28 18:18                                                                                                                                                                 ` Robert I. Eachus
2004-02-24  8:22                                                                                                                                                 ` Jacob Sparre Andersen
2004-02-24  9:31                                                                                                                                                   ` Jean-Pierre Rosen
2004-02-04  3:01                                                                                                                             ` Alexandre E. Kopilovitch
2004-02-04  3:26                                                                                                                               ` Ludovic Brenta
2004-02-04  9:40                                                                                                                                 ` Dmitry A. Kazakov
2004-01-27  9:36                                                                                           ` Dmitry A. Kazakov
2004-01-27 12:45                                                                                             ` Georg Bauhaus
2004-01-27  1:12                                                                                     ` Alexandre E. Kopilovitch
2004-01-27  9:23                                                                               ` Peter Amey
2004-01-27 17:24                                                                                 ` Robert A Duff
2004-01-28 10:30                                                                                   ` Wojtek Narczynski
2004-01-28 20:39                                                                                     ` Robert A Duff
2004-01-28 23:13                                                                                       ` Randy Brukardt
2004-01-29  9:20                                                                                         ` Dmitry A. Kazakov
2004-01-29 23:30                                                                                           ` Randy Brukardt
2004-01-30  0:23                                                                                           ` In-Out Parameters for functions + object notation Alexandre E. Kopilovitch
2004-01-30 14:03                                                                                             ` Dmitry A. Kazakov
2004-01-30 23:39                                                                                           ` In-Out Parameters for functions Alexandre E. Kopilovitch
2004-02-02  9:38                                                                                             ` Dmitry A. Kazakov
2004-01-29 12:22                                                                                         ` Wojtek Narczynski
2004-01-29 20:25                                                                                           ` Alexandre E. Kopilovitch
2004-01-29 11:08                                                                                     ` Peter Amey
     [not found]                                                                             ` <dSgYj40LxF@VB1162.spb.edu>
2004-01-27  7:34                                                                               ` Stephen Leake
2004-01-23  6:57                                                                   ` In-Out Parameters for functions (was: Re: Certified C compilers for safety-critical embedded systems Dave Thompson
2004-01-09 16:36                                                               ` Robert I. Eachus
2004-01-09 22:55                                                                 ` Robert A Duff
2004-01-09  3:49                                                             ` Kenneth Almquist
2004-01-19 21:57                                                       ` Robert A Duff
2004-01-06 12:45                                                 ` Martin Krischik
2004-01-06 17:23                                                   ` Hyman Rosen
2004-01-06 18:33                                                     ` Kelly Hall
2004-01-06 20:45                                                       ` Hyman Rosen
2004-01-07  1:48                                                         ` Frank J. Lhota
2004-01-07 14:52                                                           ` Hyman Rosen
2004-01-08 10:18                                                         ` Scott Moore
2004-01-08 14:52                                                           ` Hyman Rosen
2004-01-08 18:24                                                           ` Dave Hansen
2004-01-09  7:50                                                             ` Vinzent 'Gadget' Hoefler
2004-01-09 14:52                                                               ` Hyman Rosen
2004-01-10  0:46                                                                 ` Georg Bauhaus
2004-01-11  2:49                                                                   ` Hyman Rosen
2004-01-10 12:25                                                                 ` Dmitry A. Kazakov
2004-01-10 13:03                                                                   ` Frank J. Lhota
2004-01-10 15:14                                                                     ` Martin Krischik
2004-01-10 17:49                                                                       ` Frank J. Lhota
2004-01-11  2:29                                                                   ` Hyman Rosen
2004-01-11 12:50                                                                     ` Frank J. Lhota
2004-01-11 15:15                                                                     ` Dmitry A. Kazakov
2004-01-11  2:38                                                                   ` Hyman Rosen
2004-01-06 18:40                                                     ` Vinzent 'Gadget' Hoefler
2004-01-06 20:34                                                       ` Hyman Rosen
2004-01-06 22:18                                                         ` tmoran
2004-01-06 20:43                                                     ` Georg Bauhaus
2004-01-07 21:23                                                     ` Martin Dowie
2004-01-06 13:33                                                 ` Georg Bauhaus
2004-01-08 10:13                                                 ` Scott Moore
2004-01-08 14:53                                                   ` Hyman Rosen
2004-01-08 15:51                                                     ` Martin Krischik
2004-01-09 16:57                                                     ` Robert I. Eachus
2004-01-09 17:54                                                       ` Hyman Rosen
2004-01-09 20:16                                                         ` CBFalconer
2004-01-09 20:48                                                           ` Hyman Rosen
2004-01-09 22:49                                                         ` Robert A Duff
2004-01-09 23:58                                               ` Larry Kilgallen
2004-01-10  6:16                                                 ` Robert I. Eachus
2004-01-10 13:42                                                   ` Marin David Condic
2004-01-09  5:13                                                     ` Mark Lorenzen
2004-01-10 18:34                                                       ` Robert I. Eachus
2004-01-11  2:43                                                   ` Hyman Rosen
2004-01-11  3:12                                                     ` tmoran
2004-01-11  7:09                                                       ` Robert I. Eachus
2004-01-11 10:53                                                       ` Leif Roar Moldskred
2004-01-09 10:11                                                         ` Mark Lorenzen
2004-01-11 14:40                                                       ` Marin David Condic
2004-01-11 15:16                                                         ` Larry Kilgallen
2004-01-12  0:59                                                           ` Georg Bauhaus
2004-01-12 12:51                                                       ` Peter Amey
2004-01-11  3:26                                                     ` Hans-Bernhard Broeker
2004-01-11  5:43                                                     ` John R. Strohm
2004-01-11  6:53                                                     ` Robert I. Eachus
2004-01-11 13:42                                                     ` Dmitry A. Kazakov
2004-01-11 17:18                                                     ` Chad R. Meiners
2004-01-11 18:00                                                       ` Robert I. Eachus
2004-01-11 18:38                                                         ` Chad R. Meiners
2004-01-12  1:02                                                           ` Georg Bauhaus
2004-01-12  2:13                                                             ` Chad R. Meiners
2004-01-12  4:36                                                               ` Robert I. Eachus
2004-01-12 15:48                                                                 ` Mel Wilson
2004-01-12 16:29                                                                 ` Martin Krischik
2004-01-14  6:50                                                                   ` Robert I. Eachus
2004-01-13 13:28                                                                 ` Aatu Koskensilta
2004-01-13 22:18                                                                   ` Alexandre E. Kopilovitch
2004-01-14  5:00                                                                     ` David Starner
2004-01-14  7:07                                                                       ` Robert I. Eachus
2004-01-14  8:36                                                                         ` David Starner
2004-01-14  9:20                                                                           ` Aatu Koskensilta
2004-01-14  8:01                                                                     ` Aatu Koskensilta
2004-01-14 12:48                                                                       ` Georg Bauhaus
2004-01-14 13:47                                                                         ` Aatu Koskensilta
2004-01-15  1:12                                                                           ` Georg Bauhaus
2004-01-17  3:58                                                                             ` Robert I. Eachus
2004-01-17 20:50                                                                               ` Robert A Duff
2004-01-14 16:44                                                                         ` Robert I. Eachus
2004-01-14 22:08                                                                           ` David Starner
2004-01-17  4:13                                                                             ` Robert I. Eachus
2004-01-14 22:52                                                                           ` Aatu Koskensilta
2004-01-16  5:45                                                                             ` Pat Rogers
2004-01-17  5:19                                                                             ` Robert I. Eachus
2004-01-17 15:56                                                                               ` Aatu Koskensilta
2004-01-17 16:09                                                                                 ` Robert I. Eachus
2004-01-17 21:07                                                                               ` Robert A Duff
2004-01-18  0:20                                                                                 ` Robert I. Eachus
2004-01-19 22:02                                                                                   ` Robert A Duff
2004-01-14 15:12                                                                       ` Alexandre E. Kopilovitch
2004-01-14 16:32                                                                         ` Aatu Koskensilta
2004-01-15  1:28                                                                           ` Alexandre E. Kopilovitch
2004-01-16  8:07                                                                             ` Aatu Koskensilta
2004-01-17  2:07                                                                               ` Alexandre E. Kopilovitch
2004-01-17  5:29                                                                               ` Robert I. Eachus
2004-01-21  8:07                                                                                 ` Aatu Koskensilta
2004-01-21 23:23                                                                                   ` Robert I. Eachus
2004-01-15  5:22                                                                           ` Jeff C,
     [not found]                                                           ` <btsrnj$gld$2@a1-hrz.uni-duis <2GsAAls/KX7Z089yn@the-wire.com>
2004-01-16 20:36                                                             ` Albert van der Horst
2004-01-11 17:44                                                     ` Everett M. Greene
     [not found]                                                     ` <btqo11$8uo@libra <20040111.79C2A20.8BC3@mojaveg.iwvisp.com>
2004-01-11 19:14                                                       ` CBFalconer
     [not found]                                               ` <3ff9df16.3024 <1073487133.232393@master.nyc.kbcfp.com>
2004-01-16 20:13                                                 ` Albert van der Horst
2004-01-18  3:11                                                   ` Hyman Rosen
2003-12-30 21:35                                         ` Ed Falis
2003-12-31  0:11                                           ` Dave Hansen
2003-12-31 11:02                                             ` Martin Krischik
2003-12-31 13:38                                             ` Ed Falis
2003-12-31 15:22                                               ` Robert I. Eachus
2003-12-31 22:46                                                 ` Robert A Duff
2003-12-31 23:13                                                   ` Hyman Rosen
2004-01-02  2:24                                                     ` Robert A Duff
2004-01-02  4:06                                                       ` Hyman Rosen
2004-01-02 20:47                                                         ` Randy Brukardt
2004-01-03  1:47                                                         ` Robert A Duff
2004-01-02 11:49                                                       ` Dmitry A. Kazakov
2003-12-31 16:52                                               ` Alex Colvin
2003-12-29 17:56                               ` Martin Krischik
2003-12-30  1:17                                 ` Morris Dovey
2003-12-30 10:01                                   ` Martin Krischik
2003-12-29 18:40                               ` Frank J. Lhota
2003-12-30 10:04                                 ` Martin Krischik
2003-12-27  5:18                         ` Richard Henry
2003-12-30 21:41                       ` Larry Kilgallen
2003-12-30 22:17                         ` Hyman Rosen
2003-12-30 21:45                       ` Larry Kilgallen
2003-12-25  2:33                     ` Robert I. Eachus
2003-12-26 11:15                       ` Chris Hills
2003-12-26 15:49                         ` Chad R. Meiners
2003-12-30 18:01                           ` Chris Hills
2003-12-27  1:58                         ` Stephen Leake
2003-12-27 20:17                           ` Robert I. Eachus
2003-12-28  3:01                             ` Stephen Leake
2003-12-24 22:59                   ` Mike Silva
2003-12-26 14:58                     ` Alan Balmer
2003-12-27 21:33                       ` Robert I. Eachus
2003-12-28  2:34                         ` Alexandre E. Kopilovitch
2003-12-28  6:08                           ` Robert I. Eachus
2003-12-29  4:14                             ` Alexandre E. Kopilovitch
2003-12-29 16:41                               ` Robert I. Eachus
2003-12-24 23:11                   ` Mike Silva
2003-12-26 11:21                     ` Chris Hills
2003-12-27  0:42                       ` David Emery
2003-12-27 16:15                         ` Chris Hills
2003-12-27 19:10                           ` Larry Kilgallen
2003-12-27 21:17                             ` Chris Hills
2003-12-28  6:14                               ` Mike Silva
2003-12-28 10:15                   ` Peter Amey
2003-12-28 15:46                     ` Chris Hills
2003-12-28 22:59                       ` Chad R. Meiners
2003-12-29  1:29                         ` Robert I. Eachus
2003-12-29  4:34                           ` Chad R. Meiners
2003-12-29 16:56                             ` Robert I. Eachus
2003-12-29 18:56                               ` Chad R. Meiners
2003-12-29 11:39                           ` Peter Amey
2003-12-28 15:51                     ` CBFalconer
2003-12-28 16:00                       ` Ed Falis
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox