23
23
#include " cpp_member_spec.h"
24
24
#include " cpp_enum_type.h"
25
25
26
- #define DEBUG
27
26
#ifdef DEBUG
28
27
#include < iostream>
29
28
@@ -6321,7 +6320,10 @@ bool Parser::rAllocateInitializer(exprt &init)
6321
6320
postfix.exp
6322
6321
: primary.exp
6323
6322
| postfix.expr '[' comma.expression ']'
6323
+ | postfix.expr '[' initializer ']'
6324
6324
| postfix.expr '(' function.arguments ')'
6325
+ | integral.or.class.spec '(' function.arguments ')'
6326
+ | integral.or.class.spec initializer
6325
6327
| postfix.expr '.' var.name
6326
6328
| postfix.expr ArrowOp var.name
6327
6329
| postfix.expr IncOp
@@ -6330,8 +6332,6 @@ bool Parser::rAllocateInitializer(exprt &init)
6330
6332
openc++.postfix.expr
6331
6333
: postfix.expr '.' userdef.statement
6332
6334
| postfix.expr ArrowOp userdef.statement
6333
-
6334
- Note: function-style casts are accepted as function calls.
6335
6335
*/
6336
6336
bool Parser::rPostfixExpr (exprt &exp)
6337
6337
{
@@ -6340,8 +6340,52 @@ bool Parser::rPostfixExpr(exprt &exp)
6340
6340
std::cout << std::string (__indent, ' ' ) << " Parser::rPostfixExpr 0\n " ;
6341
6341
#endif
6342
6342
6343
- if (!rPrimaryExpr (exp ))
6344
- return false ;
6343
+ typet type;
6344
+
6345
+ cpp_token_buffert::post pos=lex.Save ();
6346
+ // try to see whether this is explicit type conversion, else it has to be
6347
+ // a primary-expression
6348
+ if (optIntegralTypeOrClassSpec (type) &&
6349
+ (type.is_not_nil () || rName (type)) &&
6350
+ (lex.LookAhead (0 ) == ' (' || lex.LookAhead (0 ) == ' {' ))
6351
+ {
6352
+ #ifdef DEBUG
6353
+ std::cout << std::string (__indent, ' ' ) << " Parser::rPostfixExpr 0.1\n " ;
6354
+ #endif
6355
+
6356
+ cpp_tokent tk;
6357
+ lex.LookAhead (0 , tk);
6358
+ exprt exp2 ;
6359
+ if (lex.LookAhead (0 )==' {' )
6360
+ {
6361
+ if (!rInitializeExpr (exp2 ))
6362
+ return false ;
6363
+ }
6364
+ else
6365
+ {
6366
+ // lex.LookAhead(0)=='('
6367
+ lex.get_token (tk);
6368
+
6369
+ exprt exp2 ;
6370
+ if (!rFunctionArguments (exp2 ))
6371
+ return false ;
6372
+
6373
+ cpp_tokent tk2;
6374
+ if (lex.get_token (tk2)!=' )' )
6375
+ return false ;
6376
+ }
6377
+
6378
+ exp =exprt (" explicit-constructor-call" );
6379
+ exp .type ().swap (type);
6380
+ exp .operands ().swap (exp2 .operands ());
6381
+ set_location (exp , tk);
6382
+ }
6383
+ else
6384
+ {
6385
+ lex.Restore (pos);
6386
+ if (!rPrimaryExpr (exp ))
6387
+ return false ;
6388
+ }
6345
6389
6346
6390
#ifdef DEBUG
6347
6391
std::cout << std::string (__indent, ' ' ) << " Parser::rPostfixExpr 1\n " ;
@@ -6357,7 +6401,14 @@ bool Parser::rPostfixExpr(exprt &exp)
6357
6401
{
6358
6402
case ' [' :
6359
6403
lex.get_token (op);
6360
- if (!rCommaExpression (e))
6404
+
6405
+ if (lex.LookAhead (0 ) == ' {' )
6406
+ {
6407
+ // C++11 initialisation expression
6408
+ if (!rInitializeExpr (e))
6409
+ return false ;
6410
+ }
6411
+ else if (!rCommaExpression (e))
6361
6412
return false ;
6362
6413
6363
6414
#ifdef DEBUG
@@ -6405,35 +6456,6 @@ bool Parser::rPostfixExpr(exprt &exp)
6405
6456
}
6406
6457
break ;
6407
6458
6408
- case ' {' :
6409
- #ifdef DEBUG
6410
- std::cout << std::string (__indent, ' ' ) << " Parser::rPostfixExpr 3a\n " ;
6411
- #endif
6412
-
6413
- // this is a C++11 extension
6414
- if (!rInitializeExpr (e))
6415
- return false ;
6416
-
6417
- if (lex.get_token (cp)!=' }' )
6418
- return false ;
6419
-
6420
- #ifdef DEBUG
6421
- std::cout << std::string (__indent, ' ' ) << " Parser::rPostfixExpr 4a\n " ;
6422
- #endif
6423
-
6424
- {
6425
- side_effect_expr_function_callt fc (
6426
- std::move (exp ), {}, typet{}, source_locationt{});
6427
- fc.arguments ().reserve (e.operands ().size ());
6428
- set_location (fc, op);
6429
-
6430
- Forall_operands (it, e)
6431
- fc.arguments ().push_back (*it);
6432
- e.operands ().clear (); // save some
6433
- exp .swap (fc);
6434
- }
6435
- break ;
6436
-
6437
6459
case TOK_INCR:
6438
6460
lex.get_token (op);
6439
6461
@@ -6704,8 +6726,6 @@ bool Parser::rTypePredicate(exprt &expr)
6704
6726
| THIS
6705
6727
| var.name
6706
6728
| '(' comma.expression ')'
6707
- | integral.or.class.spec '(' function.arguments ')'
6708
- | integral.or.class.spec initializer
6709
6729
| typeid.expr
6710
6730
| true
6711
6731
| false
@@ -6823,12 +6843,6 @@ bool Parser::rPrimaryExpr(exprt &exp)
6823
6843
#endif
6824
6844
return true ;
6825
6845
6826
- case ' {' : // C++11 initialisation expression
6827
- #ifdef DEBUG
6828
- std::cout << std::string (__indent, ' ' ) << " Parser::rPrimaryExpr 10\n " ;
6829
- #endif
6830
- return rInitializeExpr (exp );
6831
-
6832
6846
case TOK_TYPEID:
6833
6847
return rTypeidExpr (exp );
6834
6848
@@ -6859,60 +6873,6 @@ bool Parser::rPrimaryExpr(exprt &exp)
6859
6873
std::cout << std::string (__indent, ' ' ) << " Parser::rPrimaryExpr 14\n " ;
6860
6874
#endif
6861
6875
{
6862
- typet type;
6863
-
6864
- if (!optIntegralTypeOrClassSpec (type))
6865
- return false ;
6866
-
6867
- #ifdef DEBUG
6868
- std::cout << std::string (__indent, ' ' ) << " Parser::rPrimaryExpr 15\n " ;
6869
- #endif
6870
-
6871
- if (type.is_not_nil () && lex.LookAhead (0 )==TOK_SCOPE)
6872
- {
6873
- lex.get_token (tk);
6874
- lex.get_token (tk);
6875
-
6876
- // TODO
6877
- }
6878
- else if (type.is_not_nil ())
6879
- {
6880
- #ifdef DEBUG
6881
- std::cout << std::string (__indent, ' ' ) << " Parser::rPrimaryExpr 16\n " ;
6882
- #endif
6883
- if (lex.LookAhead (0 )==' {' )
6884
- {
6885
- lex.LookAhead (0 , tk);
6886
-
6887
- exprt exp2 ;
6888
- if (!rInitializeExpr (exp2 ))
6889
- return false ;
6890
-
6891
- exp =exprt (" explicit-constructor-call" );
6892
- exp .type ().swap (type);
6893
- exp .add_to_operands (std::move (exp2 ));
6894
- set_location (exp , tk);
6895
- }
6896
- else if (lex.LookAhead (0 )==' (' )
6897
- {
6898
- lex.get_token (tk);
6899
-
6900
- exprt exp2 ;
6901
- if (!rFunctionArguments (exp2 ))
6902
- return false ;
6903
-
6904
- if (lex.get_token (tk2)!=' )' )
6905
- return false ;
6906
-
6907
- exp =exprt (" explicit-constructor-call" );
6908
- exp .type ().swap (type);
6909
- exp .operands ().swap (exp2 .operands ());
6910
- set_location (exp , tk);
6911
- }
6912
- else
6913
- return false ;
6914
- }
6915
- else
6916
6876
{
6917
6877
if (!rVarName (exp ))
6918
6878
return false ;
0 commit comments