-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathjava_bytecode_convert_method.cpp
3441 lines (3073 loc) · 115 KB
/
java_bytecode_convert_method.cpp
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
/*******************************************************************\
Module: JAVA Bytecode Language Conversion
Author: Daniel Kroening, [email protected]
\*******************************************************************/
/// \file
/// JAVA Bytecode Language Conversion
#ifdef DEBUG
#include <iostream>
#endif
#include "java_bytecode_convert_method_class.h"
#include <util/arith_tools.h>
#include <util/bitvector_expr.h>
#include <util/c_types.h>
#include <util/expr_initializer.h>
#include <util/floatbv_expr.h>
#include <util/ieee_float.h>
#include <util/invariant.h>
#include <util/namespace.h>
#include <util/prefix.h>
#include <util/prefix_filter.h> // IWYU pragma: keep
#include <util/std_expr.h>
#include <util/symbol_table_base.h>
#include <util/threeval.h>
#include <goto-programs/resolve_inherited_component.h>
#include <analyses/uncaught_exceptions_analysis.h>
#include "bytecode_info.h"
#include "java_bytecode_convert_method.h"
#include "java_expr.h"
#include "java_static_initializers.h"
#include "java_string_library_preprocess.h"
#include "java_string_literal_expr.h"
#include "java_types.h"
#include "java_utils.h"
#include "lambda_synthesis.h"
#include "pattern.h"
#include <algorithm>
#include <limits>
/// Iterates through the parameters of the function type \p ftype, finds a new
/// new name for each parameter and renames them in `ftype.parameters()` as
/// well as in the \p symbol_table.
/// Assigns parameter names (side-effects on `ftype`) to function stub
/// parameters, which are initially nameless as method conversion hasn't
/// happened. Also creates symbols in `symbol_table`.
/// \param [in,out] ftype:
/// Function type whose parameters should be named.
/// \param name_prefix:
/// Prefix for parameter names, typically the parent function's name.
/// \param [in,out] symbol_table:
/// Global symbol table.
static void assign_parameter_names(
java_method_typet &ftype,
const irep_idt &name_prefix,
symbol_table_baset &symbol_table)
{
java_method_typet::parameterst ¶meters = ftype.parameters();
// Mostly borrowed from java_bytecode_convert.cpp; maybe factor this out.
// assign names to parameters
for(std::size_t i=0; i<parameters.size(); ++i)
{
irep_idt base_name, identifier;
if(i==0 && parameters[i].get_this())
base_name = ID_this;
else
base_name="stub_ignored_arg"+std::to_string(i);
identifier=id2string(name_prefix)+"::"+id2string(base_name);
parameters[i].set_base_name(base_name);
parameters[i].set_identifier(identifier);
// add to symbol table
parameter_symbolt parameter_symbol;
parameter_symbol.base_name=base_name;
parameter_symbol.mode=ID_java;
parameter_symbol.name=identifier;
parameter_symbol.type=parameters[i].type();
symbol_table.add(parameter_symbol);
}
}
void create_method_stub_symbol(
const irep_idt &identifier,
const irep_idt &base_name,
const irep_idt &pretty_name,
const typet &type,
const irep_idt &declaring_class,
symbol_table_baset &symbol_table,
message_handlert &message_handler)
{
messaget log(message_handler);
symbolt symbol{identifier, type, ID_java};
symbol.base_name = base_name;
symbol.pretty_name = pretty_name;
symbol.type.set(ID_access, ID_private);
to_java_method_type(symbol.type).set_is_final(true);
assign_parameter_names(
to_java_method_type(symbol.type), symbol.name, symbol_table);
set_declaring_class(symbol, declaring_class);
log.debug() << "Generating codet: new opaque symbol: method '" << symbol.name
<< "'" << messaget::eom;
symbol_table.add(symbol);
}
static bool is_constructor(const irep_idt &method_name)
{
return id2string(method_name).find("<init>") != std::string::npos;
}
exprt::operandst java_bytecode_convert_methodt::pop(std::size_t n)
{
if(stack.size()<n)
{
log.error() << "malformed bytecode (pop too high)" << messaget::eom;
throw 0;
}
exprt::operandst operands;
operands.resize(n);
for(std::size_t i=0; i<n; i++)
operands[i]=stack[stack.size()-n+i];
stack.resize(stack.size()-n);
return operands;
}
/// removes minimum(n, stack.size()) elements from the stack
void java_bytecode_convert_methodt::pop_residue(std::size_t n)
{
std::size_t residue_size=std::min(n, stack.size());
stack.resize(stack.size()-residue_size);
}
void java_bytecode_convert_methodt::push(const exprt::operandst &o)
{
stack.resize(stack.size()+o.size());
for(std::size_t i=0; i<o.size(); i++)
stack[stack.size()-o.size()+i]=o[i];
}
// JVM program locations
irep_idt java_bytecode_convert_methodt::label(const irep_idt &address)
{
return "pc"+id2string(address);
}
symbol_exprt java_bytecode_convert_methodt::tmp_variable(
const std::string &prefix,
const typet &type)
{
irep_idt base_name=prefix+"_tmp"+std::to_string(tmp_vars.size());
irep_idt identifier=id2string(current_method)+"::"+id2string(base_name);
auxiliary_symbolt tmp_symbol;
tmp_symbol.base_name=base_name;
tmp_symbol.is_static_lifetime=false;
tmp_symbol.mode=ID_java;
tmp_symbol.name=identifier;
tmp_symbol.type=type;
symbol_table.add(tmp_symbol);
symbol_exprt result(identifier, type);
result.set(ID_C_base_name, base_name);
tmp_vars.push_back(result);
return result;
}
/// Returns an expression indicating a local variable suitable to load/store
/// from a bytecode at address `address` a value of type `type_char` stored in
/// the JVM's slot `arg`.
/// \param arg: The local variable slot
/// \param type_char: The type of the value stored in the slot pointed to by
/// `arg`, this is only used in the case where a new unnamed local variable
/// is created
/// \param address: Bytecode address used to find a variable that the LVT
/// declares to be live and living in the slot pointed by `arg` for this
/// bytecode
/// \return symbol_exprt or type-cast symbol_exprt
exprt java_bytecode_convert_methodt::variable(
const exprt &arg,
char type_char,
size_t address)
{
const std::size_t number_int =
numeric_cast_v<std::size_t>(to_constant_expr(arg));
variablest &var_list=variables[number_int];
// search variable in list for correct frame / address if necessary
const variablet &var=
find_variable_for_slot(address, var_list);
if(!var.symbol_expr.get_identifier().empty())
return var.symbol_expr;
// an unnamed local variable
irep_idt base_name = "anonlocal::" + std::to_string(number_int) + type_char;
irep_idt identifier = id2string(current_method) + "::" + id2string(base_name);
symbol_exprt result(identifier, java_type_from_char(type_char));
result.set(ID_C_base_name, base_name);
used_local_names.insert(result);
return std::move(result);
}
/// Returns the member type for a method, based on signature or descriptor
/// \param descriptor: descriptor of the method
/// \param signature: signature of the method
/// \param class_name: string containing the name of the corresponding class
/// \param method_name: string containing the name of the method
/// \param message_handler: message handler to collect warnings
/// \return the constructed member type
java_method_typet member_type_lazy(
const std::string &descriptor,
const std::optional<std::string> &signature,
const std::string &class_name,
const std::string &method_name,
message_handlert &message_handler)
{
// In order to construct the method type, we can either use signature or
// descriptor. Since only signature contains the generics info, we want to
// use signature whenever possible. We revert to using descriptor if (1) the
// signature does not exist, (2) an unsupported generics are present or
// (3) in the special case when the number of parameters in the descriptor
// does not match the number of parameters in the signature - e.g. for
// certain types of inner classes and enums (see unit tests for examples).
messaget message(message_handler);
auto member_type_from_descriptor = java_type_from_string(descriptor);
INVARIANT(
member_type_from_descriptor.has_value() &&
member_type_from_descriptor->id() == ID_code,
"Must be code type");
if(signature.has_value())
{
try
{
auto member_type_from_signature =
java_type_from_string(signature.value(), class_name);
INVARIANT(
member_type_from_signature.has_value() &&
member_type_from_signature->id() == ID_code,
"Must be code type");
if(
to_java_method_type(*member_type_from_signature).parameters().size() ==
to_java_method_type(*member_type_from_descriptor).parameters().size())
{
return to_java_method_type(*member_type_from_signature);
}
else
{
message.debug() << "Method: " << class_name << "." << method_name
<< "\n signature: " << signature.value()
<< "\n descriptor: " << descriptor
<< "\n different number of parameters, reverting to "
"descriptor"
<< message.eom;
}
}
catch(const unsupported_java_class_signature_exceptiont &e)
{
message.debug() << "Method: " << class_name << "." << method_name
<< "\n could not parse signature: " << signature.value()
<< "\n " << e.what() << "\n"
<< " reverting to descriptor: " << descriptor
<< message.eom;
}
}
return to_java_method_type(*member_type_from_descriptor);
}
/// This creates a method symbol in the symtab, but doesn't actually perform
/// method conversion just yet. The caller should call
/// java_bytecode_convert_method later to give the symbol/method a body.
/// \param class_symbol: The class this method belongs to. The method, if not
/// static, will be added to the class' list of methods.
/// \param method_identifier: The fully qualified method name, including type
/// descriptor (e.g. "x.y.z.f:(I)")
/// \param m: The parsed method object to convert.
/// \param symbol_table: The global symbol table (will be modified).
/// \param message_handler: A message handler to collect warnings.
void java_bytecode_convert_method_lazy(
symbolt &class_symbol,
const irep_idt &method_identifier,
const java_bytecode_parse_treet::methodt &m,
symbol_table_baset &symbol_table,
message_handlert &message_handler)
{
java_method_typet member_type = member_type_lazy(
m.descriptor,
m.signature,
id2string(class_symbol.name),
id2string(m.base_name),
message_handler);
symbolt method_symbol{method_identifier, typet{}, ID_java};
method_symbol.base_name=m.base_name;
method_symbol.location=m.source_location;
method_symbol.location.set_function(method_identifier);
if(m.is_public)
member_type.set_access(ID_public);
else if(m.is_protected)
member_type.set_access(ID_protected);
else if(m.is_private)
member_type.set_access(ID_private);
else
member_type.set_access(ID_default);
if(m.is_synchronized)
member_type.set(ID_is_synchronized, true);
if(m.is_static)
member_type.set(ID_is_static, true);
member_type.set_native(m.is_native);
member_type.set_is_varargs(m.is_varargs);
member_type.set_is_synthetic(m.is_synthetic);
if(m.is_bridge)
member_type.set(ID_is_bridge_method, m.is_bridge);
// do we need to add 'this' as a parameter?
if(!m.is_static)
{
java_method_typet::parameterst ¶meters = member_type.parameters();
const reference_typet object_ref_type =
java_reference_type(struct_tag_typet(class_symbol.name));
java_method_typet::parametert this_p(object_ref_type);
this_p.set_this();
parameters.insert(parameters.begin(), this_p);
}
const std::string signature_string = pretty_signature(member_type);
if(is_constructor(method_symbol.base_name))
{
// we use full.class_name(...) as pretty name
// for constructors -- the idea is that they have
// an empty declarator.
method_symbol.pretty_name=
id2string(class_symbol.pretty_name) + signature_string;
member_type.set_is_constructor();
}
else
{
method_symbol.pretty_name = id2string(class_symbol.pretty_name) + "." +
id2string(m.base_name) + signature_string;
}
// Load annotations
if(!m.annotations.empty())
{
convert_annotations(
m.annotations,
type_checked_cast<annotated_typet>(static_cast<typet &>(member_type))
.get_annotations());
}
method_symbol.type=member_type;
// Not used in jbmc at present, but other codebases that use jbmc as a library
// use this information.
method_symbol.type.set(ID_C_abstract, m.is_abstract);
set_declaring_class(method_symbol, class_symbol.name);
if(java_bytecode_parse_treet::find_annotation(
m.annotations, "java::org.cprover.MustNotThrow"))
{
method_symbol.type.set(ID_C_must_not_throw, true);
}
// Assign names to parameters in the method symbol
java_method_typet &method_type = to_java_method_type(method_symbol.type);
method_type.set_is_final(m.is_final);
java_method_typet::parameterst ¶meters = method_type.parameters();
java_bytecode_convert_methodt::method_offsett slots_for_parameters =
java_method_parameter_slots(method_type);
create_parameter_names(
m, method_identifier, parameters, slots_for_parameters);
symbol_table.add(method_symbol);
if(!m.is_static)
{
java_class_typet::methodt new_method{method_symbol.name, method_type};
new_method.set_base_name(method_symbol.base_name);
new_method.set_pretty_name(method_symbol.pretty_name);
new_method.set_access(member_type.get_access());
new_method.set_descriptor(m.descriptor);
to_java_class_type(class_symbol.type)
.methods()
.emplace_back(std::move(new_method));
}
}
static irep_idt get_method_identifier(
const irep_idt &class_identifier,
const java_bytecode_parse_treet::methodt &method)
{
return
id2string(class_identifier) + "." + id2string(method.name) + ":" +
method.descriptor;
}
void create_parameter_names(
const java_bytecode_parse_treet::methodt &m,
const irep_idt &method_identifier,
java_method_typet::parameterst ¶meters,
const java_bytecode_convert_methodt::method_offsett &slots_for_parameters)
{
auto variables = variablest{};
// Find parameter names in the local variable table
// and store the result in the external variables vector
for(const auto &v : m.local_variable_table)
{
// Skip this variable if it is not a method parameter
if(v.index >= slots_for_parameters)
continue;
std::ostringstream id_oss;
id_oss << method_identifier << "::" << v.name;
irep_idt identifier(id_oss.str());
symbol_exprt result = symbol_exprt::typeless(identifier);
result.set(ID_C_base_name, v.name);
// Create a new variablet in the variables vector; in fact this entry will
// be rewritten below in the loop that iterates through the method
// parameters; the only field that seem to be useful to write here is the
// symbol_expr, others will be rewritten
variables[v.index].emplace_back(result, v.start_pc, v.length);
}
// The variables is a expanding_vectort, and the loop above may have expanded
// the vector introducing gaps where the entries are empty vectors. We now
// make sure that the vector of each LV slot contains exactly one variablet,
// which we will add below
std::size_t param_index = 0;
for(const auto ¶m : parameters)
{
INVARIANT(
variables[param_index].size() <= 1,
"should have at most one entry per index");
param_index += java_local_variable_slots(param.type());
}
INVARIANT(
param_index == slots_for_parameters,
"java_parameter_count and local computation must agree");
param_index = 0;
for(auto ¶m : parameters)
{
irep_idt base_name, identifier;
// Construct a sensible base name (base_name) and a fully qualified name
// (identifier) for every parameter of the method under translation,
// regardless of whether we have an LVT or not; and assign it to the
// parameter object (which is stored in the type of the symbol, not in the
// symbol table)
if(param_index == 0 && param.get_this())
{
// my.package.ClassName.myMethodName:(II)I::this
base_name = ID_this;
identifier = id2string(method_identifier) + "::" + id2string(base_name);
}
else if(!variables[param_index].empty())
{
// if already present in the LVT ...
base_name = variables[param_index][0].symbol_expr.get(ID_C_base_name);
identifier = variables[param_index][0].symbol_expr.get(ID_identifier);
}
else
{
// my.package.ClassName.myMethodName:(II)I::argNT, where N is the local
// variable slot where the parameter is stored and T is a character
// indicating the type
char suffix = java_char_from_type(param.type());
base_name = "arg" + std::to_string(param_index) + suffix;
identifier = id2string(method_identifier) + "::" + id2string(base_name);
}
param.set_base_name(base_name);
param.set_identifier(identifier);
param_index += java_local_variable_slots(param.type());
}
// The parameter slots detected in this function should agree with what
// java_parameter_count() thinks about this method
INVARIANT(
param_index == slots_for_parameters,
"java_parameter_count and local computation must agree");
}
void create_parameter_symbols(
const java_method_typet::parameterst ¶meters,
expanding_vectort<std::vector<java_bytecode_convert_methodt::variablet>>
&variables,
symbol_table_baset &symbol_table)
{
std::size_t param_index = 0;
for(const auto ¶m : parameters)
{
parameter_symbolt parameter_symbol;
parameter_symbol.base_name = param.get_base_name();
parameter_symbol.mode = ID_java;
parameter_symbol.name = param.get_identifier();
parameter_symbol.type = param.type();
symbol_table.add(parameter_symbol);
// Add as a JVM local variable
variables[param_index].clear();
variables[param_index].emplace_back(
parameter_symbol.symbol_expr(),
0,
std::numeric_limits<size_t>::max(),
true);
param_index += java_local_variable_slots(param.type());
}
}
void java_bytecode_convert_methodt::convert(
const symbolt &class_symbol,
const methodt &m,
const std::optional<prefix_filtert> &method_context)
{
// Construct the fully qualified method name
// (e.g. "my.package.ClassName.myMethodName:(II)I") and query the symbol table
// to retrieve the symbol (constructed by java_bytecode_convert_method_lazy)
// associated to the method
const irep_idt method_identifier =
get_method_identifier(class_symbol.name, m);
method_id = method_identifier;
set_declaring_class(
symbol_table.get_writeable_ref(method_identifier), class_symbol.name);
// Obtain a std::vector of java_method_typet::parametert objects from the
// (function) type of the symbol
// Don't try to hang on to this reference into the symbol table, as we're
// about to create symbols for the method's parameters, which would invalidate
// the reference. Instead, copy the type here, set it up, then assign it back
// to the symbol later.
java_method_typet method_type =
to_java_method_type(symbol_table.lookup_ref(method_identifier).type);
method_type.set_is_final(m.is_final);
method_return_type = method_type.return_type();
java_method_typet::parameterst ¶meters = method_type.parameters();
// Determine the number of local variable slots used by the JVM to maintain
// the formal parameters
slots_for_parameters = java_method_parameter_slots(method_type);
log.debug() << "Generating codet: class " << class_symbol.name << ", method "
<< m.name << messaget::eom;
// Add parameter symbols to the symbol table
create_parameter_symbols(parameters, variables, symbol_table);
symbolt &method_symbol = symbol_table.get_writeable_ref(method_identifier);
// Check the fields that can't change are valid
INVARIANT(
method_symbol.name == method_identifier,
"Name of method symbol shouldn't change");
INVARIANT(
method_symbol.base_name == m.base_name,
"Base name of method symbol shouldn't change");
INVARIANT(
method_symbol.module.empty(),
"Method symbol shouldn't have module");
// Update the symbol for the method
method_symbol.mode=ID_java;
method_symbol.location=m.source_location;
method_symbol.location.set_function(method_identifier);
for(const auto &exception_name : m.throws_exception_table)
method_type.add_throws_exception(exception_name);
const std::string signature_string = pretty_signature(method_type);
// Set up the pretty name for the method entry in the symbol table.
// The pretty name of a constructor includes the base name of the class
// instead of the internal method name "<init>". For regular methods, it's
// just the base name of the method.
if(is_constructor(method_symbol.base_name))
{
// we use full.class_name(...) as pretty name
// for constructors -- the idea is that they have
// an empty declarator.
method_symbol.pretty_name =
id2string(class_symbol.pretty_name) + signature_string;
INVARIANT(
method_type.get_is_constructor(),
"Member type should have already been marked as a constructor");
}
else
{
method_symbol.pretty_name = id2string(class_symbol.pretty_name) + "." +
id2string(m.base_name) + signature_string;
}
method_symbol.type = method_type;
current_method = method_symbol.name;
method_has_this = method_type.has_this();
if((!m.is_abstract) && (!m.is_native))
{
// Do not convert if method is not in context
if(!method_context || (*method_context)(id2string(method_identifier)))
{
code_blockt code{convert_parameter_annotations(m, method_type)};
code.append(convert_instructions(m));
method_symbol.value = std::move(code);
}
}
}
static irep_idt get_if_cmp_operator(const u1 bytecode)
{
if(bytecode == patternt("if_?cmplt"))
return ID_lt;
if(bytecode == patternt("if_?cmple"))
return ID_le;
if(bytecode == patternt("if_?cmpgt"))
return ID_gt;
if(bytecode == patternt("if_?cmpge"))
return ID_ge;
if(bytecode == patternt("if_?cmpeq"))
return ID_equal;
if(bytecode == patternt("if_?cmpne"))
return ID_notequal;
throw "unhandled java comparison instruction";
}
/// Build a member exprt for accessing a specific field that may come from a
/// base class.
/// \param pointer: The expression to access the field on.
/// \param field_reference: A getfield/setfield instruction produced by the
/// bytecode parser.
/// \param ns: Global namespace
/// \return A member expression accessing the field, through base class
/// components if necessary.
static member_exprt to_member(
const exprt &pointer,
const fieldref_exprt &field_reference,
const namespacet &ns)
{
struct_tag_typet class_type(field_reference.class_name());
const exprt typed_pointer =
typecast_exprt::conditional_cast(pointer, java_reference_type(class_type));
const irep_idt &component_name = field_reference.component_name();
exprt accessed_object = checked_dereference(typed_pointer);
const auto type_of = [&ns](const exprt &object) {
return ns.follow_tag(to_struct_tag_type(object.type()));
};
// The field access is described as being against a particular type, but it
// may in fact belong to any ancestor type.
while(type_of(accessed_object).get_component(component_name).is_nil())
{
const auto components = type_of(accessed_object).components();
INVARIANT(
components.size() != 0,
"infer_opaque_type_fields should guarantee that a member access has a "
"corresponding field");
// Base class access is always done through the first component
accessed_object = member_exprt(accessed_object, components.front());
}
return member_exprt(
accessed_object, type_of(accessed_object).get_component(component_name));
}
/// Find all goto statements in 'repl' that target 'old_label' and redirect them
/// to 'new_label'.
/// \param [in,out] repl: A block of code in which to perform replacement.
/// \param old_label: The label to be replaced.
/// \param new_label: The label to replace `old_label` with.
void java_bytecode_convert_methodt::replace_goto_target(
codet &repl,
const irep_idt &old_label,
const irep_idt &new_label)
{
const auto &stmt=repl.get_statement();
if(stmt==ID_goto)
{
auto &g=to_code_goto(repl);
if(g.get_destination()==old_label)
g.set_destination(new_label);
}
else
{
for(auto &op : repl.operands())
if(op.id()==ID_code)
replace_goto_target(to_code(op), old_label, new_label);
}
}
/// 'tree' describes a tree of code_blockt objects; this_block is the
/// corresponding block (thus they are both trees with the same shape). The
/// caller is looking for the single block in the tree that most closely
/// encloses bytecode address range [address_start,address_limit).
/// 'next_block_start_address' is the start address of 'tree's successor sibling
/// and is used to determine when the range spans out of its bounds.
/// \param tree: A code block descriptor.
/// \param this_block: The corresponding actual \ref code_blockt.
/// \param address_start: the Java bytecode offsets searched for.
/// \param address_limit: the Java bytecode offsets searched for.
/// \param next_block_start_address: The bytecode offset of tree/this_block's
/// successor sibling, or UINT_MAX if none exists.
/// \return Returns the code_blockt most closely enclosing the given address
/// range.
code_blockt &java_bytecode_convert_methodt::get_block_for_pcrange(
block_tree_nodet &tree,
code_blockt &this_block,
method_offsett address_start,
method_offsett address_limit,
method_offsett next_block_start_address)
{
address_mapt dummy;
return get_or_create_block_for_pcrange(
tree,
this_block,
address_start,
address_limit,
next_block_start_address,
dummy,
false);
}
/// As above, but this version can additionally create a new branch in the
/// block_tree-node and code_blockt trees to envelop the requested address
/// range. For example, if the tree was initially flat, with nodes (1-10),
/// (11-20), (21-30) and the caller asked for range 13-28, this would build a
/// surrounding tree node, leaving the tree of shape (1-10), ^( (11-20), (21-30)
/// )^, and return a reference to the new branch highlighted with ^^. 'tree' and
/// 'this_block' trees are always maintained with equal shapes. ('this_block'
/// may additionally contain code_declt children which are ignored for this
/// purpose).
/// \param [in, out] tree: A code block descriptor.
/// \param [in,out] this_block: The corresponding actual \ref code_blockt.
/// \param address_start: the Java bytecode offsets searched for.
/// \param address_limit: the Java bytecode offsets searched for.
/// \param next_block_start_address: The bytecode offset of tree/this_block's
/// successor sibling, or UINT_MAX if none exists.
/// \param amap: The bytecode address map.
/// \param allow_merge: Whether modifying the block tree is allowed. This is
/// always true except when called from `get_block_for_pcrange`.
/// \return The code_blockt most closely enclosing the given address range.
code_blockt &java_bytecode_convert_methodt::get_or_create_block_for_pcrange(
block_tree_nodet &tree,
code_blockt &this_block,
method_offsett address_start,
method_offsett address_limit,
method_offsett next_block_start_address,
const address_mapt &amap,
bool allow_merge)
{
// Check the tree shape invariant:
PRECONDITION(tree.branch.size() == tree.branch_addresses.size());
// If there are no child blocks, return this.
if(tree.leaf)
return this_block;
PRECONDITION(!tree.branch.empty());
// Find child block starting > address_start:
const auto afterstart=
std::upper_bound(
tree.branch_addresses.begin(),
tree.branch_addresses.end(),
address_start);
CHECK_RETURN(afterstart != tree.branch_addresses.begin());
auto findstart=afterstart;
--findstart;
auto child_offset=
std::distance(tree.branch_addresses.begin(), findstart);
// Find child block starting >= address_limit:
auto findlim=
std::lower_bound(
tree.branch_addresses.begin(),
tree.branch_addresses.end(),
address_limit);
const auto findlim_block_start_address =
findlim == tree.branch_addresses.end() ? next_block_start_address
: (*findlim);
// If all children are in scope, return this.
if(findstart==tree.branch_addresses.begin() &&
findlim==tree.branch_addresses.end())
return this_block;
// Find the child code_blockt where the queried range begins:
auto child_iter = this_block.statements().begin();
// Skip any top-of-block declarations;
// all other children are labelled subblocks.
while(child_iter != this_block.statements().end() &&
child_iter->get_statement() == ID_decl)
++child_iter;
CHECK_RETURN(child_iter != this_block.statements().end());
std::advance(child_iter, child_offset);
CHECK_RETURN(child_iter != this_block.statements().end());
auto &child_label=to_code_label(*child_iter);
auto &child_block=to_code_block(child_label.code());
bool single_child(afterstart==findlim);
if(single_child)
{
// Range wholly contained within a child block
return get_or_create_block_for_pcrange(
tree.branch[child_offset],
child_block,
address_start,
address_limit,
findlim_block_start_address,
amap,
allow_merge);
}
// Otherwise we're being asked for a range of subblocks, but not all of them.
// If it's legal to draw a new lexical scope around the requested subset,
// do so; otherwise just return this block.
// This can be a new lexical scope if all incoming edges target the
// new block header, or come from within the suggested new block.
// If modifying the block tree is forbidden, give up and return this:
if(!allow_merge)
return this_block;
// Check for incoming control-flow edges targeting non-header
// blocks of the new proposed block range:
auto checkit=amap.find(*findstart);
CHECK_RETURN(checkit != amap.end());
++checkit; // Skip the header, which can have incoming edges from outside.
for(;
checkit!=amap.end() && (checkit->first)<(findlim_block_start_address);
++checkit)
{
for(auto p : checkit->second.predecessors)
{
if(p<(*findstart) || p>=findlim_block_start_address)
{
log.debug() << "Generating codet: "
<< "warning: refusing to create lexical block spanning "
<< (*findstart) << "-" << findlim_block_start_address
<< " due to incoming edge " << p << " -> " << checkit->first
<< messaget::eom;
return this_block;
}
}
}
// All incoming edges are acceptable! Create a new block wrapping
// the relevant children. Borrow the header block's label, and redirect
// any block-internal edges to target the inner header block.
const irep_idt child_label_name=child_label.get_label();
std::string new_label_str = id2string(child_label_name);
new_label_str+='$';
irep_idt new_label_irep(new_label_str);
code_labelt newlabel(child_label_name, code_blockt());
code_blockt &newblock=to_code_block(newlabel.code());
auto nblocks=std::distance(findstart, findlim);
CHECK_RETURN(nblocks >= 2);
log.debug() << "Generating codet: combining "
<< std::distance(findstart, findlim) << " blocks for addresses "
<< (*findstart) << "-" << findlim_block_start_address
<< messaget::eom;
// Make a new block containing every child of interest:
auto &this_block_children = this_block.statements();
CHECK_RETURN(tree.branch.size() == this_block_children.size());
for(auto blockidx=child_offset, blocklim=child_offset+nblocks;
blockidx!=blocklim;
++blockidx)
newblock.add(this_block_children[blockidx]);
// Relabel the inner header:
to_code_label(newblock.statements()[0]).set_label(new_label_irep);
// Relabel internal gotos:
replace_goto_target(newblock, child_label_name, new_label_irep);
// Remove the now-empty sibling blocks:
auto delfirst=this_block_children.begin();
std::advance(delfirst, child_offset+1);
auto dellim=delfirst;
std::advance(dellim, nblocks-1);
this_block_children.erase(delfirst, dellim);
this_block_children[child_offset].swap(newlabel);
// Perform the same transformation on the index tree:
block_tree_nodet newnode;
auto branchstart=tree.branch.begin();
std::advance(branchstart, child_offset);
auto branchlim=branchstart;
std::advance(branchlim, nblocks);
for(auto branchiter=branchstart; branchiter!=branchlim; ++branchiter)
newnode.branch.push_back(std::move(*branchiter));
++branchstart;
tree.branch.erase(branchstart, branchlim);
CHECK_RETURN(tree.branch.size() == this_block_children.size());
auto branchaddriter=tree.branch_addresses.begin();
std::advance(branchaddriter, child_offset);
auto branchaddrlim=branchaddriter;
std::advance(branchaddrlim, nblocks);
newnode.branch_addresses.insert(
newnode.branch_addresses.begin(),
branchaddriter,
branchaddrlim);
++branchaddriter;
tree.branch_addresses.erase(branchaddriter, branchaddrlim);
tree.branch[child_offset]=std::move(newnode);
CHECK_RETURN(tree.branch.size() == tree.branch_addresses.size());
return
to_code_block(
to_code_label(
this_block_children[child_offset]).code());
}
static void gather_symbol_live_ranges(
java_bytecode_convert_methodt::method_offsett pc,
const exprt &e,
std::map<irep_idt, java_bytecode_convert_methodt::variablet> &result)
{
if(e.id()==ID_symbol)
{
const auto &symexpr=to_symbol_expr(e);
auto findit = result.emplace(
std::piecewise_construct,
std::forward_as_tuple(symexpr.get_identifier()),
std::forward_as_tuple(symexpr, pc, 1));
if(!findit.second)
{
auto &var = findit.first->second;
if(pc<var.start_pc)
{
var.length+=(var.start_pc-pc);
var.start_pc=pc;
}
else
{
var.length=std::max(var.length, (pc-var.start_pc)+1);
}
}
}
else
{
for(const auto &op : e.operands())
gather_symbol_live_ranges(pc, op, result);
}
}
/// Each static access to classname should be prefixed with a check for
/// necessary static init; this returns a call implementing that check.
/// \param classname: Class name
/// \return Returns a function call to the given class' static initializer
/// wrapper if one is needed, or a skip instruction otherwise.
codet java_bytecode_convert_methodt::get_clinit_call(
const irep_idt &classname)
{
auto findit = symbol_table.symbols.find(clinit_wrapper_name(classname));
if(findit == symbol_table.symbols.end())
return code_skipt();
else
{
const code_function_callt ret(findit->second.symbol_expr());
if(needed_lazy_methods)
needed_lazy_methods->add_needed_method(findit->second.name);
return ret;
}
}
static std::size_t get_bytecode_type_width(const typet &ty)
{