Fixed/added namespace ending comments using clang-tidy. NFC
[oota-llvm.git] / lib / ProfileData / CoverageMapping.cpp
2015-06-19 Alexander KornienkoFixed/added namespace ending comments using clang-tidy...
2015-06-13 Rafael EspindolaDon't use std::errc.
2015-05-13 Justin BognerInstrProf: Treat functions with a coverage map but...
2015-05-06 Justin BognerInstrProf: Give coverage its own errors instead of...
2015-05-05 Justin BognerInstrProf: Strip filename prefixes from the names we...
2015-03-23 Benjamin KramerRe-sort includes with sort-includes.py and insert raw_o...
2015-03-11 Justin BognerInstrProf: Teach llvm-cov to handle universal binaries...
2015-02-26 Justin BognerInstrProf: Simplify the construction of BinaryCoverageR...
2015-02-26 Justin BognerInstrProf: Rename ObjectFileCoverageMappingReader to...
2015-02-20 Justin BognerDisallow implicit conversions from None to integer...
2015-02-18 Justin BognerInstrProf: Don't combine expansion regions with code...
2015-02-18 Justin BognerInstrProf: Handle unknown functions if they consist...
2015-02-18 Justin BognerInstrProf: Make CoverageMapping testable and add a...
2015-02-17 Benjamin KramerPrefer SmallVector::append/insert over push_back loops.
2015-02-16 Justin BognerInstrProf: Use ErrorOr for IndexedInstrProfReader:...
2015-02-12 Benjamin KramerFix accidental bit flip.
2015-02-12 Benjamin KramerCoverageMapping: Bitvectorize code. No functionality...
2015-01-24 Justin Bognerllvm-cov: Only combine segments if they overlap exactly
2015-01-15 Alexander KornienkoReplace size method call of containers to empty method...
2015-01-14 Chandler Carruth[cleanup] Re-sort all the #include lines in LLVM using
2014-11-14 Justin Bognerllvm-cov: Sink some reporting logic into CoverageMapping
2014-10-03 Benjamin KramerEliminate some deep std::vector copies. NFC.
2014-10-02 Justin BognerInstrProf: Avoid linear search in a hot loop
2014-10-02 Justin BognerReapply "InstrProf: Don't keep a large sparse list...
2014-10-02 Justin BognerRevert "InstrProf: Don't keep a large sparse list aroun...
2014-10-02 Justin BognerInstrProf: Don't keep a large sparse list around just...
2014-09-30 Alex Lorenzllvm-cov: Use the number of executed functions for...
2014-09-25 Justin Bognerllvm-cov: Combine segments that cover the same location
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-08 Justin Bognerllvm-cov: Try to appease MSVC after r217404
2014-09-08 Justin Bognerllvm-cov: Use ErrorOr rather than an error_code* (NFC)
2014-07-29 Alex LorenzCoverage: fix the missing output stream in recursive...
2014-07-24 Alex LorenzAdd code coverage mapping data, reader, and writer.