pyslang-dev 10.0.0.dev20260218__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyslang_dev-10.0.0.dev20260218/.clang-format +125 -0
- pyslang_dev-10.0.0.dev20260218/.clang-tidy +54 -0
- pyslang_dev-10.0.0.dev20260218/.editorconfig +9 -0
- pyslang_dev-10.0.0.dev20260218/.flake8 +3 -0
- pyslang_dev-10.0.0.dev20260218/.git_archival.txt +4 -0
- pyslang_dev-10.0.0.dev20260218/.gitattributes +2 -0
- pyslang_dev-10.0.0.dev20260218/.gitignore +34 -0
- pyslang_dev-10.0.0.dev20260218/.lcovrc +54 -0
- pyslang_dev-10.0.0.dev20260218/.pre-commit-config.yaml +71 -0
- pyslang_dev-10.0.0.dev20260218/.vscode/extensions.json +5 -0
- pyslang_dev-10.0.0.dev20260218/.vscode/settings.json +6 -0
- pyslang_dev-10.0.0.dev20260218/CHANGELOG.md +1236 -0
- pyslang_dev-10.0.0.dev20260218/CMakeLists.txt +263 -0
- pyslang_dev-10.0.0.dev20260218/CMakePresets.json +251 -0
- pyslang_dev-10.0.0.dev20260218/CODE_OF_CONDUCT.md +69 -0
- pyslang_dev-10.0.0.dev20260218/CONTRIBUTING.md +37 -0
- pyslang_dev-10.0.0.dev20260218/LICENSE +19 -0
- pyslang_dev-10.0.0.dev20260218/LICENSES/BSL-1.0.txt +7 -0
- pyslang_dev-10.0.0.dev20260218/LICENSES/MIT.txt +9 -0
- pyslang_dev-10.0.0.dev20260218/PKG-INFO +202 -0
- pyslang_dev-10.0.0.dev20260218/README.md +155 -0
- pyslang_dev-10.0.0.dev20260218/REUSE.toml +28 -0
- pyslang_dev-10.0.0.dev20260218/bindings/CMakeLists.txt +85 -0
- pyslang_dev-10.0.0.dev20260218/bindings/generate_stubs.cmake +66 -0
- pyslang_dev-10.0.0.dev20260218/bindings/python/ASTBindings.cpp +491 -0
- pyslang_dev-10.0.0.dev20260218/bindings/python/AnalysisBindings.cpp +361 -0
- pyslang_dev-10.0.0.dev20260218/bindings/python/CompBindings.cpp +341 -0
- pyslang_dev-10.0.0.dev20260218/bindings/python/ExpressionBindings.cpp +276 -0
- pyslang_dev-10.0.0.dev20260218/bindings/python/NumericBindings.cpp +364 -0
- pyslang_dev-10.0.0.dev20260218/bindings/python/PyVisitors.h +58 -0
- pyslang_dev-10.0.0.dev20260218/bindings/python/StatementBindings.cpp +192 -0
- pyslang_dev-10.0.0.dev20260218/bindings/python/SymbolBindings.cpp +709 -0
- pyslang_dev-10.0.0.dev20260218/bindings/python/SyntaxBindings.cpp +586 -0
- pyslang_dev-10.0.0.dev20260218/bindings/python/TypeBindings.cpp +318 -0
- pyslang_dev-10.0.0.dev20260218/bindings/python/UtilBindings.cpp +355 -0
- pyslang_dev-10.0.0.dev20260218/bindings/python/pyslang.cpp +75 -0
- pyslang_dev-10.0.0.dev20260218/bindings/python/pyslang.h +450 -0
- pyslang_dev-10.0.0.dev20260218/cmake/coverage.cmake +33 -0
- pyslang_dev-10.0.0.dev20260218/cmake/gitversion.cmake +172 -0
- pyslang_dev-10.0.0.dev20260218/cmake/gitversion.cmake.in +32 -0
- pyslang_dev-10.0.0.dev20260218/cmake/install-rules.cmake +67 -0
- pyslang_dev-10.0.0.dev20260218/cmake/slangConfig.cmake.in +10 -0
- pyslang_dev-10.0.0.dev20260218/codecov.yml +35 -0
- pyslang_dev-10.0.0.dev20260218/docs/CMakeLists.txt +100 -0
- pyslang_dev-10.0.0.dev20260218/docs/Doxyfile.in +2937 -0
- pyslang_dev-10.0.0.dev20260218/docs/api-reference.dox +17 -0
- pyslang_dev-10.0.0.dev20260218/docs/building.dox +211 -0
- pyslang_dev-10.0.0.dev20260218/docs/command-line-ref.dox +742 -0
- pyslang_dev-10.0.0.dev20260218/docs/common-components.dox +89 -0
- pyslang_dev-10.0.0.dev20260218/docs/cppreference-doxygen-web.tag.xml +60341 -0
- pyslang_dev-10.0.0.dev20260218/docs/developer-guide.dox +19 -0
- pyslang_dev-10.0.0.dev20260218/docs/diagnostics.dox +67 -0
- pyslang_dev-10.0.0.dev20260218/docs/enums.dox +1322 -0
- pyslang_dev-10.0.0.dev20260218/docs/grammar.md +1977 -0
- pyslang_dev-10.0.0.dev20260218/docs/index.html +84 -0
- pyslang_dev-10.0.0.dev20260218/docs/language-support.dox +529 -0
- pyslang_dev-10.0.0.dev20260218/docs/namespaces.dox +87 -0
- pyslang_dev-10.0.0.dev20260218/docs/parsing.dox +180 -0
- pyslang_dev-10.0.0.dev20260218/docs/source-management.dox +56 -0
- pyslang_dev-10.0.0.dev20260218/docs/tools.dox +16 -0
- pyslang_dev-10.0.0.dev20260218/docs/user-manual.dox +375 -0
- pyslang_dev-10.0.0.dev20260218/external/BS_thread_pool.hpp +2373 -0
- pyslang_dev-10.0.0.dev20260218/external/CMakeLists.txt +270 -0
- pyslang_dev-10.0.0.dev20260218/external/boost_concurrent.hpp +16181 -0
- pyslang_dev-10.0.0.dev20260218/external/boost_unordered.hpp +12527 -0
- pyslang_dev-10.0.0.dev20260218/external/expected.hpp +3637 -0
- pyslang_dev-10.0.0.dev20260218/external/ieee1800/sv_vpi_user.h +580 -0
- pyslang_dev-10.0.0.dev20260218/external/ieee1800/svdpi.h +504 -0
- pyslang_dev-10.0.0.dev20260218/external/ieee1800/vpi_compatibility.h +145 -0
- pyslang_dev-10.0.0.dev20260218/external/ieee1800/vpi_user.h +970 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/analysis/AbstractFlowAnalysis.h +1077 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/analysis/AnalysisManager.h +280 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/analysis/AnalysisOptions.h +54 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/analysis/AnalyzedAssertion.h +77 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/analysis/AnalyzedProcedure.h +76 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/analysis/CaseDecisionDag.h +58 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/analysis/ClockInference.h +82 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/analysis/DFAResults.h +149 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/analysis/DataFlowAnalysis.h +597 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/analysis/DriverTracker.h +127 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/analysis/ValueDriver.h +143 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/ASTContext.h +557 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/ASTDiagMap.h +34 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/ASTSerializer.h +195 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/ASTVisitor.h +545 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/Bitstream.h +78 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/Compilation.h +1044 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/Constraints.h +349 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/EvalContext.h +197 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/Expression.h +472 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/HierarchicalReference.h +83 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/InstanceCacheKey.h +48 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/LSPUtilities.h +276 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/LValue.h +127 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/Lookup.h +351 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/OpaqueInstancePath.h +86 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/Patterns.h +291 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/SFormat.h +64 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/Scope.h +327 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/ScriptSession.h +60 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/SemanticFacts.h +209 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/Statement.h +327 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/Symbol.h +324 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/SystemSubroutine.h +198 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/TimingControl.h +381 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/TypeProvider.h +74 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/expressions/AssertionExpr.h +788 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/expressions/AssignmentExpressions.h +408 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/expressions/CallExpression.h +184 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/expressions/ConversionExpression.h +78 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/expressions/LiteralExpressions.h +196 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/expressions/MiscExpressions.h +488 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/expressions/Operator.h +120 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/expressions/OperatorExpressions.h +440 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/expressions/SelectExpressions.h +180 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/statements/ConditionalStatements.h +213 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/statements/LoopStatements.h +311 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/statements/MiscStatements.h +513 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/AttributeSymbol.h +52 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/BlockSymbols.h +175 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/CheckerSymbols.h +124 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/ClassSymbols.h +377 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/CompilationUnitSymbols.h +351 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/CoverSymbols.h +513 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/InstanceSymbols.h +378 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/MemberSymbols.h +638 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/ParameterSymbols.h +173 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/PortSymbols.h +230 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/SpecifySymbols.h +211 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/SubroutineSymbols.h +266 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/SymbolBuilders.h +87 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/ValueSymbol.h +83 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/symbols/VariableSymbols.h +305 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/types/AllTypes.h +624 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/types/DeclaredType.h +236 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/types/NetType.h +106 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/types/Type.h +381 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/ast/types/TypePrinter.h +133 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/diagnostics/DiagArgFormatter.h +27 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/diagnostics/DiagnosticClient.h +52 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/diagnostics/DiagnosticEngine.h +319 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/diagnostics/Diagnostics.h +235 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/diagnostics/JsonDiagnosticClient.h +32 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/diagnostics/TextDiagnosticClient.h +67 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/driver/Driver.h +453 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/driver/SourceLoader.h +254 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/numeric/ConstantValue.h +391 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/numeric/MathUtils.h +71 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/numeric/SVInt.h +717 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/numeric/Time.h +77 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/parsing/Lexer.h +224 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/parsing/LexerFacts.h +61 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/parsing/NumberParser.h +197 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/parsing/Parser.h +522 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/parsing/ParserBase.h +244 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/parsing/ParserMetadata.h +80 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/parsing/Preprocessor.h +507 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/parsing/Token.h +226 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/syntax/CSTSerializer.h +40 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/syntax/SyntaxFacts.h +339 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/syntax/SyntaxNode.h +535 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/syntax/SyntaxPrinter.h +149 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/syntax/SyntaxTree.h +269 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/syntax/SyntaxVisitor.h +264 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/text/CharInfo.h +206 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/text/FormatBuffer.h +55 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/text/Glob.h +72 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/text/Json.h +96 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/text/SourceLocation.h +247 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/text/SourceManager.h +381 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/Bag.h +88 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/BumpAllocator.h +148 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/CommandLine.h +500 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/ConcurrentMap.h +30 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/CopyPtr.h +115 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/Enum.h +200 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/FlatMap.h +29 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/Function.h +59 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/Hash.h +296 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/IntervalMap.h +1777 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/Iterator.h +445 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/LanguageVersion.h +29 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/OS.h +84 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/PointerIntPair.h +62 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/PoolAllocator.h +76 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/Random.h +43 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/ScopeGuard.h +43 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/SmallMap.h +139 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/SmallVector.h +899 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/String.h +99 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/TimeTrace.h +80 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/TypeTraits.h +88 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/Util.h +231 -0
- pyslang_dev-10.0.0.dev20260218/include/slang/util/VersionInfo.h +32 -0
- pyslang_dev-10.0.0.dev20260218/pyproject.toml +65 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/docs/conf.py +30 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/docs/pages/index.rst +95 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/examples/README.md +26 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/examples/driver.py +33 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/examples/extract_logic_names.py +262 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/pyslang/__init__.py +14 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/pyslang/py.typed +0 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/tests/some_file.svh +1 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/tests/test_accessing_spans.py +59 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/tests/test_analysis.py +419 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/tests/test_basics.py +160 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/tests/test_cst_json.py +239 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/tests/test_custom_systasks.py +61 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/tests/test_diags.py +28 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/tests/test_extract_comments.py +75 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/tests/test_extract_logic_names.py +214 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/tests/test_lexer.py +49 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/tests/test_syntax_factory.py +359 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/tests/test_syntax_rewriter.py +469 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/tests/test_syntax_tree_equality.py +146 -0
- pyslang_dev-10.0.0.dev20260218/pyslang/tests/test_visitors.py +127 -0
- pyslang_dev-10.0.0.dev20260218/scripts/diagnostic_gen.py +468 -0
- pyslang_dev-10.0.0.dev20260218/scripts/diagnostics.txt +1261 -0
- pyslang_dev-10.0.0.dev20260218/scripts/grammar.txt +2700 -0
- pyslang_dev-10.0.0.dev20260218/scripts/grammar_gen.py +69 -0
- pyslang_dev-10.0.0.dev20260218/scripts/reconstruct_from_json.py +128 -0
- pyslang_dev-10.0.0.dev20260218/scripts/sv-lang.pc.in +10 -0
- pyslang_dev-10.0.0.dev20260218/scripts/syntax.txt +2386 -0
- pyslang_dev-10.0.0.dev20260218/scripts/syntax_gen.py +1356 -0
- pyslang_dev-10.0.0.dev20260218/scripts/systemnames.txt +303 -0
- pyslang_dev-10.0.0.dev20260218/scripts/tokenkinds.txt +352 -0
- pyslang_dev-10.0.0.dev20260218/scripts/triviakinds.txt +9 -0
- pyslang_dev-10.0.0.dev20260218/scripts/warning_docs.txt +1967 -0
- pyslang_dev-10.0.0.dev20260218/scripts/win32.manifest +9 -0
- pyslang_dev-10.0.0.dev20260218/slang.natvis +52 -0
- pyslang_dev-10.0.0.dev20260218/source/CMakeLists.txt +230 -0
- pyslang_dev-10.0.0.dev20260218/source/analysis/AbstractFlowAnalysis.cpp +292 -0
- pyslang_dev-10.0.0.dev20260218/source/analysis/AnalysisManager.cpp +435 -0
- pyslang_dev-10.0.0.dev20260218/source/analysis/AnalysisScopeVisitor.h +422 -0
- pyslang_dev-10.0.0.dev20260218/source/analysis/AnalyzedAssertion.cpp +951 -0
- pyslang_dev-10.0.0.dev20260218/source/analysis/AnalyzedProcedure.cpp +210 -0
- pyslang_dev-10.0.0.dev20260218/source/analysis/CaseDecisionDag.cpp +116 -0
- pyslang_dev-10.0.0.dev20260218/source/analysis/ClockInference.cpp +183 -0
- pyslang_dev-10.0.0.dev20260218/source/analysis/DFAResults.cpp +258 -0
- pyslang_dev-10.0.0.dev20260218/source/analysis/DataFlowAnalysis.cpp +133 -0
- pyslang_dev-10.0.0.dev20260218/source/analysis/DriverTracker.cpp +925 -0
- pyslang_dev-10.0.0.dev20260218/source/analysis/ValueDriver.cpp +83 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/ASTContext.cpp +578 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/ASTDiagMap.cpp +127 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/ASTSerializer.cpp +398 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/Bitstream.cpp +975 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/CMakeLists.txt +77 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/Compilation.cpp +2717 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/Constraints.cpp +621 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/ElabVisitors.h +739 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/EvalContext.cpp +213 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/Expression.cpp +1586 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/FmtHelpers.cpp +393 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/FmtHelpers.h +45 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/HierarchicalReference.cpp +73 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/InstanceCacheKey.cpp +114 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/LSPUtilities.cpp +384 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/LValue.cpp +330 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/Lookup.cpp +2422 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/OpaqueInstancePath.cpp +84 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/Patterns.cpp +517 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/SFormat.cpp +585 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/Scope.cpp +1551 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/ScriptSession.cpp +135 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/SemanticFacts.cpp +412 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/Statement.cpp +787 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/Symbol.cpp +329 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/SystemSubroutine.cpp +116 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/TimingControl.cpp +668 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/TypeProvider.cpp +78 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/builtins/ArrayMethods.cpp +1125 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/builtins/Builtins.h +113 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/builtins/ConversionFuncs.cpp +176 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/builtins/CoverageFuncs.cpp +114 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/builtins/EnumMethods.cpp +220 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/builtins/GateTypes.cpp +67 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/builtins/MathFuncs.cpp +283 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/builtins/MiscSystemFuncs.cpp +465 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/builtins/NonConstFuncs.cpp +672 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/builtins/QueryFuncs.cpp +566 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/builtins/StdPackage.cpp +190 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/builtins/StringMethods.cpp +288 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/builtins/SystemTasks.cpp +1036 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/expressions/AssertionExpr.cpp +1726 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/expressions/AssignmentExpressions.cpp +1748 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/expressions/CallExpression.cpp +926 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/expressions/ConversionExpression.cpp +786 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/expressions/LiteralExpressions.cpp +331 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/expressions/MiscExpressions.cpp +1697 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/expressions/Operator.cpp +598 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/expressions/OperatorExpressions.cpp +2580 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/expressions/SelectExpressions.cpp +1364 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/statements/ConditionalStatements.cpp +658 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/statements/LoopStatements.cpp +684 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/statements/MiscStatements.cpp +811 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/AttributeSymbol.cpp +129 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/BlockSymbols.cpp +900 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/CheckerSymbols.cpp +899 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/ClassSymbols.cpp +1408 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/CompilationUnitSymbols.cpp +691 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/CoverSymbols.cpp +1209 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/InstanceSymbols.cpp +1945 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/MemberSymbols.cpp +2478 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/ParameterBuilder.cpp +339 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/ParameterBuilder.h +65 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/ParameterSymbols.cpp +625 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/PortSymbols.cpp +1943 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/SpecifySymbols.cpp +1034 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/SubroutineSymbols.cpp +1291 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/SymbolBuilders.cpp +113 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/ValueSymbol.cpp +60 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/symbols/VariableSymbols.cpp +740 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/types/AllTypes.cpp +1371 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/types/DeclaredType.cpp +547 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/types/NetType.cpp +288 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/types/Type.cpp +1354 -0
- pyslang_dev-10.0.0.dev20260218/source/ast/types/TypePrinter.cpp +561 -0
- pyslang_dev-10.0.0.dev20260218/source/diagnostics/DiagnosticClient.cpp +78 -0
- pyslang_dev-10.0.0.dev20260218/source/diagnostics/DiagnosticEngine.cpp +708 -0
- pyslang_dev-10.0.0.dev20260218/source/diagnostics/Diagnostics.cpp +188 -0
- pyslang_dev-10.0.0.dev20260218/source/diagnostics/JsonDiagnosticClient.cpp +87 -0
- pyslang_dev-10.0.0.dev20260218/source/diagnostics/TextDiagnosticClient.cpp +363 -0
- pyslang_dev-10.0.0.dev20260218/source/driver/Driver.cpp +1368 -0
- pyslang_dev-10.0.0.dev20260218/source/driver/SourceLoader.cpp +556 -0
- pyslang_dev-10.0.0.dev20260218/source/numeric/ConstantValue.cpp +725 -0
- pyslang_dev-10.0.0.dev20260218/source/numeric/SVInt.cpp +2492 -0
- pyslang_dev-10.0.0.dev20260218/source/numeric/SVIntHelpers.h +795 -0
- pyslang_dev-10.0.0.dev20260218/source/numeric/Time.cpp +185 -0
- pyslang_dev-10.0.0.dev20260218/source/parsing/Lexer.cpp +1628 -0
- pyslang_dev-10.0.0.dev20260218/source/parsing/LexerFacts.cpp +1067 -0
- pyslang_dev-10.0.0.dev20260218/source/parsing/NumberParser.cpp +327 -0
- pyslang_dev-10.0.0.dev20260218/source/parsing/Parser.cpp +1556 -0
- pyslang_dev-10.0.0.dev20260218/source/parsing/ParserBase.cpp +268 -0
- pyslang_dev-10.0.0.dev20260218/source/parsing/ParserMetadata.cpp +223 -0
- pyslang_dev-10.0.0.dev20260218/source/parsing/Parser_expressions.cpp +1810 -0
- pyslang_dev-10.0.0.dev20260218/source/parsing/Parser_members.cpp +4017 -0
- pyslang_dev-10.0.0.dev20260218/source/parsing/Parser_statements.cpp +1040 -0
- pyslang_dev-10.0.0.dev20260218/source/parsing/Preprocessor.cpp +1388 -0
- pyslang_dev-10.0.0.dev20260218/source/parsing/Preprocessor_macros.cpp +1017 -0
- pyslang_dev-10.0.0.dev20260218/source/parsing/Preprocessor_pragmas.cpp +583 -0
- pyslang_dev-10.0.0.dev20260218/source/parsing/Token.cpp +586 -0
- pyslang_dev-10.0.0.dev20260218/source/syntax/CSTSerializer.cpp +207 -0
- pyslang_dev-10.0.0.dev20260218/source/syntax/SyntaxFacts.cpp +1513 -0
- pyslang_dev-10.0.0.dev20260218/source/syntax/SyntaxNode.cpp +282 -0
- pyslang_dev-10.0.0.dev20260218/source/syntax/SyntaxPrinter.cpp +301 -0
- pyslang_dev-10.0.0.dev20260218/source/syntax/SyntaxTree.cpp +261 -0
- pyslang_dev-10.0.0.dev20260218/source/syntax/SyntaxVisitor.cpp +168 -0
- pyslang_dev-10.0.0.dev20260218/source/text/CharInfo.cpp +328 -0
- pyslang_dev-10.0.0.dev20260218/source/text/Glob.cpp +343 -0
- pyslang_dev-10.0.0.dev20260218/source/text/Json.cpp +180 -0
- pyslang_dev-10.0.0.dev20260218/source/text/SourceLocation.cpp +15 -0
- pyslang_dev-10.0.0.dev20260218/source/text/SourceManager.cpp +808 -0
- pyslang_dev-10.0.0.dev20260218/source/util/BumpAllocator.cpp +74 -0
- pyslang_dev-10.0.0.dev20260218/source/util/CommandLine.cpp +921 -0
- pyslang_dev-10.0.0.dev20260218/source/util/IntervalMap.cpp +125 -0
- pyslang_dev-10.0.0.dev20260218/source/util/OS.cpp +396 -0
- pyslang_dev-10.0.0.dev20260218/source/util/SmallVector.cpp +19 -0
- pyslang_dev-10.0.0.dev20260218/source/util/String.cpp +136 -0
- pyslang_dev-10.0.0.dev20260218/source/util/TimeTrace.cpp +159 -0
- pyslang_dev-10.0.0.dev20260218/source/util/Util.cpp +54 -0
- pyslang_dev-10.0.0.dev20260218/source/util/VersionInfo.cpp.in +31 -0
- pyslang_dev-10.0.0.dev20260218/tests/CMakeLists.txt +7 -0
- pyslang_dev-10.0.0.dev20260218/tests/regression/CMakeLists.txt +43 -0
- pyslang_dev-10.0.0.dev20260218/tests/regression/all.sv +524 -0
- pyslang_dev-10.0.0.dev20260218/tests/regression/delayed_reg.v +7 -0
- pyslang_dev-10.0.0.dev20260218/tests/regression/wire_module.v +5 -0
- pyslang_dev-10.0.0.dev20260218/tests/snippets.md +57 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/CMakeLists.txt +90 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/DriverTests.cpp +1056 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/FileTests.cpp +226 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/Test.cpp +209 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/Test.h +133 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/analysis/AnalysisTests.h +34 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/analysis/AssertionAnalysisTests.cpp +2412 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/analysis/CaseAnalysisTests.cpp +667 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/analysis/DFATests.cpp +898 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/analysis/MultiAssignTests.cpp +1583 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/analysis/PortAnalysisTests.cpp +160 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/analysis/UnusedTests.cpp +673 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/AssertionTests.cpp +1802 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/CheckerTests.cpp +1094 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/ClassTests.cpp +3724 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/ConfigTests.cpp +1315 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/CoverTests.cpp +801 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/EvalTests.cpp +2652 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/ExpressionTests.cpp +3824 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/HierarchyTests.cpp +2331 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/InterfaceTests.cpp +942 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/LookupTests.cpp +2637 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/MemberTests.cpp +2322 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/ParameterTests.cpp +1515 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/PortTests.cpp +1789 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/PrimitiveTests.cpp +757 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/SerializerTests.cpp +1843 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/StatementTests.cpp +2202 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/SubroutineTests.cpp +683 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/SystemFuncTests.cpp +1508 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/TypeTests.cpp +2422 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/ast/WarningTests.cpp +736 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/another_systemverilog.sv +9 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/cmd.f +2 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/cmd2.f +1 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/cmd3.f +3 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/cmd4.f +1 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/dup_pkg.sv +8 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/file_defn.svh +2 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/file_uses_define_in_file_with_no_eol.sv +5 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/file_uses_defn.svh +2 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/file_with_no_eol.sv +1 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/include.svh +4 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/include_once.svh +2 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/infinite.f +1 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/infinite.map +1 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/infinite_chain.svh +1 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/library/lib.map +3 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/library/libmod.qv +16 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/library/other.sv +5 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/library/pkg.sv +5 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/libtest/mod1.sv +2 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/libtest/mod2.sv +2 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/libtest/testlib.map +2 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/libtest/top.sv +3 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/local.svh +2 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/nested/file.svh +2 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/nested/macro.svh +1 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/nested/nested_local.svh +1 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/system/system.map +1 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/system/system.svh +1 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/systemverilog.sv +15 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/test.sv +14 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/test2.sv +4 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/test3.sv +8 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/test4.sv +17 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/test5.sv +4 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/test6.sv +6 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/test7.sv +3 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/unit.f +5 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/data/verilog.v +11 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/main.cpp +27 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/parsing/DiagnosticTests.cpp +782 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/parsing/ExpressionParsingTests.cpp +1029 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/parsing/LexerTests.cpp +1360 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/parsing/MemberParsingTests.cpp +1608 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/parsing/PreprocessorTests.cpp +3042 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/parsing/RewriterExpandTests.cpp +267 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/parsing/StatementParsingTests.cpp +344 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/parsing/SyntaxPrinterTests.cpp +248 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/parsing/VisitorTests.cpp +931 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/util/CommandLineTests.cpp +644 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/util/IntervalMapTests.cpp +271 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/util/NumericTests.cpp +850 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/util/SmallVectorTests.cpp +1448 -0
- pyslang_dev-10.0.0.dev20260218/tests/unittests/util/UtilTests.cpp +99 -0
- pyslang_dev-10.0.0.dev20260218/tools/CMakeLists.txt +14 -0
- pyslang_dev-10.0.0.dev20260218/tools/driver/CMakeLists.txt +27 -0
- pyslang_dev-10.0.0.dev20260218/tools/driver/slang_main.cpp +309 -0
- pyslang_dev-10.0.0.dev20260218/tools/hier/CMakeLists.txt +19 -0
- pyslang_dev-10.0.0.dev20260218/tools/hier/README.md +33 -0
- pyslang_dev-10.0.0.dev20260218/tools/hier/hier.cpp +139 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/CMakeLists.txt +27 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/README.md +350 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/include/ASTVisitors.h +43 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/include/CppEmitter.h +108 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/include/SvEnum.h +23 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/include/SvGeneric.h +141 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/include/SvLocalParam.h +25 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/include/SvStruct.h +26 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/include/SvType.h +42 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/include/SvTypeReflector.h +32 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/include/SvUnion.h +23 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/src/SvEnum.cpp +111 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/src/SvLocalParam.cpp +82 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/src/SvStruct.cpp +276 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/src/SvType.cpp +71 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/src/SvTypeReflector.cpp +98 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/src/SvUnion.cpp +215 -0
- pyslang_dev-10.0.0.dev20260218/tools/reflect/src/reflect.cpp +101 -0
- pyslang_dev-10.0.0.dev20260218/tools/rewriter/CMakeLists.txt +11 -0
- pyslang_dev-10.0.0.dev20260218/tools/rewriter/README.md +33 -0
- pyslang_dev-10.0.0.dev20260218/tools/rewriter/rewriter.cpp +176 -0
- pyslang_dev-10.0.0.dev20260218/tools/threadtest/CMakeLists.txt +26 -0
- pyslang_dev-10.0.0.dev20260218/tools/threadtest/README.md +12 -0
- pyslang_dev-10.0.0.dev20260218/tools/threadtest/threadtest.cpp +66 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/CMakeLists.txt +54 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/README.md +106 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/include/ASTHelperVisitors.h +144 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/include/TidyConfig.h +180 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/include/TidyConfigParser.h +124 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/include/TidyConfigPrinter.h +63 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/include/TidyDiags.h +37 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/include/TidyFactory.h +147 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/include/TidyKind.h +35 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/ASTHelperVisitors.cpp +31 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/TidyConfig.cpp +113 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/TidyConfigParser.cpp +545 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/style/AlwaysCombNamed.cpp +58 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/style/AlwaysCombNonBlocking.cpp +61 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/style/AlwaysFFBlocking.cpp +72 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/style/EnforceModuleInstantiationPrefix.cpp +64 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/style/EnforcePortPrefix.cpp +86 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/style/EnforcePortSuffix.cpp +87 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/style/GenerateNamed.cpp +64 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/style/NoDotStarInPortConnection.cpp +65 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/style/NoDotVarInPortConnection.cpp +74 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/style/NoImplicitPortNameInPortConnection.cpp +71 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/style/NoLegacyGenerate.cpp +65 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/style/NoOldAlwaysSyntax.cpp +71 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/style/OnlyANSIPortDecl.cpp +52 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/synthesis/AlwaysFFAssignmentOutsideConditional.cpp +120 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/synthesis/CastSignedIndex.cpp +58 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/synthesis/LoopBeforeResetCheck.cpp +210 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/synthesis/NoLatchesOnDesign.cpp +66 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/synthesis/OnlyAssignedOnReset.cpp +159 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/synthesis/RegisterHasNoReset.cpp +179 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/synthesis/UndrivenRange.cpp +117 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/synthesis/UnusedSensitiveSignal.cpp +102 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/synthesis/XilinxDoNotCareValues.cpp +69 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/src/tidy.cpp +319 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/AlwaysCombNamedTest.cpp +50 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/AlwaysCombNonBlockingTest.cpp +30 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/AlwaysFFAssignmentOutsideConditionalTest.cpp +46 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/AlwaysFFBlockingTest.cpp +46 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/CMakeLists.txt +47 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/CastSignedIndexTest.cpp +36 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/EnforceModuleInstantiationTest.cpp +30 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/EnforcePortPrefixTest.cpp +155 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/EnforcePortSuffixTest.cpp +151 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/GenerateNamedTest.cpp +124 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/LoopBeforeResetCheckTest.cpp +169 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/NoDotStarInPortConnectionTest.cpp +32 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/NoDotVarInPortConnectionTest.cpp +45 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/NoImplicitPortNameInPortConnectionTest.cpp +33 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/NoLatchesOnDesignTest.cpp +34 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/NoLegacyGenerateTest.cpp +85 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/NoOldAlwaysSyntaxTest.cpp +138 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/OnlyANSIPortDecl.cpp +39 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/OnlyAssignedOnResetTest.cpp +219 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/PrintConfigTest.cpp +44 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/RegisterHasNoResetTest.cpp +207 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/TidyConfigParserTest.cpp +263 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/TidyTest.h +51 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/UndrivenRangeTest.cpp +119 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/UnusedSensitiveSignalTest.cpp +124 -0
- pyslang_dev-10.0.0.dev20260218/tools/tidy/tests/XilinxDoNotCareValuesTest.cpp +41 -0
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
---
|
|
2
|
+
Language: Cpp
|
|
3
|
+
AccessModifierOffset: -4
|
|
4
|
+
AlignAfterOpenBracket: Align
|
|
5
|
+
AlignConsecutiveAssignments: false
|
|
6
|
+
AlignConsecutiveBitFields: false
|
|
7
|
+
AlignConsecutiveDeclarations: false
|
|
8
|
+
AlignConsecutiveMacros: false
|
|
9
|
+
AlignEscapedNewlines: Left
|
|
10
|
+
AlignOperands: true
|
|
11
|
+
AlignTrailingComments: true
|
|
12
|
+
AllowAllArgumentsOnNextLine: true
|
|
13
|
+
AllowAllParametersOfDeclarationOnNextLine: true
|
|
14
|
+
AllowShortBlocksOnASingleLine: Never
|
|
15
|
+
AllowShortCaseLabelsOnASingleLine: false
|
|
16
|
+
AllowShortEnumsOnASingleLine: true
|
|
17
|
+
AllowShortFunctionsOnASingleLine: InlineOnly
|
|
18
|
+
AllowShortIfStatementsOnASingleLine: Never
|
|
19
|
+
AllowShortLambdasOnASingleLine: All
|
|
20
|
+
AllowShortLoopsOnASingleLine: false
|
|
21
|
+
AlwaysBreakAfterReturnType: None
|
|
22
|
+
AlwaysBreakBeforeMultilineStrings: false
|
|
23
|
+
AlwaysBreakTemplateDeclarations: Yes
|
|
24
|
+
BinPackArguments: true
|
|
25
|
+
BinPackParameters: true
|
|
26
|
+
BitFieldColonSpacing: Both
|
|
27
|
+
BraceWrapping:
|
|
28
|
+
AfterCaseLabel: false
|
|
29
|
+
AfterClass: false
|
|
30
|
+
AfterControlStatement: false
|
|
31
|
+
AfterEnum: false
|
|
32
|
+
AfterFunction: false
|
|
33
|
+
AfterNamespace: false
|
|
34
|
+
AfterObjCDeclaration: false
|
|
35
|
+
AfterStruct: false
|
|
36
|
+
AfterUnion: false
|
|
37
|
+
AfterExternBlock: false
|
|
38
|
+
BeforeCatch: true
|
|
39
|
+
BeforeElse: true
|
|
40
|
+
BeforeLambdaBody: false
|
|
41
|
+
BeforeWhile: false
|
|
42
|
+
IndentBraces: false
|
|
43
|
+
SplitEmptyFunction: true
|
|
44
|
+
SplitEmptyRecord: true
|
|
45
|
+
SplitEmptyNamespace: true
|
|
46
|
+
BreakAfterJavaFieldAnnotations: false
|
|
47
|
+
BreakBeforeBinaryOperators: None
|
|
48
|
+
BreakBeforeBraces: Custom
|
|
49
|
+
#BreakBeforeConceptDeclarations: Always
|
|
50
|
+
BreakBeforeTernaryOperators: true
|
|
51
|
+
BreakConstructorInitializers: AfterColon
|
|
52
|
+
BreakStringLiterals: true
|
|
53
|
+
ColumnLimit: 100
|
|
54
|
+
CompactNamespaces: false
|
|
55
|
+
ConstructorInitializerIndentWidth: 4
|
|
56
|
+
ContinuationIndentWidth: 4
|
|
57
|
+
Cpp11BracedListStyle: true
|
|
58
|
+
DeriveLineEnding: false
|
|
59
|
+
DerivePointerAlignment: false
|
|
60
|
+
DisableFormat: false
|
|
61
|
+
EmptyLineAfterAccessModifier: Never
|
|
62
|
+
EmptyLineBeforeAccessModifier: LogicalBlock
|
|
63
|
+
FixNamespaceComments: true
|
|
64
|
+
IncludeBlocks: Regroup
|
|
65
|
+
IncludeCategories:
|
|
66
|
+
- Regex: '^"slang/'
|
|
67
|
+
Priority: 2
|
|
68
|
+
- Regex: '.*'
|
|
69
|
+
Priority: 1
|
|
70
|
+
IncludeIsMainRegex: '$'
|
|
71
|
+
IndentAccessModifiers: false
|
|
72
|
+
IndentCaseBlocks: false
|
|
73
|
+
IndentCaseLabels: true
|
|
74
|
+
IndentExternBlock: NoIndent
|
|
75
|
+
IndentGotoLabels: true
|
|
76
|
+
IndentPPDirectives: AfterHash
|
|
77
|
+
#IndentRequiresClause: true
|
|
78
|
+
IndentWidth: 4
|
|
79
|
+
IndentWrappedFunctionNames: false
|
|
80
|
+
KeepEmptyLinesAtTheStartOfBlocks: true
|
|
81
|
+
LambdaBodyIndentation: Signature
|
|
82
|
+
MaxEmptyLinesToKeep: 1
|
|
83
|
+
NamespaceIndentation: None
|
|
84
|
+
PackConstructorInitializers: BinPack
|
|
85
|
+
PenaltyBreakAssignment: 50
|
|
86
|
+
PenaltyBreakBeforeFirstCallParameter: 50
|
|
87
|
+
PenaltyBreakComment: 300
|
|
88
|
+
PenaltyBreakFirstLessLess: 120
|
|
89
|
+
PenaltyBreakString: 1000
|
|
90
|
+
PenaltyExcessCharacter: 1000000
|
|
91
|
+
PenaltyReturnTypeOnItsOwnLine: 600
|
|
92
|
+
PointerAlignment: Left
|
|
93
|
+
QualifierAlignment: Leave
|
|
94
|
+
ReferenceAlignment: Left
|
|
95
|
+
ReflowComments: true
|
|
96
|
+
#RequiresClausePosition: WithPreceding
|
|
97
|
+
SortIncludes: CaseSensitive
|
|
98
|
+
SortUsingDeclarations: true
|
|
99
|
+
SpaceAfterCStyleCast: false
|
|
100
|
+
SpaceAfterLogicalNot: false
|
|
101
|
+
SpaceAfterTemplateKeyword: false
|
|
102
|
+
SpaceBeforeAssignmentOperators: true
|
|
103
|
+
SpaceBeforeCaseColon: false
|
|
104
|
+
SpaceBeforeCpp11BracedList: false
|
|
105
|
+
SpaceBeforeCtorInitializerColon: true
|
|
106
|
+
SpaceBeforeInheritanceColon: true
|
|
107
|
+
SpaceBeforeParens: ControlStatements
|
|
108
|
+
SpaceBeforeRangeBasedForLoopColon: true
|
|
109
|
+
SpaceBeforeSquareBrackets: false
|
|
110
|
+
SpaceInEmptyBlock: false
|
|
111
|
+
SpaceInEmptyParentheses: false
|
|
112
|
+
SpacesBeforeTrailingComments: 1
|
|
113
|
+
SpacesInAngles: Never
|
|
114
|
+
SpacesInCStyleCastParentheses: false
|
|
115
|
+
SpacesInConditionalStatement: false
|
|
116
|
+
SpacesInContainerLiterals: false
|
|
117
|
+
SpacesInParentheses: false
|
|
118
|
+
SpacesInSquareBrackets: false
|
|
119
|
+
Standard: Latest
|
|
120
|
+
TabWidth: 4
|
|
121
|
+
UseTab: Never
|
|
122
|
+
...
|
|
123
|
+
---
|
|
124
|
+
Language: Json
|
|
125
|
+
BasedOnStyle: llvm
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
Checks: >
|
|
2
|
+
-*,
|
|
3
|
+
clang-analyzer-*,
|
|
4
|
+
bugprone-*,
|
|
5
|
+
performance-*,
|
|
6
|
+
modernize-*,
|
|
7
|
+
portability-*,
|
|
8
|
+
misc-*,
|
|
9
|
+
-modernize-use-auto,
|
|
10
|
+
-modernize-use-trailing-return-type,
|
|
11
|
+
-modernize-raw-string-literal,
|
|
12
|
+
-modernize-use-nodiscard,
|
|
13
|
+
-modernize-avoid-c-arrays,
|
|
14
|
+
-modernize-use-emplace,
|
|
15
|
+
-modernize-return-braced-init-list,
|
|
16
|
+
-modernize-loop-convert,
|
|
17
|
+
-modernize-use-designated-initializers,
|
|
18
|
+
-modernize-use-ranges,
|
|
19
|
+
-modernize-use-integer-sign-comparison,
|
|
20
|
+
-bugprone-suspicious-semicolon,
|
|
21
|
+
-bugprone-branch-clone,
|
|
22
|
+
-bugprone-sizeof-expression,
|
|
23
|
+
-bugprone-easily-swappable-parameters,
|
|
24
|
+
-bugprone-implicit-widening-of-multiplication-result,
|
|
25
|
+
-bugprone-not-null-terminated-result,
|
|
26
|
+
-bugprone-unchecked-optional-access,
|
|
27
|
+
-bugprone-assignment-in-if-condition,
|
|
28
|
+
-bugprone-switch-missing-default-case,
|
|
29
|
+
-bugprone-suspicious-stringview-data-usage,
|
|
30
|
+
-bugprone-return-const-ref-from-parameter,
|
|
31
|
+
-bugprone-exception-escape,
|
|
32
|
+
-clang-analyzer-cplusplus.NewDelete*,
|
|
33
|
+
-clang-analyzer-cplusplus.InnerPointer,
|
|
34
|
+
-clang-analyzer-core.NullDereference,
|
|
35
|
+
-clang-analyzer-core.NonNullParamChecker,
|
|
36
|
+
-clang-analyzer-core.UndefinedBinaryOperatorResult,
|
|
37
|
+
-clang-analyzer-core.CallAndMessage,
|
|
38
|
+
-clang-analyzer-core.uninitialized.Assign,
|
|
39
|
+
-clang-analyzer-core.uninitialized.UndefReturn,
|
|
40
|
+
-clang-analyzer-optin.cplusplus.UninitializedObject,
|
|
41
|
+
-clang-analyzer-security.ArrayBound,
|
|
42
|
+
-misc-non-private-member-variables-in-classes,
|
|
43
|
+
-misc-no-recursion,
|
|
44
|
+
-misc-const-correctness,
|
|
45
|
+
-misc-use-anonymous-namespace,
|
|
46
|
+
-misc-include-cleaner,
|
|
47
|
+
-misc-header-include-cycle,
|
|
48
|
+
-misc-use-internal-linkage,
|
|
49
|
+
-misc-confusable-identifiers,
|
|
50
|
+
-performance-no-int-to-ptr,
|
|
51
|
+
-performance-enum-size,
|
|
52
|
+
-portability-simd-intrinsics,
|
|
53
|
+
-portability-template-virtual-member-function,
|
|
54
|
+
-performance-unnecessary-value-param
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Python ignores.
|
|
2
|
+
.pytest_cache/
|
|
3
|
+
.venv/
|
|
4
|
+
venv/
|
|
5
|
+
.cache/
|
|
6
|
+
.DS_Store
|
|
7
|
+
__pycache__/
|
|
8
|
+
*.pyc
|
|
9
|
+
*.pyo
|
|
10
|
+
*.pyd
|
|
11
|
+
_version.py
|
|
12
|
+
__init__.pyi
|
|
13
|
+
|
|
14
|
+
# C and CMake ignores.
|
|
15
|
+
build/
|
|
16
|
+
install/
|
|
17
|
+
compile_commands.json
|
|
18
|
+
CMakeSettings.json
|
|
19
|
+
*egg-info/
|
|
20
|
+
cmake-build-*/
|
|
21
|
+
prefix/
|
|
22
|
+
CMakeLists.txt.user
|
|
23
|
+
CMakeUserPresets.json
|
|
24
|
+
.ccls
|
|
25
|
+
|
|
26
|
+
# Editor ignores.
|
|
27
|
+
.vscode/
|
|
28
|
+
!.vscode/settings.json
|
|
29
|
+
!.vscode/extensions.json
|
|
30
|
+
|
|
31
|
+
.idea/
|
|
32
|
+
.vs/
|
|
33
|
+
*.code-workspace
|
|
34
|
+
.claude
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
#
|
|
2
|
+
# lcovrc - settings for LCOV
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
# Specify if geninfo should try to automatically determine the base-directory
|
|
6
|
+
# when collecting coverage data.
|
|
7
|
+
geninfo_auto_base = 1
|
|
8
|
+
|
|
9
|
+
# Use gcov intermediate format? Valid values are 0, 1, auto
|
|
10
|
+
geninfo_intermediate = auto
|
|
11
|
+
|
|
12
|
+
# Specify if exception branches should be excluded from branch coverage.
|
|
13
|
+
no_exception_branch = 1
|
|
14
|
+
|
|
15
|
+
# Location of the insmod tool
|
|
16
|
+
lcov_insmod_tool = /sbin/insmod
|
|
17
|
+
|
|
18
|
+
# Location of the modprobe tool
|
|
19
|
+
lcov_modprobe_tool = /sbin/modprobe
|
|
20
|
+
|
|
21
|
+
# Location of the rmmod tool
|
|
22
|
+
lcov_rmmod_tool = /sbin/rmmod
|
|
23
|
+
|
|
24
|
+
# Location for temporary directories
|
|
25
|
+
lcov_tmp_dir = /tmp
|
|
26
|
+
|
|
27
|
+
# Show full paths during list operation if non-zero (same as --list-full-path
|
|
28
|
+
# option of lcov)
|
|
29
|
+
lcov_list_full_path = 0
|
|
30
|
+
|
|
31
|
+
# Specify the maximum width for list output. This value is ignored when
|
|
32
|
+
# lcov_list_full_path is non-zero.
|
|
33
|
+
lcov_list_width = 80
|
|
34
|
+
|
|
35
|
+
# Specify the maximum percentage of file names which may be truncated when
|
|
36
|
+
# choosing a directory prefix in list output. This value is ignored when
|
|
37
|
+
# lcov_list_full_path is non-zero.
|
|
38
|
+
lcov_list_truncate_max = 20
|
|
39
|
+
|
|
40
|
+
# Specify if function coverage data should be collected and processed.
|
|
41
|
+
function_coverage = 1
|
|
42
|
+
|
|
43
|
+
# Specify if branch coverage data should be collected and processed.
|
|
44
|
+
branch_coverage = 0
|
|
45
|
+
|
|
46
|
+
geninfo_unexecuted_blocks = 1
|
|
47
|
+
|
|
48
|
+
# Add project-specific exclusions for the SLANG_UNREACHABLE macro
|
|
49
|
+
# since that branch is by design never reachable in real code,
|
|
50
|
+
# and for a 'default' case block that is empty since it's very
|
|
51
|
+
# irritating to see missed coverage on that line -- either the remaining
|
|
52
|
+
# block is also missed or it's an empty case and we don't care.
|
|
53
|
+
omit_lines = SLANG_UNREACHABLE
|
|
54
|
+
omit_lines = default:$
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# To use:
|
|
2
|
+
#
|
|
3
|
+
# pre-commit run -a
|
|
4
|
+
#
|
|
5
|
+
# Or:
|
|
6
|
+
#
|
|
7
|
+
# pre-commit install # (runs every time you commit in git)
|
|
8
|
+
#
|
|
9
|
+
# To update this file:
|
|
10
|
+
#
|
|
11
|
+
# pre-commit autoupdate
|
|
12
|
+
#
|
|
13
|
+
# See https://github.com/pre-commit/pre-commit
|
|
14
|
+
|
|
15
|
+
ci:
|
|
16
|
+
autoupdate_commit_msg: "chore: update pre-commit hooks"
|
|
17
|
+
autofix_commit_msg: "style: pre-commit fixes"
|
|
18
|
+
|
|
19
|
+
exclude: grammar.md
|
|
20
|
+
|
|
21
|
+
repos:
|
|
22
|
+
# Standard hooks
|
|
23
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
24
|
+
rev: v6.0.0
|
|
25
|
+
hooks:
|
|
26
|
+
- id: check-case-conflict
|
|
27
|
+
- id: check-merge-conflict
|
|
28
|
+
- id: check-yaml
|
|
29
|
+
args: [--allow-multiple-documents]
|
|
30
|
+
- id: debug-statements
|
|
31
|
+
- id: end-of-file-fixer
|
|
32
|
+
- id: fix-byte-order-marker
|
|
33
|
+
- id: mixed-line-ending
|
|
34
|
+
args: [--fix,lf]
|
|
35
|
+
- id: trailing-whitespace
|
|
36
|
+
|
|
37
|
+
# Black, the python code formatter
|
|
38
|
+
- repo: https://github.com/psf/black-pre-commit-mirror
|
|
39
|
+
rev: 26.1.0
|
|
40
|
+
hooks:
|
|
41
|
+
- id: black
|
|
42
|
+
exclude: ^(docs)
|
|
43
|
+
|
|
44
|
+
# flake8 for python linting
|
|
45
|
+
- repo: https://github.com/pycqa/flake8
|
|
46
|
+
rev: 7.3.0
|
|
47
|
+
hooks:
|
|
48
|
+
- id: flake8
|
|
49
|
+
additional_dependencies: [flake8-bugbear]
|
|
50
|
+
|
|
51
|
+
# Sort your python imports in a standard form
|
|
52
|
+
- repo: https://github.com/PyCQA/isort
|
|
53
|
+
rev: 7.0.0
|
|
54
|
+
hooks:
|
|
55
|
+
- id: isort
|
|
56
|
+
|
|
57
|
+
# CMake formatting
|
|
58
|
+
- repo: https://github.com/cheshirekow/cmake-format-precommit
|
|
59
|
+
rev: v0.6.13
|
|
60
|
+
hooks:
|
|
61
|
+
- id: cmake-format
|
|
62
|
+
additional_dependencies: [pyyaml]
|
|
63
|
+
types: [file]
|
|
64
|
+
files: (\.cmake|CMakeLists.txt)(.in)?$
|
|
65
|
+
|
|
66
|
+
# clang-format
|
|
67
|
+
- repo: https://github.com/pre-commit/mirrors-clang-format
|
|
68
|
+
rev: v21.1.8
|
|
69
|
+
hooks:
|
|
70
|
+
- id: clang-format
|
|
71
|
+
exclude: ^external/.*
|