Bug 144 - implement approach where the class only looks its own operations and then tries the parent
Summary: implement approach where the class only looks its own operations and then tri...
Status: ASSIGNED
Alias: None
Product: TAO
Classification: Unclassified
Component: IDL Compiler (show other bugs)
Version: 1.0
Hardware: All All
: P3 enhancement
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks:
 
Reported: 1999-07-26 18:01 CDT by Ossama Othman
Modified: 2007-02-21 05:59 CST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ossama Othman 1999-07-26 18:01:04 CDT
Currently the IDL compiler creates an operation table that includes all the base
classes operations; this permits the generation of efficient code that does not
rely in dynamic_cast or the _downcast() method for Servants (which compare
strings, hence it is slow). It could be interesting to implement the alternative
approach were the class only looks its own operations and then tries the parent.
This will reduce code size, but will probably decrease performance.
Comment 1 Carlos O'Ryan 1999-08-03 12:08:59 CDT
This is a valid enhacement request, i'm marking it as accepted but their
implementation is deferred
Comment 2 Johnny Willemsen 2007-02-21 05:59:58 CST
Jeff, what is your idea on this?