public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] [D] Add grammar support for sizeof and typeof
@ 2015-09-14 13:38 Iain Buclaw
  2015-09-14 15:33 ` Iain Buclaw
  0 siblings, 1 reply; 4+ messages in thread
From: Iain Buclaw @ 2015-09-14 13:38 UTC (permalink / raw)
  To: GDB Patches

[-- Attachment #1: Type: text/plain, Size: 200 bytes --]

Hi,

This adds support for D-style (T).sizeof, (E).sizeof, and typeof(E)
syntax to the gdb grammar for the D language.  All of which are
trivial additions that need no special support.

Regards
Iain.

[-- Attachment #2: dlang-properties.patch --]
[-- Type: text/x-patch, Size: 1301 bytes --]

gdb/ChangeLog:

	* d-exp.y: (UnaryExpression): Add grammar support for 'type.sizeof'.
	(PostfixExpression): Add grammar support for 'expr.sizeof'.
	(PrimaryExpression): Add grammar support for 'typeof(expr)'.

---
diff --git a/gdb/d-exp.y b/gdb/d-exp.y
index e9d21ac..1378e82 100644
--- a/gdb/d-exp.y
+++ b/gdb/d-exp.y
@@ -366,6 +366,8 @@ UnaryExpression:
 		{ write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT); }
 |	'~' UnaryExpression
 		{ write_exp_elt_opcode (pstate, UNOP_COMPLEMENT); }
+|	TypeExp '.' SIZEOF_KEYWORD
+		{ write_exp_elt_opcode (pstate, UNOP_SIZEOF); }
 |	CastExpression
 |	PowExpression
 ;
@@ -408,6 +410,8 @@ PostfixExpression:
 		  write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
 		  write_exp_string (pstate, $3);
 		  write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
+|	PostfixExpression '.' SIZEOF_KEYWORD
+		{ write_exp_elt_opcode (pstate, UNOP_SIZEOF); }
 |	PostfixExpression INCREMENT
 		{ write_exp_elt_opcode (pstate, UNOP_POSTINCREMENT); }
 |	PostfixExpression DECREMENT
@@ -616,6 +620,8 @@ PrimaryExpression:
 		  write_exp_elt_longcst (pstate, (LONGEST) 0);
 		  write_exp_elt_longcst (pstate, (LONGEST) $1 - 1);
 		  write_exp_elt_opcode (pstate, OP_ARRAY); }
+|	TYPEOF_KEYWORD '(' Expression ')'
+		{ write_exp_elt_opcode (pstate, OP_TYPEOF); }
 ;
 
 ArrayLiteral:

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

* Re: [PATCH] [D] Add grammar support for sizeof and typeof
  2015-09-14 13:38 [PATCH] [D] Add grammar support for sizeof and typeof Iain Buclaw
@ 2015-09-14 15:33 ` Iain Buclaw
  2015-10-06 16:49   ` Iain Buclaw
  0 siblings, 1 reply; 4+ messages in thread
From: Iain Buclaw @ 2015-09-14 15:33 UTC (permalink / raw)
  To: GDB Patches

[-- Attachment #1: Type: text/plain, Size: 370 bytes --]

On 14 September 2015 at 15:38, Iain Buclaw <ibuclaw@gdcproject.org> wrote:
> Hi,
>
> This adds support for D-style (T).sizeof, (E).sizeof, and typeof(E)
> syntax to the gdb grammar for the D language.  All of which are
> trivial additions that need no special support.
>
> Regards
> Iain.

Forgot about tests for this, these are easily done without having a D compiler.

[-- Attachment #2: dlang-properties.patch --]
[-- Type: text/x-patch, Size: 4770 bytes --]

gdb/ChangeLog:

	* d-exp.y: (UnaryExpression): Add grammar support for 'type.sizeof'.
	(PostfixExpression): Add grammar support for 'expr.sizeof'.
	(PrimaryExpression): Add grammar support for 'typeof(expr)'.

gdb/testsuite/ChangeLog:

	* gdb.dlang/properties.exp: New file.

---
diff --git a/gdb/d-exp.y b/gdb/d-exp.y
index dd87d8a..036befd 100644
--- a/gdb/d-exp.y
+++ b/gdb/d-exp.y
@@ -368,6 +368,8 @@ UnaryExpression:
 		{ write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT); }
 |	'~' UnaryExpression
 		{ write_exp_elt_opcode (pstate, UNOP_COMPLEMENT); }
+|	TypeExp '.' SIZEOF_KEYWORD
+		{ write_exp_elt_opcode (pstate, UNOP_SIZEOF); }
 |	CastExpression
 |	PowExpression
 ;
@@ -410,6 +412,8 @@ PostfixExpression:
 		  write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
 		  write_exp_string (pstate, $3);
 		  write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
+|	PostfixExpression '.' SIZEOF_KEYWORD
+		{ write_exp_elt_opcode (pstate, UNOP_SIZEOF); }
 |	PostfixExpression INCREMENT
 		{ write_exp_elt_opcode (pstate, UNOP_POSTINCREMENT); }
 |	PostfixExpression DECREMENT
@@ -616,6 +620,8 @@ PrimaryExpression:
 		  write_exp_elt_longcst (pstate, (LONGEST) 0);
 		  write_exp_elt_longcst (pstate, (LONGEST) $1 - 1);
 		  write_exp_elt_opcode (pstate, OP_ARRAY); }
+|	TYPEOF_KEYWORD '(' Expression ')'
+		{ write_exp_elt_opcode (pstate, OP_TYPEOF); }
 ;
 
 ArrayLiteral:
diff --git a/gdb/testsuite/gdb.dlang/properties.exp b/gdb/testsuite/gdb.dlang/properties.exp
new file mode 100644
index 0000000..7d12d88
--- /dev/null
+++ b/gdb/testsuite/gdb.dlang/properties.exp
@@ -0,0 +1,93 @@
+# Copyright (C) 2015 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+# Test basic builtin types.
+# NOTE: The tests here intentionally do not require a D compiler.
+
+load_lib "d-support.exp"
+
+if { [skip_d_tests] } { continue }
+
+proc test_d_sizeof {} {
+    # Test use of .sizeof with types and expressions.
+    gdb_test "print bool.sizeof" " = 1"
+    gdb_test "print (bool).sizeof" " = 1"
+
+    gdb_test "print char.sizeof" " = 1"
+    gdb_test "print wchar.sizeof" " = 2"
+    gdb_test "print dchar.sizeof" " = 4"
+
+    gdb_test "print byte.sizeof" " = 1"
+    gdb_test "print ubyte.sizeof" " = 1"
+    gdb_test "print short.sizeof" " = 2"
+    gdb_test "print ushort.sizeof" " = 2"
+    gdb_test "print int.sizeof" " = 4"
+    gdb_test "print uint.sizeof" " = 4"
+    gdb_test "print long.sizeof" " = 8"
+    gdb_test "print ulong.sizeof" " = 8"
+    gdb_test "print cent.sizeof" " = 16"
+    gdb_test "print ucent.sizeof" " = 16"
+
+    gdb_test "print float.sizeof" " = 4"
+    gdb_test "print ifloat.sizeof" " = 4"
+    gdb_test "print double.sizeof" " = 8"
+    gdb_test "print idouble.sizeof" " = 8"
+
+    gdb_test "print (1).sizeof" " = 4"
+    gdb_test "print (1U).sizeof" " = 4"
+    gdb_test "print (1L).sizeof" " = 8"
+    gdb_test "print (1UL).sizeof" " = 8"
+    gdb_test "print (1.0).sizeof" " = 8"
+    gdb_test "print (1.0f).sizeof" " = 4"
+
+    gdb_test "print (7^^3).sizeof" " = 4"
+    gdb_test "print (7L^^3).sizeof" " = 8"
+    gdb_test "print (7.0^^3).sizeof" " = 8"
+    gdb_test "print (7.0f^^3).sizeof" " = 4"
+}
+
+proc test_d_typeof {} {
+    # Test use of typeof() with expressions.
+    gdb_test "ptype typeof(false)" "type = bool"
+
+    gdb_test "ptype typeof(1)" "type = int"
+    gdb_test "ptype typeof(1U)" "type = uint"
+    gdb_test "ptype typeof(1L)" "type = long"
+    gdb_test "ptype typeof(1UL)" "type = ulong"
+    gdb_test "ptype typeof(1.0)" "type = double"
+    gdb_test "ptype typeof(1.0L)" "type = real"
+    gdb_test "ptype typeof(1.0f)" "type = float"
+
+    gdb_test "ptype typeof(cast(byte) 1)" "type = byte"
+    gdb_test "ptype typeof(cast(short) 1)" "type = short"
+
+    gdb_test "ptype typeof(7^^3)" "type = int"
+    gdb_test "ptype typeof(7L^^3)" "type = long"
+    gdb_test "ptype typeof(7.0^^3)" "type = double"
+    gdb_test "ptype typeof(7.0L^^3)" "type = real"
+    gdb_test "ptype typeof(7.0f^^3)" "type = float"
+}
+
+# Start with a fresh gdb.
+
+gdb_exit
+gdb_start
+
+if [set_lang_d] {
+    test_d_sizeof
+    test_d_typeof
+} else {
+    warning "D type tests suppressed."
+}

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

* Re: [PATCH] [D] Add grammar support for sizeof and typeof
  2015-09-14 15:33 ` Iain Buclaw
@ 2015-10-06 16:49   ` Iain Buclaw
  2015-10-08 19:44     ` Iain Buclaw
  0 siblings, 1 reply; 4+ messages in thread
From: Iain Buclaw @ 2015-10-06 16:49 UTC (permalink / raw)
  To: GDB Patches

On 14 September 2015 at 17:33, Iain Buclaw <ibuclaw@gdcproject.org> wrote:
> On 14 September 2015 at 15:38, Iain Buclaw <ibuclaw@gdcproject.org> wrote:
>> Hi,
>>
>> This adds support for D-style (T).sizeof, (E).sizeof, and typeof(E)
>> syntax to the gdb grammar for the D language.  All of which are
>> trivial additions that need no special support.
>>
>> Regards
>> Iain.
>
> Forgot about tests for this, these are easily done without having a D compiler.


Belated ping.  Any remarks?  Otherwise I'll just go ahead with it as
it's a trivial grammar change.

Regards
Iain.

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

* Re: [PATCH] [D] Add grammar support for sizeof and typeof
  2015-10-06 16:49   ` Iain Buclaw
@ 2015-10-08 19:44     ` Iain Buclaw
  0 siblings, 0 replies; 4+ messages in thread
From: Iain Buclaw @ 2015-10-08 19:44 UTC (permalink / raw)
  To: GDB Patches

On 6 October 2015 at 18:49, Iain Buclaw <ibuclaw@gdcproject.org> wrote:
> On 14 September 2015 at 17:33, Iain Buclaw <ibuclaw@gdcproject.org> wrote:
>> On 14 September 2015 at 15:38, Iain Buclaw <ibuclaw@gdcproject.org> wrote:
>>> Hi,
>>>
>>> This adds support for D-style (T).sizeof, (E).sizeof, and typeof(E)
>>> syntax to the gdb grammar for the D language.  All of which are
>>> trivial additions that need no special support.
>>>
>>> Regards
>>> Iain.
>>
>> Forgot about tests for this, these are easily done without having a D compiler.
>
>
> Belated ping.  Any remarks?  Otherwise I'll just go ahead with it as
> it's a trivial grammar change.
>

I've gone ahead and committed it.

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

end of thread, other threads:[~2015-10-08 19:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-14 13:38 [PATCH] [D] Add grammar support for sizeof and typeof Iain Buclaw
2015-09-14 15:33 ` Iain Buclaw
2015-10-06 16:49   ` Iain Buclaw
2015-10-08 19:44     ` Iain Buclaw

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).