Open andrewrk opened 8 years ago
My first interpretation of @stack_size(function)
was that it was the immediate stack requirement just for that function, not the transitive worse case. The most concise and complete name i can think of for what you're describing is @worst_case_transitive_stack_size(function)
, but that's probably too long. Hmm.
Some of your wording sounds like you're going to impose this limitation everywhere, which is a bad idea. Having this feature available for new threads and for the binary's main function is cool, but we can't force users to never recurse on user input. That would make a recursive-descent parser impossible in Zig, which seems like a silly limitation.
Speaking of recursive descent parsers, the v8 javascript engine has a runtime check for a stack overflow in its recursive descent parser. This is done with pointer arithmetic on local variables before and during the recursive descent. This is pretty elegant in the sense that it results in simple machine code, but i don't like how it means it has to be limited to bytes instead of to recursion levels. Consider you were writing the Linux kernel code that limits symlink recursion to 40 levels. In that case, you would probably want to allocate a stack of something + something * 40
(rounded up to a page boundary), which brings me to my next proposal.
What if we could expose the innerworkings of this function to the user at compiletime-constant time? What if we could give the non-recursive stack requirement of each individual function, and additionally give the user a way to walk the callgraph. Then the user could detect all the paths where their recursive descent parser recurses, calculate the maximum stack requirement for a recursion level, and then translate between maximum recursion levels and bytes required for the the stack (calculating either one from the other).
We can also have the compiler do all this for us with the limitation that there needs to be a deterministic, finite answer (your proposal), but that special case might miss out on a lot of other potential from this kind of functionality. Or maybe I'm getting too excited about YAGNI-cream pies in the sky, but i think it's worth discussing at least.
I am not sure, but I think this is undecidable if you allow function pointers to be called. You can manually set up recursion that way. So, I think you would need to restrict any call to any function that is not a compile time constant that can be checked against the function in question.
What is the purpose for this restriction? Having done some embedded coding, I can see a use in that field.
IIRC, LLVM supports tail recursion. In that case, you could have an unknown amount of recursion at compile time yet still have a constant stack size.
I am not sure, but I think this is undecidable if you allow function pointers to be called. You can manually set up recursion that way. So, I think you would need to restrict any call to any function that is not a compile time constant that can be checked against the function in question.
In order for this feature to work, zig would have to know the set of functions a function pointer could potentially call. Difficult, but perhaps not impossible.
What is the purpose for this restriction?
IIRC, LLVM supports tail recursion. In that case, you could have an unknown amount of recursion at compile time yet still have a constant stack size.
Yes, when performing the stack size requirements, zig should identify tail recursion and not count it.
(Can't figure out how to quote a list) @andrewrk said:
I think the most common use cases here will be:
If you want to be able to have a threading model like Erlang or Go, then you would need to do a lot of gymnastics anyway in the run time (and forget embedded). It is unclear that you can scale to that many independent threads without GC, realistically. (As an aside, in the embedded world if you want to retain many threads of control, people tend to use protothreads anyway. Adam Dunkels is amazing.)
My arguments boil down to two things: in the embedded space you already have so many restrictions that having harsh ones in order to calculate static stack size is fine and the result of proving the static stack size is very, very desirable and you really do not care about the standard library. In the rest of computing, you have enough RAM and CPU to not worry about it.
I have run tests on Linux and created 1000 threads (that did something, not just looping) and found that each used about 32-64k for the stack in real physical RAM. That was 1000 threads in less than 64MB of space. Is that really a problem? With the recent massive increase in physical cores (thank you, AMD) that is happening, having a pile of real threads is not a problem. In Linux I ran the same kind of test, but fork()ed and created new processes and did not get much of a difference. It is very efficient.
What kinds of restrictions would be necessary to have a static stack size calculated? I think almost anything that could be compile time could also have this property. There are surely some edge cases I am missing though :-(
I think this is feature is neat for coroutine's as a library when combined with long jump. If you look at bearssl, the author wrote his own statically checked language just to get this feature. It let him do zero allocations in the library, but still use coroutines to let him yield control flow.
I started a discussion on the llvm-dev mailing list. http://lists.llvm.org/pipermail/llvm-dev/2017-October/118357.html
I've wanted this feature from a low-lever programming language a long time. It would be very useful in some embedded systems.
As thejoshwolfe mentions, it would probably a good to have both the immediate stack requirement (not sure what the use-case is though) and the worst case requirement.
There are obviously a lot of things you can't do in these functions (I see you covered everything I thought about and then some in the llvm-dev thread andrewrk). But that's OK. Sometimes it's worth it to work within certain restrictions to be able to prove certain things (like pure/functional functions and global state)
you have enough RAM and CPU to not worry about it
This is never true at sufficient scale.
A group is working on this on top of LLVM:
Note that after #2489, there is a runtime stack allocation in __zig_fail_unwrap
which is used to create the panic error message. This will have to be taken into account in the calculation. Probably the best way to solve it will be with a static buffer, and the panic message has to get chopped off if it's too long.
Probably the best way to solve it will be with a static buffer, and the panic message has to get chopped off if it's too long.
Why can't you just use the static buffer as a, well, buffer, and just issue two (or more) write() syscalls to clear it?
stderr is also buffered by default, so there is no need to ever write this to the stack. I believe @shritesh was working on having println work without needing stack.
Isn't it just undecidable https://en.wikipedia.org/wiki/Halting_problem in general? What makes it different?
It is in the general case. With this feature on, We will limit call graphs to make it not turing complete. That is the idea, but I myself am not sure how that will actually work, especially with function pointers.
El lun., 18 nov. 2019 15:51, Wojciech Miłkowski notifications@github.com escribió:
Isn't it just undecidable https://en.wikipedia.org/wiki/Halting_problem in general? What makes it different?
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/ziglang/zig/issues/157?email_source=notifications&email_token=AAD4W4RXW2EHT6O5LQ4RTALQUJ6SVA5CNFSM4CJDOB3KYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEEKF4SI#issuecomment-554982985, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAD4W4W22YCYPZRDJUNQZU3QUJ6SVANCNFSM4CJDOB3A .
I have run tests on Linux and created 1000 threads (that did something, not just looping) and found that each used about 32-64k for the stack in real physical RAM. That was 1000 threads in less than 64MB of space. Is that really a problem?
Anything that uses shared cache (L3) delays execution for other threads and programs, when they need to fetch back the dropped memory into cache. I think its mainly about one of the language guarantees zig wants to offer: robust (segfaulting on stack overflow is no option), optimal (dont run-time check stuff that you dont need to).
One can use pthread_attr_setstack to manually manage the stack size on Linux systems. For processes, there is setrlimit.
What kinds of restrictions would be necessary to have a static stack size calculated? I think almost anything that could be compile time could also have this property. There are surely some edge cases I am missing though :-(
The whole problem of an exact computation can be reduced to the halting problem, since we must reason over the reachable paths of any input to estimate which functions are used and which are unused to get the accurate stack size.
For a relative strict computation (only over-approximate arithmetic results to get the reachable paths for the function calls) we have the following constrains
Main thread
Additional constraints for threads besides the main thread:
Interrupt size also needs to be analysed on top: The Kernel can interrupt programs at any point and add to the stack what the Kernel thinks is necessary to resume later on the program.
Ideas
References embedded source, arm KEIL claims its too complex due to asynchronous events and interrupts and @EleanorNB and I suspect this is due to Kernel complexity. asynchronous events are defined here
Even without the Kernel I am only aware of stackanalyzer from absint which supports this use case. Knowledge in Astrée or AstréeA or PC-Lint from Gimpel should be helpful, but the hardest parts for accurate results are getting useful arithmetic overapproximations.
After quite long discussion with @EleanorNB and some afterthought I get to the following possible simplifications: A more simple overapproximation may lead to very significant inaccuracies, but for completeness the requirements are sketched here
The idea is to always assume the worst case in the call graph. For programs intended to terminate eventually, we can parallize the analysis by starting a new analysis for each subfunction.
pub fn main() {
fn1(); // parallel run of analysis1
fn2(); // parallel run of analysis2
..
} //main analysis waits for threads to finish to sum up the maximum stack size
The most important part is analyzing the Kernel implementation or getting overapproximation results from the Kernel how much additional space on the stack is required during interrupts. copied from above in the section Ideas:
Additionally we need:
AdaCore has GNATstack as tool. However, the description in the link is lacking some aforementioned assumptions and/or is unprecise on what type of arithmetic properties with resulting call graph information can be derived https://www.adacore.com/gnatpro/toolsuite/gnatstack.
Related is https://interrupt.memfault.com/blog/measuring-stack-usage as state of art description:
clang/gcc -c -fstack-usage stack-usage-example.c
// stack-usage-example.c
#include <stdio.h>
int foo_2(int c) { int array[4]; array[1] = c; array[3] = c* c; return array[3] - array[1]; }
int foo(int a, int b) { int array[10]; array[1] = a; array[9] = b;
return array[1] * array[9]; }
int main() { printf("%d\n", foo(1,2)); }
cat stack-usage-example.su example/stack-usage/stack-usage-example.c:3:5:foo_2 64 static example/stack-usage/stack-usage-example.c:10:5:foo 80 static example/stack-usage/stack-usage-example.c:18:5:main 16 static
However, a bunch of different tooling for analysis appears to be needed.
- 2. Runtime analysis with stack painting (very common in embedded systems, and is used by both FreeRTOS and Zephyr RTOS): Use fill pattern, in here are also Zigs `AAAAAAAA` used.
* System executes code to get a reasonable estimation of stack usage
- 3. gdb single stepping
I propose a
@stack_size(function)
builtin which returns the number of bytes thatfunction
- which must be a compile time constant function - will ever possibly use for the deepest call invocation.This function causes it to become a compile error if the function named - or any function called therein, invokes direct or indirect recursion on a non-compile time constant parameter. ~Similarly, if any function causes a runtime stack allocation to occur, such as
var foo: [x]u8 = undefined;
, wherex
is a parameter to the function invoked with a non compile time constant.~ This feature has been removed from zigThis builtin function could be used when creating a new thread, to determine the stack size. This stack would never have to grow or shrink, and it would be the maximum number of bytes that could possibly be used, likely very small.
It would also force the programmer to not use recursion on user input, a limitation that some categories of software require, and violating this would be caught by the compiler, since it makes returning a correct number from
@stack_size()
impossible.Users may even want to introduce this limitation on the main thread, and they could do this by adding a top level assert such as
comptime { assert(@stack_size(main) <= 16 * 1024 * 1024); }
or some such.If they do this, then we can modify the binary's stack size to be only as large as necessary, which is probably a minuscule improvement in memory footprint and startup time, but it's a strong guarantee of robustness at least in this one regard.
Another thing that would cause this function to cause a compile error is calls to an external library. External library functions could be annotated with a maximum stack size attribute, or we can have another threading abstraction that does not use
@stack_size()
for when we don't know the upper bound of how big a stack will grow.Tangential idea: when Zig outputs a shared library, in the .h file it generates, it can annotate functions with additional information in the comments, such as maximum stack size, and Zig can look for these annotations when importing .h files.
This function also introduces some weird interdependencies. For example, I could do:
Zig would have to detect this dependency loop and report a compile error.
Implementation of this would be a bit tricky since currently it is LLVM that determines the stack size of everything, and optimizations can increase and decrease the stack size of various functions. However, I think it is possible to have a sound upper bound.
@thejoshwolfe thoughts?