- Jan 11, 2016
-
-
Lang Hames authored
llvm-svn: 257360
-
Lang Hames authored
RemoteTarget.cpp was removed in r257343. llvm-svn: 257351
-
Lang Hames authored
The new ORC remote-JITing support provides a superset of the old code's functionality, so we can replace the old stuff. As a bonus, a couple of previously XFAILed tests have started passing. llvm-svn: 257343
-
Lang Hames authored
the upcoming remote-target support classes. llvm-svn: 257302
-
- Jan 09, 2016
-
-
Lang Hames authored
Previously the CompileOnDemand layer was hard-coded to use a new SectionMemoryManager for each function when it was called. llvm-svn: 257265
-
Mike Aizatsky authored
Differential Revision: http://reviews.llvm.org/D15909 llvm-svn: 257236
-
- Jan 08, 2016
-
-
Mike Aizatsky authored
Differential Revision: http://reviews.llvm.org/D15876 llvm-svn: 257115
-
- Jan 07, 2016
-
-
Andrew Wilkins authored
Summary: r252532 added support for reporting the monolithic library when LLVM_BUILD_LLVM_DYLIB is used. This would only be done if the individual components were not found, and the dynamic library is found. This diff extends this as follows: - If LLVM_LINK_LLVM_DYLIB is set, then prefer the shared library, even if all component libraries exist. - Two flags, --link-shared and --link-static are introduced to provide explicit guidance. If --link-shared is passed and the shared library does not exist, an error results. Additionally, changed the expected shared library names from (e.g.) LLVM-3.8.0 to LLVM-3.8. The former exists only in an installation (and then only in CMake builds I think?), and not in the build tree; this breaks usage of llvm-config during builds, e.g. by llvm-go. Reviewers: DiamondLovesYou, beanz Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D15033 llvm-svn: 257003
-
- Dec 29, 2015
-
-
Davide Italiano authored
Match attribute in the header to make MSVC happy. llvm-svn: 256560
-
- Dec 25, 2015
-
-
Davide Italiano authored
llvm-svn: 256423
-
- Dec 23, 2015
-
-
Adrian Prantl authored
This replicates the logic of Darwin dwarfdump for manually opening up .dSYM bundles without introducing any new dependencies. <rdar://problem/20491670> llvm-svn: 256350
-
Davide Italiano authored
llvm-svn: 256347
-
Rafael Espindola authored
It turns out that his is *really* slow. With this change the link of clang with plugin-opt=emit-llvm goes from 41 to 26 seconds. We can add an option to enable it again if needed. llvm-svn: 256302
-
- Dec 21, 2015
-
-
David Majnemer authored
Today, we always take into account the possibility that object files produced by MC may be consumed by an incremental linker. This results in us initialing fields which vary with time (TimeDateStamp) which harms hermetic builds (e.g. verifying a self-host went well) and produces sub-optimal code because we cannot assume anything about the relative position of functions within a section (call sites can get redirected through incremental linker thunks). Let's provide an MCTargetOption which controls this behavior so that we can disable this functionality if we know a-priori that the build will not rely on /incremental. llvm-svn: 256203
-
Davide Italiano authored
llvm-svn: 256156
-
- Dec 20, 2015
-
-
Davide Italiano authored
Ideally much more stuff should be moved out of llvm-objdump.cpp, but that will happen later. llvm-svn: 256118
-
Xinliang David Li authored
With the support of value profiling added, the Indexed prof reader gets less efficient. The prof reader initialization used to be just reading the file header, but with VP support added, initialization needs to walk through all profile keys of ondisk hash table resulting in very poor locality and large memory increase (keys are stored together with the profile data in the mapped profile buffer). Even worse, when the reader is used by the compiler (not llvm-profdata too), the penalty becomes very high as compilation of each single module requires touching profile data buffer for the whole program. In this patch, the icall target values (MD5hash) are no longer eargerly converted back to name strings when the data is read into memory. New interface is added to to profile reader so that InstrProfSymtab can be lazily created for Indexed profile reader on-demand. Creating of the symtab is intended to be used by llvm-profdata tool for symbolic dumping of VP data. It can be used with compiler (for legacy out of tree uses) too but not recommended due to compile time and memory reasons mentioned above. Some other cleanups are also included: Function Addr to md5 map is now consolated into InstrProfSymtab. InstrProfStringtab is no longer used and eliminated. llvm-svn: 256114
-
- Dec 19, 2015
-
-
Davide Italiano authored
llvm-svn: 256108
-
Rafael Espindola authored
An error that is pretty easy to make is to use the lazy bitcode reader and then do something like if (V.use_empty()) The problem is that uses in unmaterialized functions are not accounted for. This patch adds asserts that all uses are known. llvm-svn: 256105
-
Rafael Espindola authored
This deprecates: * LLVMParseBitcode * LLVMParseBitcodeInContext * LLVMGetBitcodeModuleInContext * LLVMGetBitcodeModule They are replaced with the functions with a 2 suffix which do not record a diagnostic. llvm-svn: 256065
-
- Dec 18, 2015
-
-
Rafael Espindola authored
llvm-svn: 256052
-
Rafael Espindola authored
llvm-svn: 256050
-
Alexey Samsonov authored
llvm-svn: 256040
-
Rafael Espindola authored
This inlines materializeAll into the only caller (materializeAllPermanently) and renames materializeAllPermanently to just materializeAll. llvm-svn: 256024
-
Pete Cooper authored
This reverts commit r256008. Its breaking multiple buildbots, although works for me locally. llvm-svn: 256013
-
Pete Cooper authored
LLVM MC has single methods which can handle the output of EH frame and DWARF CIE's and FDE's. This code improves DWARFDebugFrame::parse to do the same for parsing. This also allows llvm-objdump to support the --dwarf=frames option which objdump supports. This option dumps the .eh_frame section using the new code in DWARFDebugFrame::parse. http://reviews.llvm.org/D15535 Reviewed by Rafael Espindola. llvm-svn: 256008
-
Rafael Espindola authored
llvm-svn: 255985
-
Eric Christopher authored
Type specific declarations have been moved to Type.h and error handling routines have been moved to ErrorHandling.h. Both are included in Core.h so nothing should change for projects directly including the headers, but transitive dependencies may be affected. llvm-svn: 255965
-
- Dec 17, 2015
-
-
Teresa Johnson authored
Summary: Second patch split out from http://reviews.llvm.org/D14752. Maps metadata as a post-pass from each module when importing complete, suturing up final metadata to the temporary metadata left on the imported instructions. This entails saving the mapping from bitcode value id to temporary metadata in the importing pass, and from bitcode value id to final metadata during the metadata linking postpass. Depends on D14825. Reviewers: dexonsmith, joker.eph Subscribers: davidxl, llvm-commits, joker.eph Differential Revision: http://reviews.llvm.org/D14838 llvm-svn: 255909
-
Davide Italiano authored
llvm-svn: 255871
-
Rafael Espindola authored
Passing in a std::unique_ptr should help find errors when the module is used after being linked into another module. llvm-svn: 255842
-
- Dec 16, 2015
-
-
Nathan Slingerland authored
Summary: Surface counter overflow when merging profile data. Merging still occurs on overflow but counts saturate to the maximum representable value. Overflow is reported to the user. Reviewers: davidxl, dnovillo, silvas Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D15547 llvm-svn: 255825
-
Teresa Johnson authored
Fixes variable name from r255779. llvm-svn: 255824
-
Chris Bieneman authored
Bootstrapping clang to generate PGO data (patches coming soon), requires llvm-profdata targets to be generated before clang. llvm-svn: 255794
-
Reid Kleckner authored
Relands r255790 with fixed tests. llvm-svn: 255793
-
Reid Kleckner authored
This reverts commit r255790. llvm-svn: 255791
-
Reid Kleckner authored
llvm-svn: 255790
-
Teresa Johnson authored
Suggested in review of r255256. llvm-svn: 255779
-
Mike Aizatsky authored
Summary: Using the blacklist the user can filter own unwanted functions from all outputs. By default blacklist contains "fun:__sancov*" line. Differential Revision: http://reviews.llvm.org/D15364 llvm-svn: 255732
-
Davide Italiano authored
llvm-svn: 255701
-