- Aug 08, 2018
-
-
Michael Trent authored
Summary: Add a CommandGuide for llvm-objdump summarizing its usage along with some general context. Reviewers: beanz Reviewed By: beanz Subscribers: Eugene.Zelenko, llvm-commits Differential Revision: https://reviews.llvm.org/D50034 llvm-svn: 339250
-
- Apr 04, 2018
-
-
Clement Courbet authored
Fixed to depend on and initialize the native target instead of X86. llvm-svn: 329169
-
Clement Courbet authored
Breaks a bunch of bots. llvm-svn: 329157
-
Clement Courbet authored
Summary: [llvm-exegesis][RFC] Automatic Measurement of Instruction Latency/Uops This is the code corresponding to the RFC "llvm-exegesis Automatic Measurement of Instruction Latency/Uops". The RFC is available on the LLVM mailing lists as well as the following document for easier reading: https://docs.google.com/document/d/1QidaJMJUyQdRrFKD66vE1_N55whe0coQ3h1GpFzz27M/edit?usp=sharing Subscribers: mgorny, gchatelet, orwant, llvm-commits Differential Revision: https://reviews.llvm.org/D44519 llvm-svn: 329156
-
- Mar 08, 2018
-
-
Andrea Di Biagio authored
This should fix the documentation error reported by builder llvm-sphinx-docs (build #16407) after r326998. llvm-svn: 326999
-
- Nov 02, 2017
-
-
Jonas Devlieghere authored
- Improve wording - Rename llvm-dsymutil to dsymutil - Name -arch=<arch> argument Differential revision: https://reviews.llvm.org/D39561 llvm-svn: 317226
-
Jonas Devlieghere authored
llvm-svn: 317221
-
- Aug 11, 2017
-
-
Zachary Turner authored
llvm-svn: 310744
-
- Jul 17, 2015
-
-
Rafael Espindola authored
llvm-svn: 242557
-
- May 20, 2014
-
-
Alexey Samsonov authored
llvm-svn: 209173
-
- Feb 18, 2014
-
-
Duncan P. N. Exon Smith authored
Introducing llvm-profdata, a tool for merging profile data generated by PGO instrumentation in clang. - The name indicates a file extension of <name>.profdata. Eventually profile data output by clang should be changed to that extension. - llvm-profdata merges two profiles. However, the name is more general, since it will likely pick up more tasks (such as summarizing a single profile). - llvm-profdata parses the current text-based format, but will be updated once we settle on a binary format. <rdar://problem/15949645> llvm-svn: 201535
-
- Dec 24, 2013
-
-
Alexey Samsonov authored
llvm-svn: 197989
-
- Jun 15, 2013
-
-
Rafael Espindola authored
Archive files (.a) can have a symbol table indicating which object files in them define which symbols. The purpose of this symbol table is to speed up linking by allowing the linker the read only the .o files it is actually going to use instead of having to parse every object's symbol table. LLVM's archive library currently supports a LLVM specific format for such table. It is hard to see any value in that now that llvm-ld is gone: * System linkers don't use it: GNU ar uses the same plugin as the linker to create archive files with a regular index. The OS X ar creates no symbol table for IL files, I assume the linker just parses all IL files. * It doesn't interact well with archives having both IL and native objects. * We probably don't want to be responsible for yet another archive format variant. This patch then: * Removes support for creating and reading such index from lib/Archive. * Remove llvm-ranlib, since there is nothing left for it to do. We should in the future add support for regular indexes to llvm-ar for both native and IL objects. When we do that, llvm-ranlib should be reimplemented as a symlink to llvm-ar, as it is equivalent to "ar s". llvm-svn: 184019
-
- Apr 11, 2013
-
-
Nico Rieck authored
llvm-svn: 179244
-
- Mar 01, 2013
-
-
Alexey Samsonov authored
llvm-svn: 176337
-
- Jan 11, 2013
-
-
Sean Silva authored
Before we learned about :doc:, we used :ref: and put a dummy link at the top of each page. Don't do that anymore. This fixes PR14891 as a special case. llvm-svn: 172162
-
- May 08, 2012
-
-
Daniel Dunbar authored
- The POD versions are slated for execution, but are still around until llvm.org machinery is in place. llvm-svn: 156384
-