Virtual Machine Optimisations #1607
Replies: 3 comments 4 replies
-
@HalidOdat why do we pushUndefined here? |
Beta Was this translation helpful? Give feedback.
-
I think each node is going to need its own |
Beta Was this translation helpful? Give feedback.
-
Escape Analysis (compiler optimization)Not something we need to focus on right now but putting here for future reference. function foo() {
const a = 'hello';
const b = 'world';
return a + b
}
foo() Instructions
Then for a and b, instead of performing |
Beta Was this translation helpful? Give feedback.
-
For all discussion relating to https://github.com/boa-dev/boa/projects/6
Beta Was this translation helpful? Give feedback.
All reactions