All of the mentioned issues can affect performance during mounting. Having too many components mount simultaneously can slow down the application; running expensive calculations in getDerivedStateFromProps can block rendering; and setting state in componentDidMount causes an additional render cycle (though it happens before the browser paints, it still takes processing time).