The reason I asked this question is that if I write a Javascript where there is no hot code in it (therefore it won't need to be optimized by TurboFan, aka short running script), so when I run this Javascript, I assume it will go through the following process:
js code (ignition)-> bytecode -> codeStubHandler(TurboFan IR) -> assembly code
And the assembly code generated for all the builtins declared in builtins-definition.h is in a file called embedded.S.
so every bytecode has a handler to generate assembly code for them directly? is my understanding right? At least this is what I saw when I was debugging through the script.
Please help me verify.