↳
Not well
↳
sub_A: DEC A JNZ sub_B INC D JNZ A_reached_zero sub_B: DEC B JNZ sub_A A_grater: INC C DEC A JNZ A_greater HALT A_reached_zero: DEC B JNZ B_greater HALT B_greater: INC C DEC B JNZ B_greater HALT Minder
↳
I just explained my projects. I also showed my open-source contribution through screen sharing. Minder
↳
I will utilize tools to find out hotspots in the target program. Then disassemble some particular hotspots, to see whether it's regard to loop, and CPU pipeline. Then try to unroll the loop, or rearrange the policy of the CG backend. Minder
↳
Check the environment first, so see if anything has changed.
↳
int isPowoftwo(int n) { while(n>0) { if(n&1) return (n==1) n= n>>1; } return 0; } Minder
↳
Object oriented programming in C++ is the biggest difference, obviously. They will ask you to expand on this, so make sure you know what you're talking about before answering it. Minder
↳
Very good
↳
Successfully