Page 1 of 2
strlen
Posted: Wed Dec 17, 2008 4:09 pm
by Bryghlawg
Mmh, I wonder how call stack overflow proof the VM used to validate the solutions really is...
My program surely will eat up call stack space like mad:
00^<2?2gp!1+1c

Posted: Wed Dec 17, 2008 7:45 pm
by m!nus
I wanted to post my code aswell, then realized I hadn't saved it. So I go open the challenge and start typing code, my solution turned out to still be in the browser history buffer.
00^<4?1+1cp!
Yes, mine abuses calls aswell.
Posted: Wed Dec 17, 2008 9:51 pm
by MerickOWA
i dont think the "!" is necessary, not if its at the end of the program anyways
strlen counts \0?
Posted: Thu Jan 29, 2009 12:32 am
by megabreit
Looks like I have to find out how the call stack trick works
Til then the "straight forward" version that cleans up the stack:
00<0:26*?1+0^044*3+-gp
My first version subtracted 1 because strlen in C is defined as length
without the trailing \0! Maybe this should be pointed out in the challenge...
it's quite confusing to get the "right" answer rejected.
Re: strlen counts \0?
Posted: Thu Jan 29, 2009 5:24 am
by tails
No, it does not count \0.
And you don't need to subtract 1 from the \0 position.
If the given string is "abc" for example, the \0 pisition is 3, and the length of the string is also 3.
mem[0] = 'a'
mem[1] = 'b'
mem[2] = 'c'
mem[3] = 0
Posted: Thu Jan 29, 2009 7:12 pm
by megabreit
Ooops. You're right... another Obiwan (off by one) error.
Somehow I'm attracted by those things.
I finally made it right.. even with slightly wrong thoughts.
Thanks for pointing this out!
Posted: Tue Mar 10, 2009 7:47 pm
by PeterS
I think writing programs for the Hack VM even worse than writing assembly. What's the point of this programming language?
However, what do you mean by 'call stack overflow' and 'abusing calls'?
By the way, this is my program:
http://img3.imagebanana.com/img/o2fuqhh ... nshot1.png
Posted: Tue Jun 23, 2009 9:05 am
by z3ro
The obtuseness bugged me, so I wrote a quick assembler for it; to help out with HVM problems.
It let me write strlen in 10 seconds! [wrote the assembler originally for the King Mouse problem].
Now I can write code like:
Code: Select all
const 0
loop:
dup 0
fetch
rjmpiz done
const 1
add
rjmp loop
done:
printint
end
and let the assembler do the job of translating that into
for me. I need to make the linker a bit smarter so rather than reserving lots of space for a link constant and then just filling what it needs, it uses a smarter algorithm to calculate inner constants first, but oh well, this works

. Its never going to beat the size limit problems, but it makes the no-size-limit-ones much more fun.
Posted: Tue Jun 23, 2009 8:47 pm
by therethinker
I tried writing an assembler that also had a few more utility functions (!= loops, for example). It was meh... It was easier to do them by hand.
(Reminder that adum doesn't want us sharing assemblers, but talking about them, I presume, is fine)
Posted: Thu Jul 02, 2009 4:16 pm
by livinskull
Now whats the matter with abusing call stack ?
My program needs exactly the same cycle-count but seems much bigger
Code: Select all
099*9*>099*9*1+>99*9*1+<<95*5-?99*9*1+<1+99*9*1+>99*9*<1+99*9*>09-6*1-g99*9*<p
However its kinda bad when the string is too long... storing some counter at 729 and pointer at 730
Posted: Thu Jul 02, 2009 5:54 pm
by megabreit
The thing about the call stack is simple: "g" and "?" are relative jumps, but "c" is an absolute jump that places a return address onto the call stack. But there is no law to use "$" whenever you used "c". And if you don't return from your subroutines, the stack fills up.
Since all the challenges I saw do not require to cleanup anything (they only need to terminate without error), "abusing" the call stack is a legitimate way to achieve certain goals.
Regarding the assembler: There are plenty of HVM challenges, and if I was able to write an assembler/compiler for HVM I would do that (King Mouse is still on my todo list). Fortunately there is the Java IDE which makes it a lot easier to write and debug HVM programs.
I don't think that adum cares about how the challenges are solved (as long as you do it on your own) ... you know... this is hacker.org. But maybe I'm wrong... adum?
Posted: Thu Jul 02, 2009 6:13 pm
by livinskull
I know what a callstack is and how it works
What im wondering is why bother using it, when using variables in memory is executed at the same speed and much less complex.
Posted: Thu Jul 02, 2009 6:42 pm
by megabreit
E.g. to make your code faster or shorter... watch out for the next HVM challenges

strlen ...
Posted: Wed Nov 11, 2009 9:05 pm
by wizard0815
My version don't use the call stack.
Posted: Thu Nov 19, 2009 12:43 pm
by DaymItzJack
00^<8?1+058+-gp
=/