summaryrefslogtreecommitdiff
path: root/tools/llvm-size
AgeCommit message (Expand)AuthorFilesLines
2015-01-22Assigning and copying command line option objects shouldn't be allowed.Chris Bieneman1-1/+1
2015-01-14[cleanup] Re-sort all the #include lines in LLVM usingChandler Carruth1-1/+1
2014-12-09Return ErrorOr<std::unique_ptr<Archive>> form getAsArchive.Rafael Espindola1-6/+9
2014-10-08Remove bogus std::error_code returns form SectionRef.Rafael Espindola1-24/+8
2014-09-11Use the simpler sys::fs:;exists. NFC.Rafael Espindola1-2/+1
2014-08-19Don't own the buffer in object::Binary.Rafael Espindola1-2/+2
2014-08-08Use a simpler predicate. NFC.Rafael Espindola1-2/+1
2014-08-01Remove some calls to std::move.Rafael Espindola1-4/+4
2014-07-31Use std::unique_ptr to make the ownership explicit.Rafael Espindola1-2/+2
2014-07-01Run clang-format on llvm-size.cpp to tidy things up. No functional changes.Kevin Enderby1-109/+92
2014-07-01Add the -arch flag support to llvm-size like what was done to llvm-nmKevin Enderby1-2/+207
2014-06-23Convert a few methods to use ErrorOr.Rafael Espindola1-2/+2
2014-06-20Added the -m option as an alias for -format=darwin to llvm-nm and llvm-sizeKevin Enderby1-0/+1
2014-06-19Change the output of llvm-nm and llvm-size for Mach-O universal files (akaKevin Enderby1-4/+15
2014-06-18Teach llvm-size to know about Mach-O universal files (aka fat files) andKevin Enderby1-0/+52
2014-06-17Add "-format darwin" to llvm-size to be like darwin's size(1) -m output, andKevin Enderby1-25/+222
2014-06-16Convert the Archive API to use ErrorOr.Rafael Espindola1-4/+4
2014-06-13Remove 'using std::error_code' from tools.Rafael Espindola1-4/+3
2014-06-12Don't use 'using std::error_code' in include/llvm.Rafael Espindola1-0/+1
2014-06-12Remove system_error.h.Rafael Espindola1-1/+1
2014-04-25[C++] Use 'nullptr'. Tools edition.Craig Topper1-1/+1
2014-03-13[C++11] Use ObjectFile::sections() in commandline llvm toolsAlexey Samsonov1-22/+25
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles1-2/+2
2014-02-10Change the begin and end methods in ObjectFile to match the style guide.Rafael Espindola1-3/+3
2014-01-30Simplify the handling of iterators in ObjectFile.Rafael Espindola1-19/+6
2014-01-21Rename these methods to match the style guide.Rafael Espindola1-2/+2
2014-01-15Return an ErrorOr<Binary *> from createBinary.Rafael Espindola1-3/+4
2013-12-10[CMake] Update LLVM_LINK_COMPONENTS for each CMakeLists.txt.NAKAMURA Takumi1-1/+4
2012-12-04Sort the #include lines for tools/...Chandler Carruth1-1/+1
2011-12-12LLVMBuild: Remove trailing newline, which irked me.Daniel Dunbar1-1/+0
2011-11-11LLVMBuild: Add description files for the LLVM tools.Daniel Dunbar1-0/+23
2011-11-05Add more PRI.64 macros for MSVC and use them throughout the codebase.Benjamin Kramer1-5/+5
2011-10-18build: Tidy up a bunch of tool Makefiles, and simplify where possible using theDaniel Dunbar1-3/+3
2011-10-07Fix a few changes I missed.Michael J. Spencer1-9/+9
2011-09-29Fix build failures better.Andrew Trick1-5/+3
2011-09-29Fix build failure.Daniel Dunbar1-2/+4
2011-09-29llvm-size: Apply Chris's code review fixes.Michael J. Spencer1-46/+59
2011-09-28Fix cast.Michael J. Spencer1-1/+1
2011-09-28Add llvm-size.Michael J. Spencer3-0/+320