As matszwecja stated there is no formal CS terminaology for this.
However, if you are referring to these definitions of bottom-up and top-down recursion then it is bottom-up:
Bottom-up recursion: Processes from the leaves up to the root, performing main computations after reaching the base cases.
Top-down recursion: Starts processing at the root and may pass information down to child nodes before completing recursive calls.
Why?