Home
last modified time | relevance | path

Searched refs:Recursive (Results 1 – 25 of 28) sorted by relevance

12

/llvm-project-15.0.7/compiler-rt/test/fuzzer/
H A DDeepRecursionTest.cpp14 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 Dnew-ctor-recursive.cpp20 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 Dopencl-unroll-hint.cl14 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 Dset-sym-recursive.s4 # CHECK: :[[@LINE-1]]:9: error: Recursive use of 'A'
/llvm-project-15.0.7/llvm/test/Analysis/StackSafetyAnalysis/Inputs/
H A Dipa.ll85 ; 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 Dthumb_set-diagnostics.s61 @ CHECK: error: Recursive use of 'recursive_use'
/llvm-project-15.0.7/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp63 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 Dearly-inline.ll39 ; Recursive calls should not be early-inlined.
/llvm-project-15.0.7/polly/cmake/
H A Dpolly_macros.cmake75 # Recursive helper for setup_source_group. Traverse the file system and add
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DDebugInfoFlags.def88 HANDLE_DISP_FLAG((1u << 7), Recursive)
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNarrowingTest.cpp211 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 Drecursivetype.ll20 ; // Recursive list search fn
/llvm-project-15.0.7/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp1495 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 Dprogram-parsers.cpp477 construct<PrefixSpec>(construct<PrefixSpec::Recursive>("RECURSIVE"_tok))))
H A Dunparse.cpp1719 void Post(const PrefixSpec::Recursive) { Word("RECURSIVE"); } in Post() argument
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp4794 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 DSemaDeclObjC.cpp4275 bool Recursive; member in __anon33d50cbb0711::OverrideSearch
4409 Recursive = true; in search()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Bufferization/Transforms/
H A DPasses.td237 * Recursive or circular function call graphs are not supported.
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Ddump-parse-tree.h595 NODE(PrefixSpec, Recursive) in NODE()
H A Dparse-tree.h3027 EMPTY_CLASS(Recursive);
3029 Pure, Recursive>
/llvm-project-15.0.7/mlir/docs/
H A DDialectConversion.md127 ### Recursive Legality
H A DAttributesAndTypes.md1032 /// Creates an instance of the Recursive type. This only takes the type name
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DTargetInfo.cpp10142 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 DLangImpl02.rst18 The parser we will build uses a combination of `Recursive Descent
H A DLangImpl07.rst280 # Recursive fib, we could do this before.

12