Liste des Groupes | Revenir à c theory |
On 6/5/2024 3:28 PM, Mike Terry wrote:On 05/06/2024 17:49, olcott wrote:YESOn 6/5/2024 10:55 AM, Mike Terry wrote:What happens now is that there is one single trace array in globalOn 05/06/2024 10:38, Ben Bacarisse wrote:John Smith <news2@immibis.com> writes:
>
memory, and all simulations appends simulated instructions to that one
array
and can read array entries written by other simulation levels.NO they have not been doing this and I will encode it so that this is
impossible. I knew about this issue about two years before you recently
raised it. I only found out abut this issue from comp.theory
respondents.
Oh really? Do you know that a simulation can't be aborted?That fundamentally breaks the concept of a simulation exactly matchingI have known this for at least two years.
the behaviour of the outer (unsimulated) computation. More details
below...
The simulator should not pass its own tape to be read. It can use its[but the problem is I don't believe you really understand what theI was emulating a UTM passing a portion of its own tape down to its
requirements of simulation are, because if you did you simply wouldn't
have written code like that in the first place...]
simulated instances of itself. That aspect always seemed legit.
And calling it "a portion of what is essentially its own TM tape" isNot if the simulated instances never access the data from the
just obfuscation to try to hide the obvious breaking of rules.
outer-simulations. I will encode this to make it impossible.
I will encode u32 start_tape_address to the position in execution_trace
where the simulated HH begins so that it will not ever look further
back.
The simulated instances don't know anything about the master tape. TheEither the simulated instances must some how know not to allocate memoryThe key objection that you seemed to have is that it can't pass anyPartly right but woefully incomplete. If you added "...or to modify
information to its simulated instance that they can use in their own
halt status decision.
its logical behaviour in any way" that would be a good summing up.
for what is essentially a portion of the master UTM tape that is passed
down to them, or the master UTM must some how find the UTM tape of these
simulated instances.
What can a TM not do?Your specific focus on just "their own halt status decision" is onlyI am having you analyze the details. I was basically gobsmacked that A
one part of the picture - my guess would be you know "the rules" but
for whatever reason the only solution you can come up with breaks the
rules,
so you try to convince yourself that that's ok by changing the rules.
TM cannot do any damn thing that any C program can do.
It has been at least three years since then.
More specifically, the behaviour of a simulated HH must exactly[*]They are exactly the same except that the inner ones remain stuck in
match the behaviour of the outer (unsimulated) HH.
Behaviour means all of the following:
- the instruction path of simulated HH exactly matches the instruction
path
of the outer HH. [Currently HH has different code paths for
simulated/
outer execution! It is not enough that you /believe/ this will
not
affect "the result".]
recursive simulation until the outer one stops simulating its DD.
- registers and all data and data locations used by the simulation
must match the registers
and data and data addresses used by the outer HH. [*]
- no backdoor channels where a nested simulation feeds data to a
nesting simulation or vice versa. Obviously an outer simulation can
"scrape" data from it's directly simulated computation.
[*] exactly match?? A big headache is that you've chosen a model where
all the simulations share one 32-bit address space. So simulation
working data will be at different locations to the outer working data.
IF your code acts "responsibly" this can be catered for. E.g.
simulated data on stacks will be at different addresses for each
simulation - but still the location of the data within the stack and
their values should /exactly/ [*] match across all simulations.
Similarly a call to Allocate() will return different results in each
simulation, but the location of all data used by the simulation
relative to that allocation address should match, and the value of the
data should match [* allowing for pointer mismatches etc.]. Near the
end of this post I give some rules for code that acts "responsibly" -
those rules try to ensure these address relocation problems don't
affect arguments you make.
I don't think that they ever did this and they certainly do not need toNone of the simulated instances ever did this,The inner simulations examined a succession of trace entries written by
other simulation levels.
do this so I will encode HH so this is impossible.
You could have constructed so it isn't even possible.That is wrong. I think you've convinced yourself they didn't doI knew that this was wrong for three years.
anything wrong, because you've decided to focus only on "affect their
own halt status decision", but that's not the requirement.
I will make the minor change to my code to make it more obvious that
they are not doing this.
You say that simulated HH looks back at outer-simulations I say no theyyet I can make this more clear. As soon as they are initialized theyI think I understand what you're thinking, and a) you are just trying
can store their own first location of this tape and never look at any
location before their own first location. In this case they would
never get a chance to look any data from the outer simulations that
they can use to change their own behavior.
to replace one Wrong with another Wrong that you
hope will be given a tick by someone, rather than looking at
what a simulation needs to be, and implementing it logically
b) it won't work
don't. I will encode it so that it is more obvious that they don't look
back.
No. The simulation can't see anything. The simulator may use part of itsAs for (a): What I think you're proposing is to still have the globalThe outer UTM is allowed to pass a portion of its own tape to its
trace table, initialised by the outer HH, and still have different code
paths followed by inner and outer simulations. That's all No Good.
simulated instances. I may not have done this in the cleanest way, yet
*this <is> my architectural design intention*
IF. But where do entries by the simulator go after the inner machineAs for (b): I think you intend each inner simulation to be told whereThat is OK as long as they are lower inner levels and not higher outer
it is starting in the global trace, so that when it inspects it, it can
start from its own starting point. The problem is that all simulations
append to the table beyond that point, so a given simulation will
/still/ be seeing entries directly added by other simulation levels.
levels, according to what I figured out on my own and you confirmed:
In effect you're still trying to keep the shared mutable static dataThe outer UTM is allowed to pass a portion of its own tape to its
idea that breaks all 3 of the "proper simulation" requirements I laid
out above.
simulated instances. I may not have done this in the cleanest way, yet
*this <is> my architectural design intention*
Why would you want to do that rather than fix the obvious design flawI must not have understood what you were saying.
itself? I even explained some time ago how to do that properly, but
you're presenting yourself as some kind of master "Software Engineer"
and yet you can't work that out for yourself? I'd guess it should be
perhaps a days programming effort...
Anyway, the correct approach should obviously be for each simulation toI knew that was one option yet could not figure out any way that HH can
maintain its own trace table which is only written to and read by
itself. [Obviously, outer simulations could work out where that
virtual table was implemented and /scrape/ data out of it if they
wanted to.
reliably scrape the data from its inner simulated HH instances without
knowing that these inner HH instances are a copy of itself.
If HH merely knows its own machine address then it can do this. If HHA machine isn't aware of itself.
knows its own machine address then there is no need for data scraping it
rejects the next simulation of itself before it begins. The newer H
already does that.
If H halts, its simulation doesn't need to be stopped.But those outer simulations would have their own trace tables with theYet they themselves cannot ever stop running unless and until the outer
data relevant for their processing. What's more, the code paths and
behaviours of HH in each simulation level would be identical which is a
basic simulation requirement.
HH stops simulating them. If every HH stops simulating after three
recursive simulations then the outer one sees this first.
Whatever would it be starting with written on the tape?I will implement this in code sometime later today and publish this
code to my repository.
The only issue left that seems to not matter is that each simulated HH
needs to see if it must initialize its own tape. Since this has no
effect on its halt status decision I don't think it makes any
difference.
EXCEPT. If the outer one stops simulating, the inner ones do as well.That's wrong thinking. Each simulation level must be exactly the sameThey are exactly the same except that the inner ones remain stuck in
as the outer one. Not just in terms of "their halt status decision"
but in terms of code paths, data values accessed [* qualified as
explained above due to data relocation issues in your environment].
recursive simulation until the outer one stops simulating its DD.
It can't know about itself.Look - if the outer HH has to initialise a variable, the inner HHs haveI can do all of this when HH can know its own machine address. H(D,D) is
to initialise that same variable, because it is THEIR implementation of
that variable, within THEIR virtual address space provided by their
simulator. Your problem comes because you insist on trying to SHARE
DATA ACROSS SIMULATIONS.
Just follow the simple and rather obvious rules like:
- no mutable static data. All mutable data should be anchored within
the simulations stack.
- when pointers are involved, the pointer values should only be used
within code to be dereferenced and access the "actual" data
stored at that location. [and apply this rule recursively if
required!]
already implemented this way.
To follow your advice HH still needs to know its own machine address soIt doesn't need to. It is just simulating a program which happens to be
that its knows that the simulated copies of itself are copies of itself.
If it does not know this then is has no idea where to look inside the
simulated copies to find their execution traces.
See above.Try and show how HH can find the execution trace data of the simulatedI will double check everything to make sure there is no data passed..OR affect the code path blah blah. Your focus on /just/ the halt
from the outer simulations to the inner simulations that can possibly
be used for any halt status decision by these inner simulated
instances of HH.
status decision is not enough. And anyhow you /know/ that the /only/
data passed to inner simulations must be the code to be simulated, and
the input data arguments (simulating DD(DD) that is the code of DD and
the DD argument). NOTHING ELSE, regardless of what it affects...
copies of itself without knowing that they are simulated copies of
itself. This seems to require HH to know its own machine address and
H(D,D) already fully implements that to reject the invocation of the
next simulation.
Les messages affichés proviennent d'usenet.