search for: optimize_me

Displaying 1 result from an estimated 1 matches for "optimize_me".

Did you mean: deoptimize_me
2016 Sep 22
2
Mark code from source to IR
Hi everyone, I am looking at a way to mark part of a source code for an optimisation pass (or how to transfert information from source code to IR). I want to work on C / C++ / Objective-c and Swift. Something like: ... //Begin Optimisation if(i % 2){ printf(“Something”); } //End Optimisation for(int i = 0; i < 10; ++i){ printf("%d, “, i); } printf("\n”); … I have found