Pseudocode: Add valued instructions and unbound values to AbstractPseudoValueTest

This commit is contained in:
Alexey Sedunov
2014-06-25 19:32:20 +04:00
parent 21be468e6c
commit f226d99d36
77 changed files with 897 additions and 777 deletions
+4 -3
View File
@@ -3,9 +3,10 @@ fun foo(a: Array<Int>) {
a[0]++
}
---------------------
a <v5>: {<: Array<Int>} NEW()
0 <v6>: Int NEW()
a[0] <v3>: Int NEW(<v1>, <v2>)
<v0>: {<: Array<Int>} NEW: magic(a: Array<Int>) -> <v0>
a <v5>: {<: Array<Int>} NEW: r(a) -> <v5>
0 <v6>: Int NEW: r(0) -> <v6>
a[0] <v3>: Int NEW: call(a[0], get|<v1>, <v2>) -> <v3>
a[0]++ <v3>: Int COPY
{ a[0]++ } <v3>: Int COPY
=====================