[patch+7.8?] Fix --with-babeltrace with gcc-4.9.1

Message ID 20140812192204.GA13299@host2.jankratochvil.net
State Committed
Headers

Commit Message

Jan Kratochvil Aug. 12, 2014, 7:22 p.m. UTC
  On Wed, 06 Aug 2014 03:00:04 +0200, Yao Qi wrote:
> This patch fixes https://sourceware.org/bugzilla/show_bug.cgi?id=17104
> Please mention it in ChangeLog entry.  I had a patch to this PR, but
> didn't follow it up.  Yours is fine.

I think the one of yours is better, posting it here for new approval.

IMO it could go also for 7.8.1.


My original reproducer is wrong, one also has to specify -Wall in CFLAGS:
	CFLAGS=-Wall ./configure --with-babeltrace; make


Thanks,
Jan
gdb/
2014-07-01  Yao Qi  <yao@codesourcery.com>

	PR build/17104
	* configure.ac: Use local variable 'pos'.
	* configure: Regenerated.
  

Comments

Doug Evans Aug. 12, 2014, 8:32 p.m. UTC | #1
On Tue, Aug 12, 2014 at 12:22 PM, Jan Kratochvil
<jan.kratochvil@redhat.com> wrote:
> On Wed, 06 Aug 2014 03:00:04 +0200, Yao Qi wrote:
>> This patch fixes https://sourceware.org/bugzilla/show_bug.cgi?id=17104
>> Please mention it in ChangeLog entry.  I had a patch to this PR, but
>> didn't follow it up.  Yours is fine.
>
> I think the one of yours is better, posting it here for new approval.
>
> IMO it could go also for 7.8.1.
>
>
> My original reproducer is wrong, one also has to specify -Wall in CFLAGS:
>         CFLAGS=-Wall ./configure --with-babeltrace; make
>
>
> Thanks,
> Jan
>
> gdb/
> 2014-07-01  Yao Qi  <yao@codesourcery.com>
>
>         PR build/17104
>         * configure.ac: Use local variable 'pos'.
>         * configure: Regenerated.
>
> diff --git a/gdb/configure b/gdb/configure
> index a4c0a8c..7956aa7 100755
> --- a/gdb/configure
> +++ b/gdb/configure
> @@ -15234,6 +15234,7 @@ struct bt_iter_pos *pos = bt_iter_get_pos (bt_ctf_get_iter (NULL));
>                         struct bt_ctf_event *event = NULL;
>                         const struct bt_definition *scope;
>
> +                       bt_iter_set_pos (bt_ctf_get_iter (NULL), pos);
>                         scope = bt_ctf_get_top_level_scope (event,
>                                                            BT_STREAM_EVENT_HEADER);
>                         bt_ctf_get_uint64 (bt_ctf_get_field (event, scope, "id"));
> diff --git a/gdb/configure.ac b/gdb/configure.ac
> index a2ac15f..fc1d8bc 100644
> --- a/gdb/configure.ac
> +++ b/gdb/configure.ac
> @@ -2417,6 +2417,7 @@ else
>                         struct bt_ctf_event *event = NULL;
>                         const struct bt_definition *scope;
>
> +                       bt_iter_set_pos (bt_ctf_get_iter (NULL), pos);
>                         scope = bt_ctf_get_top_level_scope (event,
>                                                            BT_STREAM_EVENT_HEADER);
>                         bt_ctf_get_uint64 (bt_ctf_get_field (event, scope, "id"));
>

Hi.
This seems like an excessive amount of code just to test whether a
library exists.
Do we really need all of it?
E.g., can we just delete "pos" and the function call that initializes it?

struct bt_iter_pos *pos = bt_iter_get_pos (bt_ctf_get_iter (NULL));

Or, if for some reason we need to test whether bf_ctf_get_iter exists,
can we just
call it and discard the result?  [And similarly for the rest of the code.]
None of this code gets run anyways.
  
Jan Kratochvil Aug. 12, 2014, 8:38 p.m. UTC | #2
On Tue, 12 Aug 2014 22:32:55 +0200, Doug Evans wrote:
> E.g., can we just delete "pos" and the function call that initializes it?
> 
> struct bt_iter_pos *pos = bt_iter_get_pos (bt_ctf_get_iter (NULL));

I think we cannot and the reason is given in the comment there:
  # Append -Werror to CFLAGS so that configure can catch the warning
  # "assignment from incompatible pointer type", which is related to
  # the babeltrace change from 1.0.3 to 1.1.0.  Babeltrace 1.1.0 works
  # in GDB, while babeltrace 1.0.3 is broken.


> Or, if for some reason we need to test whether bf_ctf_get_iter exists,
> can we just
> call it and discard the result?

Also not due to the reason above.


Jan
  
Doug Evans Aug. 12, 2014, 9:28 p.m. UTC | #3
On Tue, Aug 12, 2014 at 1:38 PM, Jan Kratochvil
<jan.kratochvil@redhat.com> wrote:
> On Tue, 12 Aug 2014 22:32:55 +0200, Doug Evans wrote:
>> E.g., can we just delete "pos" and the function call that initializes it?
>>
>> struct bt_iter_pos *pos = bt_iter_get_pos (bt_ctf_get_iter (NULL));
>
> I think we cannot and the reason is given in the comment there:
>   # Append -Werror to CFLAGS so that configure can catch the warning
>   # "assignment from incompatible pointer type", which is related to
>   # the babeltrace change from 1.0.3 to 1.1.0.  Babeltrace 1.1.0 works
>   # in GDB, while babeltrace 1.0.3 is broken.
>
>
>> Or, if for some reason we need to test whether bf_ctf_get_iter exists,
>> can we just
>> call it and discard the result?
>
> Also not due to the reason above.

Alas the comment doesn't specify which assignment.
I think it's for scope.

I did some grepping:

@ruffy:babeltrace$ find babeltrace-1.0.3 -name '*.h' | xargs grep
bt_iter_get_pos
babeltrace-1.0.3/include/babeltrace/iterator.h: * - restore is a
position saved with bt_iter_get_pos, it is used with
babeltrace-1.0.3/include/babeltrace/iterator.h: * bt_iter_get_pos -
Get the current iterator position.
babeltrace-1.0.3/include/babeltrace/iterator.h:struct bt_iter_pos
*bt_iter_get_pos(struct bt_iter *iter);
@ruffy:babeltrace$ find babeltrace-1.1.0 -name '*.h' | xargs grep
bt_iter_get_pos
babeltrace-1.1.0/include/babeltrace/iterator.h: * - restore is a
position saved with bt_iter_get_pos, it is used with
babeltrace-1.1.0/include/babeltrace/iterator.h: * bt_iter_get_pos -
Get the current iterator position.
babeltrace-1.1.0/include/babeltrace/iterator.h:struct bt_iter_pos
*bt_iter_get_pos(struct bt_iter *iter);
@ruffy:babeltrace$ find babeltrace-1.0.3 -name '*.h' | xargs grep
bt_ctf_get_top_level_scope
babeltrace-1.0.3/include/babeltrace/ctf/events.h: *
bt_ctf_get_top_level_scope: return a definition of the top-level scope
babeltrace-1.0.3/include/babeltrace/ctf/events.h:const struct
definition *bt_ctf_get_top_level_scope(const struct bt_ctf_event
*event,
@ruffy:babeltrace$ find babeltrace-1.1.0 -name '*.h' | xargs grep
bt_ctf_get_top_level_scope
babeltrace-1.1.0/include/babeltrace/ctf/events.h: *
bt_ctf_get_top_level_scope: return a definition of the top-level scope
babeltrace-1.1.0/include/babeltrace/ctf/events.h:const struct
bt_definition *bt_ctf_get_top_level_scope(const struct bt_ctf_event
*event,

Note that there's no change in the result of bt_iter_get_pos, but
there is in bt_ctf_get_top_level_scope.

Plus some digging found this:
https://sourceware.org/ml/gdb-patches/2013-03/msg00955.html
  
Yao Qi Aug. 13, 2014, 1:49 a.m. UTC | #4
On 08/13/2014 04:32 AM, Doug Evans wrote:
> This seems like an excessive amount of code just to test whether a
> library exists.
> Do we really need all of it?

IMO, it's better to keep them.  When I use babeltrace in GDB, I find the
babeltrace APIs are not stable, so I put more code in the configure
test, to cover GDB usages.

> E.g., can we just delete "pos" and the function call that initializes it?
> 
> struct bt_iter_pos *pos = bt_iter_get_pos (bt_ctf_get_iter (NULL));
> 
> Or, if for some reason we need to test whether bf_ctf_get_iter exists,
> can we just
> call it and discard the result?  [And similarly for the rest of the code.]
> None of this code gets run anyways.

As I said above, bt_iter_get_pos and bf_ctf_get_iter are here to test
they still exist in the babeltrace library.  They are in 1.1.0, but I am
worried that they may be changed or renamed in the future.
  
Doug Evans Aug. 13, 2014, 3:05 a.m. UTC | #5
On Tue, Aug 12, 2014 at 6:49 PM, Yao Qi <yao@codesourcery.com> wrote:
> On 08/13/2014 04:32 AM, Doug Evans wrote:
>> This seems like an excessive amount of code just to test whether a
>> library exists.
>> Do we really need all of it?
>
> IMO, it's better to keep them.  When I use babeltrace in GDB, I find the
> babeltrace APIs are not stable, so I put more code in the configure
> test, to cover GDB usages.
>
>> E.g., can we just delete "pos" and the function call that initializes it?
>>
>> struct bt_iter_pos *pos = bt_iter_get_pos (bt_ctf_get_iter (NULL));
>>
>> Or, if for some reason we need to test whether bf_ctf_get_iter exists,
>> can we just
>> call it and discard the result?  [And similarly for the rest of the code.]
>> None of this code gets run anyways.
>
> As I said above, bt_iter_get_pos and bf_ctf_get_iter are here to test
> they still exist in the babeltrace library.  They are in 1.1.0, but I am
> worried that they may be changed or renamed in the future.

Thanks.

I suspect it'll be useful to be able to refer to this reasoning at
some point in the future.
[ref: the "incompatible pointer type" warning is related to the
assignment to scope, not pos].
Maybe this thread is sufficient, or maybe you could add something to
the commit message.

Patch is ok with me.
  

Patch

diff --git a/gdb/configure b/gdb/configure
index a4c0a8c..7956aa7 100755
--- a/gdb/configure
+++ b/gdb/configure
@@ -15234,6 +15234,7 @@  struct bt_iter_pos *pos = bt_iter_get_pos (bt_ctf_get_iter (NULL));
 			struct bt_ctf_event *event = NULL;
 			const struct bt_definition *scope;
 
+			bt_iter_set_pos (bt_ctf_get_iter (NULL), pos);
 			scope = bt_ctf_get_top_level_scope (event,
 			      				   BT_STREAM_EVENT_HEADER);
 		        bt_ctf_get_uint64 (bt_ctf_get_field (event, scope, "id"));
diff --git a/gdb/configure.ac b/gdb/configure.ac
index a2ac15f..fc1d8bc 100644
--- a/gdb/configure.ac
+++ b/gdb/configure.ac
@@ -2417,6 +2417,7 @@  else
 			struct bt_ctf_event *event = NULL;
 			const struct bt_definition *scope;
 
+			bt_iter_set_pos (bt_ctf_get_iter (NULL), pos);
 			scope = bt_ctf_get_top_level_scope (event,
 			      				   BT_STREAM_EVENT_HEADER);
 		        bt_ctf_get_uint64 (bt_ctf_get_field (event, scope, "id"));