public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* C99 variable length array support
@ 2013-10-21 14:40 Sanimir Agovic
  2013-10-21 14:40 ` [PATCH 02/10] type: add c99 " Sanimir Agovic
                   ` (10 more replies)
  0 siblings, 11 replies; 48+ messages in thread
From: Sanimir Agovic @ 2013-10-21 14:40 UTC (permalink / raw)
  To: gdb-patches

Hello,

this patch series add C99 variable length support to gdb.

It allows the user to evaluate a vla like an ordinary static array e.g. print
its elements instead of printing the pointer to the array. In addition the size
of a vla can be retrieved with gdbs builtin sizeof operator.


    1| void foo (size_t n) {
    2|   int ary[n];
    3|   memset(ary, 0, sizeof(ary));
    4| }

    (gdb) print ary
    $1 = {0 <repeats 42 times>}

    (gdb) print sizeof ary
    $2 = 42

 -Sanimir & Keven

^ permalink raw reply	[flat|nested] 48+ messages in thread

end of thread, other threads:[~2013-11-27 15:58 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-21 14:40 C99 variable length array support Sanimir Agovic
2013-10-21 14:40 ` [PATCH 02/10] type: add c99 " Sanimir Agovic
2013-11-07 19:02   ` Tom Tromey
2013-11-19 15:31     ` Agovic, Sanimir
2013-11-22 20:00       ` Tom Tromey
2013-11-27 17:08         ` Agovic, Sanimir
     [not found]         ` <0377C58828D86C4588AEEC42FC3B85A7176BC3DE@IRSMSX105.ger.corp.intel.com>
2013-11-27 17:15           ` Agovic, Sanimir
2013-11-07 19:10   ` Tom Tromey
2013-10-21 14:40 ` [PATCH 05/10] vla: allow side effects for sizeof argument Sanimir Agovic
2013-10-24 19:55   ` Tom Tromey
2013-10-25  8:13     ` Agovic, Sanimir
2013-10-28 21:00       ` Tom Tromey
2013-11-18  9:37         ` Agovic, Sanimir
2013-11-18 15:56           ` Tom Tromey
2013-11-20 12:18             ` Agovic, Sanimir
2013-11-19 17:08           ` Pedro Alves
2013-11-20 12:47             ` Agovic, Sanimir
2013-11-20 13:24               ` Pedro Alves
2013-10-21 14:40 ` [PATCH 03/10] vla: enable sizeof operator to work with variable length arrays Sanimir Agovic
2013-11-07 19:10   ` Tom Tromey
2013-10-21 14:40 ` [PATCH 07/10] test: evaluate pointers to C99 vla correctly Sanimir Agovic
2013-11-07 20:57   ` Tom Tromey
2013-11-08  6:37     ` Tom Tromey
2013-11-07 21:14   ` Tom Tromey
2013-10-21 14:40 ` [PATCH 06/10] vla: update type from newly created value Sanimir Agovic
2013-11-07 20:56   ` Tom Tromey
2013-11-20  7:56     ` Agovic, Sanimir
2013-11-20 11:02   ` Pedro Alves
2013-11-20 13:08     ` Agovic, Sanimir
2013-11-21 18:50       ` Pedro Alves
2013-11-23 19:27     ` Doug Evans
2013-10-21 14:40 ` [PATCH 08/10] test: multi-dimensional c99 vla Sanimir Agovic
2013-11-07 21:19   ` Tom Tromey
2013-10-21 14:40 ` [PATCH 01/10] vla: introduce new bound type abstraction adapt uses Sanimir Agovic
2013-11-07 19:00   ` Tom Tromey
2013-11-18 11:15     ` Agovic, Sanimir
2013-10-21 14:40 ` [PATCH 04/10] vla: enable sizeof operator for indirection Sanimir Agovic
2013-11-07 19:57   ` Tom Tromey
2013-10-21 14:40 ` [PATCH 09/10] test: basic c99 vla tests Sanimir Agovic
2013-11-07 21:23   ` Tom Tromey
2013-10-21 14:40 ` [PATCH 10/10] test: add mi vla test Sanimir Agovic
2013-11-07 21:31   ` Tom Tromey
2013-11-21 18:52 ` C99 variable length array support Pedro Alves
2013-11-21 19:01   ` Pedro Alves
2013-11-21 19:10     ` Pedro Alves
2013-11-22 10:53       ` Agovic, Sanimir
2013-11-22 12:35         ` Pedro Alves
2013-11-22 17:06           ` Agovic, Sanimir

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).