Displaying 1 result from an estimated 1 matches for "1015841".
Did you mean:
1015041
2011 May 12
2
[LLVMdev] Extract operations as function
Hi,
I am planning to extract every operation as function.
eg. z=x+y; ==> z=func(x,y,op);
I wish to write a custom definition of op. Which I would like to define in
func.
It would be really helpful if someone could suggest passes
already available in llvm to look for or point some references how should
one proceed on it.
Is codeExtractor.cpp useful for this. I was also thinking of going like