Bug 2181 - Meta footprint reduction
Summary: Meta footprint reduction
Status: NEW
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.4.6
Hardware: All All
: P3 enhancement
Assignee: DOC Center Support List (internal)
URL:
Depends on: 923 1151 2136 2193 2630 2997 3029 3030 3031 3034 1852 1917 1972 1989 2042 2172 2179 2467 2626 2627 2681
Blocks:
  Show dependency tree
 
Reported: 2005-07-04 14:09 CDT by Johnny Willemsen
Modified: 2008-03-31 05:52 CDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Johnny Willemsen 2005-07-04 14:09:03 CDT
Meta bug for footprint reduction ideas.
Comment 1 Johnny Willemsen 2005-07-04 14:09:29 CDT
Possible todo's

- Typecode library
- Look at SystemException, looks like all possible SystemExceptions are
linked into the app, not just the ones that are used. The SystemException.o
is more then 60Kb
- Look if maybe we have multiple classes in one source file where we only
use one of them, split the file then
- Check is we don't use virtual methods that are not needed (for example
ACE_Reactor/ACE_Proactor/ACE_Reactor_Timer_Interface) and that we don't
export classes from the dll that shouldn't be exported
- CodeSet library
Comment 2 Johnny Willemsen 2005-07-04 14:10:39 CDT
Drop exception specifications (bug 1852)
Comment 3 Johnny Willemsen 2005-07-04 14:11:17 CDT
The RTCorba library hasn't been reviewed for footprint usage in the reductions
we did until now. For example the RTCorba uses PortableInterceptor functionality
to register things to the ORB, this makes the RTCorba lib dependent on the PI
lib, when we can prevent that it would safe footprint for the application.
Comment 4 Johnny Willemsen 2005-07-04 14:16:44 CDT
Reworking the Active Object Map in the POA to because of the recent POA
refactoring can give us some more performance.
Comment 5 Jeff Parsons 2005-07-04 14:23:52 CDT
- Look into the possibility of lightweight hash tables, specialized for common 
keys like string and integer.

Anys depend on typecodes, so they will have to be moved as well if a typecode 
library is created.
Comment 6 Martin Corino 2005-07-04 15:58:14 CDT
- OS_NS_Thread, Mutex, Condition etc. contain quite some code for System-scope 
(process shared) synchronization which AFAIK is not used for TAO.
How about a 'lean and mean' compileswitch to exclude this code for a TAO-only 
build of libCAE?
Downside is of course the functionality not being available for 
applicationcode as well.

- Refactor code to remove workarounds for newer versions of OSes providing 
better lowlevel support (like f.i. much improved POSIX support in latest 
Linux kernels using NPTL threads).

- Don't know how much this overlaps with ideas about 'Object File Profiling'. 
Service_Configurator framework is a non-trivial piece of code which might be 
replaced by a 'deployment tool' which generates a tailored piece of code 
instead based on a 'service configuration' (which might even be identical to 
the directives for the Service_Configurator framework).

- ORB_Core contains a non-trivial piece of code to process -ORBxxx directives.
For a more static deployment this might be replaced by compiletime 
defaults/tailored code (possibly generated).
Comment 7 Johnny Willemsen 2005-07-05 13:19:17 CDT
For SystemException it seems only possible according to Ossama to split it in
multiple files, other options have been tried in the past. Maybe make a core
system exception with the things used by the orb core, the other exceptions in
other files.
Comment 8 Ossama Othman 2005-07-05 13:41:13 CDT
There may indeed be other things we can do for SystemException.cpp besides
splitting it up, but I believe that we have exhausted the more obvious solutions.
Comment 9 Ossama Othman 2005-07-05 14:00:36 CDT
For Anys, I think that we can move:

     1. Any*
     2. *TypeCode*
     3. probably a good chunk of append.cpp, skip.cpp and Marshal.*.
 
to a separate library.  Jeff does that sound correct and feasible?
Comment 10 Ossama Othman 2005-07-05 14:06:42 CDT
Added more footprint related BTS entries.
Comment 11 Ossama Othman 2005-07-05 14:12:05 CDT
For documentation purposes ...

PortableInterceptor support (including ORBInitializers, CodecFactory, etc) has
been decoupled from the ORB core.

An ACE_Array_Map class template was added to ACE.  It is a light weight
array-based map implementation with an STL-like map interface.  ACE_Array_Map is
suitable for small collections in areas of code that can tolerate linear
searches, or large collections in areas of code that can benefit from fast map
iteration.
Comment 12 Johnny Willemsen 2005-07-06 01:29:55 CDT
Move TAO_Encodable from the TAO lib to the TAO Utils lib. Remove the usage of
this in RTCorba, not needed. Just an utility class
Comment 13 Johnny Willemsen 2005-07-06 01:30:25 CDT
Move Pollable.pidl and generated files to the Messaging lib. Just defined
interfaces which are not used. Ossama/Jeff agree to move them to the Messaging lib.
Comment 14 Johnny Willemsen 2005-07-06 13:28:29 CDT
Hi Johnny,

On Tue, 2005-07-05 at 20:46 +0200, Johnny Willemsen wrote:
> I think that if will be a few files. For example we have systemexceptions
> for transaction problems, we don't use them, so let us try to get them out.

Right!  Others could be:

      * IMP_LIMIT
      * BAD_TYPECODE (maybe for the Any library?)
      * NO_RESPONSE
      * PERSIST_STORE
      * FREE_MEM
      * INV_IDENT
      * INV_FLAG
      * BAD_CONTEXT
      * REBIND
      * BAD_QOS
      * INVALID_ACTIVITY
      * ACTIVITY_COMPLETED
      * ACTIVITY_REQUIRED
      * THREAD_CANCELLED

I haven't verified if these are unused in TAO, however.

-Ossama
-- 
Ossama Othman <ossama@dre.vanderbilt.edu>
Comment 15 Johnny Willemsen 2005-07-06 13:29:33 CDT
Added bug 1917 as depends on, updating the exceptionholder for AMI will reduce
footprint when AMI is used
Comment 16 Johnny Willemsen 2005-07-07 02:44:27 CDT
> 
> On Wed, 2005-07-06 at 20:13 +0200, Johnny Willemsen wrote:
> > Thanks for the info. Some time ago we talked about a 
> separate TypeCode
> > library. What are your ideas on that, I see typecodes here 
> again, would such
> > a library now be usefull? Ossama, you had ideas on that, 
> maybe we should
> > create that lib now?
> 
> I'm inclined to lump TypeCodes with the proposed Any library 
> since there
> aren't many uses of TypeCodes without Anys;  the Interface Repository
> being the obvious exception.  Jeff, do you concur?

Even the IFR (both client and service) will have to link in Anys,
I think, since this is in the IDL for IFR_Client:

  struct UnionMember
  {
    Identifier name;
    any label;
    TypeCode type;
    IDLType type_def;
  };

So I think it makes sense to keep Anys and TypeCodes together.

Here's a list of all files
in TAO/tao (except *A.* files, and Any-related files) that include
Any.h:

ClientRequestInfo.cpp
ClientRequestInfoC.h
Dynamic_ParameterC.h
NVList.h
PICurrent.h
PICurrent_Impl.h
PICurrentC.h
RequestInfoC.h
ServerRequestInfoC.h

NVList is something I'd like to move to DynamicInterface - however,
ORB.cpp includes NVList.h, because of its methods create_list() and
create_named_value(). Probably we should implement these using the
Object_Loader scheme that is already used for the typecode creation
methods and other stuff in CORBA::ORB. Most of the others include
Any.h because the corresponding .pidl file contains an Any.

Looks like the only Policy-related dependency on Anys is in
PolicyFactory, which has been moved out to the PI library. Is this
the right place for PolicyFactory? Other things besides interceptors
use policies, right?

Well, that's all I get right now from a quick once-over of TAO/tao.
Comment 17 Johnny Willemsen 2005-07-08 09:19:07 CDT
Added some more footprint reduction items as depends on
Comment 18 Johnny Willemsen 2005-07-08 14:50:32 CDT
Fix the split=1, see below from ace-users

Hi Brent,

>> Has anyone tried to compile ACE with the split=1 option set?  (Since
>> the build is broken in multiple places, I'm betting the answer is no.)

Yes, the answer is "no" ;-)

>> The split-cpp utility trips over every .cpp file that splits the
>> ACE_RCSID() macro across multiple lines e.g. Local_Name_Space.cpp.
>> In addition, files such as Codecs.cpp that call sizeof() on arrays
>> fail to compile, because the array is defined in a separate .cpp
>> files ("error: invalid application of `sizeof' to an incomplete
>> type").
>>
>> If this feature is no longer supported, then it should probably be
>> removed from ACE-INSTALL (section "Makefile Flags") and maybe
>> include/makeinclude/rules.local.GNU .

Alternatively, it would be nice to fix the split-cpp utility so that
it works.  This may be a "win" for the footprint reduction activities
we're involved with for various sponsors.  Johnny, can you please add
this to the "metabug" in bugzilla entry 2181?  Brent, it'll take us
several months to get around to doing this, so if you'd like to jump
in and help us out that would be great.
Comment 19 Johnny Willemsen 2005-07-15 08:03:01 CDT
NVList moving to DynamicInterface seems not real a good solution. This resulted
in the fact that IFR_Client was made dependent on DynamicInterface. After
checking with Jeff he proposed to move NVList also to the new lib that will
contain Any/Typecode. 
Comment 20 Johnny Willemsen 2005-07-19 03:20:29 CDT
It would probably reduce footprint and improve performance to implement
Atomic_Op <unsigned long, mutex) with a specialization. Use the specific cpu
instructions some cpu's have. 
Comment 21 Kobi Cohen-Arazi 2005-07-19 03:47:41 CDT
Added 2193 as another dependencies. Since it is quite easy and the right thing
to eliminate the ACE_Service_Object inheritance, thus eliminating resundent
reactor_ data member
Comment 22 Steve Huston 2005-07-19 08:52:08 CDT
Just for the record, I do not agree that removing the ACE_Service_Object
inheritance from ACE_Connector is desireable or right.
Comment 23 Jeff Parsons 2005-08-23 13:45:46 CDT
Adding these in case they are not mentioned anywhere else:

- try to get a lightweight specialization of ACE_Hash_Map
that uses string for external key

- look into Bala's suggestion of separating PI functionality
into two parts

- see what more can be done toward getting a minimum POA
(Maybe this is already happening under the hood due to
Johnny's POA changes of a while back. If there is a specific
server configuration needed to link only minimum POA stuff,
we should have a test for this in which the footprint is
checked, since it's a good bet some checkin will break it
before too long. If this is not the case now, we should
work on factoring out a minimum POA, and getting rid of
TAO_HAS_MINIMUM_POA).

- see if we can streamline the CDR classes for TAO. In
particualr, ACE_Message_Block and ACE_Data_Block are
large classes.

Comment 24 Johnny Willemsen 2006-03-21 04:15:52 CST
added depends
Comment 25 Johnny Willemsen 2006-08-09 09:33:49 CDT
added 2627
Comment 26 Johnny Willemsen 2006-08-09 09:34:23 CDT
added 2626
Comment 27 Johnny Willemsen 2006-08-10 08:01:27 CDT
added 2630
Comment 28 Johnny Willemsen 2007-08-08 03:53:59 CDT
added depends
Comment 29 Johnny Willemsen 2007-08-08 08:48:34 CDT
added depends
Comment 30 Johnny Willemsen 2008-03-31 05:52:45 CDT
enhancement