Update the MemoryBuffer API to use ErrorOr.
[oota-llvm.git] / lib / IR / GCOV.cpp
2014-07-06 Rafael EspindolaUpdate the MemoryBuffer API to use ErrorOr.
2014-06-13 Rafael EspindolaRemove 'using std::errro_code' from lib.
2014-06-12 Rafael EspindolaDon't use 'using std::error_code' in include/llvm.
2014-06-12 Rafael EspindolaRemove system_error.h.
2014-05-07 Justin Bognerllvm-cov: Explicitly namespace llvm::make_unique to...
2014-05-07 Timur IskhodzhanovWork-around MSVS build breakage due to r208148
2014-05-07 Justin Bognerllvm-cov: Handle missing source files as GCOV does
2014-05-07 Justin Bognerllvm-cov: Implement --no-output
2014-05-02 Justin Bognerllvm-cov: Fix handling of line zero appearing in a...
2014-04-23 Justin Bognerllvm-cov: Add support for gcov's --long-file-names...
2014-04-21 David BlaikieUse unique_ptr to manage ownership of GCOVFunctions...
2014-03-26 Justin Bognerllvm-cov: Handle functions with no line number
2014-03-06 Ahmed CharlesReplace OwningPtr<T> with std::unique_ptr<T>.
2014-02-24 Rafael EspindolaReplace the F_Binary flag with a F_Text one.
2014-02-24 Rafael EspindolaDon't make F_None the default.
2014-02-04 Justin Bognerllvm-cov: Fix include order in GCOV.cpp
2014-02-04 Justin Bognerllvm-cov: Implement the preserve-paths flag
2014-01-07 Chandler CarruthRe-sort all of the includes with ./utils/sort_includes...
2013-12-19 NAKAMURA TakumiGCOV.cpp: Fix format strings, %lf. Don't use %lf to...
2013-12-19 Yuchen Wullvm-cov: Added -f option for function summaries.
2013-12-18 Yuchen Wullvm-cov: Print coverage summary to STDOUT.
2013-12-18 Yuchen Wullvm-cov: s/(.*)Executed/\1Exec/
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-16 Yuchen Wullvm-cov: Removed extra semicolon from ;;.
2013-12-13 Yuchen Wullvm-cov: Added -b option for branch probabilities.
2013-12-10 NAKAMURA TakumiGCOV.cpp: Use PRIu64 instead of %lu.
2013-12-10 Yuchen Wullvm-cov: Added -a option for block data.
2013-12-05 Yuchen Wullvm-cov: Further improved error messages.
2013-12-05 Yuchen Wullvm-cov: Conformed headers.
2013-12-05 Yuchen Wullvm-cov: Changed extension from .llcov to .gcov.
2013-12-04 Daniel JasperUn-revert r196358: "llvm-cov: Added support for functio...
2013-12-04 Daniel JasperRevert r196358: "llvm-cov: Added support for function...
2013-12-04 Yuchen Wullvm-cov: Added support for function checksums.
2013-12-04 Yuchen Wullvm-cov: Added checks for ident, checksum, name.
2013-12-04 Yuchen Wullvm-cov: Capitalized GCNO and GCDA for consistency.
2013-12-04 Yuchen Wullvm-cov: Split GCOVFile's read into GCNO and GCDA.
2013-12-03 Yuchen Wullvm-cov: Cleaned up print() function slightly.
2013-12-03 Yuchen Wullvm-cov: Removed output to STDOUT/specified file.
2013-12-03 Yuchen Wullvm-cov: Store blocks rather than counts per line.
2013-12-03 Yuchen Wullvm-cov: Added edge struct for traversal in block.
2013-12-03 Yuchen Wullvm-cov: Split up reading of GCNO and GCDA files.
2013-11-21 Yuchen Wullvm-cov: Formatting change.
2013-11-20 Yuchen Wullvm-cov: Added file checksum to gcno and gcda files.
2013-11-19 Yuchen Wullvm-cov: Moved printing after error checks.
2013-11-19 Yuchen Wullvm-cov: Added constness property to methods.
2013-11-15 Benjamin Kramerllvm-cov: Clean up memory leaks.
2013-11-14 NAKAMURA TakumiIR/GCOV.cpp: Use PRIu64 as format string with uint64_t.
2013-11-14 NAKAMURA TakumiWhitespace.
2013-11-14 Yuchen Wullvm-cov: Slightly improved error checking.
2013-11-14 Yuchen Wullvm-cov: Removed StringMap holding GCOVLines.
2013-11-14 Yuchen Wullvm-cov: Replaced asserts with proper error handling.
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-05 Yuchen WuSupport for reading run counts in llvm-cov.
2013-11-02 Yuchen WuAdded command-line option to output llvm-cov to file.
2013-10-25 Yuchen Wullvm-cov dump to dbgs() instead of outs().
2013-10-25 Yuchen WuSupport for reading program counts in llvm-cov.
2013-10-24 Yuchen WuFixed llvm-cov to count edges instead of blocks.
2013-10-23 Yuchen WuUse a map instead of vector to store line counts.
2013-10-23 Yuchen WuTest commit. Added whitespace in GCOV.cpp.
2013-10-22 Bob Wilsonllvm-cov: Use uint32_t for loop variables to be more...
2013-10-22 Bob Wilsonllvm-cov: fix a typo and rename a variable.
2013-10-22 Bob WilsonFix llvm-cov counts to be 64-bit integers to avoid...
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...
2013-07-04 Craig TopperUse SmallVectorImpl::iterator/const_iterator instead...
2013-06-25 Bill WendlingThe GCDA 402 format won't have a second checksum either.
2013-01-02 Chandler CarruthRename VMCore directory to IR.