| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
llvm-svn: 108673
|
|
|
|
|
|
| |
- Unfortunate, but necessary for now to handle subtarget instruction matching. Eventually we should factor out the lower level target machine information so we don't need to do this.
llvm-svn: 108664
|
|
|
|
| |
llvm-svn: 108663
|
|
|
|
| |
llvm-svn: 108645
|
|
|
|
| |
llvm-svn: 108644
|
|
|
|
| |
llvm-svn: 108629
|
|
|
|
|
|
| |
code ids, not just some of them.
llvm-svn: 108543
|
|
|
|
|
|
| |
the libLTO library version from the actual build version.
llvm-svn: 108495
|
|
|
|
|
|
|
|
| |
DIRS list, so it does no good to filter it from PARALLEL_DIRS), and replace
it with a check to disable building the shared library version of edis when
the flag is set. Disabling it entirely does not work because MC uses it now.
llvm-svn: 108367
|
|
|
|
| |
llvm-svn: 108130
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
llvm-svn: 107433
|
|
|
|
| |
llvm-svn: 107426
|
|
|
|
| |
llvm-svn: 107417
|
|
|
|
| |
llvm-svn: 107362
|
|
|
|
| |
llvm-svn: 107215
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
metadata types which should be marked as "weak", but which the linker will
remove upon final linkage. 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".
llvm-svn: 107205
|
|
|
|
| |
llvm-svn: 107126
|
|
|
|
|
|
| |
The ValueMapper used by various cloning utility maps MDNodes also.
llvm-svn: 106706
|
|
|
|
|
|
|
|
|
|
|
|
| |
having a library both as bitcode and native code. We want to use the
bitcode first, but if codegen produces new undefined references we have to use
the native code to satisfy those references.
Gold has no notion of bitcode and native search directories, so instead it has
an API where the plugin can instruct it to look for the libraries it is passing
to it. This patch uses that API.
llvm-svn: 106674
|
|
|
|
|
|
| |
const_cast.
llvm-svn: 106410
|
|
|
|
| |
llvm-svn: 106409
|
|
|
|
|
|
|
|
| |
ask the linker to take another look into some library or object. The case when
one might want to do this is when codegen introduces a new undefined reference.
The canonical example is libgcc.
llvm-svn: 106303
|
|
|
|
| |
llvm-svn: 105962
|
|
|
|
| |
llvm-svn: 105837
|
|
|
|
|
|
| |
refer to the "external node" instead.
llvm-svn: 105731
|
|
|
|
|
|
|
|
| |
callgraph SCC's. This makes it match what the node itself would print. Also,
"indirect callgraph node" doesn't make sense - it has nothing particularly to
do with indirect calls.
llvm-svn: 105730
|
|
|
|
| |
llvm-svn: 105556
|
|
|
|
| |
llvm-svn: 105552
|
|
|
|
| |
llvm-svn: 105550
|
|
|
|
| |
llvm-svn: 105534
|
|
|
|
| |
llvm-svn: 105513
|
|
|
|
| |
llvm-svn: 105442
|
|
|
|
|
|
| |
also-emit-llvm optional.
llvm-svn: 105414
|
|
|
|
| |
llvm-svn: 105397
|
|
|
|
| |
llvm-svn: 105395
|
|
|
|
|
|
|
| |
needed. The result is that now we are able to drop unnecessary symbol from
shared libraries.
llvm-svn: 105389
|
|
|
|
| |
llvm-svn: 104888
|
|
|
|
|
|
|
|
|
| |
raw_ostream doesn't try to do its own error handling.
Also, close the raw_ostream before checking for errors so that any
errors that occur during closing are caught by the manual check.
llvm-svn: 104882
|
|
|
|
|
|
|
| |
it to be the caller's responsibility to provide a stream in binary
mode. This fixes a layering violation and avoids an outs() call.
llvm-svn: 104878
|
|
|
|
| |
llvm-svn: 104875
|
|
|
|
| |
llvm-svn: 104873
|
|
|
|
|
|
|
|
| |
bugpoint does "Running the code generator to test for a crash" this
gets you a crash if llc goes into an infinite loop or uses up vast
amounts of memory.
llvm-svn: 104485
|
|
|
|
| |
llvm-svn: 104463
|
|
|
|
|
|
|
|
|
| |
isn't ideal if we want to be able to use another object file format.
Add a createObjectStreamer() factory method so that the correct object
file streamer can be instantiated for a given target triple.
llvm-svn: 104318
|
|
|
|
| |
llvm-svn: 104303
|
|
|
|
|
|
| |
LLVMgold.so both in both the build and install directories.
llvm-svn: 103897
|
|
|
|
|
|
| |
isn't doing lazy streaming. This also fixes a missing doFinalization call.
llvm-svn: 103774
|
|
|
|
|
|
|
|
|
|
| |
The revision history for this function is interesting, with multiple layers of
wrongness being introduced one at a time.
This fixes a weird issue where bugpoint -run-llc would suddenly exit 13 half way
through isolating a miscompilation.
llvm-svn: 103721
|
|
|
|
| |
llvm-svn: 103714
|
|
|
|
| |
llvm-svn: 103523
|