llvm-6502/tools
Bill Wendling 5e721d7682 Implement the "linker_private_weak" linkage type. This will be used for
Objective-C metadata types which should be marked as "weak", but which the
linker will remove upon final linkage. However, this linkage isn't specific to
Objective-C.

For example, the "objc_msgSend_fixup_alloc" symbol is defined like this:

      .globl l_objc_msgSend_fixup_alloc
      .weak_definition l_objc_msgSend_fixup_alloc
      .section __DATA, __objc_msgrefs, coalesced
      .align 3
l_objc_msgSend_fixup_alloc:
       .quad   _objc_msgSend_fixup
       .quad   L_OBJC_METH_VAR_NAME_1

This is different from the "linker_private" linkage type, because it can't have
the metadata defined with ".weak_definition".

Currently only supported on Darwin platforms.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107433 91177308-0d34-0410-b5e6-96231b3b80d8
2010-07-01 21:55:59 +00:00
..
bugpoint Use ValueMap instead of DenseMap. 2010-06-24 00:33:28 +00:00
edis MC: Pass the target instance to the AsmParser constructor. 2010-07-01 20:41:56 +00:00
gold Remove variables that are written by not read. 2010-06-29 11:07:47 +00:00
llc Avoid calling outs() and fouts() when the stream isn't really needed. 2010-05-27 19:47:36 +00:00
lli Simplify ".bc" detection. 2010-04-15 11:33:14 +00:00
llvm-ar make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. 2010-01-24 20:43:08 +00:00
llvm-as make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. 2010-01-24 20:43:08 +00:00
llvm-bcanalyzer Add special case bitcode support for DebugLoc. This avoids 2010-04-03 02:17:50 +00:00
llvm-config Rewrite makefiles to explicitly reference DESTDIR to fix bug 3153. 2010-03-04 20:56:19 +00:00
llvm-dis make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. 2010-01-24 20:43:08 +00:00
llvm-extract Preserve debug info for only extracted symbols. 2010-07-01 19:58:05 +00:00
llvm-ld don't pass -f to llc, it doesn't have it anymore. Patch by Kevin Fan (PR7090) 2010-05-07 16:27:04 +00:00
llvm-link Eliminate some unnessary Path::exists() calls. 2010-05-27 20:51:54 +00:00
llvm-mc MC: Pass the target instance to the AsmParser constructor. 2010-07-01 20:41:56 +00:00
llvm-nm Implement the "linker_private_weak" linkage type. This will be used for 2010-07-01 21:55:59 +00:00
llvm-prof make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. 2010-01-24 20:43:08 +00:00
llvm-ranlib To simplify the upcoming context-on-type change, switch all command line tools to using the default global context for now. 2009-07-15 22:16:10 +00:00
llvm-shlib Try r96559 for the third time. This time the shared library is only built if 2010-02-25 06:34:33 +00:00
llvm-stub Silence MSVC warning. 2009-08-11 11:01:19 +00:00
llvmc Make -filelist work with -linker=c++. 2010-07-01 01:00:32 +00:00
lto Eliminate some unnessary Path::exists() calls. 2010-05-27 20:51:54 +00:00
opt Change another reference to the "indirect callgraph node" to 2010-06-09 17:39:05 +00:00
CMakeLists.txt Add CMake support for 'edis'. 2010-04-13 20:52:50 +00:00
Makefile Build system fix to make llvm-mc properly build 2010-04-12 23:55:28 +00:00