Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make LLVM inline a function from a library

I am trying to make LLVM inline a function from a library.

I have LLVM bitcode files (manually generated) that I linked together with llvm-link, and I also have a library (written in C) compiled into bitcode by clang and archived with llvm-ar. I manage to link everything together and to execute but I can't manage to get LLVM to inline a function from the library. Any clue about how this should be done?

like image 868
capitrane Avatar asked Apr 23 '10 21:04

capitrane


1 Answers

After you link the bitcode files together with the library, do you run an Internalize pass on the linked bitcode? The internalize pass makes all functions (besides main()) static and tells optimizer/code generator that the functions can be safely inlined without keeping a copy available for some (non-existent) external reference.

I manually link my bitcode files and bitcode libraries together using code borrowed from llvm-ld and I do the internalize pass, but I'm not sure if llvm-link does the internalize pass or not.

like image 179
Richard Pennington Avatar answered Nov 12 '22 16:11

Richard Pennington