Now that we have ghost linkage, we can force resolution of external symbols
authorChris Lattner <sabre@nondot.org>
Mon, 15 Nov 2004 23:20:04 +0000 (23:20 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 15 Nov 2004 23:20:04 +0000 (23:20 +0000)
commit02376e3f29fd393d2e36a2e3bb682bdcecb1c8ab
treee48b7ed0b87fd11415c52aaa0ccac154f1160675
parent0050ef831912eea2377c815bc59c09ed828f2684
Now that we have ghost linkage, we can force resolution of external symbols
immediately instead of lazily.

In this program, for example:

int main() {
  printf("hello world\n");
  printf("hello world\n");
  printf("hello world\n");
  printf("hello world\n");
}

We used to have to go through compilation callback 4 times (once for each
call to printf), now we don't go to it at all.

Thanks to Misha for noticing this, and for adding the initial ghost linkage
patches.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17864 91177308-0d34-0410-b5e6-96231b3b80d8
lib/ExecutionEngine/JIT/JITEmitter.cpp