[PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2019-10-07 Thread Aditya Kumar via Phabricator via cfe-commits
This revision was not accepted when it landed; it landed in state "Needs Review". This revision was automatically updated to reflect the committed changes. Closed by commit rGb839888af8f2: Added 'inline' attribute to basic_string's destructor (authored by hiraditya). Herald added subscribers: lib

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-22 Thread Aditya Kumar via cfe-commits
hiraditya added a comment. In https://reviews.llvm.org/D22834#522499, @EricWF wrote: > No benchmark needed but one would be appreciated if possible. I guess @laxmansole sent you a synthetic benchmark because we were having trouble integrating it to the libcxx testsuite. I can send you that aga

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-22 Thread Eric Fiselier via cfe-commits
EricWF added a comment. No benchmark needed but one would be appreciated if possible. https://reviews.llvm.org/D22834 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-22 Thread Marshall Clow via cfe-commits
mclow.lists added a comment. Eric - did you want to see a benchmark as part of this commit? https://reviews.llvm.org/D22834 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-20 Thread Laxman Sole via cfe-commits
laxmansole added a comment. Ping https://reviews.llvm.org/D22834 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-12 Thread Aditya Kumar via cfe-commits
hiraditya added a comment. In https://reviews.llvm.org/D22834#504425, @EricWF wrote: > LGTM. > > However I would like to see a small benchmark that demonstrates the > performance change. Please try and write the benchmark using Google Benchmark. > Some helpful links: > > http://libcxx.llvm.org/

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-03 Thread Aditya Kumar via cfe-commits
hiraditya added a comment. In https://reviews.llvm.org/D22834#504425, @EricWF wrote: > LGTM. > > However I would like to see a small benchmark that demonstrates the > performance change. Please try and write the benchmark using Google Benchmark. > Some helpful links: > > http://libcxx.llvm.org/

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-02 Thread Eric Fiselier via cfe-commits
EricWF added a subscriber: EricWF. EricWF added a comment. LGTM. However I would like to see a small benchmark that demonstrates the performance change. Please try and write the benchmark using Google Benchmark. Some helpful links: http://libcxx.llvm.org/docs/TestingLibcxx.html#building-benchma

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-02 Thread Eric Fiselier via cfe-commits
On Mon, Aug 1, 2016 at 2:20 PM, David Blaikie via cfe-commits < cfe-commits@lists.llvm.org> wrote: > > > On Tue, Jul 26, 2016 at 4:37 PM Laxman Sole via cfe-commits < > cfe-commits@lists.llvm.org> wrote: > >> laxmansole created this revision. >> laxmansole added reviewers: mclow.lists, howard.hinn

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-02 Thread Eric Fiselier via cfe-commits
On Sat, Jul 30, 2016 at 1:47 PM, Joerg Sonnenberger via cfe-commits < cfe-commits@lists.llvm.org> wrote: > On Tue, Jul 26, 2016 at 10:30:22PM +, Laxman Sole via cfe-commits > wrote: > > Currently basic_string's destructor is not getting inlined. So adding > 'inline' attribute to ~basic_string(

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-02 Thread Marshall Clow via cfe-commits
On Sat, Jul 30, 2016 at 12:47 PM, Joerg Sonnenberger via cfe-commits < cfe-commits@lists.llvm.org> wrote: > On Tue, Jul 26, 2016 at 10:30:22PM +, Laxman Sole via cfe-commits > wrote: > > Currently basic_string's destructor is not getting inlined. So adding > 'inline' attribute to ~basic_string

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-01 Thread David Blaikie via cfe-commits
On Tue, Jul 26, 2016 at 4:37 PM Laxman Sole via cfe-commits < cfe-commits@lists.llvm.org> wrote: > laxmansole created this revision. > laxmansole added reviewers: mclow.lists, howard.hinnant. > laxmansole added subscribers: cfe-commits, sebpop, hiraditya, evandro, > flyingforyou. > > > Currently b

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-07-30 Thread Joerg Sonnenberger via cfe-commits
On Tue, Jul 26, 2016 at 10:30:22PM +, Laxman Sole via cfe-commits wrote: > Currently basic_string's destructor is not getting inlined. So adding > 'inline' attribute to ~basic_string(). Does this change the ABI? Joerg ___ cfe-commits mailing list c

[PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-07-26 Thread Laxman Sole via cfe-commits
laxmansole created this revision. laxmansole added reviewers: mclow.lists, howard.hinnant. laxmansole added subscribers: cfe-commits, sebpop, hiraditya, evandro, flyingforyou. Currently basic_string's destructor is not getting inlined. So adding 'inline' attribute to ~basic_string(). Worked i