Lines Matching full:accumulator
91 * Implicitly addressed accumulator register.
97 ### Implicitly addressed accumulator register
105 ; at this point, accumulator register contains arg1 + arg2
111 be an accumulator register. Having an implicitly addressed accumulator register de facto borrows
115 In an ideal case, accumulator register may safe us ~25% of size. But it needs to be used carefully:
120 * You don't need to pass object reference in accumulator in the object call. Usually objects live
121 longer than accumulator value (otherwise calls will be accompanied with moves from and to
122 accumulator, reducing performance and increasing encoding size).
126 accumulator, a simple optimizer will be introduced as a part of the toolchain.
128 Finally, using accumulator allows getting rid of the instructions for writing the result to the reg…
138 | accumulator | |
189 numbers and store the result into accumulator, we will need a dedicated `adda_d ...`, etc.