Re: [HACKERS] An unlikely() experiment

Поиск
Список
Период
Сортировка
От David Rowley
Тема Re: [HACKERS] An unlikely() experiment
Дата
Msg-id CAKJS1f902-mCoySfcXaYor3wzzpYqZe=pu1GS8RLBuMyNkfCAg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: [HACKERS] An unlikely() experiment  (Andres Freund <andres@anarazel.de>)
Ответы Re: [HACKERS] An unlikely() experiment  (Andres Freund <andres@anarazel.de>)
Список pgsql-hackers
On 30 October 2017 at 22:34, Andres Freund <andres@anarazel.de> wrote:
> Hi,
>
> On 2015-12-20 02:49:13 +1300, David Rowley wrote:
>> Alternatively, if there was some way to mark the path as cold from within
>> the path, rather than from the if() condition before the path, then we
>> could perhaps do something in the elog() macro instead. I just couldn't
>> figure out a way to do this.
>
> I just was thinking about this, and it turns out that
> __attribute__((cold)) does what we need here. We could just mark
> elog_start() and errstart() as cold, and afaict that should do the
> trick.

I had actually been thinking about this again today. I had previously
not thought  __attribute__((cold)) would be a good idea since if we
mark elog_start() with that, then code paths with elog(NOTICE) and
elog(LOG) not to mention DEBUG would be marked as cold. Today I was
thinking, to get around that issue, we might be able to generate
another thin wrapper around elog_start() and mark that as
__attribute__((cold)) and fudge the macro a bit to call that function
instead if it can detect a compile time const level >= ERROR. I've not
looked at the code again to remind myself if that would be possible.

-- David Rowley                   http://www.2ndQuadrant.com/PostgreSQL Development, 24x7 Support, Training & Services


-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Andres Freund
Дата:
Сообщение: Re: [HACKERS] An unlikely() experiment
Следующее
От: Masahiko Sawada
Дата:
Сообщение: Re: [HACKERS] Transactions involving multiple postgres foreign servers