Skip to content

Commit

Permalink
work on regs
Browse files Browse the repository at this point in the history
  • Loading branch information
hacker-volodya committed Mar 1, 2024
1 parent cb38131 commit 783cfe9
Showing 1 changed file with 42 additions and 9 deletions.
51 changes: 42 additions & 9 deletions cp0.json
Original file line number Diff line number Diff line change
Expand Up @@ -21128,7 +21128,10 @@
},
"value_flow": {
"doc_stack": "- x",
"inputs": { "stack": [], "registers": [{ "type": "variable", "var_name": "i" }] },
"inputs": {
"stack": [],
"registers": [{ "type": "variable", "var_name": "i" }]
},
"outputs": { "stack": [{ "type": "simple", "name": "x" }] }
},
"control_flow": { "branches": [], "nobranch": true }
Expand Down Expand Up @@ -21160,7 +21163,10 @@
"value_flow": {
"doc_stack": "x - ",
"inputs": { "stack": [{ "type": "simple", "name": "x" }] },
"outputs": { "stack": [], "registers": [{ "type": "variable", "var_name": "i" }] }
"outputs": {
"stack": [],
"registers": [{ "type": "variable", "var_name": "i" }]
}
},
"control_flow": { "branches": [], "nobranch": true }
},
Expand Down Expand Up @@ -21230,8 +21236,14 @@
},
"value_flow": {
"doc_stack": "x - ",
"inputs": { "stack": [{ "type": "simple", "name": "x" }], "registers": [{ "type": "constant", "index": 0 }] },
"outputs": { "stack": [], "registers": [{ "type": "constant", "index": 0 }] }
"inputs": {
"stack": [{ "type": "simple", "name": "x" }],
"registers": [{ "type": "constant", "index": 0 }]
},
"outputs": {
"stack": [],
"registers": [{ "type": "constant", "index": 0 }]
}
},
"control_flow": { "branches": [], "nobranch": true }
},
Expand Down Expand Up @@ -21261,8 +21273,14 @@
},
"value_flow": {
"doc_stack": "x - ",
"inputs": { "stack": [{ "type": "simple", "name": "x" }], "registers": [{ "type": "constant", "index": 1 }] },
"outputs": { "stack": [], "registers": [{ "type": "constant", "index": 1 }] }
"inputs": {
"stack": [{ "type": "simple", "name": "x" }],
"registers": [{ "type": "constant", "index": 1 }]
},
"outputs": {
"stack": [],
"registers": [{ "type": "constant", "index": 1 }]
}
},
"control_flow": { "branches": [], "nobranch": true }
},
Expand Down Expand Up @@ -21292,8 +21310,17 @@
},
"value_flow": {
"doc_stack": "x -",
"inputs": { "stack": [{ "type": "simple", "name": "x" }] },
"outputs": { "stack": [] }
"inputs": {
"stack": [{ "type": "simple", "name": "x" }],
"registers": [
{ "type": "variable", "var_name": "i" },
{ "type": "constant", "index": 0 }
]
},
"outputs": {
"stack": [],
"registers": [{ "type": "constant", "index": 0 }]
}
},
"control_flow": { "branches": [], "nobranch": true }
},
Expand Down Expand Up @@ -21323,7 +21350,13 @@
},
"value_flow": {
"doc_stack": "",
"inputs": { "stack": [] },
"inputs": {
"stack": [],
"registers": [
{ "type": "variable", "var_name": "i" },
{ "type": "constant", "index": 0 }
]
},
"outputs": { "stack": [] }
},
"control_flow": { "branches": [], "nobranch": true }
Expand Down

0 comments on commit 783cfe9

Please sign in to comment.