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
/
clang-tools-extra
/
clang-tidy
/
performance
Commit message (
Expand
)
Author
Age
Files
Lines
*
NFC: Fix trivial typos in comments
Kazuaki Ishizaki
2020-01-04
2
-2
/
+2
*
[clang-tidy] implement utility-function to add 'const' to variables
Jonas Toth
2020-01-03
3
-12
/
+27
*
[clang-tidy] new performance-no-automatic-move check.
Clement Courbet
2019-11-22
4
-0
/
+114
*
[NFC] Refactor representation of materialized temporaries
Tyker
2019-11-19
1
-1
/
+1
*
Revert "[NFC] Refactor representation of materialized temporaries"
Nico Weber
2019-11-17
1
-1
/
+1
*
[NFC] Refactor representation of materialized temporaries
Tyker
2019-11-16
1
-1
/
+1
*
[clang-tidy] New checker performance-trivially-destructible-check
Anton Bikineev
2019-11-01
4
-0
/
+126
*
[clang-tidy] performance-inefficient-vector-operation: Support proto repeated...
Haojian Wu
2019-09-16
2
-55
/
+124
*
Remove \brief commands from doxygen comments.
Dmitri Gribenko
2019-08-22
1
-1
/
+1
*
[clang-tools-extra] Migrate llvm::make_unique to std::make_unique
Jonas Devlieghere
2019-08-14
3
-3
/
+3
*
[clang-tidy] Add FixItHint for performance-noexcept-move-constructor
Zinovy Nis
2019-08-04
1
-2
/
+14
*
[clang-tidy] Switch checks to #include "ClangTidyCheck.h"
Alexander Kornienko
2019-03-25
12
-12
/
+12
*
[clang-tidy] Move all checks to the new registerPPCallbacks API
Alexander Kornienko
2019-03-22
6
-16
/
+19
*
Fix file headers. NFC
Fangrui Song
2019-03-01
1
-1
/
+1
*
Update the file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
25
-100
/
+75
*
A bit of AST matcher cleanup, NFC.
Alexander Kornienko
2018-11-25
3
-19
/
+13
*
Ignore implicit things like ConstantExpr.
Bill Wendling
2018-11-09
1
-1
/
+2
*
[clang-tidy] White List Option for performance-unnecessary-value-param, perfo...
Adam Balogh
2018-10-12
6
-11
/
+51
*
[clang-tidy] Remove duplicated logic in UnnecessaryValueParamCheck and use Fu...
Shuai Wang
2018-09-17
2
-15
/
+12
*
[NFC] Fix build breakage due to missing dep caused by D51950
Shuai Wang
2018-09-12
1
-0
/
+1
*
[clangtidy] Remove old copy of ExprMutationAnalyzer
Shuai Wang
2018-09-11
2
-6
/
+5
*
[clang-tidy] ExprMutationAnalyzer: construct from references. Fixes PR38888
Roman Lebedev
2018-09-10
2
-4
/
+4
*
[clang-tidy] Omit cases where loop variable is not used in loop body in
Haojian Wu
2018-08-10
1
-9
/
+22
*
Port getLocEnd -> getEndLoc
Stephen Kelly
2018-08-09
2
-3
/
+3
*
Port getLocStart -> getBeginLoc
Stephen Kelly
2018-08-09
8
-19
/
+20
*
Use ExprMutationAnalyzer in performance-unnecessary-value-param
Shuai Wang
2018-08-03
1
-34
/
+39
*
Use ExprMutationAnalyzer in performance-for-range-copy
Shuai Wang
2018-07-10
1
-3
/
+3
*
Add support for arrays in performance-implicit-conversion-in-loop
Alexander Kornienko
2018-06-11
2
-9
/
+15
*
Update to match clang r331428.
Richard Smith
2018-05-03
1
-14
/
+9
*
[clang-tidy] ObjC ARC objects should not trigger performance-unnecessary-valu...
Ben Hamilton
2018-02-02
1
-0
/
+4
*
[clang-tidy] Move more checks from misc- to performance-
Alexander Kornienko
2017-11-28
6
-0
/
+287
*
[clang-tidy] Move checks from misc- to performance-
Alexander Kornienko
2017-11-27
6
-0
/
+361
*
[clang-tidy] 'implicit cast' -> 'implicit conversion'
Alexander Kornienko
2017-08-08
4
-28
/
+29
*
Adapt clang-tidy checks to changing semantics of hasDeclaration.
Manuel Klimek
2017-08-02
2
-4
/
+7
*
[clang-tidy] Do not issue fixit for explicit template specializations
Felix Berger
2017-07-26
1
-1
/
+15
*
[clang-tidy] Unify the way IncludeStyle and HeaderFileExtesions options are used
Alexander Kornienko
2017-07-20
2
-2
/
+2
*
[clang-tidy] Use getLocalOrGlobal for the StrictMode option
Alexander Kornienko
2017-05-29
1
-1
/
+2
*
[clang-tidy] Speed up performance-unnecessary-value-param check
Alexander Kornienko
2017-05-16
1
-5
/
+4
*
[clang-tidy] Add "emplace_back" detection in inefficient-vector-operation.
Haojian Wu
2017-05-16
1
-16
/
+20
*
[clang-tidy] Fix a typo: dequeue => deque
Haojian Wu
2017-05-15
1
-1
/
+1
*
[clang-tidy] Support detecting for-range loop in inefficient-vector-operation...
Haojian Wu
2017-04-26
2
-19
/
+82
*
[clang-tidy] Some Cleanups for performance-faster-string-find check.
Haojian Wu
2017-04-24
1
-22
/
+12
*
[clang-tidy] Address a few late comments.
Haojian Wu
2017-04-18
1
-7
/
+8
*
[clang-tidy] Add a clang-tidy check for possible inefficient vector operations
Haojian Wu
2017-04-18
4
-0
/
+189
*
[clang-tidy] Ignore implicit functions in performance-unnecessary-value-param
Malcolm Parsons
2017-01-23
1
-1
/
+1
*
[clang-tidy] Handle constructors in performance-unnecessary-value-param
Malcolm Parsons
2017-01-03
1
-28
/
+17
*
[clang-tidy] Remove duplicated check from move-constructor-init
Malcolm Parsons
2016-12-17
1
-1
/
+1
*
[clang-tidy] Do not move parameter if only DeclRefExpr occurs inside of a loop
Felix Berger
2016-12-16
1
-0
/
+13
*
[clang-tidy] Suggest including <cmath> if necessary in type-promotion-in-math...
Justin Lebar
2016-12-14
2
-10
/
+50
*
[ClangTidy] Add new performance-type-promotion-in-math-fn check.
Justin Lebar
2016-12-14
4
-2
/
+217
[next]