RNA: return PointerRNA from rna create functions #111976

Merged
Jacques Lucke merged 7 commits from JacquesLucke/blender:return-rna-pointer into main 2023-09-06 00:48:59 +02:00
Member

There are a couple of functions that create rna pointers. For example RNA_main_pointer_create and RNA_pointer_create. Currently, those take an output parameter r_ptr as last argument. This patch changes it so that the functions actually return a PointerRNA instead of using the output parameters.

This has a few benefits:

  • Output parameters should only be used when there is an actual benefit. Otherwise, one should default to returning the value.
  • It's simpler to use the API in the large majority of cases (note that this patch reduces the number of lines of code).
  • It allows the PointerRNA to be const on the call-site, if that is desired.

No performance regression has been measured in production files. If one of these functions happened to be called in a hot loop where there is a regression, the solution should be to use an inline function there which allows the compiler to optimize it even better.

Currently, this patch only changes RNA_main_pointer_create and RNA_id_pointer_create. I'll update the other ones as well, if people are generally fine with this change.

There are a couple of functions that create rna pointers. For example `RNA_main_pointer_create` and `RNA_pointer_create`. Currently, those take an output parameter `r_ptr` as last argument. This patch changes it so that the functions actually return a` PointerRNA` instead of using the output parameters. This has a few benefits: * Output parameters should only be used when there is an actual benefit. Otherwise, one should default to returning the value. * It's simpler to use the API in the large majority of cases (note that this patch reduces the number of lines of code). * It allows the `PointerRNA` to be const on the call-site, if that is desired. No performance regression has been measured in production files. If one of these functions happened to be called in a hot loop where there is a regression, the solution should be to use an inline function there which allows the compiler to optimize it even better. Currently, this patch only changes `RNA_main_pointer_create` and `RNA_id_pointer_create`. I'll update the other ones as well, if people are generally fine with this change.
Jacques Lucke added 2 commits 2023-09-05 14:31:37 +02:00
Author
Member

@blender-bot build

@blender-bot build
Jacques Lucke requested review from Brecht Van Lommel 2023-09-05 14:32:41 +02:00
Jacques Lucke requested review from Campbell Barton 2023-09-05 14:32:41 +02:00
Jacques Lucke requested review from Sergey Sharybin 2023-09-05 14:32:41 +02:00
Jacques Lucke requested review from Bastien Montagne 2023-09-05 14:32:41 +02:00
Jacques Lucke requested review from Sybren A. Stüvel 2023-09-05 14:32:50 +02:00
Bastien Montagne reviewed 2023-09-05 14:37:19 +02:00
Bastien Montagne left a comment
Owner

I would guess the reason behind current code was to avoid copying around PointerRNA data?

No idea if this had ever any significant impact on performances, or if is still relevant nowadays?

If there is no significant impact, change indeed totally makes sense to me.

I would guess the reason behind current code was to avoid copying around PointerRNA data? No idea if this had ever any significant impact on performances, or if is still relevant nowadays? If there is no significant impact, change indeed totally makes sense to me.
Author
Member

I would be very surprised if this has any performance impact in practice. If this had a measurable performance impact, then I think the solution would be to inline these small functions. I'd expect the function call overhead here to be larger than actually changing the pointer. Especially in the common case where the PointerRNA lives on the stack.

I would be very surprised if this has any performance impact in practice. If this had a measurable performance impact, then I think the solution would be to inline these small functions. I'd expect the function call overhead here to be larger than actually changing the pointer. Especially in the common case where the `PointerRNA` lives on the stack.
Campbell Barton approved these changes 2023-09-05 14:47:29 +02:00
Sybren A. Stüvel approved these changes 2023-09-05 14:49:47 +02:00
Sybren A. Stüvel left a comment
Member

LGTM!

LGTM!

GCC isn't able to reliably optimize return values from functions, causing them to be less efficient than passing a pointer at times. On my system with GCC 13.2.1 the resulting binary is ~3kb larger - while I don't think it's a blocker, noting this has some minor down-sides.

GCC isn't able to reliably optimize return values from functions, causing them to be less efficient than passing a pointer at times. On my system with GCC 13.2.1 the resulting binary is ~3kb larger - while I don't think it's a blocker, noting this has some minor down-sides.
Brecht Van Lommel approved these changes 2023-09-05 16:32:19 +02:00
Bastien Montagne approved these changes 2023-09-05 16:52:27 +02:00
Sergey Sharybin approved these changes 2023-09-05 17:20:23 +02:00
Jacques Lucke added 4 commits 2023-09-06 00:14:09 +02:00
Jacques Lucke added 1 commit 2023-09-06 00:15:11 +02:00
buildbot/vexp-code-patch-coordinator Build done. Details
902d16f85a
Merge branch 'main' into return-rna-pointer
Author
Member

@blender-bot build

@blender-bot build
Jacques Lucke merged commit b5c89822ac into main 2023-09-06 00:48:59 +02:00
Jacques Lucke deleted branch return-rna-pointer 2023-09-06 00:49:00 +02:00
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser Project (Legacy)
Interest
Asset System
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
6 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#111976
No description provided.