@@ -593,8 +593,19 @@ void goto_convertt::do_array_op(
593
593
copy (array_op_statement, OTHER, dest);
594
594
}
595
595
596
- exprt make_va_list (const exprt &expr)
596
+ static exprt make_va_list (const exprt &expr, const namespacet &ns )
597
597
{
598
+ if (
599
+ auto struct_tag_type = type_try_dynamic_cast<struct_tag_typet>(expr.type ()))
600
+ {
601
+ // aarch64 ABI mandates that va_list has struct type with member names as specified
602
+ const auto &components = ns.follow_tag (*struct_tag_type).components ();
603
+ DATA_INVARIANT (
604
+ components.size () == 5 ,
605
+ " va_list struct type expected to have 5 components" );
606
+ return member_exprt{expr, components.front ()};
607
+ }
608
+
598
609
exprt result = skip_typecast (expr);
599
610
600
611
// if it's an address of an lvalue, we take that
@@ -1296,7 +1307,7 @@ void goto_convertt::do_function_call_symbol(
1296
1307
throw 0 ;
1297
1308
}
1298
1309
1299
- exprt list_arg = make_va_list (arguments[0 ]);
1310
+ exprt list_arg = make_va_list (arguments[0 ], ns );
1300
1311
1301
1312
if (lhs.is_not_nil ())
1302
1313
{
@@ -1333,7 +1344,7 @@ void goto_convertt::do_function_call_symbol(
1333
1344
throw 0 ;
1334
1345
}
1335
1346
1336
- exprt dest_expr = make_va_list (arguments[0 ]);
1347
+ exprt dest_expr = make_va_list (arguments[0 ], ns );
1337
1348
const typecast_exprt src_expr (arguments[1 ], dest_expr.type ());
1338
1349
1339
1350
if (!is_assignable (dest_expr))
@@ -1357,7 +1368,7 @@ void goto_convertt::do_function_call_symbol(
1357
1368
throw 0 ;
1358
1369
}
1359
1370
1360
- exprt dest_expr = make_va_list (arguments[0 ]);
1371
+ exprt dest_expr = make_va_list (arguments[0 ], ns );
1361
1372
1362
1373
if (!is_assignable (dest_expr))
1363
1374
{
@@ -1392,7 +1403,7 @@ void goto_convertt::do_function_call_symbol(
1392
1403
throw 0 ;
1393
1404
}
1394
1405
1395
- exprt dest_expr = make_va_list (arguments[0 ]);
1406
+ exprt dest_expr = make_va_list (arguments[0 ], ns );
1396
1407
1397
1408
if (!is_assignable (dest_expr))
1398
1409
{
0 commit comments