Skip to content

Latest commit

 

History

173 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ComplexityAnalysis.Analyzers

English | Português (Brasil)

Build & Tests Quality Gate Status .NET NuGet NuGet Downloads GitHub Release Coverage License: MIT

ComplexityAnalysis.Analyzers is a compile-time Roslyn analyzer for C# that estimates algorithmic complexity and reports diagnostics for costly patterns without adding runtime dependencies or instrumentation to consumer applications.

The analyzer is deliberately conservative: when complexity cannot be proven safely from the available syntax and semantic information, it returns Unknown instead of guessing.

Quick install

When consuming a published package version from NuGet.org:

dotnet add package ComplexityAnalysis.Analyzers

The package works as a compile-time analyzer. After installation, Roslyn loads it during builds and IDE analysis; application code does not call the analyzer and does not take a runtime dependency on it. For local package creation and repository-based consumption, see Getting Started.

Quick example

foreach (var item in items)
{
    if (otherItems.Contains(item))
    {
        // ...
    }
}

When otherItems is a linear-lookup collection such as List<T>, this can report:

BIG1001 - Linear lookup inside iteration

Want to see the analyzer in action? See the runnable sample. For the full rule and configuration reference, start with Getting Started and the Analyzer Catalog.

What it does

  • Estimates Big-O complexity for supported C# methods using Roslyn syntax, symbols, and semantic information.
  • Detects costly operations inside iteration, including linear lookups, collection materialization, and ordering.
  • Understands a documented subset of BCL and LINQ operations by resolved symbol identity rather than method name alone.
  • Performs bounded, demand-driven interprocedural analysis for safe source-method calls in the same compilation.
  • Solves selected direct-recursion recurrence families, including decrement recurrences, simple exponential recursion, Master Theorem forms, and a restricted Akra-Bazzi subset.
  • Measures structural Cyclomatic Complexity independently from Big-O, with standard and Modified McCabe switch accounting.
  • Measures Maximum Control-Flow Nesting Depth independently from Big-O and Cyclomatic Complexity.
  • Measures NLOC, statement count, and token count as independent executable-member size metrics.
  • Measures source-declared Parameter Count independently from all complexity and size metrics.
  • Measures Cognitive Complexity as an independent documented C# control-flow comprehension metric.
  • Defines internal C# Halstead metrics for future reporting/tooling without emitting a public Halstead threshold diagnostic yet.
  • Supports configurable analysis budgets and a maximum-complexity threshold through .editorconfig/analyzer config.
  • Runs as a normal Roslyn analyzer during builds and IDE analysis; consumer code does not call the analyzer at runtime.

Diagnostics

ID Title Category Default severity Enabled by default
BIG0001 Estimated algorithmic complexity Complexity Info No
BIG1001 Linear lookup inside iteration Complexity Info Yes
BIG1002 Materialization inside iteration Complexity Info Yes
BIG1003 Ordering inside iteration Complexity Info Yes
BIG1004 Input-dependent method call inside iteration Complexity Info Yes
BIG1005 Exponential recursive growth Complexity Info Yes
BIG1006 Method complexity exceeds configured threshold Complexity Info Yes
BIG2001 Cyclomatic complexity exceeds configured threshold Complexity Info Yes
BIG2002 Maximum nesting depth exceeds configured threshold Complexity Info Yes
BIG2003 Method NLOC exceeds configured threshold Complexity Info Yes
BIG2004 Statement count exceeds configured threshold Complexity Info Yes
BIG2005 Token count exceeds configured threshold Complexity Info Yes
BIG2006 Parameter count exceeds configured threshold Complexity Info Yes
BIG2007 Cognitive complexity exceeds configured threshold Complexity Info Yes
BIG9000 Analyzer execution probe Infrastructure Info No

BIG0001 is an opt-in informational diagnostic that reports a known method-complexity estimate at the method identifier.

BIG1005 reports supported direct recursive methods whose solved recurrence is exponential, such as Fibonacci-like recursion.

BIG1006 reports when complexity_analyzers.maximum_complexity is configured and a known, comparable estimate exceeds the configured threshold. Unknown and incomparable estimates are not reported.

BIG2001 reports when complexity_analyzers.maximum_cyclomatic_complexity is configured and a supported executable member's structural Cyclomatic Complexity exceeds that maximum. It is independent from Big-O and can use standard or Modified McCabe switch accounting.

BIG2002 reports when complexity_analyzers.maximum_nesting_depth is configured and a supported executable member's Maximum Control-Flow Nesting Depth exceeds that maximum. Straight-line code has depth 0; sibling branches do not accumulate; nested local functions, lambdas, and anonymous methods are analyzed independently.

BIG2003, BIG2004, and BIG2005 report when their matching method-size thresholds are configured and a supported executable member exceeds NLOC, statement-count, or token-count policy. These are size metrics, not Big-O or control-flow metrics.

BIG2006 reports when complexity_analyzers.maximum_parameters is configured and a supported executable member declares more source parameters than allowed. It counts declared parameters, including extension-method this receivers, but not type parameters, captured variables, implicit instance this, or implicit accessor value.

BIG2007 reports when complexity_analyzers.maximum_cognitive_complexity is configured and a supported executable member exceeds this project's documented C# Cognitive Complexity convention. Straight-line code has score 0; structural control-flow breaks and local nesting increase the score.

BIG9000 is an infrastructure probe used to prove that the analyzer package loaded and executed. It is not a performance recommendation.

See the Analyzer Catalog for rule details.

Analysis model

Known BCL and LINQ operations

Known operations are mapped by Roslyn symbol identity. Custom methods named Contains, Where, ToList, or similar are not treated as BCL/LINQ operations unless their resolved symbol belongs to the supported subset.

Implemented examples include:

  • List<T>.Contains, List<T>.IndexOf, List<T>.Sort, List<T>.Count, and the List<T> indexer.
  • Dictionary<TKey,TValue>.ContainsKey and Dictionary<TKey,TValue>.ContainsValue.
  • HashSet<T>.Contains.
  • Array and string Length.
  • LINQ Any, All, Contains, Count, LongCount, ToList, ToArray, ToDictionary, ToHashSet, Sum, Min, Max, and Aggregate.
  • Deferred LINQ operations including Where, Select, SelectMany, OrderBy, OrderByDescending, ThenBy, ThenByDescending, Distinct, and GroupBy.

Deferred LINQ pipeline creation is not charged as a full enumeration. Enumeration cost is counted when a supported terminal operation or foreach consumes the pipeline.

Interprocedural analysis

When a caller invokes a supported source method declared in the same Roslyn Compilation, the analyzer can derive a caller-independent callee template and substitute the caller arguments into that template.

Supported source methods require safe dispatch, such as static methods, private methods, non-virtual methods, or sealed dispatch where the runtime target is proven. Known BCL/LINQ operations take precedence over source-method analysis.

Traversal is demand-driven and bounded. A callee is analyzed only when reached from the current root method. The analyzer does not pre-scan every syntax tree or construct a whole-compilation call graph.

Examples:

A -> B O(n)           => A O(n)
loop n -> B O(n)     => O(n^2)
loop n -> B O(m)     => O(n * m)
B(left) + B(right)   => O(n + m)
B(constant)          => O(1)
A -> B -> C O(log n) => O(log n)

Unsupported, unresolved, unsafe, budget-limited, cancelled, or cyclic calls remain Unknown.

Direct recursion and recurrence solving

The analyzer recognizes direct recursive calls by Roslyn symbol identity and requires compatible base-case evidence before solving a recurrence. Recursive calls in mutually exclusive branches are counted per path, so binary-search-style code remains O(log n) rather than being over-counted as linear.

Supported recurrence families include:

  • decrement/summation forms such as T(n)=T(n-1)+1, T(n)=T(n-1)+n, and T(n)=T(n-1)+log n;
  • simple exponential recursion such as 2T(n-1)+1 and Fibonacci-like T(n-1)+T(n-2)+1;
  • Master Theorem forms such as T(n)=T(n/2)+1, 2T(n/2)+n, 2T(n/2)+n^2, and 3T(n/2)+n;
  • a restricted, bounded Akra-Bazzi subset with scale-only recursive terms and polylogarithmic tolls, for example T(n)=T(n/3)+T(2n/3)+n.

Fractional polynomial powers are represented deterministically, so 3T(n/2)+n reports O(n^1.585).

Missing base cases, non-reducing arguments, unsupported recurrence shapes, unknown local work, numerical inconclusiveness, cancellation, and mutual recursion remain Unknown.

Build from source

Prerequisites:

  • .NET SDK 10.0.400 or a compatible SDK selected by global.json.
  • A shell capable of running dotnet commands.

From the repository root:

dotnet restore ComplexityAnalysis.Analyzers.slnx
dotnet build ComplexityAnalysis.Analyzers.slnx --configuration Release --no-restore
dotnet test ComplexityAnalysis.Analyzers.slnx --configuration Release --no-build
dotnet pack src/ComplexityAnalysis.Analyzers/ComplexityAnalysis.Analyzers.csproj --configuration Release --no-build -p:PackageVersion=0.0.0-local --output artifacts/local-packages

The repository also documents local package creation and consumption. If you are working before a stable NuGet.org package version is available, use the local package flow in Getting Started.

See Getting Started.

Configuration

Analyzer behavior is configurable through Roslyn analyzer config. Diagnostic severities continue to use standard dotnet_diagnostic.<RULE_ID>.severity entries.

[*.cs]

complexity_analyzers.interprocedural_analysis = true
complexity_analyzers.recursion_analysis = true
complexity_analyzers.max_call_depth = 5
complexity_analyzers.max_methods_per_root = 32
complexity_analyzers.maximum_complexity = n_log_n
complexity_analyzers.maximum_cyclomatic_complexity = 10
complexity_analyzers.cyclomatic_complexity_mode = standard
complexity_analyzers.maximum_nesting_depth = 3
complexity_analyzers.maximum_method_nloc = 40
complexity_analyzers.maximum_statement_count = 25
complexity_analyzers.maximum_token_count = 300
complexity_analyzers.maximum_parameters = 5
complexity_analyzers.maximum_cognitive_complexity = 15

dotnet_diagnostic.BIG0001.severity = suggestion
dotnet_diagnostic.BIG1001.severity = warning
dotnet_diagnostic.BIG1002.severity = warning
dotnet_diagnostic.BIG1003.severity = warning
dotnet_diagnostic.BIG1004.severity = warning
dotnet_diagnostic.BIG1005.severity = warning
dotnet_diagnostic.BIG1006.severity = warning
dotnet_diagnostic.BIG2001.severity = warning
dotnet_diagnostic.BIG2002.severity = warning
dotnet_diagnostic.BIG2003.severity = warning
dotnet_diagnostic.BIG2004.severity = warning
dotnet_diagnostic.BIG2005.severity = warning
dotnet_diagnostic.BIG2006.severity = warning
dotnet_diagnostic.BIG2007.severity = warning
dotnet_diagnostic.BIG9000.severity = none

Defaults keep interprocedural and recursion analysis enabled, max_call_depth at 5, max_methods_per_root at 32, maximum_complexity at none, maximum_cyclomatic_complexity unset, cyclomatic_complexity_mode at standard, and all nesting/method-size/parameter/cognitive thresholds unset. Threshold reporting only applies to the configured metric.

See Configuration.

Performance and compatibility

The analyzer is designed to remain bounded and suitable for compiler/IDE execution: no network access, no analyzer hot-path filesystem I/O, no process launch, no telemetry, no mandatory whole-solution scan, bounded source-method traversal, bounded recurrence solving, concurrent execution, generated-code exclusion, and cancellation checks.

The repeatable performance harness is documented in performance/README.md. It validates structural behavior and compiler analyzer execution reporting with ReportAnalyzer=true; elapsed time is informational because hardware and CI runners vary.

CI validates local package consumption on .NET 8, .NET 9, and .NET 10 SDK hosts to catch analyzer loading and compatibility regressions.

Architecture

The package is a compile-time analyzer, not a runtime library:

application source
        |
        | compiled by
        v
Roslyn compiler / IDE host
        |
        | loads
        v
ComplexityAnalysis.Analyzers

The analyzer assembly is packed under:

analyzers/dotnet/cs/

See Architecture.

Documentation

Limitations

  • Source-method analysis is limited to ordinary safe-dispatch methods in the same compilation.
  • There is no whole-compilation or whole-solution call graph.
  • Recurrence solving is limited to supported direct-recursion shapes with base-case evidence.
  • Mutual recursion is detected but not solved.
  • Akra-Bazzi support is a restricted/bounded subset, not the full theorem.
  • General characteristic polynomials, general numerical integration, MathNet, SymPy, and inherited solver projects are not used.
  • No CodeFixProvider is included.
  • Microsoft.CodeAnalysis.Workspaces is not used.
  • Unsupported or unproven behavior prefers Unknown over unsafe guesses.

License

MIT, matching the package license declaration.

About

Roslyn analyzer for C# that estimates algorithmic complexity and detects costly patterns in loops, LINQ, interprocedural calls, and recursion.

Topics

Resources

Code of conduct

Contributing

Security policy

Stars

0 stars

Watchers

0 watching

Forks

Releases

Sponsor this project

Packages

Used by

Contributors

Languages