CBMC
expr2java.cpp
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module:
4 
5 Author: Daniel Kroening, kroening@cs.cmu.edu
6 
7 \*******************************************************************/
8 
9 #include "expr2java.h"
10 
11 #include <util/namespace.h>
12 #include <util/std_expr.h>
13 #include <util/unicode.h>
14 #include <util/arith_tools.h>
15 #include <util/ieee_float.h>
16 
17 #include <ansi-c/c_misc.h>
18 #include <ansi-c/expr2c_class.h>
19 
20 #include "java_expr.h"
21 #include "java_qualifiers.h"
23 #include "java_types.h"
24 
25 std::string expr2javat::convert(const typet &src)
26 {
27  return convert_rec(src, java_qualifierst(ns), "");
28 }
29 
30 std::string expr2javat::convert(const exprt &src)
31 {
32  return expr2ct::convert(src);
33 }
34 
36  const code_function_callt &src,
37  unsigned indent)
38 {
39  if(src.operands().size()!=3)
40  {
41  unsigned precedence;
42  return convert_norep(src, precedence);
43  }
44 
45  std::string dest=indent_str(indent);
46 
47  if(src.lhs().is_not_nil())
48  {
49  unsigned p;
50  std::string lhs_str=convert_with_precedence(src.lhs(), p);
51 
52  dest+=lhs_str;
53  dest+='=';
54  }
55 
56  const java_method_typet &method_type =
58 
59  bool has_this = method_type.has_this() && !src.arguments().empty();
60 
61  if(has_this)
62  {
63  unsigned p;
64  std::string this_str=convert_with_precedence(src.arguments()[0], p);
65  dest+=this_str;
66  dest+=" . "; // extra spaces for readability
67  }
68 
69  {
70  unsigned p;
71  std::string function_str=convert_with_precedence(src.function(), p);
72  dest+=function_str;
73  }
74 
75  dest+='(';
76 
77  const exprt::operandst &arguments=src.arguments();
78 
79  bool first=true;
80 
81  forall_expr(it, arguments)
82  {
83  if(has_this && it==arguments.begin())
84  {
85  }
86  else
87  {
88  unsigned p;
89  std::string arg_str=convert_with_precedence(*it, p);
90 
91  if(first)
92  first=false;
93  else
94  dest+=", ";
95  dest+=arg_str;
96  }
97  }
98 
99  dest+=");";
100 
101  return dest;
102 }
103 
105  const exprt &src,
106  unsigned &precedence)
107 {
108  const typet &full_type = src.type().id() == ID_struct_tag
110  : src.type();
111 
112  if(full_type.id()!=ID_struct)
113  return convert_norep(src, precedence);
114 
115  const struct_typet &struct_type=to_struct_type(full_type);
116 
117  std::string dest="{ ";
118 
119  const struct_typet::componentst &components=
120  struct_type.components();
121 
123  components.size() == src.operands().size(),
124  "inconsistent number of components");
125 
126  exprt::operandst::const_iterator o_it=src.operands().begin();
127 
128  bool first=true;
129  size_t last_size=0;
130 
131  for(const auto &c : components)
132  {
134  c.type().id() != ID_code, "struct member must not be of code type");
135 
136  std::string tmp = convert(*o_it);
137  std::string sep;
138 
139  if(first)
140  first = false;
141  else
142  {
143  if(last_size + 40 < dest.size())
144  {
145  sep = ",\n ";
146  last_size = dest.size();
147  }
148  else
149  sep = ", ";
150  }
151 
152  dest += sep;
153  dest += '.';
154  irep_idt field_name = c.get_pretty_name();
155  if(field_name.empty())
156  field_name = c.get_name();
157  dest += id2string(field_name);
158  dest += '=';
159  dest += tmp;
160 
161  o_it++;
162  }
163 
164  dest+=" }";
165 
166  return dest;
167 }
168 
170  const constant_exprt &src,
171  unsigned &precedence)
172 {
173  if(src.type().id()==ID_c_bool)
174  {
175  if(!src.is_zero())
176  return "true";
177  else
178  return "false";
179  }
180  else if(src.is_boolean())
181  {
182  if(src.is_true())
183  return "true";
184  else if(src.is_false())
185  return "false";
186  }
187  else if(src.type().id()==ID_pointer)
188  {
189  // Java writes 'null' for the null reference
190  if(src.is_zero())
191  return "null";
192  }
193  else if(src.type()==java_char_type())
194  {
195  std::string dest;
196  dest.reserve(char_representation_length);
197 
198  const char16_t int_value = numeric_cast_v<char16_t>(src);
199 
200  // Character literals in Java have type 'char', thus no cast is needed.
201  // This is different from C, where charater literals have type 'int'.
202  dest += '\'' + utf16_native_endian_to_java(int_value) + '\'';
203  return dest;
204  }
205  else if(src.type()==java_byte_type())
206  {
207  // No byte-literals in Java, so just cast:
208  const mp_integer int_value = numeric_cast_v<mp_integer>(src);
209  std::string dest="(byte)";
210  dest+=integer2string(int_value);
211  return dest;
212  }
213  else if(src.type()==java_short_type())
214  {
215  // No short-literals in Java, so just cast:
216  const mp_integer int_value = numeric_cast_v<mp_integer>(src);
217  std::string dest="(short)";
218  dest+=integer2string(int_value);
219  return dest;
220  }
221  else if(src.type()==java_long_type())
222  {
223  // long integer literals must have 'L' at the end
224  const mp_integer int_value = numeric_cast_v<mp_integer>(src);
225  std::string dest=integer2string(int_value);
226  dest+='L';
227  return dest;
228  }
229  else if((src.type()==java_float_type()) ||
230  (src.type()==java_double_type()))
231  {
232  // This converts NaNs to the canonical NaN
233  const ieee_floatt ieee_repr(to_constant_expr(src));
234  if(ieee_repr.is_double())
235  return floating_point_to_java_string(ieee_repr.to_double());
236  return floating_point_to_java_string(ieee_repr.to_float());
237  }
238 
239 
240  return expr2ct::convert_constant(src, precedence);
241 }
242 
244  const typet &src,
245  const qualifierst &qualifiers,
246  const std::string &declarator)
247 {
248  std::unique_ptr<qualifierst> clone = qualifiers.clone();
249  qualifierst &new_qualifiers = *clone;
250  new_qualifiers.read(src);
251 
252  const std::string d = declarator.empty() ? declarator : (" " + declarator);
253 
254  const std::string q=
255  new_qualifiers.as_string();
256 
257  if(src==java_int_type())
258  return q+"int"+d;
259  else if(src==java_long_type())
260  return q+"long"+d;
261  else if(src==java_short_type())
262  return q+"short"+d;
263  else if(src==java_byte_type())
264  return q+"byte"+d;
265  else if(src==java_char_type())
266  return q+"char"+d;
267  else if(src==java_float_type())
268  return q+"float"+d;
269  else if(src==java_double_type())
270  return q+"double"+d;
271  else if(src==java_boolean_type())
272  return q+"boolean"+d;
273  else if(src==java_byte_type())
274  return q+"byte"+d;
275  else if(src.id()==ID_code)
276  {
277  const java_method_typet &method_type = to_java_method_type(src);
278 
279  // Java doesn't really have syntax for function types,
280  // so we make one up, loosely inspired by the syntax
281  // of lambda expressions.
282 
283  std::string dest;
284 
285  dest+='(';
286  const java_method_typet::parameterst &parameters = method_type.parameters();
287 
288  for(java_method_typet::parameterst::const_iterator it = parameters.begin();
289  it != parameters.end();
290  it++)
291  {
292  if(it!=parameters.begin())
293  dest+=", ";
294 
295  dest+=convert(it->type());
296  }
297 
298  if(method_type.has_ellipsis())
299  {
300  if(!parameters.empty())
301  dest+=", ";
302  dest+="...";
303  }
304 
305  dest+=')';
306 
307  const typet &return_type = method_type.return_type();
308  dest+=" -> "+convert(return_type);
309 
310  return q + dest;
311  }
312  else
313  return expr2ct::convert_rec(src, qualifiers, declarator);
314 }
315 
317 {
318  return id2string(ID_this);
319 }
320 
322 {
323  const auto &instanceof_expr = to_java_instanceof_expr(src);
324 
325  return convert(instanceof_expr.tested_expr()) + " instanceof " +
326  convert(instanceof_expr.target_type());
327 }
328 
329 std::string expr2javat::convert_code_java_new(const exprt &src, unsigned indent)
330 {
331  return indent_str(indent) + convert_java_new(src) + ";\n";
332 }
333 
334 std::string expr2javat::convert_java_new(const exprt &src)
335 {
336  std::string dest;
337 
338  if(src.get(ID_statement)==ID_java_new_array ||
339  src.get(ID_statement)==ID_java_new_array_data)
340  {
341  dest="new";
342 
343  std::string tmp_size=
344  convert(static_cast<const exprt &>(src.find(ID_size)));
345 
346  dest+=' ';
347  dest += convert(to_pointer_type(src.type()).base_type());
348  dest+='[';
349  dest+=tmp_size;
350  dest+=']';
351  }
352  else
353  dest = "new " + convert(to_pointer_type(src.type()).base_type());
354 
355  return dest;
356 }
357 
359  const exprt &src,
360  unsigned indent)
361 {
362  std::string dest=indent_str(indent)+"delete ";
363 
364  if(src.operands().size()!=1)
365  {
366  unsigned precedence;
367  return convert_norep(src, precedence);
368  }
369 
370  std::string tmp = convert(to_unary_expr(src).op());
371 
372  dest+=tmp+";\n";
373 
374  return dest;
375 }
376 
378  const exprt &src,
379  unsigned &precedence)
380 {
381  if(src.id()=="java-this")
382  {
383  precedence = 15;
384  return convert_java_this();
385  }
386  if(src.id()==ID_java_instanceof)
387  {
388  precedence = 15;
389  return convert_java_instanceof(src);
390  }
391  else if(src.id()==ID_side_effect &&
392  (src.get(ID_statement)==ID_java_new ||
393  src.get(ID_statement)==ID_java_new_array ||
394  src.get(ID_statement)==ID_java_new_array_data))
395  {
396  precedence = 15;
397  return convert_java_new(src);
398  }
399  else if(src.id()==ID_side_effect &&
400  src.get(ID_statement)==ID_throw)
401  {
402  precedence = 16;
403  return convert_function(src, "throw");
404  }
405  else if(src.id()==ID_code &&
406  to_code(src).get_statement()==ID_exception_landingpad)
407  {
408  const exprt &catch_expr=
410  return "catch_landingpad("+
411  convert(catch_expr.type())+
412  ' '+
413  convert(catch_expr)+
414  ')';
415  }
416  else if(src.id()==ID_unassigned)
417  return "?";
418  else if(src.id()=="pod_constructor")
419  return "pod_constructor";
420  else if(src.id()==ID_virtual_function)
421  {
422  const class_method_descriptor_exprt &virtual_function =
424  return "CLASS_METHOD_DESCRIPTOR(" + id2string(virtual_function.class_id()) +
425  "." + id2string(virtual_function.mangled_method_name()) + ")";
426  }
427  else if(
428  const auto &literal = expr_try_dynamic_cast<java_string_literal_exprt>(src))
429  {
430  return '"' + MetaString(id2string(literal->value())) + '"';
431  }
432  else if(src.is_constant())
433  return convert_constant(to_constant_expr(src), precedence=16);
434  else
435  return expr2ct::convert_with_precedence(src, precedence);
436 }
437 
439  const codet &src,
440  unsigned indent)
441 {
442  const irep_idt &statement=src.get(ID_statement);
443 
444  if(statement==ID_java_new ||
445  statement==ID_java_new_array)
446  return convert_code_java_new(src, indent);
447 
448  if(statement==ID_function_call)
450 
451  return expr2ct::convert_code(src, indent);
452 }
453 
454 std::string expr2java(const exprt &expr, const namespacet &ns)
455 {
456  expr2javat expr2java(ns);
457  expr2java.get_shorthands(expr);
458  return expr2java.convert(expr);
459 }
460 
461 std::string type2java(const typet &type, const namespacet &ns)
462 {
463  expr2javat expr2java(ns);
464  return expr2java.convert(type);
465 }
std::string MetaString(const std::string &in)
Definition: c_misc.cpp:95
ANSI-C Misc Utilities.
An expression describing a method on a class.
Definition: std_expr.h:3495
const irep_idt & class_id() const
Unique identifier in the symbol table, of the compile time type of the class which this expression is...
Definition: std_expr.h:3540
const irep_idt & mangled_method_name() const
The method name after mangling it by combining it with the descriptor.
Definition: std_expr.h:3532
goto_instruction_codet representation of a function call statement.
const exprt & catch_expr() const
Definition: std_code.h:1948
const typet & return_type() const
Definition: std_types.h:689
bool has_this() const
Definition: std_types.h:660
bool has_ellipsis() const
Definition: std_types.h:655
const parameterst & parameters() const
Definition: std_types.h:699
Data structure for representing an arbitrary statement in a program.
Definition: std_code_base.h:29
A constant literal expression.
Definition: std_expr.h:2987
dstringt has one field, an unsigned integer no which is an index into a static table of strings.
Definition: dstring.h:38
bool empty() const
Definition: dstring.h:89
std::optional< std::string > convert_function(const exprt &src)
Returns a string if src is a function with a known conversion, else returns nullopt.
Definition: expr2c.cpp:4083
static std::string indent_str(unsigned indent)
Definition: expr2c.cpp:2550
std::string convert_code(const codet &src)
Definition: expr2c.cpp:3436
std::string convert_norep(const exprt &src, unsigned &precedence)
Definition: expr2c.cpp:1618
virtual std::string convert_rec(const typet &src, const qualifierst &qualifiers, const std::string &declarator)
Definition: expr2c.cpp:219
virtual std::string convert_constant(const constant_exprt &src, unsigned &precedence)
Definition: expr2c.cpp:1774
const namespacet & ns
Definition: expr2c_class.h:55
virtual std::string convert_with_precedence(const exprt &src, unsigned &precedence)
Definition: expr2c.cpp:3648
virtual std::string convert(const typet &src)
Definition: expr2c.cpp:214
std::string convert_code_java_new(const exprt &src, unsigned precedence)
Definition: expr2java.cpp:329
virtual std::string convert_rec(const typet &src, const qualifierst &qualifiers, const std::string &declarator) override
Definition: expr2java.cpp:243
std::string convert_java_new(const exprt &src)
Definition: expr2java.cpp:334
virtual std::string convert_struct(const exprt &src, unsigned &precedence) override
Definition: expr2java.cpp:104
virtual std::string convert_with_precedence(const exprt &src, unsigned &precedence) override
Definition: expr2java.cpp:377
std::string convert_code_java_delete(const exprt &src, unsigned precedence)
Definition: expr2java.cpp:358
std::string convert_code_function_call(const code_function_callt &src, unsigned indent)
Definition: expr2java.cpp:35
const std::size_t char_representation_length
Definition: expr2java.h:50
virtual std::string convert_code(const codet &src, unsigned indent) override
Definition: expr2java.cpp:438
std::string convert_java_instanceof(const exprt &src)
Definition: expr2java.cpp:321
virtual std::string convert(const typet &src) override
Definition: expr2java.cpp:25
std::string convert_java_this()
Definition: expr2java.cpp:316
virtual std::string convert_constant(const constant_exprt &src, unsigned &precedence) override
Definition: expr2java.cpp:169
Base class for all expressions.
Definition: expr.h:56
std::vector< exprt > operandst
Definition: expr.h:58
bool is_true() const
Return whether the expression is a constant representing true.
Definition: expr.cpp:27
bool is_boolean() const
Return whether the expression represents a Boolean.
Definition: expr.h:224
bool is_false() const
Return whether the expression is a constant representing false.
Definition: expr.cpp:34
bool is_zero() const
Return whether the expression is a constant representing 0.
Definition: expr.cpp:47
typet & type()
Return the type of the expression.
Definition: expr.h:84
bool is_constant() const
Return whether the expression is a constant.
Definition: expr.h:212
operandst & operands()
Definition: expr.h:94
bool is_double() const
float to_float() const
Note that calling from_float -> to_float can return different bit patterns for NaN.
double to_double() const
Note that calling from_double -> to_double can return different bit patterns for NaN.
const irept & find(const irep_idt &name) const
Definition: irep.cpp:93
const irep_idt & get(const irep_idt &name) const
Definition: irep.cpp:44
bool is_not_nil() const
Definition: irep.h:368
const irep_idt & id() const
Definition: irep.h:384
std::vector< parametert > parameterst
Definition: std_types.h:585
const union_typet & follow_tag(const union_tag_typet &) const
Follow type tag of union type.
Definition: namespace.cpp:63
A namespacet is essentially one or two symbol tables bound together, to allow for symbol lookups in t...
Definition: namespace.h:94
const typet & base_type() const
The type of the data what we point to.
Definition: pointer_expr.h:35
virtual std::unique_ptr< qualifierst > clone() const =0
virtual std::string as_string() const =0
virtual void read(const typet &src)=0
Structure type, corresponds to C style structs.
Definition: std_types.h:231
const componentst & components() const
Definition: std_types.h:147
std::vector< componentt > componentst
Definition: std_types.h:140
The type of an expression, extends irept.
Definition: type.h:29
std::string type2java(const typet &type, const namespacet &ns)
Definition: expr2java.cpp:461
std::string expr2java(const exprt &expr, const namespacet &ns)
Definition: expr2java.cpp:454
std::string floating_point_to_java_string(float_type value)
Convert floating point number to a string without printing unnecessary zeros.
Definition: expr2java.h:60
#define forall_expr(it, expr)
Definition: expr.h:32
const code_function_callt & to_code_function_call(const goto_instruction_codet &code)
const std::string & id2string(const irep_idt &d)
Definition: irep.h:40
Java-specific exprt subclasses.
const java_instanceof_exprt & to_java_instanceof_expr(const exprt &expr)
Cast an exprt to a java_instanceof_exprt.
Definition: java_expr.h:86
Java-specific type qualifiers.
Representation of a constant Java string.
signedbv_typet java_int_type()
Definition: java_types.cpp:31
signedbv_typet java_byte_type()
Definition: java_types.cpp:55
signedbv_typet java_short_type()
Definition: java_types.cpp:49
floatbv_typet java_double_type()
Definition: java_types.cpp:73
floatbv_typet java_float_type()
Definition: java_types.cpp:67
c_bool_typet java_boolean_type()
Definition: java_types.cpp:79
unsignedbv_typet java_char_type()
Definition: java_types.cpp:61
signedbv_typet java_long_type()
Definition: java_types.cpp:43
const java_method_typet & to_java_method_type(const typet &type)
Definition: java_types.h:183
const std::string integer2string(const mp_integer &n, unsigned base)
Definition: mp_arith.cpp:103
const pointer_typet & to_pointer_type(const typet &type)
Cast a typet to a pointer_typet.
Definition: pointer_expr.h:93
BigInt mp_integer
Definition: smt_terms.h:17
#define DATA_INVARIANT(CONDITION, REASON)
This condition should be used to document that assumptions that are made on goto_functions,...
Definition: invariant.h:534
static code_landingpadt & to_code_landingpad(codet &code)
Definition: std_code.h:1972
const codet & to_code(const exprt &expr)
API to expression classes.
const constant_exprt & to_constant_expr(const exprt &expr)
Cast an exprt to a constant_exprt.
Definition: std_expr.h:3037
const unary_exprt & to_unary_expr(const exprt &expr)
Cast an exprt to a unary_exprt.
Definition: std_expr.h:426
const class_method_descriptor_exprt & to_class_method_descriptor_expr(const exprt &expr)
Cast an exprt to a class_method_descriptor_exprt.
Definition: std_expr.h:3585
const struct_typet & to_struct_type(const typet &type)
Cast a typet to a struct_typet.
Definition: std_types.h:308
const struct_tag_typet & to_struct_tag_type(const typet &type)
Cast a typet to a struct_tag_typet.
Definition: std_types.h:518
static void utf16_native_endian_to_java(const wchar_t ch, std::ostringstream &result, const std::locale &loc)
Escapes non-printable characters, whitespace except for spaces, double- and single-quotes and backsla...
Definition: unicode.cpp:317