From a812fe8ceb75fd2befe44a151f1e214f357c24c2 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Sun, 3 Oct 2021 16:05:19 +0200 Subject: Nodes: use extern templates for socket declarations The new socket declaration api generates a surprising amount of symbols in each translation unit where it is used. This resulted in a measurable compile time increase. This commit reduces the number of symbols that are generated in each translation unit significantly. For example, in `node_geo_distribute_points_on_faces.cc` the number of symbols decreased from 1930 to 1335. In my tests, this results in a 5-20% compile time speedup when this and similar files are compiled in isolation (measured by executing the command in `compile_commands.json`). Compiling the distribute points on faces node sped up from ~2.65s to ~2.4s. --- source/blender/nodes/CMakeLists.txt | 1 + source/blender/nodes/NOD_node_declaration.hh | 1 + source/blender/nodes/NOD_socket_declarations.hh | 21 +++++++++++++ .../blender/nodes/intern/extern_implementations.cc | 34 ++++++++++++++++++++++ 4 files changed, 57 insertions(+) create mode 100644 source/blender/nodes/intern/extern_implementations.cc (limited to 'source/blender/nodes') diff --git a/source/blender/nodes/CMakeLists.txt b/source/blender/nodes/CMakeLists.txt index c487288bc75..276af617d1c 100644 --- a/source/blender/nodes/CMakeLists.txt +++ b/source/blender/nodes/CMakeLists.txt @@ -377,6 +377,7 @@ set(SRC texture/node_texture_util.c intern/derived_node_tree.cc + intern/extern_implementations.cc intern/geometry_nodes_eval_log.cc intern/math_functions.cc intern/node_common.cc diff --git a/source/blender/nodes/NOD_node_declaration.hh b/source/blender/nodes/NOD_node_declaration.hh index 5b8003a03de..aa01afc6a14 100644 --- a/source/blender/nodes/NOD_node_declaration.hh +++ b/source/blender/nodes/NOD_node_declaration.hh @@ -197,6 +197,7 @@ class SocketDeclarationBuilder : public BaseSocketDeclarationBuilder { { decl_->output_field_dependency_ = OutputFieldDependency::ForPartiallyDependentField( std::move(input_dependencies)); + return *(Self *)this; } }; diff --git a/source/blender/nodes/NOD_socket_declarations.hh b/source/blender/nodes/NOD_socket_declarations.hh index 3f7f9e0414e..6eac77b1d6b 100644 --- a/source/blender/nodes/NOD_socket_declarations.hh +++ b/source/blender/nodes/NOD_socket_declarations.hh @@ -330,3 +330,24 @@ inline Texture::Texture() : IDSocketDeclaration("NodeSocketTexture") } } // namespace blender::nodes::decl + +/* -------------------------------------------------------------------- + * Extern template instantiations that are defined in `intern/extern_implementations.cc`. + */ + +namespace blender::nodes { +#define MAKE_EXTERN_SOCKET_DECLARATION(TYPE) \ + extern template class SocketDeclarationBuilder; \ + extern template TYPE::Builder &NodeDeclarationBuilder::add_input(StringRef, StringRef); \ + extern template TYPE::Builder &NodeDeclarationBuilder::add_output(StringRef, StringRef); + +MAKE_EXTERN_SOCKET_DECLARATION(decl::Float) +MAKE_EXTERN_SOCKET_DECLARATION(decl::Int) +MAKE_EXTERN_SOCKET_DECLARATION(decl::Vector) +MAKE_EXTERN_SOCKET_DECLARATION(decl::Bool) +MAKE_EXTERN_SOCKET_DECLARATION(decl::Color) +MAKE_EXTERN_SOCKET_DECLARATION(decl::String) +MAKE_EXTERN_SOCKET_DECLARATION(decl::Geometry) + +#undef MAKE_EXTERN_SOCKET_DECLARATION +} // namespace blender::nodes diff --git a/source/blender/nodes/intern/extern_implementations.cc b/source/blender/nodes/intern/extern_implementations.cc new file mode 100644 index 00000000000..42d4b2878bc --- /dev/null +++ b/source/blender/nodes/intern/extern_implementations.cc @@ -0,0 +1,34 @@ +/* + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +#include "NOD_socket_declarations.hh" + +namespace blender::nodes { +#define MAKE_EXTERN_SOCKET_IMPLEMENTATION(TYPE) \ + template class SocketDeclarationBuilder; \ + template TYPE::Builder &NodeDeclarationBuilder::add_input(StringRef, StringRef); \ + template TYPE::Builder &NodeDeclarationBuilder::add_output(StringRef, StringRef); + +MAKE_EXTERN_SOCKET_IMPLEMENTATION(decl::Float) +MAKE_EXTERN_SOCKET_IMPLEMENTATION(decl::Int) +MAKE_EXTERN_SOCKET_IMPLEMENTATION(decl::Vector) +MAKE_EXTERN_SOCKET_IMPLEMENTATION(decl::Bool) +MAKE_EXTERN_SOCKET_IMPLEMENTATION(decl::Color) +MAKE_EXTERN_SOCKET_IMPLEMENTATION(decl::String) +MAKE_EXTERN_SOCKET_IMPLEMENTATION(decl::Geometry) + +#undef MAKE_EXTERN_SOCKET_IMPLEMENTATION +} // namespace blender::nodes -- cgit v1.2.3