forked from bminor/binutils-gdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc-exp.y
3487 lines (3059 loc) · 89.4 KB
/
c-exp.y
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* YACC parser for C expressions, for GDB.
Copyright (C) 1986-2024 Free Software Foundation, Inc.
This file is part of GDB.
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/>. */
/* Parse a C expression from text in a string,
and return the result as a struct expression pointer.
That structure contains arithmetic operations in reverse polish,
with constants represented by operations that are followed by special data.
See expression.h for the details of the format.
What is important here is that it can be built up sequentially
during the process of parsing; the lower levels of the tree always
come first in the result.
Note that malloc's and realloc's in this file are transformed to
xmalloc and xrealloc respectively by the same sed command in the
makefile that remaps any other malloc/realloc inserted by the parser
generator. Doing this with #defines and trying to control the interaction
with include files (<malloc.h> and <stdlib.h> for example) just became
too messy, particularly when such includes can be inserted at random
times by the parser generator. */
%{
#include <ctype.h>
#include "expression.h"
#include "value.h"
#include "parser-defs.h"
#include "language.h"
#include "c-lang.h"
#include "c-support.h"
#include "charset.h"
#include "block.h"
#include "cp-support.h"
#include "macroscope.h"
#include "objc-lang.h"
#include "typeprint.h"
#include "cp-abi.h"
#include "type-stack.h"
#include "target-float.h"
#include "c-exp.h"
#define parse_type(ps) builtin_type (ps->gdbarch ())
/* Remap normal yacc parser interface names (yyparse, yylex, yyerror,
etc). */
#define GDB_YY_REMAP_PREFIX c_
#include "yy-remap.h"
/* The state of the parser, used internally when we are parsing the
expression. */
static struct parser_state *pstate = NULL;
/* Data that must be held for the duration of a parse. */
struct c_parse_state
{
/* These are used to hold type lists and type stacks that are
allocated during the parse. */
std::vector<std::unique_ptr<std::vector<struct type *>>> type_lists;
std::vector<std::unique_ptr<struct type_stack>> type_stacks;
/* Storage for some strings allocated during the parse. */
std::vector<gdb::unique_xmalloc_ptr<char>> strings;
/* When we find that lexptr (the global var defined in parse.c) is
pointing at a macro invocation, we expand the invocation, and call
scan_macro_expansion to save the old lexptr here and point lexptr
into the expanded text. When we reach the end of that, we call
end_macro_expansion to pop back to the value we saved here. The
macro expansion code promises to return only fully-expanded text,
so we don't need to "push" more than one level.
This is disgusting, of course. It would be cleaner to do all macro
expansion beforehand, and then hand that to lexptr. But we don't
really know where the expression ends. Remember, in a command like
(gdb) break *ADDRESS if CONDITION
we evaluate ADDRESS in the scope of the current frame, but we
evaluate CONDITION in the scope of the breakpoint's location. So
it's simply wrong to try to macro-expand the whole thing at once. */
const char *macro_original_text = nullptr;
/* We save all intermediate macro expansions on this obstack for the
duration of a single parse. The expansion text may sometimes have
to live past the end of the expansion, due to yacc lookahead.
Rather than try to be clever about saving the data for a single
token, we simply keep it all and delete it after parsing has
completed. */
auto_obstack expansion_obstack;
/* The type stack. */
struct type_stack type_stack;
};
/* This is set and cleared in c_parse. */
static struct c_parse_state *cpstate;
int yyparse (void);
static int yylex (void);
static void yyerror (const char *);
static int type_aggregate_p (struct type *);
using namespace expr;
%}
/* Although the yacc "value" of an expression is not used,
since the result is stored in the structure being created,
other node types do have values. */
%union
{
LONGEST lval;
struct {
LONGEST val;
struct type *type;
} typed_val_int;
struct {
gdb_byte val[16];
struct type *type;
} typed_val_float;
struct type *tval;
struct stoken sval;
struct typed_stoken tsval;
struct ttype tsym;
struct symtoken ssym;
int voidval;
const struct block *bval;
enum exp_opcode opcode;
struct stoken_vector svec;
std::vector<struct type *> *tvec;
struct type_stack *type_stack;
struct objc_class_str theclass;
}
%{
/* YYSTYPE gets defined by %union */
static int parse_number (struct parser_state *par_state,
const char *, int, int, YYSTYPE *);
static struct stoken operator_stoken (const char *);
static struct stoken typename_stoken (const char *);
static void check_parameter_typelist (std::vector<struct type *> *);
#if defined(YYBISON) && YYBISON < 30800
static void c_print_token (FILE *file, int type, YYSTYPE value);
#define YYPRINT(FILE, TYPE, VALUE) c_print_token (FILE, TYPE, VALUE)
#endif
%}
%type <voidval> exp exp1 type_exp start variable qualified_name lcurly function_method
%type <lval> rcurly
%type <tval> type typebase scalar_type
%type <tvec> nonempty_typelist func_mod parameter_typelist
/* %type <bval> block */
/* Fancy type parsing. */
%type <tval> ptype
%type <lval> array_mod
%type <tval> conversion_type_id
%type <type_stack> ptr_operator_ts abs_decl direct_abs_decl
%token <typed_val_int> INT COMPLEX_INT
%token <typed_val_float> FLOAT COMPLEX_FLOAT
/* Both NAME and TYPENAME tokens represent symbols in the input,
and both convey their data as strings.
But a TYPENAME is a string that happens to be defined as a typedef
or builtin type name (such as int or char)
and a NAME is any other symbol.
Contexts where this distinction is not important can use the
nonterminal "name", which matches either NAME or TYPENAME. */
%token <tsval> STRING
%token <sval> NSSTRING /* ObjC Foundation "NSString" literal */
%token SELECTOR /* ObjC "@selector" pseudo-operator */
%token <tsval> CHAR
%token <ssym> NAME /* BLOCKNAME defined below to give it higher precedence. */
%token <ssym> UNKNOWN_CPP_NAME
%token <voidval> COMPLETE
%token <tsym> TYPENAME
%token <theclass> CLASSNAME /* ObjC Class name */
%type <sval> name field_name
%type <svec> string_exp
%type <ssym> name_not_typename
%type <tsym> type_name
/* This is like a '[' token, but is only generated when parsing
Objective C. This lets us reuse the same parser without
erroneously parsing ObjC-specific expressions in C. */
%token OBJC_LBRAC
/* A NAME_OR_INT is a symbol which is not known in the symbol table,
but which would parse as a valid number in the current input radix.
E.g. "c" when input_radix==16. Depending on the parse, it will be
turned into a name or into a number. */
%token <ssym> NAME_OR_INT
%token OPERATOR
%token STRUCT CLASS UNION ENUM SIZEOF ALIGNOF UNSIGNED COLONCOLON
%token TEMPLATE
%token ERROR
%token NEW DELETE
%type <sval> oper
%token REINTERPRET_CAST DYNAMIC_CAST STATIC_CAST CONST_CAST
%token ENTRY
%token TYPEOF
%token DECLTYPE
%token TYPEID
/* Special type cases, put in to allow the parser to distinguish different
legal basetypes. */
%token SIGNED_KEYWORD LONG SHORT INT_KEYWORD CONST_KEYWORD VOLATILE_KEYWORD DOUBLE_KEYWORD
%token RESTRICT ATOMIC
%token FLOAT_KEYWORD COMPLEX
%token <sval> DOLLAR_VARIABLE
%token <opcode> ASSIGN_MODIFY
/* C++ */
%token TRUEKEYWORD
%token FALSEKEYWORD
%left ','
%left ABOVE_COMMA
%right '=' ASSIGN_MODIFY
%right '?'
%left OROR
%left ANDAND
%left '|'
%left '^'
%left '&'
%left EQUAL NOTEQUAL
%left '<' '>' LEQ GEQ
%left LSH RSH
%left '@'
%left '+' '-'
%left '*' '/' '%'
%right UNARY INCREMENT DECREMENT
%right ARROW ARROW_STAR '.' DOT_STAR '[' OBJC_LBRAC '('
%token <ssym> BLOCKNAME
%token <bval> FILENAME
%type <bval> block
%left COLONCOLON
%token DOTDOTDOT
%%
start : exp1
| type_exp
;
type_exp: type
{
pstate->push_new<type_operation> ($1);
}
| TYPEOF '(' exp ')'
{
pstate->wrap<typeof_operation> ();
}
| TYPEOF '(' type ')'
{
pstate->push_new<type_operation> ($3);
}
| DECLTYPE '(' exp ')'
{
pstate->wrap<decltype_operation> ();
}
;
/* Expressions, including the comma operator. */
exp1 : exp
| exp1 ',' exp
{ pstate->wrap2<comma_operation> (); }
;
/* Expressions, not including the comma operator. */
exp : '*' exp %prec UNARY
{ pstate->wrap<unop_ind_operation> (); }
;
exp : '&' exp %prec UNARY
{ pstate->wrap<unop_addr_operation> (); }
;
exp : '-' exp %prec UNARY
{ pstate->wrap<unary_neg_operation> (); }
;
exp : '+' exp %prec UNARY
{ pstate->wrap<unary_plus_operation> (); }
;
exp : '!' exp %prec UNARY
{
if (pstate->language ()->la_language
== language_opencl)
pstate->wrap<opencl_not_operation> ();
else
pstate->wrap<unary_logical_not_operation> ();
}
;
exp : '~' exp %prec UNARY
{ pstate->wrap<unary_complement_operation> (); }
;
exp : INCREMENT exp %prec UNARY
{ pstate->wrap<preinc_operation> (); }
;
exp : DECREMENT exp %prec UNARY
{ pstate->wrap<predec_operation> (); }
;
exp : exp INCREMENT %prec UNARY
{ pstate->wrap<postinc_operation> (); }
;
exp : exp DECREMENT %prec UNARY
{ pstate->wrap<postdec_operation> (); }
;
exp : TYPEID '(' exp ')' %prec UNARY
{ pstate->wrap<typeid_operation> (); }
;
exp : TYPEID '(' type_exp ')' %prec UNARY
{ pstate->wrap<typeid_operation> (); }
;
exp : SIZEOF exp %prec UNARY
{ pstate->wrap<unop_sizeof_operation> (); }
;
exp : ALIGNOF '(' type_exp ')' %prec UNARY
{ pstate->wrap<unop_alignof_operation> (); }
;
exp : exp ARROW field_name
{
pstate->push_new<structop_ptr_operation>
(pstate->pop (), copy_name ($3));
}
;
exp : exp ARROW field_name COMPLETE
{
structop_base_operation *op
= new structop_ptr_operation (pstate->pop (),
copy_name ($3));
pstate->mark_struct_expression (op);
pstate->push (operation_up (op));
}
;
exp : exp ARROW COMPLETE
{
structop_base_operation *op
= new structop_ptr_operation (pstate->pop (), "");
pstate->mark_struct_expression (op);
pstate->push (operation_up (op));
}
;
exp : exp ARROW '~' name
{
pstate->push_new<structop_ptr_operation>
(pstate->pop (), "~" + copy_name ($4));
}
;
exp : exp ARROW '~' name COMPLETE
{
structop_base_operation *op
= new structop_ptr_operation (pstate->pop (),
"~" + copy_name ($4));
pstate->mark_struct_expression (op);
pstate->push (operation_up (op));
}
;
exp : exp ARROW qualified_name
{ /* exp->type::name becomes exp->*(&type::name) */
/* Note: this doesn't work if name is a
static member! FIXME */
pstate->wrap<unop_addr_operation> ();
pstate->wrap2<structop_mptr_operation> (); }
;
exp : exp ARROW_STAR exp
{ pstate->wrap2<structop_mptr_operation> (); }
;
exp : exp '.' field_name
{
if (pstate->language ()->la_language
== language_opencl)
pstate->push_new<opencl_structop_operation>
(pstate->pop (), copy_name ($3));
else
pstate->push_new<structop_operation>
(pstate->pop (), copy_name ($3));
}
;
exp : exp '.' field_name COMPLETE
{
structop_base_operation *op
= new structop_operation (pstate->pop (),
copy_name ($3));
pstate->mark_struct_expression (op);
pstate->push (operation_up (op));
}
;
exp : exp '.' COMPLETE
{
structop_base_operation *op
= new structop_operation (pstate->pop (), "");
pstate->mark_struct_expression (op);
pstate->push (operation_up (op));
}
;
exp : exp '.' '~' name
{
pstate->push_new<structop_operation>
(pstate->pop (), "~" + copy_name ($4));
}
;
exp : exp '.' '~' name COMPLETE
{
structop_base_operation *op
= new structop_operation (pstate->pop (),
"~" + copy_name ($4));
pstate->mark_struct_expression (op);
pstate->push (operation_up (op));
}
;
exp : exp '.' qualified_name
{ /* exp.type::name becomes exp.*(&type::name) */
/* Note: this doesn't work if name is a
static member! FIXME */
pstate->wrap<unop_addr_operation> ();
pstate->wrap2<structop_member_operation> (); }
;
exp : exp DOT_STAR exp
{ pstate->wrap2<structop_member_operation> (); }
;
exp : exp '[' exp1 ']'
{ pstate->wrap2<subscript_operation> (); }
;
exp : exp OBJC_LBRAC exp1 ']'
{ pstate->wrap2<subscript_operation> (); }
;
/*
* The rules below parse ObjC message calls of the form:
* '[' target selector {':' argument}* ']'
*/
exp : OBJC_LBRAC TYPENAME
{
CORE_ADDR theclass;
std::string copy = copy_name ($2.stoken);
theclass = lookup_objc_class (pstate->gdbarch (),
copy.c_str ());
if (theclass == 0)
error (_("%s is not an ObjC Class"),
copy.c_str ());
pstate->push_new<long_const_operation>
(parse_type (pstate)->builtin_int,
(LONGEST) theclass);
start_msglist();
}
msglist ']'
{ end_msglist (pstate); }
;
exp : OBJC_LBRAC CLASSNAME
{
pstate->push_new<long_const_operation>
(parse_type (pstate)->builtin_int,
(LONGEST) $2.theclass);
start_msglist();
}
msglist ']'
{ end_msglist (pstate); }
;
exp : OBJC_LBRAC exp
{ start_msglist(); }
msglist ']'
{ end_msglist (pstate); }
;
msglist : name
{ add_msglist(&$1, 0); }
| msgarglist
;
msgarglist : msgarg
| msgarglist msgarg
;
msgarg : name ':' exp
{ add_msglist(&$1, 1); }
| ':' exp /* Unnamed arg. */
{ add_msglist(0, 1); }
| ',' exp /* Variable number of args. */
{ add_msglist(0, 0); }
;
exp : exp '('
/* This is to save the value of arglist_len
being accumulated by an outer function call. */
{ pstate->start_arglist (); }
arglist ')' %prec ARROW
{
std::vector<operation_up> args
= pstate->pop_vector (pstate->end_arglist ());
pstate->push_new<funcall_operation>
(pstate->pop (), std::move (args));
}
;
/* This is here to disambiguate with the production for
"func()::static_var" further below, which uses
function_method_void. */
exp : exp '(' ')' %prec ARROW
{
pstate->push_new<funcall_operation>
(pstate->pop (), std::vector<operation_up> ());
}
;
exp : UNKNOWN_CPP_NAME '('
{
/* This could potentially be a an argument defined
lookup function (Koenig). */
/* This is to save the value of arglist_len
being accumulated by an outer function call. */
pstate->start_arglist ();
}
arglist ')' %prec ARROW
{
std::vector<operation_up> args
= pstate->pop_vector (pstate->end_arglist ());
pstate->push_new<adl_func_operation>
(copy_name ($1.stoken),
pstate->expression_context_block,
std::move (args));
}
;
lcurly : '{'
{ pstate->start_arglist (); }
;
arglist :
;
arglist : exp
{ pstate->arglist_len = 1; }
;
arglist : arglist ',' exp %prec ABOVE_COMMA
{ pstate->arglist_len++; }
;
function_method: exp '(' parameter_typelist ')' const_or_volatile
{
std::vector<struct type *> *type_list = $3;
/* Save the const/volatile qualifiers as
recorded by the const_or_volatile
production's actions. */
type_instance_flags flags
= (cpstate->type_stack
.follow_type_instance_flags ());
pstate->push_new<type_instance_operation>
(flags, std::move (*type_list),
pstate->pop ());
}
;
function_method_void: exp '(' ')' const_or_volatile
{
type_instance_flags flags
= (cpstate->type_stack
.follow_type_instance_flags ());
pstate->push_new<type_instance_operation>
(flags, std::vector<type *> (), pstate->pop ());
}
;
exp : function_method
;
/* Normally we must interpret "func()" as a function call, instead of
a type. The user needs to write func(void) to disambiguate.
However, in the "func()::static_var" case, there's no
ambiguity. */
function_method_void_or_typelist: function_method
| function_method_void
;
exp : function_method_void_or_typelist COLONCOLON name
{
pstate->push_new<func_static_var_operation>
(pstate->pop (), copy_name ($3));
}
;
rcurly : '}'
{ $$ = pstate->end_arglist () - 1; }
;
exp : lcurly arglist rcurly %prec ARROW
{
std::vector<operation_up> args
= pstate->pop_vector ($3 + 1);
pstate->push_new<array_operation> (0, $3,
std::move (args));
}
;
exp : lcurly type_exp rcurly exp %prec UNARY
{ pstate->wrap2<unop_memval_type_operation> (); }
;
exp : '(' type_exp ')' exp %prec UNARY
{
if (pstate->language ()->la_language
== language_opencl)
pstate->wrap2<opencl_cast_type_operation> ();
else
pstate->wrap2<unop_cast_type_operation> ();
}
;
exp : '(' exp1 ')'
{ }
;
/* Binary operators in order of decreasing precedence. */
exp : exp '@' exp
{ pstate->wrap2<repeat_operation> (); }
;
exp : exp '*' exp
{ pstate->wrap2<mul_operation> (); }
;
exp : exp '/' exp
{ pstate->wrap2<div_operation> (); }
;
exp : exp '%' exp
{ pstate->wrap2<rem_operation> (); }
;
exp : exp '+' exp
{ pstate->wrap2<add_operation> (); }
;
exp : exp '-' exp
{ pstate->wrap2<sub_operation> (); }
;
exp : exp LSH exp
{ pstate->wrap2<lsh_operation> (); }
;
exp : exp RSH exp
{ pstate->wrap2<rsh_operation> (); }
;
exp : exp EQUAL exp
{
if (pstate->language ()->la_language
== language_opencl)
pstate->wrap2<opencl_equal_operation> ();
else
pstate->wrap2<equal_operation> ();
}
;
exp : exp NOTEQUAL exp
{
if (pstate->language ()->la_language
== language_opencl)
pstate->wrap2<opencl_notequal_operation> ();
else
pstate->wrap2<notequal_operation> ();
}
;
exp : exp LEQ exp
{
if (pstate->language ()->la_language
== language_opencl)
pstate->wrap2<opencl_leq_operation> ();
else
pstate->wrap2<leq_operation> ();
}
;
exp : exp GEQ exp
{
if (pstate->language ()->la_language
== language_opencl)
pstate->wrap2<opencl_geq_operation> ();
else
pstate->wrap2<geq_operation> ();
}
;
exp : exp '<' exp
{
if (pstate->language ()->la_language
== language_opencl)
pstate->wrap2<opencl_less_operation> ();
else
pstate->wrap2<less_operation> ();
}
;
exp : exp '>' exp
{
if (pstate->language ()->la_language
== language_opencl)
pstate->wrap2<opencl_gtr_operation> ();
else
pstate->wrap2<gtr_operation> ();
}
;
exp : exp '&' exp
{ pstate->wrap2<bitwise_and_operation> (); }
;
exp : exp '^' exp
{ pstate->wrap2<bitwise_xor_operation> (); }
;
exp : exp '|' exp
{ pstate->wrap2<bitwise_ior_operation> (); }
;
exp : exp ANDAND exp
{
if (pstate->language ()->la_language
== language_opencl)
{
operation_up rhs = pstate->pop ();
operation_up lhs = pstate->pop ();
pstate->push_new<opencl_logical_binop_operation>
(BINOP_LOGICAL_AND, std::move (lhs),
std::move (rhs));
}
else
pstate->wrap2<logical_and_operation> ();
}
;
exp : exp OROR exp
{
if (pstate->language ()->la_language
== language_opencl)
{
operation_up rhs = pstate->pop ();
operation_up lhs = pstate->pop ();
pstate->push_new<opencl_logical_binop_operation>
(BINOP_LOGICAL_OR, std::move (lhs),
std::move (rhs));
}
else
pstate->wrap2<logical_or_operation> ();
}
;
exp : exp '?' exp ':' exp %prec '?'
{
operation_up last = pstate->pop ();
operation_up mid = pstate->pop ();
operation_up first = pstate->pop ();
if (pstate->language ()->la_language
== language_opencl)
pstate->push_new<opencl_ternop_cond_operation>
(std::move (first), std::move (mid),
std::move (last));
else
pstate->push_new<ternop_cond_operation>
(std::move (first), std::move (mid),
std::move (last));
}
;
exp : exp '=' exp
{
if (pstate->language ()->la_language
== language_opencl)
pstate->wrap2<opencl_assign_operation> ();
else
pstate->wrap2<assign_operation> ();
}
;
exp : exp ASSIGN_MODIFY exp
{
operation_up rhs = pstate->pop ();
operation_up lhs = pstate->pop ();
pstate->push_new<assign_modify_operation>
($2, std::move (lhs), std::move (rhs));
}
;
exp : INT
{
pstate->push_new<long_const_operation>
($1.type, $1.val);
}
;
exp : COMPLEX_INT
{
operation_up real
= (make_operation<long_const_operation>
($1.type->target_type (), 0));
operation_up imag
= (make_operation<long_const_operation>
($1.type->target_type (), $1.val));
pstate->push_new<complex_operation>
(std::move (real), std::move (imag), $1.type);
}
;
exp : CHAR
{
struct stoken_vector vec;
vec.len = 1;
vec.tokens = &$1;
pstate->push_c_string ($1.type, &vec);
}
;
exp : NAME_OR_INT
{ YYSTYPE val;
parse_number (pstate, $1.stoken.ptr,
$1.stoken.length, 0, &val);
pstate->push_new<long_const_operation>
(val.typed_val_int.type,
val.typed_val_int.val);
}
;
exp : FLOAT
{
float_data data;
std::copy (std::begin ($1.val), std::end ($1.val),
std::begin (data));
pstate->push_new<float_const_operation> ($1.type, data);
}
;
exp : COMPLEX_FLOAT
{
struct type *underlying = $1.type->target_type ();
float_data val;
target_float_from_host_double (val.data (),
underlying, 0);
operation_up real
= (make_operation<float_const_operation>
(underlying, val));
std::copy (std::begin ($1.val), std::end ($1.val),
std::begin (val));
operation_up imag
= (make_operation<float_const_operation>
(underlying, val));
pstate->push_new<complex_operation>
(std::move (real), std::move (imag),
$1.type);
}
;
exp : variable
;
exp : DOLLAR_VARIABLE
{
pstate->push_dollar ($1);
}
;
exp : SELECTOR '(' name ')'
{
pstate->push_new<objc_selector_operation>
(copy_name ($3));
}
;
exp : SIZEOF '(' type ')' %prec UNARY
{ struct type *type = $3;
struct type *int_type
= lookup_signed_typename (pstate->language (),
"int");
type = check_typedef (type);
/* $5.3.3/2 of the C++ Standard (n3290 draft)
says of sizeof: "When applied to a reference
or a reference type, the result is the size of
the referenced type." */
if (TYPE_IS_REFERENCE (type))
type = check_typedef (type->target_type ());
pstate->push_new<long_const_operation>
(int_type, type->length ());
}
;
exp : REINTERPRET_CAST '<' type_exp '>' '(' exp ')' %prec UNARY
{ pstate->wrap2<reinterpret_cast_operation> (); }
;
exp : STATIC_CAST '<' type_exp '>' '(' exp ')' %prec UNARY
{ pstate->wrap2<unop_cast_type_operation> (); }
;
exp : DYNAMIC_CAST '<' type_exp '>' '(' exp ')' %prec UNARY
{ pstate->wrap2<dynamic_cast_operation> (); }
;
exp : CONST_CAST '<' type_exp '>' '(' exp ')' %prec UNARY
{ /* We could do more error checking here, but
it doesn't seem worthwhile. */
pstate->wrap2<unop_cast_type_operation> (); }
;
string_exp:
STRING
{
/* We copy the string here, and not in the
lexer, to guarantee that we do not leak a
string. Note that we follow the
NUL-termination convention of the
lexer. */
struct typed_stoken *vec = XNEW (struct typed_stoken);
$$.len = 1;
$$.tokens = vec;
vec->type = $1.type;
vec->length = $1.length;
vec->ptr = (char *) malloc ($1.length + 1);
memcpy (vec->ptr, $1.ptr, $1.length + 1);
}
| string_exp STRING
{
/* Note that we NUL-terminate here, but just
for convenience. */
char *p;