Home
last modified time | relevance | path

Searched refs:nesting (Results 1 – 25 of 64) sorted by relevance

123

/llvm-project-15.0.7/mlir/lib/Pass/
H A DPass.cpp88 initializationGeneration(0), nesting(nesting) {} in OpPassManagerImpl()
91 initializationGeneration(0), nesting(nesting) {} in OpPassManagerImpl()
92 OpPassManagerImpl(OpPassManager::Nesting nesting) in OpPassManagerImpl()
93 : initializationGeneration(0), nesting(nesting) {} in OpPassManagerImpl()
97 nesting(rhs.nesting) { in OpPassManagerImpl()
111 return nest(OpPassManager(nestedName, nesting)); in nest()
114 return nest(OpPassManager(nestedName, nesting)); in nest()
171 OpPassManager::Nesting nesting; member
292 OpPassManager::OpPassManager(Nesting nesting) in OpPassManager() argument
293 : impl(new OpPassManagerImpl(nesting)) {} in OpPassManager()
[all …]
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/readability/
H A Dfunction-cognitive-complexity.rst70 While by itself the nesting level does not change the function's Cognitive
72 The following structures increase the nesting level (by `1`):
134 if(var) // +1, nesting level +1
144 if(var1) { // +1, nesting level +1
145 if(var2) // +2 (1 + current nesting level of 1), nesting level +1
155 increase to the complexity of the function and the current nesting level.
H A Dfunction-size.rst36 Flag compound statements which create next nesting level after
38 for macro-heavy code. The default is `-1` (ignore the nesting level).
/llvm-project-15.0.7/mlir/include/mlir/Pass/
H A DPassManager.h68 OpPassManager(Nesting nesting = Nesting::Explicit);
72 OpPassManager(StringRef name, Nesting nesting = Nesting::Explicit);
73 OpPassManager(OperationName name, Nesting nesting = Nesting::Explicit);
167 void setNesting(Nesting nesting);
217 PassManager(MLIRContext *ctx, Nesting nesting = Nesting::Explicit,
/llvm-project-15.0.7/flang/lib/Parser/
H A Dtoken-sequence.cpp337 int nesting{0}; in CheckBadParentheses() local
343 ++nesting; in CheckBadParentheses()
345 --nesting; in CheckBadParentheses()
348 if (nesting != 0) { in CheckBadParentheses()
H A Dpreprocessor.cpp341 for (int nesting{0}; k < tokens; ++k) { in MacroReplacement() local
346 ++nesting; in MacroReplacement()
348 if (nesting == 0) { in MacroReplacement()
351 --nesting; in MacroReplacement()
352 } else if (ch == ',' && nesting == 0) { in MacroReplacement()
677 int nesting{0}; in SkipDisabledConditionalCode() local
687 ++nesting; in SkipDisabledConditionalCode()
689 if (nesting-- == 0) { in SkipDisabledConditionalCode()
692 } else if (isElseActive == IsElseActive::Yes && nesting == 0) { in SkipDisabledConditionalCode()
/llvm-project-15.0.7/llvm/test/Transforms/LoopSimplify/
H A D2003-04-25-AssertFail.ll2 ; Basically, it was incorrectly calculating the loop nesting information.
/llvm-project-15.0.7/clang/test/utils/update_cc_test_checks/
H A Dglobal-value-regex.test11 # Show lit failures while avoiding confusing FileCheck input dump nesting.
H A Dglobal-hex-value-regex.test12 # Show lit failures while avoiding confusing FileCheck input dump nesting.
H A Dcheck-globals.test32 # Show lit failures while avoiding confusing FileCheck input dump nesting.
/llvm-project-15.0.7/llvm/test/Analysis/LoopInfo/
H A D2003-02-19-LoopInfoNestingBug.ll1 ; LoopInfo is incorrectly calculating loop nesting! In this case it doesn't
/llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/
H A Dvectorize_outer_loop_2d.mlir28 // vectorization happens because of loop nesting order
H A Dvectorize_outer_loop_transpose_2d.mlir17 // vectorization happens because of loop nesting order.
H A Dvectorize_transpose_2d.mlir17 // vectorization happens because of loop nesting order.
/llvm-project-15.0.7/mlir/test/Pass/
H A Ddynamic-pipeline-nested.mlir16 // scheduling: if we are nesting we expect to see to individual "Dump Before
/llvm-project-15.0.7/mlir/test/IR/
H A Dprint-ir-nesting.mlir1 // RUN: mlir-opt -test-print-nesting -allow-unregistered-dialect %s | FileCheck %s
/llvm-project-15.0.7/mlir/docs/Tutorials/
H A DUnderstandingTheIRStructure.md90 and can be exercised with `mlir-opt -test-print-nesting`.
95 with `mlir-opt -test-print-nesting -allow-unregistered-dialect
96 llvm-project/mlir/test/IR/print-ir-nesting.mlir`:
/llvm-project-15.0.7/bolt/test/X86/
H A Dshrinkwrapping-do-not-pessimize.s5 # are at the same loop nesting level. This would be a pessimization because
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dsuspicious-semicolon.rst38 While the indentation does not imply any nesting, there is simply no valid
/llvm-project-15.0.7/llvm/test/Transforms/WholeProgramDevirt/
H A Dunique-retval-same-vtable.ll3 ; this's vptr against the address of the vtable. When nesting these
/llvm-project-15.0.7/llvm/docs/
H A DNewPassManager.rst434 The new PM typically requires explicit pass nesting. For example, to run a
449 Improper nesting can lead to error messages such as
456 The nesting is: module (-> cgscc) -> function -> loop, where the CGSCC nesting is optional.
491 that the analysis is run. This pass is also subject to proper nesting. For
H A DCycleTerminology.rst39 follows the nesting of loops in the same function. The unique entry of
211 For any nesting of cycles discovered by the implementation-defined
/llvm-project-15.0.7/clang/test/CodeGenObjCXX/
H A Dblock-var-layout.mm93 // Test 5 (unions/structs and their nesting):
/llvm-project-15.0.7/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dblocks.mm38 void nesting() { function
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Dmake-shared.cpp310 void nesting() { in nesting() function

123