index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
tools
/
lto
Commit message (
Expand
)
Author
Age
Files
Lines
*
[lto] Disable dialog boxes on crash on Windows.
Michael J. Spencer
2015-01-29
1
-0
/
+7
*
Unbreak cmake build with shared libraries enabled.
Matthias Braun
2014-12-20
1
-0
/
+1
*
LTO: Export local context symbols
Duncan P. N. Exon Smith
2014-12-19
2
-2
/
+16
*
libLTO: Allow linker to choose context of modules and codegen
Duncan P. N. Exon Smith
2014-11-11
1
-0
/
+18
*
Add an option to the LTO code generator to disable vectorization during LTO
Arnold Schwaighofer
2014-10-26
1
-3
/
+9
*
Update the error handling of lib/Linker.
Rafael Espindola
2014-10-25
1
-1
/
+1
*
Remove definition of LLVM_VERSION_INFO; this macro is not used by any of the
Richard Smith
2014-09-26
2
-6
/
+0
*
Remove lto_codegen_set_attr.
Rafael Espindola
2014-08-01
1
-4
/
+0
*
[CMake] tools/lto: Prune redundant libdep(s).
NAKAMURA Takumi
2014-07-24
1
-1
/
+0
*
Update the MemoryBuffer API to use ErrorOr.
Rafael Espindola
2014-07-06
1
-3
/
+3
*
Change LTOModule`s getTargetTriple and setTargetTriple to use c++ types.
Rafael Espindola
2014-07-04
1
-1
/
+1
*
Sink undesirable LTO functions into the old C API
Alp Toker
2014-07-04
1
-2
/
+9
*
LTO: rename the various makeLTOModule overloads.
Peter Collingbourne
2014-07-03
1
-6
/
+6
*
Don't force the build of toos/lto as a static lib.
Rafael Espindola
2014-06-27
1
-5
/
+1
*
Remove unused includes following r211294
Alp Toker
2014-06-19
1
-2
/
+0
*
Use the c++ APIs.
Rafael Espindola
2014-06-19
1
-6
/
+7
*
Fix gcc -pedantic warning in lto.cpp.
Patrik Hagglund
2014-05-05
1
-2
/
+2
*
Move LTOModule and LTOCodeGenerator to the llvm namespace.
Rafael Espindola
2014-05-03
1
-39
/
+41
*
Style update: don't duplicate comments, they were getting out of sync.
Rafael Espindola
2014-05-03
1
-73
/
+0
*
Add an -mattr option to the gold plugin to support subtarget features in LTO
Tom Roeder
2014-04-25
1
-0
/
+22
*
Revert "Reapply "LTO: add API to set strategy for -internalize""
Duncan P. N. Exon Smith
2014-04-02
1
-7
/
+0
*
Centralize the handling of install_name and rpath.
Rafael Espindola
2014-02-28
1
-8
/
+0
*
[CMake] llvm-c/lto.h should be installed if libLTO.a is built.
NAKAMURA Takumi
2014-02-21
1
-4
/
+2
*
[CMake] libLTO: Use (SHARED|STATIC) to build both shared LTO and LTO_static.
NAKAMURA Takumi
2014-02-21
1
-15
/
+3
*
Refactor TargetOptions initialization into a single place.
Eli Bendersky
2014-02-19
1
-34
/
+6
*
LTO API: add lto_module_create_from_memory_with_path.
Manman Ren
2014-02-10
2
-0
/
+12
*
Revert r200560, "LTO itself hasn't depended on MCDisassembler any more."
NAKAMURA Takumi
2014-01-31
2
-1
/
+2
*
LTO itself hasn't depended on MCDisassembler any more.
NAKAMURA Takumi
2014-01-31
2
-3
/
+1
*
Adding new LTO APIs to parse metadata nodes and extract linker options and
Yunzhong Gao
2014-01-21
2
-0
/
+26
*
Revert r199361: Now, the sanitizer got the change
Quentin Colombet
2014-01-16
1
-1
/
+0
*
[LTO] Modify lto.exports to force the sanitizer to rebuilt LTO.exports
Quentin Colombet
2014-01-16
1
-0
/
+1
*
[LTO] Add a hook to map LLVM diagnostics into the clients of LTO.
Quentin Colombet
2014-01-15
2
-0
/
+8
*
Reapply "LTO: add API to set strategy for -internalize"
Duncan P. N. Exon Smith
2014-01-14
1
-0
/
+7
*
Revert r199191, "LTO: add API to set strategy for -internalize"
NAKAMURA Takumi
2014-01-14
1
-7
/
+0
*
LTO: add API to set strategy for -internalize
Duncan P. N. Exon Smith
2014-01-14
1
-0
/
+7
*
Re-sort #include lines again, prior to moving headers around.
Chandler Carruth
2014-01-13
1
-2
/
+2
*
EXPORTED_SYMBOL_FILE support for cmake
Nico Weber
2013-12-28
1
-19
/
+3
*
Strip dead code when linking by default with BFD ld (linux, ...) and ld64 (os...
Nico Weber
2013-12-27
1
-3
/
+0
*
[CMake] Add MCDisassembler to tools/lto. (has been removed since r196908)
NAKAMURA Takumi
2013-12-10
1
-0
/
+1
*
[CMake] Update LLVM_LINK_COMPONENTS for each CMakeLists.txt.
NAKAMURA Takumi
2013-12-10
1
-1
/
+5
*
Change libLTO back to linking with @executable_path instead of @rpath.
Bob Wilson
2013-11-11
1
-1
/
+1
*
Use LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN instead of the "dso list".
Rafael Espindola
2013-10-31
2
-5
/
+0
*
lto.h: Use lto_bool_t instead of int to restore the ABI
Reid Kleckner
2013-10-24
1
-9
/
+9
*
llvm-c/lto.h: Avoid use of bool.
NAKAMURA Takumi
2013-10-23
1
-9
/
+9
*
Only modify lto.exports.def when contents have changed.
Rafael Espindola
2013-10-08
1
-3
/
+9
*
Add lto_codegen_add_dso_symbol to the export list.
Rafael Espindola
2013-10-04
1
-0
/
+1
*
Optimize linkonce_odr unnamed_addr functions during LTO.
Rafael Espindola
2013-10-03
1
-0
/
+4
*
Fix option parsing in the gold plugin.
Rafael Espindola
2013-10-02
1
-0
/
+15
*
Enable building LTO on WIN32.
Rafael Espindola
2013-10-02
1
-3
/
+17
*
Move command line options to the users of libLTO. Fixes --enable-shared build.
Rafael Espindola
2013-09-30
1
-7
/
+60
[next]