Fixing a CMake developer warning.
[oota-llvm.git] / tools / llvm-cov /
2015-02-15 Aaron BallmanRemoving LLVM_DELETED_FUNCTION, as MSVC 2012 was the...
2015-02-14 Justin Bognerllvm-cov: Actually use the command line arguments when...
2015-02-14 Justin Bognerllvm-cov: Simplify coverage reports, fixing PR22575...
2015-02-02 Justin BognerInstrProf: Remove an unused header (NFC)
2015-01-23 Justin Bognerllvm-cov: Don't use llvm::outs() in library code
2015-01-14 Chandler Carruth[cleanup] Re-sort all the #include lines in LLVM using
2014-12-17 Rafael EspindolaRemove unused includes and out of date comment. NFC.
2014-11-14 Justin Bognerllvm-cov: Sink some reporting logic into CoverageMapping
2014-10-31 Lang Hames[Object] Modify OwningBinary's interface to separate...
2014-10-30 Justin Bognerllvm-cov: Follow LLVM naming conventions
2014-10-30 Justin Bognerllvm-cov: Don't manually parse an option for no reason
2014-10-30 Justin Bognerllvm-cov: Very basic top level help
2014-10-08 Rafael EspindolaRemove bogus std::error_code returns form SectionRef.
2014-10-01 NAKAMURA Takumillvm-cov/CoverageReport.cpp: Quick fix for msvcrt,...
2014-09-30 Alex Lorenzllvm-cov: Use the number of executed functions for...
2014-09-20 Justin Bognerllvm-cov: Allow creating CoverageMappings from filenames
2014-09-20 Justin Bognerllvm-cov: Disentangle the coverage data logic from...
2014-09-20 Justin Bognerllvm-cov: Move some reader debug output out of the...
2014-09-19 Justin Bognerllvm-cov: Return unique_ptrs instead of filling objects...
2014-09-19 Justin Bognerllvm-cov: Fix dropped lines when filters were applied
2014-09-19 Justin Bognerllvm-cov: Generalize -filename-equivalence
2014-09-18 Justin Bognerllvm-cov: Simplify FunctionInstantiationSetCollector...
2014-09-18 Patrik HagglundAlternative (to r216344) fix of gcc -Wpedantic.
2014-09-17 Justin Bognerllvm-cov: Push some more debug output into the View...
2014-09-17 Justin Bognerllvm-cov: Rework the API for getting the coverage of...
2014-09-17 Justin BognerLineIterator: Provide a variant that keeps blank lines
2014-09-17 Justin Bognerllvm-cov: Fix a typo
2014-09-17 Justin BognerAdd move constructors/assignment to make MSVC happy...
2014-09-17 Justin Bognerllvm-cov: Distinguish expansion/instantiation from...
2014-09-16 Justin Bognerllvm-cov: Rename a variable and clean up its usage
2014-09-15 Justin Bognerllvm-cov: Make debug output more consistent
2014-09-15 Justin Bognerllvm-cov: Fix an issue with showing regions but not...
2014-09-15 Justin Bognerllvm-cov: Clean up some redundancy in the view API...
2014-09-15 Justin Bognerllvm-cov: Simplify CounterMappingRegion, pushing logic...
2014-09-12 Justin Bognerllvm-cov: Move FunctionCoverageMapping into CoverageMap...
2014-09-11 Justin BognerRevert "llvm-cov: Remove an overly system specific...
2014-09-10 Justin Bognerllvm-cov: Fix a misuse of ArrayRef::slice I introduced...
2014-09-09 Justin Bognerllvm-cov: Use ArrayRef::slice (NFC)
2014-09-09 Justin Bognerllvm-cov: Combine two types that were nearly identical...
2014-09-09 Justin Bognerllvm-cov: Rename MappingRegion to coverage::CountedRegi...
2014-09-08 Justin Bognerllvm-cov: Use ErrorOr rather than an error_code* (NFC)
2014-09-08 Justin Bognerllvm-cov: Remove dead code
2014-09-04 Justin Bognerllvm-cov: Don't pointlessly create a unique_ptr (NFC)
2014-08-27 Craig TopperSimplify creation of a bunch of ArrayRefs by using...
2014-08-24 Patrik HagglundSilence gcc -Wpedantic.
2014-08-22 Alex Lorenzllvm-cov: add code coverage tool that's based on covera...
2014-07-28 Alex Lorenzllvm-cov: move the gcov code into a separate file.
2014-07-06 Rafael EspindolaUpdate the MemoryBuffer API to use ErrorOr.
2014-06-27 Justin Bognerllvm-cov: Support specifying multiple source files
2014-06-13 Rafael EspindolaFinishing touch for the std::error_code transition.
2014-06-13 Rafael EspindolaRemove 'using std::error_code' from tools.
2014-06-12 Rafael EspindolaDon't use 'using std::error_code' in include/llvm.
2014-06-12 Rafael EspindolaRemove system_error.h.
2014-06-11 Rafael EspindolaUse std::error_code instead of llvm::error_code.
2014-05-07 Justin Bognerllvm-cov: Implement --no-output
2014-04-23 Justin Bognerllvm-cov: Add support for gcov's --long-file-names...
2014-04-23 Justin Bognerllvm-cov: Allow short options to be grouped
2014-03-06 Ahmed CharlesReplace OwningPtr<T> with std::unique_ptr<T>.
2014-02-18 Justin Bognerllvm-cov: Support gcov's extermely lenient treatment...
2014-02-04 Justin Bognerllvm-cov: Implement the preserve-paths flag
2014-02-04 Justin Bognerllvm-cov: Implement the object-directory flag
2014-02-04 Justin Bognerllvm-cov: Ignore missing .gcda files
2014-01-29 Justin Bognerllvm-cov: Accept the long forms of gcov options
2014-01-29 Justin Bognerllvm-cov: Improve help message text
2014-01-29 Justin Bognerllvm-cov: Expect a source file as a positional parameter
2013-12-19 Yuchen Wullvm-cov: Added -f option for function summaries.
2013-12-18 Yuchen Wullvm-cov: Added -c option for branch counts.
2013-12-16 Yuchen Wullvm-cov: Added -u option for unconditional branch...
2013-12-13 Yuchen Wullvm-cov: Added -b option for branch probabilities.
2013-12-10 Yuchen Wullvm-cov: Added -a option for block data.
2013-12-05 Yuchen Wullvm-cov: Conformed headers.
2013-12-04 Yuchen Wullvm-cov: Split GCOVFile's read into GCNO and GCDA.
2013-12-03 Yuchen Wullvm-cov: Removed output to STDOUT/specified file.
2013-11-15 Benjamin Kramerllvm-cov: Clean up memory leaks.
2013-11-14 NAKAMURA Takumillvm-cov requires IR and Support as libraries. Instrume...
2013-11-05 Yuchen WuRevert "llvm-cov: Added command-line option to change...
2013-11-05 Yuchen Wullvm-cov: Added command-line option to change dir.
2013-11-02 Yuchen WuAdded command-line option to output llvm-cov to file.
2013-10-31 Yuchen WuUpdated llvm-cov's OVERVIEW description
2013-10-22 Bob WilsonChange llvm-cov output formatting to be more similar...
2013-10-22 Bob WilsonMove the printing of llvm-cov information out from...
2012-11-07 Bill WendlingRemove accidental commit.
2012-11-07 Bill WendlingAdd comment describing what's going on here.
2011-12-12 Daniel DunbarLLVMBuild: Remove trailing newline, which irked me.
2011-11-11 Daniel DunbarLLVMBuild: Add description files for the LLVM tools.
2011-10-18 Daniel Dunbarbuild: Tidy up a bunch of tool Makefiles, and simplify...
2011-10-04 Devang PatelUpdate cmake list.
2011-10-04 Devang PatelPut GCOVFile and other related interface in a common...
2011-09-29 Devang PatelSimplify.
2011-09-29 Devang PatelClarify comments.
2011-09-29 Devang PatelRemove unnecessary and unused data member.
2011-09-29 Devang PatelCosmetic changes, as per Nick's review.
2011-09-28 Devang PatelIntroduce llvm-cov.