| /llvm-project-15.0.7/compiler-rt/test/fuzzer/ |
| H A D | DeepRecursionTest.cpp | 14 void Recursive(const uint8_t *Data, size_t Size, int Depth) { in Recursive() function 18 Recursive(Data + 1, Size - 1, Depth + 1); in Recursive() 23 Recursive(Data, Size, 0); in LLVMFuzzerTestOneInput()
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | new-ctor-recursive.cpp | 20 Recursive enumerator 31 case ConstructionKind::Recursive: { // Call one more operator new 'r'ecursively. in S() 113 s = new (nullptr) S(ConstructionKind::Recursive); in testChainedOperatorNew()
|
| /llvm-project-15.0.7/clang/test/Parser/ |
| H A D | opencl-unroll-hint.cl | 14 if (i) { parse_order_error(); } // Recursive call silences unrelated diagnostic about nomerge. 17 if (i) { parse_order_error(); } // Recursive call silences unrelated diagnostic about nomerge. 20 while (1) { parse_order_error(); } // Recursive call silences unrelated diagnostic about nomerge.
|
| /llvm-project-15.0.7/llvm/test/MC/Mips/ |
| H A D | set-sym-recursive.s | 4 # CHECK: :[[@LINE-1]]:9: error: Recursive use of 'A'
|
| /llvm-project-15.0.7/llvm/test/Analysis/StackSafetyAnalysis/Inputs/ |
| H A D | ipa.ll | 85 ; Recursive function that passes %acc unchanged => access range [0, 4). 105 ; Recursive function that advances %acc on each iteration => access range unlimited.
|
| /llvm-project-15.0.7/llvm/test/MC/ARM/ |
| H A D | thumb_set-diagnostics.s | 61 @ CHECK: error: Recursive use of 'recursive_use'
|
| /llvm-project-15.0.7/llvm/tools/llvm-extract/ |
| H A D | llvm-extract.cpp | 63 Recursive("recursive", cl::desc("Recursively extract all called functions"), variable 275 if (Recursive) { in main()
|
| /llvm-project-15.0.7/llvm/test/Transforms/SampleProfile/ |
| H A D | early-inline.ll | 39 ; Recursive calls should not be early-inlined.
|
| /llvm-project-15.0.7/polly/cmake/ |
| H A D | polly_macros.cmake | 75 # Recursive helper for setup_source_group. Traverse the file system and add
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | DebugInfoFlags.def | 88 HANDLE_DISP_FLAG((1u << 7), Recursive)
|
| /llvm-project-15.0.7/clang/unittests/ASTMatchers/ |
| H A D | ASTMatchersNarrowingTest.cpp | 211 DeclarationMatcher Recursive = in TEST_P() local 228 Recursive)); in TEST_P() 242 Recursive)); in TEST_P() 260 Recursive)); in TEST_P() 268 DeclarationMatcher Recursive = recordDecl( in TEST_P() local 275 EXPECT_TRUE(matches("class F {};", Recursive)); in TEST_P() 276 EXPECT_TRUE(matches("class Z {};", Recursive)); in TEST_P() 277 EXPECT_TRUE(matches("class C {};", Recursive)); in TEST_P() 278 EXPECT_TRUE(matches("class M { class N { class X {}; }; };", Recursive)); in TEST_P() 279 EXPECT_TRUE(matches("class M { class N { class B {}; }; };", Recursive)); in TEST_P() [all …]
|
| /llvm-project-15.0.7/llvm/test/Feature/ |
| H A D | recursivetype.ll | 20 ; // Recursive list search fn
|
| /llvm-project-15.0.7/llvm/lib/Transforms/IPO/ |
| H A D | PartialInlining.cpp | 1495 bool Recursive = false; in run() local 1499 Recursive = true; in run() 1502 if (Recursive) in run()
|
| /llvm-project-15.0.7/flang/lib/Parser/ |
| H A D | program-parsers.cpp | 477 construct<PrefixSpec>(construct<PrefixSpec::Recursive>("RECURSIVE"_tok))))
|
| H A D | unparse.cpp | 1719 void Post(const PrefixSpec::Recursive) { Word("RECURSIVE"); } in Post() argument
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaTemplateInstantiateDecl.cpp | 4794 bool Recursive, in InstantiateFunctionDefinition() argument 4849 (Function->isConstexpr() && !Recursive)) { in InstantiateFunctionDefinition() 4852 assert(!Recursive); in InstantiateFunctionDefinition() 4894 /*Enabled=*/Recursive); in InstantiateFunctionDefinition() 5396 VarDecl *Var, bool Recursive, in InstantiateVariableDefinition() argument 5443 /*Enabled=*/Recursive); in InstantiateVariableDefinition() 5542 /*Enabled=*/Recursive); in InstantiateVariableDefinition()
|
| H A D | SemaDeclObjC.cpp | 4275 bool Recursive; member in __anon33d50cbb0711::OverrideSearch 4409 Recursive = true; in search()
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/Bufferization/Transforms/ |
| H A D | Passes.td | 237 * Recursive or circular function call graphs are not supported.
|
| /llvm-project-15.0.7/flang/include/flang/Parser/ |
| H A D | dump-parse-tree.h | 595 NODE(PrefixSpec, Recursive) in NODE()
|
| H A D | parse-tree.h | 3027 EMPTY_CLASS(Recursive); 3029 Pure, Recursive>
|
| /llvm-project-15.0.7/mlir/docs/ |
| H A D | DialectConversion.md | 127 ### Recursive Legality
|
| H A D | AttributesAndTypes.md | 1032 /// Creates an instance of the Recursive type. This only takes the type name
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | TargetInfo.cpp | 10142 enum Status {NonRecursive, Recursive, Incomplete, IncompleteUsed}; enumerator 10261 assert( (E.Str.empty() || E.State == Recursive) && in addIncomplete() 10295 E.State = Recursive; in removeIncomplete() 10309 assert(E.State==Recursive && E.Str.size() == Str.size() && in addIfComplete() 10318 E.State = IsRecursive? Recursive : NonRecursive; in addIfComplete() 10331 if (E.State == Recursive && IncompleteCount) in lookupStr()
|
| /llvm-project-15.0.7/llvm/docs/tutorial/MyFirstLanguageFrontend/ |
| H A D | LangImpl02.rst | 18 The parser we will build uses a combination of `Recursive Descent
|
| H A D | LangImpl07.rst | 280 # Recursive fib, we could do this before.
|