I think I can pretty much wrap up this topic from my last findings, which are the following:
There is a set of things that are inherently slower in UE5 compared to UE4, which are the following:
Material System
UE5 updated its rendered code to use SM6 as a base, moving to more complex PSOs also In relation to Lumen and Nanite. Even when using SM5 you can see that shader instructions are higher for bare bones materials vs UE4. This is the most important performance regression as it increases memory usage and gpu time. Sadly there is no way to fully bypass this even when using the legacy renderer for mobile devices.
Animation Blueprints and Skeletal Meshes
AnimBlueprints in UE5 are slower because of extra processing logic for state machines/ event graph evaluations/ warping / root motion and blending. This can be bypassed if not using the AnimBp/Anim class
Also, the Skeletal Mesh Component became more complex with more advanced bone handling, this is also a very important performance regression as Skeletal Meshes are the most cpu consuming component.
Despite these setbacks, UE5 does have an advantage for the AnimBp class, which is the multithreading framework(have gotten used to c++ implementations of it) and it does help for complex tick logic such as Motion Matching updates. Granted it’s possible to implement custom multithreading for the AnimClass in UE4 but likely at a slighter overhead due to writing back to the game thread Update.
UI Widgets
UI Widgets on UE5 have more processing overhead due to higher fidelity rendering, which was specially done to improve text and vector scaling (it applies to widgets components in general) and more advanced check for widget transformations because of more complex hierarchy logic.
This one is more relevant that it could seem since Widgets were already pretty costly on UE4. This has a noticeable impact on console such as PS4/Switch.
One could get away by just using its own UI code and using textures directly.
Chaos
Even compared with UE4 Chaos, UE5 Chaos is less performant because it has extra ticks and some accuracy improvements. Of course, PhysX was way more performant and featured a Fast Path for mobile platforms. Thankfully at least there is Havok for Unreal Engine (paid) and also some custom versions of UE5 using updated versions of PhysX.
Niagara
This one is not a fulldowngrade, because the Niagara VM (Vector) did got a speed up improvement, however as previously mentioned here, the UE5 Niagara has heavier tick systems and does more operations to handle the emitters. In respect to cascade, Niagara often is less performant in older systems with weaker gpus such as Switch, phones or even 8th gen consoles.
Conclusion<
If the goal is to ship a game for phones (even iphone 16) or consoles such as Switch, Switch 2, PS4/Xbone there are great reasons to stick with UE4 since performance for these devices can make or break a release.