From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,9d929352a358ccab X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: "Alex R. Mosteo" Newsgroups: comp.lang.ada Subject: Re: Ada to C++ translator Date: Thu, 26 Jan 2006 19:08:16 +0100 Message-ID: <43D91010.7030207@mailinator.com> References: <1138132539.577082.206380@g43g2000cwa.googlegroups.com> <87zmlkoz4k.fsf@mid.deneb.enyo.de> <877j8oow1r.fsf@mid.deneb.enyo.de> <877j8ngrnx.fsf@mid.deneb.enyo.de> <3886621.UJpj9E84qJ@linux1.krischik.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: individual.net aOqOzq3GGSYtsec6X4FUTQ2SNYk/H3n1aEccUur8iSGAY8P7M= User-Agent: Mozilla Thunderbird 1.0.7 (X11/20051013) X-Accept-Language: en-us, en In-Reply-To: <3886621.UJpj9E84qJ@linux1.krischik.com> Xref: g2news1.google.com comp.lang.ada:2655 Date: 2006-01-26T19:08:16+01:00 List-Id: Martin Krischik wrote: > Florian Weimer wrote: > > >>* Randy Brukardt: >> >> >>>"Florian Weimer" wrote in message >>>news:877j8oow1r.fsf@mid.deneb.enyo.de... >>>... >>> >>>>It's an abort-deferred operation (like assignment, which I should have >>>>mentioned as well). >>> >>>That's expensive how? Abort-deferral is (or should be) just toggling a >>>bit in the TCB. >> >>You need to find the TCB first, and you need to check for abortion >>once deferral has ended. Especially the first part probably prevents >>inlining on some POSIX platforms. > > > Well any good destructor in virtual anyway - and as such not to be inlined. > Yes C++ supports virtual inline - but virtual inline make linking an > interesting experience. > > Please no toy programs to prove me wrong! I am talking dozens of DLLs, > hundreds of modules, thousends of functions and then: > > Linker Error: Function _v_Whatever_Wherever_fg7IStringiil not found. > > or worse: > > Linker Error: Duplicate Function _v_Whatever_Wherever_fg7IStringiil Haha :D This brings back some memories... VC++ can be so fun sometimes...