From 795be040eb333502f6d6cda474b85b91e4aab23a Mon Sep 17 00:00:00 2001 From: abv Date: Sat, 12 Dec 2015 19:07:35 +0300 Subject: [PATCH] 0026551: Optimization of initialization of OCCT RTTI Global instances of type descriptors are eliminated as unnecessary --- src/Standard/Standard_Type.cxx | 7 +++++-- src/Standard/Standard_Type.hxx | 21 +++++---------------- 2 files changed, 10 insertions(+), 18 deletions(-) diff --git a/src/Standard/Standard_Type.cxx b/src/Standard/Standard_Type.cxx index db12772aec..c07d1693a4 100644 --- a/src/Standard/Standard_Type.cxx +++ b/src/Standard/Standard_Type.cxx @@ -37,8 +37,10 @@ Standard_Type::Standard_Type (const char* theSystemName, const char* theName, Standard_Size theSize, const Handle(Standard_Type)& theParent) : - mySystemName (copy_string (theSystemName)), - myName(theName), mySize(theSize), myParent(theParent) + mySystemName(copy_string (theSystemName)), + myName(copy_string (theName)), + mySize(theSize), + myParent(theParent) { } @@ -127,4 +129,5 @@ Standard_Type::~Standard_Type () // cout << "Unregistering " << mySystemName << ": " << aRegistry.Extent() << endl; Standard::Free (mySystemName); + Standard::Free (myName); } diff --git a/src/Standard/Standard_Type.hxx b/src/Standard/Standard_Type.hxx index 5cb49b28e1..98317e3b5c 100644 --- a/src/Standard/Standard_Type.hxx +++ b/src/Standard/Standard_Type.hxx @@ -57,7 +57,7 @@ public: \ // forward declaration of type_instance class namespace opencascade { template - class type_instance; + struct type_instance; } //! This class provides legacy interface (type descriptor) to run-time type @@ -156,22 +156,18 @@ namespace opencascade { //! Template class providing instantiation of type descriptors as static //! variables (one per binary module). Having type descriptors defined as - //! static variables is essential to ensure that everything gets initialized - //! during library loading and thus no concurrency occurs when type system - //! is accessed from multiple threads. + //! static variables is essential to ensure that descriptors are initialized + //! once and in correct order. template - class type_instance + struct type_instance { - static Handle(Standard_Type) myInstance; - public: static const Handle(Standard_Type)& get (); }; //! Specialization of type descriptor instance for void; returns null handle template <> - class type_instance + struct type_instance { - public: Standard_EXPORT static Handle(Standard_Type) get () { return 0; } }; @@ -180,8 +176,6 @@ namespace opencascade { template const Handle(Standard_Type)& type_instance::get () { - (void)myInstance; // ensure that myInstance is instantiated - // static variable inside function ensures that descriptors // are initialized in correct sequence static Handle(Standard_Type) anInstance = @@ -190,11 +184,6 @@ namespace opencascade { return anInstance; } - // Static class field is defined to ensure initialization of all type - // descriptors at load time of the library - template - Handle(Standard_Type) type_instance::myInstance (get()); - } //! Operator printing type descriptor to stream