| /llvm-project-15.0.7/mlir/lib/Pass/ |
| H A D | Pass.cpp | 88 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 D | function-cognitive-complexity.rst | 70 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 D | function-size.rst | 36 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 D | PassManager.h | 68 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 D | token-sequence.cpp | 337 int nesting{0}; in CheckBadParentheses() local 343 ++nesting; in CheckBadParentheses() 345 --nesting; in CheckBadParentheses() 348 if (nesting != 0) { in CheckBadParentheses()
|
| H A D | preprocessor.cpp | 341 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 D | 2003-04-25-AssertFail.ll | 2 ; Basically, it was incorrectly calculating the loop nesting information.
|
| /llvm-project-15.0.7/clang/test/utils/update_cc_test_checks/ |
| H A D | global-value-regex.test | 11 # Show lit failures while avoiding confusing FileCheck input dump nesting.
|
| H A D | global-hex-value-regex.test | 12 # Show lit failures while avoiding confusing FileCheck input dump nesting.
|
| H A D | check-globals.test | 32 # Show lit failures while avoiding confusing FileCheck input dump nesting.
|
| /llvm-project-15.0.7/llvm/test/Analysis/LoopInfo/ |
| H A D | 2003-02-19-LoopInfoNestingBug.ll | 1 ; LoopInfo is incorrectly calculating loop nesting! In this case it doesn't
|
| /llvm-project-15.0.7/mlir/test/Dialect/Affine/SuperVectorize/ |
| H A D | vectorize_outer_loop_2d.mlir | 28 // vectorization happens because of loop nesting order
|
| H A D | vectorize_outer_loop_transpose_2d.mlir | 17 // vectorization happens because of loop nesting order.
|
| H A D | vectorize_transpose_2d.mlir | 17 // vectorization happens because of loop nesting order.
|
| /llvm-project-15.0.7/mlir/test/Pass/ |
| H A D | dynamic-pipeline-nested.mlir | 16 // scheduling: if we are nesting we expect to see to individual "Dump Before
|
| /llvm-project-15.0.7/mlir/test/IR/ |
| H A D | print-ir-nesting.mlir | 1 // RUN: mlir-opt -test-print-nesting -allow-unregistered-dialect %s | FileCheck %s
|
| /llvm-project-15.0.7/mlir/docs/Tutorials/ |
| H A D | UnderstandingTheIRStructure.md | 90 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 D | shrinkwrapping-do-not-pessimize.s | 5 # 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 D | suspicious-semicolon.rst | 38 While the indentation does not imply any nesting, there is simply no valid
|
| /llvm-project-15.0.7/llvm/test/Transforms/WholeProgramDevirt/ |
| H A D | unique-retval-same-vtable.ll | 3 ; this's vptr against the address of the vtable. When nesting these
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | NewPassManager.rst | 434 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 D | CycleTerminology.rst | 39 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 D | block-var-layout.mm | 93 // Test 5 (unions/structs and their nesting):
|
| /llvm-project-15.0.7/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
| H A D | blocks.mm | 38 void nesting() { function
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/ |
| H A D | make-shared.cpp | 310 void nesting() { in nesting() function
|