Displaying 2 results from an estimated 2 matches for "pushon".
Did you mean:
pushor
2003 Nov 21
2
[LLVMdev] Need Help With Verifier
...wo load instructions used to fetch the values. Right? Please say
yes or I have to change my whole conception of how this works! :)
Okay, so one of the built-in operations in Stacker is to push an integer
onto the stack. This is done by just mentioning the integer value as in
Forth. For example,
: PushOne 1 ;
is Stackerese for defining a function that pushes the value 1 onto the
stack. To implement "PushOne", I have to conceptually do this:
1. Load the integer stack index (LoadInst)
2. Increment the index (Add BinaryOperator)
3. Get the address of the stack element at tha...
2003 Nov 21
0
[LLVMdev] Need Help With Verifier
...values. Right? Please say
> yes or I have to change my whole conception of how this works! :)
yes! :)
> Okay, so one of the built-in operations in Stacker is to push an integer
> onto the stack. This is done by just mentioning the integer value as in
> Forth. For example,
>
> : PushOne 1 ;
>
> is Stackerese for defining a function that pushes the value 1 onto the
> stack. To implement "PushOne", I have to conceptually do this:
>
> 1. Load the integer stack index (LoadInst)
> 2. Increment the index (Add BinaryOperator)
> 3. Get the ad...