Displaying 2 results from an estimated 2 matches for "top_function".
Did you mean:
php_function
2011 Aug 10
3
[LLVMdev] (no subject)
Hi,
I am interested in getting llvm IR only for a subset of the input source code - basically starting from a specified top level function, including all its callee functions (recursively).
For example, in the following code, I am interested in a command like "extract -top_function blah()" that will create an llvm IR with just blah() and foo().
int foo() {
...
}
int blah() {
foo()
}
int junk() {
blah();
}
int main() {
junk();
}
I can imagine writing some...
2011 Aug 10
0
[LLVMdev] extracting sub-program using specified top level function name
...M
Subject:
Hi,
I am interested in getting llvm IR only for a subset of the input source code - basically starting from a specified top level function, including all its callee functions (recursively).
For example, in the following code, I am interested in a command like "extract -top_function blah()" that will create an llvm IR with just blah() and foo().
int foo() {
...
}
int blah() {
foo()
}
int junk() {
blah();
}
int main() {
junk();
}
I can imagine writing some...