index
:
delta/clang.git
baserock/flang
google/stable
google/testing
master
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
release_34
release_35
release_35@215011
release_36
release_37
release_38
release_39
release_40
release_50
release_60
release_70
release_80
release_90
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
llvm.org: Obsolete (use llvm)
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
CoverageMappingGen.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[Coverage] Suppress creating a code region if the same area is covered by an ...
Igor Kudrin
2016-08-31
1
-5
/
+23
*
[Coverage] Prevent creating a redundant counter if a nested body ends with a ...
Igor Kudrin
2016-08-29
1
-1
/
+2
*
[Coverage] Do not write out coverage mappings with zero entries
Vedant Kumar
2016-07-26
1
-0
/
+11
*
[Coverage] Remove '..' from filenames *after* getting an absolute path
Vedant Kumar
2016-07-18
1
-1
/
+1
*
[Coverage] Normalize '..' out of filename strings
Vedant Kumar
2016-07-18
1
-8
/
+14
*
[Coverage] Do not map regions from system headers
Vedant Kumar
2016-07-11
1
-0
/
+8
*
Delete some dead code, NFC
Vedant Kumar
2016-07-06
1
-10
/
+0
*
Revert "[Coverage] Adopt llvm::coverage::encodeFilenamesAndRawMappings (NFC)"
Vedant Kumar
2016-06-29
1
-10
/
+18
*
[Coverage] Push a new region when handling CXXTryStmts
Vedant Kumar
2016-06-22
1
-1
/
+6
*
[Coverage] Adopt llvm::coverage::encodeFilenamesAndRawMappings (NFC)
Vedant Kumar
2016-06-17
1
-18
/
+10
*
Reapply [Coverage] Fix an assertion failure if the definition of an unused fu...
Igor Kudrin
2016-06-07
1
-11
/
+31
*
Revert [Coverage] Fix an assertion failure if the definition of an unused fun...
Igor Kudrin
2016-06-07
1
-31
/
+11
*
[Coverage] Fix an assertion failure if the definition of an unused function s...
Igor Kudrin
2016-06-07
1
-11
/
+31
*
[Coverage] Remove redundant handleFileExit() call (NFC)
Vedant Kumar
2016-05-31
1
-3
/
+1
*
[Coverage] Fix crash on a switch partially covered by a macro (PR27948)
Vedant Kumar
2016-05-31
1
-2
/
+6
*
[Coverage] Fix an issue where a coverage region might not be created for a ma...
Igor Kudrin
2016-05-04
1
-3
/
+19
*
Use the new path for coverage related headers and update CMakeLists.txt
Easwaran Raman
2016-04-29
1
-3
/
+3
*
[Coverage] Fix the start/end locations of switch statements
Vedant Kumar
2016-03-04
1
-1
/
+1
*
[Coverage] Fix crash when handling certain macro expansions
Vedant Kumar
2016-02-08
1
-0
/
+6
*
[Coverage] Use a set to track visited FileIDs (NFC)
Vedant Kumar
2016-01-28
1
-3
/
+3
*
[Coverage] Reduce complexity of adding function mapping records
Vedant Kumar
2016-01-21
1
-3
/
+6
*
Reference the updated function name /NFC
Xinliang David Li
2016-01-20
1
-1
/
+1
*
Fix local variable name /NFC
Xinliang David Li
2016-01-19
1
-2
/
+2
*
[PGO] Simplify coverage mapping lowering
Xinliang David Li
2016-01-07
1
-3
/
+17
*
[PGO] Cleanup: Use covmap header definition in the template file
Xinliang David Li
2016-01-03
1
-14
/
+20
*
use auto for obvious type; NFC
Sanjay Patel
2015-12-24
1
-1
/
+1
*
Use profile data template file for covmap func record (NFC)
Xinliang David Li
2015-11-05
1
-11
/
+10
*
Use newly introduced interfaces in LLVM (NFC)
Xinliang David Li
2015-10-22
1
-2
/
+2
*
Replace double negation of !FileID.isInvalid() with FileID.isValid().
Yaron Keren
2015-10-03
1
-1
/
+1
*
Replace double-negated !SourceLocation.isInvalid() with SourceLocation.isVali...
Yaron Keren
2015-10-03
1
-2
/
+2
*
Remove move constructor and assignment operator from SourceMappingRegion. The...
Craig Topper
2015-09-26
1
-12
/
+1
*
Fix a couple other places that were returning SourceLocation by reference. NFC
Craig Topper
2015-09-26
1
-2
/
+2
*
Use llvm::reverse to make a bunch of loops use foreach. NFC.
Pete Cooper
2015-07-30
1
-6
/
+6
*
InstrProf: Don't extend coverage regions into the catch keyword
Justin Bogner
2015-07-23
1
-1
/
+0
*
InstrProf: Promote this assert to a report_fatal_error
Justin Bogner
2015-07-17
1
-2
/
+2
*
Switch users of the 'for (StmtRange range = stmt->children(); range; ++range)...
Benjamin Kramer
2015-07-02
1
-4
/
+3
*
InstrProf: Add a comment to clarify an argument
Justin Bogner
2015-07-02
1
-1
/
+2
*
InstrProf: Pack the coverage mapping structs that we write out
Justin Bogner
2015-07-02
1
-1
/
+1
*
InstrProf: Fix a crash when an implicit def appears in a macro
Justin Bogner
2015-06-23
1
-1
/
+2
*
Revert r240270 ("Fixed/added namespace ending comments using clang-tidy").
Alexander Kornienko
2015-06-22
1
-1
/
+1
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-22
1
-1
/
+1
*
InstrProf: Fix coverage mapping when "if" is a macro
Justin Bogner
2015-06-16
1
-0
/
+3
*
InstrProf: Only disable coverage in built-in macros, not all system macros
Justin Bogner
2015-05-14
1
-4
/
+9
*
InstrProf: Don't start or end coverage regions inside of system macros
Justin Bogner
2015-05-05
1
-4
/
+4
*
InstrProf: Fix a coverage crash where a macro begins in an unreachable block
Justin Bogner
2015-05-01
1
-1
/
+4
*
Fix -Wpessimizing-move by removing call to std::move
Richard Trieu
2015-04-30
1
-1
/
+1
*
InstrProf: Make sure coverage propagates out of foreach loops correctly
Justin Bogner
2015-04-30
1
-4
/
+8
*
InstrProf: Mark code regions after throw expressions as unreachable
Justin Bogner
2015-04-28
1
-0
/
+7
*
InstrProf: Fix coverage maps for conditional operators
Justin Bogner
2015-04-24
1
-1
/
+7
*
Change range-based for-loops to be -Wrange-loop-analysis clean.
Richard Trieu
2015-04-15
1
-1
/
+1
[next]