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
*
Cleanup else-after-return and add an early-return to llvm-nm
David Blaikie
2015-03-23
1
-71
/
+59
*
[cleanup] Re-sort all the #include lines in LLVM using
Chandler Carruth
2015-01-14
1
-1
/
+1
*
Return ErrorOr<std::unique_ptr<Archive>> form getAsArchive.
Rafael Espindola
2014-12-09
1
-6
/
+8
*
Object, COFF: Cleanup symbol type code, improve binutils compatibility
David Majnemer
2014-10-31
1
-9
/
+5
*
LTO: introduce object file-based on-disk module format.
Peter Collingbourne
2014-09-18
1
-2
/
+5
*
Object: Add support for bigobj
David Majnemer
2014-09-10
1
-4
/
+4
*
Don't own the buffer in object::Binary.
Rafael Espindola
2014-08-19
1
-1
/
+1
*
Use a simpler predicate. NFC.
Rafael Espindola
2014-08-08
1
-2
/
+1
*
Remove some calls to std::move.
Rafael Espindola
2014-08-01
1
-14
/
+14
*
Replaces a few pointers with references in llvm-nm.cpp.
Rafael Espindola
2014-07-31
1
-40
/
+39
*
Use std::unique_ptr to make the ownership explicit.
Rafael Espindola
2014-07-31
1
-2
/
+2
*
Tweak llvm-nm’s -undefined-only (aka -u) printing for Mach-O files
Kevin Enderby
2014-07-28
1
-1
/
+1
*
Add an implementation for llvm-nm’s -print-file-name option (aka -o and -A).
Kevin Enderby
2014-07-24
1
-49
/
+102
*
Correct the ownership passing semantics of object::createBinary and make them...
David Blaikie
2014-07-21
1
-3
/
+2
*
Tweak formating to match what clang-format would be for llvm-nm.cpp .
Kevin Enderby
2014-07-17
1
-3
/
+2
*
Add printing of Mach-O stabs in llvm-nm.
Kevin Enderby
2014-07-17
1
-1
/
+85
*
Add the "-x" flag to llvm-nm for Mach-O files that prints the fields of a sym...
Kevin Enderby
2014-07-16
1
-6
/
+41
*
Add the "-s" flag to llvm-nm for Mach-O files that prints symbols only in
Kevin Enderby
2014-07-11
1
-0
/
+70
*
Changed the lvm-nm alias "-s" for -print-armap to "-M".
Kevin Enderby
2014-07-08
1
-1
/
+1
*
Update the MemoryBuffer API to use ErrorOr.
Rafael Espindola
2014-07-06
1
-2
/
+4
*
Add the -just-symbol-name (aka -j) flag to llvm-nm to just print the
Kevin Enderby
2014-07-03
1
-0
/
+9
*
Add support for inline asm symbols to IRObjectFile.
Rafael Espindola
2014-07-03
1
-4
/
+11
*
Add the -U flag to llvm-nm as an alias to -defined-only
Kevin Enderby
2014-07-03
1
-0
/
+2
*
Add the -reverse-sort flag (aka -r) to llvm-nm
Kevin Enderby
2014-07-02
1
-24
/
+61
*
Also run clang-format on llvm-nm.cpp to tidy things up. No functional changes.
Kevin Enderby
2014-07-01
1
-51
/
+40
*
Add the -arch flag support to llvm-nm to select the slice out of a Mach-O
Kevin Enderby
2014-06-30
1
-0
/
+147
*
Pass a std::unique_ptr& to the create??? methods is lib/Object.
Rafael Espindola
2014-06-23
1
-1
/
+1
*
Make ObjectFile and BitcodeReader always own the MemoryBuffer.
Rafael Espindola
2014-06-23
1
-1
/
+2
*
Convert a few methods to use ErrorOr.
Rafael Espindola
2014-06-23
1
-2
/
+3
*
Change the default input for llvm-nm to be a.out instead of standard input
Kevin Enderby
2014-06-23
1
-1
/
+1
*
Fix some double printing of filenames for archives in llvm-nm when
Kevin Enderby
2014-06-20
1
-10
/
+13
*
Added the -m option as an alias for -format=darwin to llvm-nm and llvm-size
Kevin Enderby
2014-06-20
1
-0
/
+3
*
Fix the output of llvm-nm for Mach-O files to use the characters ‘d’ and ...
Kevin Enderby
2014-06-19
1
-0
/
+4
*
Change the output of llvm-nm and llvm-size for Mach-O universal files (aka
Kevin Enderby
2014-06-19
1
-4
/
+18
*
Convert the Archive API to use ErrorOr.
Rafael Espindola
2014-06-16
1
-14
/
+13
*
Remove 'using std::error_code' from tools.
Rafael Espindola
2014-06-13
1
-2
/
+1
*
Don't use 'using std::error_code' in include/llvm.
Rafael Espindola
2014-06-12
1
-0
/
+1
*
Remove system_error.h.
Rafael Espindola
2014-06-12
1
-1
/
+1
*
Add "-format darwin" to llvm-nm to be like darwin's nm(1) -m output.
Kevin Enderby
2014-06-05
1
-4
/
+176
*
Allow alias to point to an arbitrary ConstantExpr.
Rafael Espindola
2014-06-03
1
-6
/
+2
*
MachO: support N_INDR aliases in assembly files.
Tim Northover
2014-05-30
1
-0
/
+2
*
Delete getAliasedGlobal.
Rafael Espindola
2014-05-16
1
-1
/
+1
*
Teach llvm-nm to know about fat archives (aka MachOUniversal files
Kevin Enderby
2014-05-14
1
-0
/
+14
*
Suggested improvement by Rafael Espindola to use isa<> in a few places
Kevin Enderby
2014-05-12
1
-6
/
+6
*
Fix llvm-nm to print the full 64-bit address for symbols in 64-bit object files.
Kevin Enderby
2014-05-09
1
-8
/
+36
*
Revert "Fix a nomenclature error in llvm-nm."
Rafael Espindola
2014-04-03
1
-27
/
+27
*
Fix a nomenclature error in llvm-nm.
Rafael Espindola
2014-04-02
1
-27
/
+27
*
Object: Provide a richer means of describing auxiliary symbols
David Majnemer
2014-03-19
1
-2
/
+1
*
Object/COFF: Add function to check if section number is reserved one.
Rui Ueyama
2014-03-18
1
-3
/
+2
*
[C++11] Change the interface of getCOFF{Section,Relocation,Symbol} to make it...
Alexey Samsonov
2014-03-18
1
-2
/
+2
[next]