Path: news.eternal-september.org!eternal-september.org!.POSTED!not-for-mail From: Mike Terry Newsgroups: comp.theory Subject: Re: Incorrect requirements --- Computing the mapping from the input to HHH(DD) Date: Fri, 9 May 2025 04:14:42 +0100 Organization: A noiseless patient Spider Lines: 129 Message-ID: References: <87msbmeo3b.fsf@nosuchdomain.example.com> <87a57mek8r.fsf@nosuchdomain.example.com> <87seled0zy.fsf@nosuchdomain.example.com> MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit Injection-Date: Fri, 09 May 2025 05:14:43 +0200 (CEST) Injection-Info: dont-email.me; posting-host="a0995f1472274ef187d550b31df0c8ef"; logging-data="2645828"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18LUkJ+B5Vam0fEtuOLtWjCKFnbhdFVnCI=" User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0 SeaMonkey/2.53.18.2 Cancel-Lock: sha1:lpmqClX7UF8zRVykGUathxJRQlk= In-Reply-To: On 09/05/2025 03:13, olcott wrote: > On 5/8/2025 8:30 PM, Keith Thompson wrote: >> olcott writes: >>> On 5/8/2025 6:49 PM, Keith Thompson wrote: >>>> olcott writes: >>>> [...] >>>>> void DDD() >>>>> { >>>>>     HHH(DDD); >>>>>     return; >>>>> } >>>>> >>>>> If you are a competent C programmer then you >>>>> know that DDD correctly simulated by HHH cannot >>>>> possibly each its own "return" instruction. >>>> "cannot possibly each"? >>>> I am a competent C programmer (and I don't believe you can make >>>> the same claim).  I don't know what HHH is.  The name "HHH" tells >>>> me nothing about what it's supposed to do.  Without knowing what >>>> HHH is, I can't say much about your code (or is it pseudo-code?). >>>> >>> >>> For the purpose of this discussion HHH is exactly >>> what I said it is. It correctly simulates DDD. >> >> Does HHH correctly simulate DDD *and do nothing else*? >> >> Does HHH correctly simulate *every* function whose address is passed >> to it?  Must the passed function be one that takes no arguments >> and does not return a value? >> >> Can HHH just *call* the function whose address is passed to it? >> If it's a correct simulation, there should be no difference between >> calling the function and "correctly simulating" it. >> >> My knowledge of C tells me nothing about *how* HHH might simulate >> DDD. >> > > HHH can only simulate a function that take no arguments > and has no return value. HHH also simulates the entire > chain of functions that this function calls. These can > take arguments or not and have return values or not. > > Thus HHH ends up simulating itself (and everything > that HHH calls) simulating DDD in an infinite > sequence of recursive emulation until OOM error. > >>> We need not know anything else about HHH to >>> know that DDD correctly simulated by HHH cannot >>> possibly REACH its own "return" instruction. >> >> Assuming that HHH(DDD) "correctly simulates" DDD, and assuming it >> does nothing else, your code would be equivalent to this: >> >>      void DDD(void) { >>          DDD(); >>          return; >>      } >> > > Exactly. None of these people on comp.theory could > get that even after three years. > PO is being quite deceptive here. His simulation is in fact a single-stepped x86 instruction simulation, where the stepping of each x86 instruction is under the HHH's control. HHH can continue stepping the simulation until its target returns, in which case the situation is logically just like direct call, as you have described. Or HHH could step just 3 x86 instructions (say) and then decide to return (aka "abort" its simulation). Let's call that /partial/ simulation in contrast with /full/ simulation which you've been supposing. Oh, did he forget to mention that? Anyhow, in the general case with /partial/ simulation there is more to think about as it is obvioudly /not/ logically equivalent to direct execution. Oh, and obviously everybody in comp.theory gets all this. The problem is with PO and his inability to communicate his ideas properly and his inability to understand what other people understand or disagree with. He goes on for months/years claiming people don't understand things they agree with, but it's down to his duffer wording... >> Then the return statement (which is unnecessary anyway) will never be >> reached. > > It is only there to mark a final halt state. > >> In practice, the program will likely crash due to a stack >> overflow, unless the compiler implements tail-call optimization, in >> which case the program might just run forever -- which also means the >> unnecessary return statement will never be reached. >> > > Yes you totally have this correctly. > None of the dozens of comp.theory people could > ever achieve that level of understanding even > after three years. That is why I needed to post > on comp.lang.c. Everybody on comp.theory understands this much. PO's plan is that when he goes elsewhere he can start with noobies and trick them into agreeing with certain "wordings" by not explaining relevent context for his questions. Then he goes back to comp.theory and triumphantly claims support from elsewhere, proving to himself that comp.theory posters are all idiots. :) So beware! > >> This conclusion relies on my understanding of what you've said about >> your code, which I consider to be unreliable. Hmm, did PO make it clear that when he says "..DDD correctly simulated by HHH cannot possibly REACH its own "return" instruction." he is not talking about whether "DDD halts"? [I.e. halts when run directly from main() outside of a simulator.] No, what he is talking about is whether the /step-by-step partial simuation/ of DDD performed by HHH proceeds as far as DDD returning. Don't forget - HHH is allowed to simply stop simulating and return whenever it likes! Maybe it only wants to simulate 48 x86 instructions, or just 1, or maybe it's in for the long haul and simulates until DDD returns [if it ever does]. So you need to re-analyse everything you've said with this new information that PO forgot to make clear. Regards, Mike.