index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
Transforms
/
Utils
/
AddDiscriminators.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Rename DEBUG macro to LLVM_DEBUG.
Nicola Zaghen
2018-05-14
1
-3
/
+3
*
Remove \brief commands from doxygen comments.
Adrian Prantl
2018-05-01
1
-1
/
+1
*
Transforms: Introduce Transforms/Utils.h rather than spreading the declaratio...
David Blaikie
2018-03-28
1
-1
/
+1
*
[Transforms] Fix some Clang-tidy modernize and Include What You Use warnings;...
Eugene Zelenko
2017-10-17
1
-15
/
+24
*
[AddDiscriminators] Assign discriminators to MemIntrinsic calls.
Andrea Di Biagio
2017-04-11
1
-1
/
+15
*
Encode duplication factor from loop vectorization and loop unrolling to discr...
Dehao Chen
2017-02-10
1
-4
/
+4
*
Use the last 7 bits to represent the discriminator to fit it in 1 byte ULEB12...
Dehao Chen
2016-11-08
1
-5
/
+7
*
Introduce updateDiscriminator interface to DILocation to make it cleaner assi...
Dehao Chen
2016-10-26
1
-30
/
+7
*
Move discriminator assignment to where it is used. (NFC)
Dehao Chen
2016-10-25
1
-1
/
+1
*
add-discriminators: Fix handling of lexical scopes.
Adrian Prantl
2016-10-24
1
-9
/
+13
*
Invoke add-discriminator at -g0 -fsample-profile
Dehao Chen
2016-10-07
1
-4
/
+1
*
Consistently use FunctionAnalysisManager
Sean Silva
2016-08-09
1
-1
/
+1
*
Do not assign new discriminator for all intrinsics.
Dehao Chen
2016-08-05
1
-2
/
+2
*
Address review feedbacks of AddDiscriminator change
Xinliang David Li
2016-06-15
1
-4
/
+6
*
[PM] Port Add discriminator pass to new PM
Xinliang David Li
2016-06-15
1
-8
/
+22
*
Revert http://reviews.llvm.org/D19926 as it breaks tests.
Dehao Chen
2016-05-05
1
-6
/
+0
*
Simplify CFG before assigning discriminator.
Dehao Chen
2016-05-05
1
-0
/
+6
*
Fix null pointer access for discriminator assignment.
Dehao Chen
2016-04-14
1
-0
/
+2
*
Update discriminator assignment algorithm to handle nested call correctly.
Dehao Chen
2016-04-14
1
-20
/
+14
*
Remove llvm::getDISubprogram in favor of Function::getSubprogram
Pete Cooper
2016-03-11
1
-6
/
+1
*
Move discriminator assignment to the right place.
Dehao Chen
2016-02-29
1
-4
/
+7
*
Fix Clang-tidy modernize-use-nullptr and modernize-use-override warnings; oth...
Eugene Zelenko
2016-01-26
1
-2
/
+2
*
Fix the debug build breakage that getDiscriminator is called by mistake.
Dehao Chen
2015-11-19
1
-1
/
+2
*
Reimplement discriminator assignment algorithm.
Dehao Chen
2015-11-19
1
-52
/
+37
*
Don't generate discriminators for calls to debug intrinsics
Pavel Labath
2015-11-16
1
-17
/
+19
*
SamplePGO - Fix PR 25482 - Do not rely on llvm.dbg.cu for discriminators
Diego Novillo
2015-11-11
1
-2
/
+2
*
Add discriminators for call instructions that are from the same line and same...
Dehao Chen
2015-11-09
1
-0
/
+32
*
Recommit r251680 (also need to update clang test)
Dehao Chen
2015-10-30
1
-11
/
+12
*
Revert r251680:
Dehao Chen
2015-10-30
1
-12
/
+11
*
Update the discriminator assignment algorithm
Dehao Chen
2015-10-30
1
-11
/
+12
*
clang-format lib/Transforms/Utils/AddDiscriminators.cpp
Dehao Chen
2015-10-29
1
-12
/
+11
*
TransformUtils: Remove implicit ilist iterator conversions, NFC
Duncan P. N. Exon Smith
2015-10-13
1
-3
/
+2
*
IR: Give 'DI' prefix to debug info metadata
Duncan P. N. Exon Smith
2015-04-29
1
-4
/
+4
*
DebugInfo: Drop rest of DIDescriptor subclasses
Duncan P. N. Exon Smith
2015-04-21
1
-2
/
+2
*
DebugInfo: Delete subclasses of DIScope
Duncan P. N. Exon Smith
2015-04-20
1
-2
/
+2
*
DebugInfo: Gut DIScope, DIEnumerator and DISubrange
Duncan P. N. Exon Smith
2015-04-16
1
-2
/
+2
*
DebugInfo: Gut DILocation
Duncan P. N. Exon Smith
2015-04-14
1
-7
/
+7
*
DebugInfo: Move DILocation::computeNewDiscriminators()
Duncan P. N. Exon Smith
2015-04-14
1
-1
/
+7
*
AddDiscriminators: Create new MDLocation directly
Duncan P. N. Exon Smith
2015-04-14
1
-1
/
+3
*
DebugInfo: Rewrite atSameLineAs() as MDLocation::canDiscriminate()
Duncan P. N. Exon Smith
2015-04-11
1
-1
/
+1
*
Transforms: Use the new DebugLoc API, NFC
Duncan P. N. Exon Smith
2015-03-30
1
-8
/
+9
*
IR: Split Metadata from Value
Duncan P. N. Exon Smith
2014-12-09
1
-1
/
+1
*
Use DILexicalBlockFile, rather than DILexicalBlock, to track discriminator ch...
David Blaikie
2014-08-21
1
-4
/
+2
*
[C++] Use 'nullptr'. Transforms edition.
Craig Topper
2014-04-25
1
-1
/
+1
*
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-2
/
+2
*
Fix bug 19437 - Only add discriminators for DWARF 4 and above.
Diego Novillo
2014-04-17
1
-2
/
+7
*
[Layering] Move DebugInfo.h into the IR library where its implementation
Chandler Carruth
2014-03-06
1
-1
/
+1
*
[Layering] Move DIBuilder.h into the IR library where its implementation
Chandler Carruth
2014-03-06
1
-1
/
+1
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-05
1
-1
/
+1
*
[cleanup] Re-sort all the includes with utils/sort_includes.py.
Chandler Carruth
2014-03-04
1
-2
/
+2
[next]