1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| static_library("performance") {
output_name = "clangTidyPerformanceModule"
configs += [ "//llvm/utils/gn/build:clang_code" ]
deps = [
"//clang-tools-extra/clang-tidy",
"//clang-tools-extra/clang-tidy/utils",
"//clang/lib/AST",
"//clang/lib/ASTMatchers",
"//clang/lib/Analysis",
"//clang/lib/Basic",
"//clang/lib/Lex",
"//llvm/lib/Support",
]
sources = [
"FasterStringFindCheck.cpp",
"ForRangeCopyCheck.cpp",
"ImplicitConversionInLoopCheck.cpp",
"InefficientAlgorithmCheck.cpp",
"InefficientStringConcatenationCheck.cpp",
"InefficientVectorOperationCheck.cpp",
"MoveConstArgCheck.cpp",
"MoveConstructorInitCheck.cpp",
"NoexceptMoveConstructorCheck.cpp",
"PerformanceTidyModule.cpp",
"TypePromotionInMathFnCheck.cpp",
"UnnecessaryCopyInitialization.cpp",
"UnnecessaryValueParamCheck.cpp",
]
}
|