| /llvm-project-15.0.7/llvm/test/Transforms/LoopStrengthReduce/ |
| H A D | pr3086.ll | 5 %struct.Cls = type { i32, i8, [2 x %struct.Cls*], [2 x %struct.Lit*] } 6 %struct.Lit = type { i8 } 13 %0 = load %struct.Lit*, %struct.Lit** %storemerge, align 8 ; <%struct.Lit*> [#uses=0] 19 …%storemerge = getelementptr %struct.Lit*, %struct.Lit** null, i64 %storemerge.rec ; <%struct.Lit*… 20 %1 = icmp ugt %struct.Lit** null, %storemerge ; <i1> [#uses=1]
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/ |
| H A D | SuspiciousMissingCommaCheck.cpp | 22 const StringLiteral *Lit) { in isConcatenatedLiteralsOnPurpose() argument 27 auto Parents = Ctx->getParents(*Lit); in isConcatenatedLiteralsOnPurpose() 42 SourceLocation FirstToken = Lit->getStrTokenLoc(0); in isConcatenatedLiteralsOnPurpose() 46 for (unsigned int TokNum = 1; TokNum < Lit->getNumConcatenated(); ++TokNum) { in isConcatenatedLiteralsOnPurpose() 47 SourceLocation Token = Lit->getStrTokenLoc(TokNum); in isConcatenatedLiteralsOnPurpose()
|
| H A D | StringConstructorCheck.cpp | 165 const auto *Lit = Result.Nodes.getNodeAs<IntegerLiteral>("int"); in check() local 166 if (Lit->getValue().ugt(Str->getLength())) { in check()
|
| /llvm-project-15.0.7/clang/lib/Analysis/FlowSensitive/ |
| H A D | WatchedLiteralsSolver.cpp | 622 bool watchedByUnitClause(Literal Lit) const { in watchedByUnitClause() 633 assert(Clause.front() == Lit); in watchedByUnitClause() 649 bool isCurrentlyFalse(Literal Lit) const { in isCurrentlyFalse() 651 static_cast<int8_t>(Lit & 1); in isCurrentlyFalse() 655 bool isWatched(Literal Lit) const { in isWatched() 656 return Formula.WatchedHead[Lit] != NullClause; in isWatched() 669 for (Literal Lit = 2; Lit < Formula.WatchedHead.size(); Lit++) { in watchedLiterals() local 670 if (Formula.WatchedHead[Lit] == NullClause) in watchedLiterals() 672 WatchedLiterals.insert(Lit); in watchedLiterals() 698 for (Literal Lit : watchedLiterals()) { in unassignedVarsFormingWatchedLiteralsAreActive() local [all …]
|
| /llvm-project-15.0.7/libcxxabi/test/configs/ |
| H A D | cmake-bridge.cfg.in | 6 # This file performs the bridge between the CMake configuration and the Lit 7 # configuration files by setting up the LitConfig object and various Lit 11 # loading the file and then setting up the remaining Lit substitutions. 26 # TODO: This is a non-standard Lit attribute and we should have another way of accessing this.
|
| /llvm-project-15.0.7/clang/test/CXX/drs/ |
| H A D | dr13xx.cpp | 282 struct Lit { constexpr operator int() const { return 0; } }; in operator int() argument 293 constexpr A<Lit, Lit, Lit> ce = Lit(); 294 constexpr int k = ce.f(Lit{}); 305 A<Lit, NonConstexprConv, Lit> b = NonConstexprConv();
|
| /llvm-project-15.0.7/libcxx/test/configs/ |
| H A D | cmake-bridge.cfg.in | 6 # This file performs the bridge between the CMake configuration and the Lit 7 # configuration files by setting up the LitConfig object and various Lit 11 # loading the file and then setting up the remaining Lit substitutions.
|
| /llvm-project-15.0.7/libunwind/test/configs/ |
| H A D | cmake-bridge.cfg.in | 6 # This file performs the bridge between the CMake configuration and the Lit 7 # configuration files by setting up the LitConfig object and various Lit 11 # loading the file and then setting up the remaining Lit substitutions.
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | OSLog.cpp | 203 const StringLiteral *Lit = cast<StringLiteral>(StringArg->IgnoreParenCasts()); in computeOSLogBufferLayout() local 204 assert(Lit && (Lit->isOrdinary() || Lit->isUTF8())); in computeOSLogBufferLayout() 205 StringRef Data = Lit->getString(); in computeOSLogBufferLayout()
|
| /llvm-project-15.0.7/clang/unittests/Tooling/ |
| H A D | RecursiveASTVisitorTestPostOrderVisitor.cpp | 43 bool VisitIntegerLiteral(IntegerLiteral *Lit) { in VisitIntegerLiteral() argument 44 VisitedNodes.push_back(toString(Lit->getValue(), 10, false)); in VisitIntegerLiteral()
|
| /llvm-project-15.0.7/llvm/test/Transforms/LoopRotate/ |
| H A D | 2009-01-25-SingleEntryPhi.ll | 5 %struct.Cls = type { i32, i8, [2 x %struct.Cls*], [2 x %struct.Lit*] } 6 %struct.Lit = type { i8 }
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | const-init-cxx11.cpp | 223 struct Lit { struct 224 constexpr Lit() : n(5) {} in Lit() function 231 const Lit &lit = Lit(); 236 const Lit &lit2 = {};
|
| /llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/shtest-not/ |
| H A D | not-calls-diff-with-crash.txt | 1 # Lit's diff is out-of-process, so check that "not --crash diff" fails because
|
| /llvm-project-15.0.7/clang/lib/Parse/ |
| H A D | ParseObjc.cpp | 2806 if (Lit.isInvalid()) { in ParseObjCAtExpression() 2807 return Lit; in ParseObjCAtExpression() 2811 Lit = Actions.ActOnUnaryOp(getCurScope(), OpLoc, Kind, Lit.get()); in ParseObjCAtExpression() 2812 if (Lit.isInvalid()) in ParseObjCAtExpression() 2813 return Lit; in ParseObjCAtExpression() 3348 if (Lit.isInvalid()) in ParseObjCStringLiteral() 3349 return Lit; in ParseObjCStringLiteral() 3373 if (Lit.isInvalid()) { in ParseObjCCharacterLiteral() 3374 return Lit; in ParseObjCCharacterLiteral() 3387 if (Lit.isInvalid()) { in ParseObjCNumericLiteral() [all …]
|
| /llvm-project-15.0.7/clang/test/utils/update_cc_test_checks/ |
| H A D | global-value-regex.test | 13 # Lit was successful. Sanity-check the results with deterministic test order.
|
| H A D | global-hex-value-regex.test | 14 # Lit was successful. Sanity-check the results with deterministic test order.
|
| /llvm-project-15.0.7/libcxx/test/ |
| H A D | CMakeLists.txt | 31 # TODO: Clients using those options should switch to from-scratch Lit configuration files. 86 set(SERIALIZED_LIT_PARAMS "# Lit parameters serialized here for llvm-lit to pick them up\n")
|
| /llvm-project-15.0.7/llvm/utils/lit/ |
| H A D | CMakeLists.txt | 9 # Lit's test suite creates output files next to the sources which makes the
|
| /llvm-project-15.0.7/libunwind/test/ |
| H A D | CMakeLists.txt | 27 set(SERIALIZED_LIT_PARAMS "# Lit parameters serialized here for llvm-lit to pick them up\n")
|
| /llvm-project-15.0.7/flang/test/ |
| H A D | CMakeLists.txt | 2 # for use by Lit, and delegates to LLVM's lit test handlers.
|
| /llvm-project-15.0.7/llvm/utils/release/ |
| H A D | test-release.sh | 469 cmake $TestSuiteSrcDir -G "$generator" -DTEST_SUITE_LIT=$Lit \ 535 Lit=$SandboxDir/bin/lit
|
| /llvm-project-15.0.7/clang-tools-extra/test/ |
| H A D | CMakeLists.txt | 2 # test trees for use by Lit, and delegates to LLVM's lit test handlers.
|
| /llvm-project-15.0.7/libcxxabi/test/ |
| H A D | CMakeLists.txt | 70 set(SERIALIZED_LIT_PARAMS "# Lit parameters serialized here for llvm-lit to pick them up\n")
|
| /llvm-project-15.0.7/libcxx/docs/ |
| H A D | TestingLibcxx.rst | 20 Please see the `Lit Command Guide`_ for more information about LIT. 68 "base" parameters (via Lit substitutions). These base parameters represent things
|
| /llvm-project-15.0.7/llvm/test/CodeGen/ARM/ |
| H A D | none-macho.ll | 12 ; Lit-pool entries need to produce a "$non_lazy_ptr" version of the symbol.
|