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
/
llvm-nm
/
llvm-nm.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[WebAssembly] Improve readobj and nm support for wasm
Sam Clegg
2017-04-14
1
-0
/
+12
*
Add a warning when the llvm-nm -print-size flag is used on a Mach-O file as
Kevin Enderby
2017-01-25
1
-3
/
+18
*
Fix a bugs with using some Mach-O command line flags like "-arch armv7m".
Kevin Enderby
2016-12-16
1
-16
/
+16
*
Object: Set SF_Indirect in ModuleSymbolTable.
Peter Collingbourne
2016-12-01
1
-7
/
+2
*
Object: Add SF_Executable symbol flag.
Peter Collingbourne
2016-12-01
1
-16
/
+14
*
Object: Add IRObjectFile::getTargetTriple().
Peter Collingbourne
2016-11-24
1
-8
/
+2
*
llvm-nm: Print correct symbol types for init and fini sections
Meador Inge
2016-11-23
1
-0
/
+3
*
llvm-nm: Don't print value or size for undefined or weak symbols
Meador Inge
2016-11-23
1
-7
/
+15
*
Make the Error class constructor protected
Mehdi Amini
2016-11-11
1
-4
/
+4
*
Fix an unconditional break in checkMachOAndArchFlags
David Majnemer
2016-10-31
1
-2
/
+2
*
Turn cl::values() (for enum) from a vararg function to using C++ variadic tem...
Mehdi Amini
2016-10-08
1
-2
/
+2
*
Use the range variant of transform instead of unpacking begin/end
David Majnemer
2016-08-12
1
-3
/
+3
*
Add the first of what will be a long line of additional error checks for inva...
Kevin Enderby
2016-08-05
1
-1
/
+1
*
Clean up of libObject/Archive interfaces and change the last three uses of Er...
Kevin Enderby
2016-08-03
1
-3
/
+3
*
The next step along the way to getting good error messages for bad archives.
Kevin Enderby
2016-07-29
1
-5
/
+8
*
[Object] Re-apply r275316 now that I have the corresponding LLD patch ready.
Lang Hames
2016-07-14
1
-39
/
+35
*
[Object] Revert r275316, Archive::child_iterator changes, while I update lld.
Lang Hames
2016-07-14
1
-35
/
+39
*
[Object] Change Archive::child_iterator for better interop with Error/Expected.
Lang Hames
2016-07-13
1
-39
/
+35
*
Finish cleaning up most of the error handling in libObject’s MachOUniversal...
Kevin Enderby
2016-06-28
1
-3
/
+22
*
Thread Expected<...> up from libObject’s getSymbolAddress() for symbols to ...
Kevin Enderby
2016-06-24
1
-2
/
+4
*
Search for llvm-symbolizer binary in the same directory as argv[0], before
Richard Smith
2016-06-09
1
-1
/
+1
*
Apply most suggestions of clang-tidy's performance-unnecessary-value-param
Benjamin Kramer
2016-06-08
1
-6
/
+6
*
Change llvm-objdump, llvm-nm and llvm-size when reporting an object file error
Kevin Enderby
2016-05-31
1
-8
/
+49
*
Change llvm-objdump, llvm-nm and llvm-size when reporting an object file error
Kevin Enderby
2016-05-17
1
-8
/
+46
*
Thread Expected<...> up from libObject’s getType() for symbols to allow llv...
Kevin Enderby
2016-05-02
1
-8
/
+15
*
MachO: remove weird ARM/Thumb interface from MachOObjectFile
Tim Northover
2016-04-22
1
-2
/
+2
*
Thread Expected<...> up from libObject’s getName() for symbols to allow llv...
Kevin Enderby
2016-04-20
1
-4
/
+8
*
[NFC] Header cleanup
Mehdi Amini
2016-04-18
1
-0
/
+1
*
Remove every uses of getGlobalContext() in LLVM (but the C API)
Mehdi Amini
2016-04-14
1
-1
/
+1
*
Fix repeated conditional expression (PR20711)
Hans Wennborg
2016-04-11
1
-1
/
+1
*
Thread Expected<...> up from createMachOObjectFile() to allow llvm-objdump to...
Kevin Enderby
2016-04-06
1
-2
/
+4
*
Fix some bugs in the posix output of llvm-nm. Which is documented on
Kevin Enderby
2016-03-29
1
-12
/
+21
*
[llvm-nm] Fix r264247
James Molloy
2016-03-24
1
-1
/
+1
*
[llvm-nm] Restore the previous behaviour (pre r262525).
Davide Italiano
2016-03-02
1
-2
/
+1
*
[llvm-nm] Fix rendering of -s grouping with all the othe options.
Davide Italiano
2016-03-02
1
-1
/
+2
*
[llvm-nm] In C++, main implicitly returns 0. Pointed out by David Blaikie.
Davide Italiano
2016-02-19
1
-2
/
+0
*
[llvm-nm] Simplify code logic. Rewrite a single function an inline.
Davide Italiano
2016-02-11
1
-16
/
+4
*
[llvm-nm] Minor style change. Prefer EXIT_SUCCESS over 0.
Davide Italiano
2016-02-10
1
-1
/
+1
*
[llvm-nm] Prefer range-based loop over explicit iterator.
Davide Italiano
2016-02-10
1
-3
/
+2
*
[llvm-nm] Add -radix option
Hemant Kulkarni
2016-02-10
1
-3
/
+30
*
[llvm-nm] Remove excessive parenthesis, noticed by David Blaikie.
Davide Italiano
2016-02-08
1
-3
/
+3
*
[llvm-nm] Yet another attempt of simplifying code.
Davide Italiano
2016-02-08
1
-11
/
+5
*
[llvm-nm] Prefer empty() over size() == 0.
Davide Italiano
2016-02-05
1
-1
/
+1
*
[llvm-nm] Transform a switch() statement in a pair of if(s).
Davide Italiano
2016-02-05
1
-7
/
+2
*
[llvm-nm] Simplify code logic. NFCI.
Davide Italiano
2016-02-05
1
-7
/
+3
*
[llvm-nm] Simplify the code a bit. NFCI.
Davide Italiano
2016-02-01
1
-6
/
+2
*
[llvm-nm] Add a comment to explain why we initialize MC.
Davide Italiano
2016-01-29
1
-0
/
+1
*
[llvm-nm] Remove redundant check for file validity.
Davide Italiano
2016-01-27
1
-2
/
+0
*
[llvm-nm] Roll several conditions into a single if. NFCI.
Davide Italiano
2016-01-26
1
-7
/
+2
*
[llvm-nm] Simplify. No functional changes intended.
Davide Italiano
2016-01-26
1
-4
/
+3
[next]