Skip to content

Commit

Permalink
Merge pull request #4016 from hzeller/feature-20241113-surelog-incs
Browse files Browse the repository at this point in the history
More include fixes, this time missing Surelog includes
  • Loading branch information
hzeller authored Nov 14, 2024
2 parents 21f2bc5 + 7a67a4a commit 5120036
Show file tree
Hide file tree
Showing 55 changed files with 88 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/Surelog/Design/ModuleDefinition.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@
#include <Surelog/Common/NodeId.h>
#include <Surelog/Common/RTTI.h>
#include <Surelog/Common/SymbolId.h>
#include <Surelog/Design/ClockingBlock.h>
#include <Surelog/Design/DesignComponent.h>
#include <Surelog/Design/ModPort.h>
#include <Surelog/Design/Signal.h>
#include <Surelog/SourceCompile/VObjectTypes.h>

#include <cstdint>
Expand Down
2 changes: 2 additions & 0 deletions include/Surelog/DesignCompile/DesignElaboration.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@

#include <Surelog/Common/NodeId.h>
#include <Surelog/Config/Config.h>
#include <Surelog/Design/DesignComponent.h>
#include <Surelog/Design/Signal.h>
#include <Surelog/DesignCompile/TestbenchElaboration.h>

#include <cstdint>
Expand Down
1 change: 1 addition & 0 deletions include/Surelog/DesignCompile/UhdmWriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#define SURELOG_UHDMWRITER_H
#pragma once

#include <Surelog/Common/Containers.h>
#include <Surelog/Common/PathId.h>
#include <Surelog/Design/DesignComponent.h>
#include <Surelog/DesignCompile/CompileHelper.h>
Expand Down
1 change: 1 addition & 0 deletions include/Surelog/Testbench/FunctionMethod.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#pragma once

#include <Surelog/Common/NodeId.h>
#include <Surelog/Design/DataType.h>
#include <Surelog/Design/Function.h>

#include <string_view>
Expand Down
3 changes: 3 additions & 0 deletions src/Cache/PPCache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,19 @@
#include "Surelog/CommandLine/CommandLineParser.h"
#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/PathId.h"
#include "Surelog/Common/SymbolId.h"
#include "Surelog/Design/Design.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/Design/TimeInfo.h"
#include "Surelog/Design/VObject.h"
#include "Surelog/ErrorReporting/ErrorDefinition.h"
#include "Surelog/ErrorReporting/Location.h"
#include "Surelog/Library/Library.h"
#include "Surelog/Package/Precompiled.h"
#include "Surelog/SourceCompile/CompilationUnit.h"
#include "Surelog/SourceCompile/CompileSourceFile.h"
#include "Surelog/SourceCompile/Compiler.h"
#include "Surelog/SourceCompile/IncludeFileInfo.h"
#include "Surelog/SourceCompile/MacroInfo.h"
#include "Surelog/SourceCompile/PreprocessFile.h"
#include "Surelog/SourceCompile/SymbolTable.h"
Expand Down
1 change: 1 addition & 0 deletions src/Cache/PPCache_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
#include <vector>

#include "Surelog/CommandLine/CommandLineParser.h"
#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/PathId.h"
#include "Surelog/Common/PlatformFileSystem.h"
#include "Surelog/Design/Design.h"
Expand Down
2 changes: 2 additions & 0 deletions src/Cache/ParseCache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,11 @@
#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/NodeId.h"
#include "Surelog/Common/PathId.h"
#include "Surelog/Common/SymbolId.h"
#include "Surelog/Design/Design.h"
#include "Surelog/Design/DesignElement.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/Design/VObject.h"
#include "Surelog/ErrorReporting/Error.h"
#include "Surelog/ErrorReporting/ErrorDefinition.h"
#include "Surelog/ErrorReporting/Location.h"
Expand Down
1 change: 1 addition & 0 deletions src/CommandLine/CommandLineParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include <vector>

#include "Surelog/API/PythonAPI.h"
#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/PathId.h"
#include "Surelog/Common/PlatformFileSystem.h"
#include "Surelog/Common/SymbolId.h"
Expand Down
1 change: 1 addition & 0 deletions src/CommandLine/CommandLineParser_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include <string>
#include <vector>

#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/PathId.h"
#include "Surelog/Common/PlatformFileSystem.h"
#include "Surelog/ErrorReporting/ErrorContainer.h"
Expand Down
1 change: 1 addition & 0 deletions src/Common/ClockingBlockHolder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include "Surelog/Common/ClockingBlockHolder.h"

#include "Surelog/Common/SymbolId.h"
#include "Surelog/Design/ClockingBlock.h"

namespace SURELOG {
void ClockingBlockHolder::addClockingBlock(SymbolId blockId,
Expand Down
1 change: 1 addition & 0 deletions src/Common/PathId_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <filesystem>
#include <memory>

#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/PlatformFileSystem.h"
#include "Surelog/SourceCompile/SymbolTable.h"

Expand Down
1 change: 1 addition & 0 deletions src/Common/PlatformFileSystem_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
#include <utility>

#include "Surelog/CommandLine/CommandLineParser.h"
#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/PathId.h"
#include "Surelog/Common/SymbolId.h"
#include "Surelog/Design/Design.h"
Expand Down
1 change: 1 addition & 0 deletions src/Design/DesignComponent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#include <vector>

#include "Surelog/Common/NodeId.h"
#include "Surelog/Design/FileCNodeId.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/Design/Parameter.h"
#include "Surelog/SourceCompile/VObjectTypes.h"
Expand Down
1 change: 1 addition & 0 deletions src/Design/DummyType.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include "Surelog/Design/DummyType.h"

#include "Surelog/Common/NodeId.h"
#include "Surelog/Design/DataType.h"
#include "Surelog/Design/FileContent.h"

// UHDM
Expand Down
1 change: 1 addition & 0 deletions src/Design/Enum.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#include <string_view>

#include "Surelog/Common/NodeId.h"
#include "Surelog/Design/DataType.h"
#include "Surelog/Design/FileContent.h"

namespace SURELOG {
Expand Down
4 changes: 4 additions & 0 deletions src/Design/FileContent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,12 @@
#include <string_view>
#include <vector>

#include "Surelog/Common/Containers.h"
#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/NodeId.h"
#include "Surelog/Common/PathId.h"
#include "Surelog/Common/SymbolId.h"
#include "Surelog/Design/DesignComponent.h"
#include "Surelog/Design/DesignElement.h"
#include "Surelog/ErrorReporting/Error.h"
#include "Surelog/ErrorReporting/ErrorContainer.h"
Expand Down
2 changes: 2 additions & 0 deletions src/Design/ModPort.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

#include "Surelog/Design/ModPort.h"

#include "Surelog/Design/Signal.h"

/*
* File: ModPort.cpp
* Author: alain
Expand Down
3 changes: 3 additions & 0 deletions src/Design/ModuleDefinition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@
#include <string_view>
#include <vector>

#include "Surelog/Design/ClockingBlock.h"
#include "Surelog/Design/DesignComponent.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/Design/ModPort.h"
#include "Surelog/Design/Signal.h"
#include "Surelog/SourceCompile/VObjectTypes.h"

namespace SURELOG {
Expand Down
1 change: 1 addition & 0 deletions src/Design/ModuleInstance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
#include "Surelog/Design/FileContent.h"
#include "Surelog/Design/Netlist.h"
#include "Surelog/Expression/ExprBuilder.h"
#include "Surelog/Expression/Value.h"
#include "Surelog/SourceCompile/SymbolTable.h"
#include "Surelog/SourceCompile/VObjectTypes.h"

Expand Down
1 change: 1 addition & 0 deletions src/Design/Parameter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include <string_view>

#include "Surelog/Common/NodeId.h"
#include "Surelog/Design/DataType.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/SourceCompile/VObjectTypes.h"

Expand Down
1 change: 1 addition & 0 deletions src/Design/SimpleType.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include "Surelog/Design/SimpleType.h"

#include "Surelog/Common/NodeId.h"
#include "Surelog/Design/DataType.h"
#include "Surelog/Design/FileContent.h"

// UHDM
Expand Down
1 change: 1 addition & 0 deletions src/Design/Struct.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include "Surelog/Design/Struct.h"

#include "Surelog/Common/NodeId.h"
#include "Surelog/Design/DataType.h"
#include "Surelog/Design/FileContent.h"

// UHDM
Expand Down
1 change: 1 addition & 0 deletions src/Design/Union.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include "Surelog/Design/Union.h"

#include "Surelog/Common/NodeId.h"
#include "Surelog/Design/DataType.h"
#include "Surelog/Design/FileContent.h"

namespace SURELOG {
Expand Down
1 change: 1 addition & 0 deletions src/DesignCompile/Builtin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include "Surelog/DesignCompile/Builtin.h"

#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/NodeId.h"
#include "Surelog/Common/PathId.h"
#include "Surelog/Design/Design.h"
#include "Surelog/Design/FileContent.h"
Expand Down
1 change: 1 addition & 0 deletions src/DesignCompile/CompileAssertion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
* Created on May 14, 2019, 8:03 PM
*/

#include "Surelog/Common/NodeId.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/DesignCompile/CompileDesign.h"
#include "Surelog/DesignCompile/CompileHelper.h"
Expand Down
2 changes: 2 additions & 0 deletions src/DesignCompile/CompileClass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/NodeId.h"
#include "Surelog/Common/SymbolId.h"
#include "Surelog/Design/FileCNodeId.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/Design/VObject.h"
#include "Surelog/DesignCompile/CompileDesign.h"
#include "Surelog/DesignCompile/CompileHelper.h"
#include "Surelog/ErrorReporting/Error.h"
Expand Down
4 changes: 4 additions & 0 deletions src/DesignCompile/CompileDesign.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
#include "Surelog/DesignCompile/CompileDesign.h"

#include "Surelog/CommandLine/CommandLineParser.h"
#include "Surelog/Common/Containers.h"
#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/SymbolId.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/Design/ModuleDefinition.h"
#include "Surelog/Design/ModuleInstance.h"
Expand All @@ -45,9 +47,11 @@
#include "Surelog/ErrorReporting/ErrorContainer.h"
#include "Surelog/ErrorReporting/ErrorDefinition.h"
#include "Surelog/ErrorReporting/Location.h"
#include "Surelog/Expression/Value.h"
#include "Surelog/Library/Library.h"
#include "Surelog/Package/Package.h"
#include "Surelog/SourceCompile/Compiler.h"
#include "Surelog/SourceCompile/IncludeFileInfo.h"
#include "Surelog/SourceCompile/SymbolTable.h"
#include "Surelog/Testbench/ClassDefinition.h"
#include "Surelog/Testbench/Program.h"
Expand Down
1 change: 1 addition & 0 deletions src/DesignCompile/CompileExpression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

#include "Surelog/CommandLine/CommandLineParser.h"
#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/NodeId.h"
#include "Surelog/Common/PathId.h"
#include "Surelog/Design/Enum.h"
#include "Surelog/Design/FileContent.h"
Expand Down
2 changes: 2 additions & 0 deletions src/DesignCompile/CompileFileContent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
#include <vector>

#include "Surelog/Common/NodeId.h"
#include "Surelog/Design/FileCNodeId.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/Design/VObject.h"
#include "Surelog/DesignCompile/CompileHelper.h"
#include "Surelog/SourceCompile/VObjectTypes.h"

Expand Down
3 changes: 3 additions & 0 deletions src/DesignCompile/CompileHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@

#include "Surelog/CommandLine/CommandLineParser.h"
#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/NodeId.h"
#include "Surelog/Common/PathId.h"
#include "Surelog/Design/DataType.h"
#include "Surelog/Design/DummyType.h"
#include "Surelog/Design/Enum.h"
#include "Surelog/Design/FileCNodeId.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/Design/ModuleDefinition.h"
#include "Surelog/Design/ModuleInstance.h"
Expand All @@ -40,6 +42,7 @@
#include "Surelog/Design/Struct.h"
#include "Surelog/Design/TfPortItem.h"
#include "Surelog/Design/Union.h"
#include "Surelog/Design/VObject.h"
#include "Surelog/DesignCompile/CompileDesign.h"
#include "Surelog/DesignCompile/UhdmWriter.h"
#include "Surelog/ErrorReporting/Error.h"
Expand Down
4 changes: 4 additions & 0 deletions src/DesignCompile/CompileModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,13 @@
#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/NodeId.h"
#include "Surelog/Common/SymbolId.h"
#include "Surelog/Design/ClockingBlock.h"
#include "Surelog/Design/FileCNodeId.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/Design/ModuleDefinition.h"
#include "Surelog/Design/ModuleInstance.h"
#include "Surelog/Design/Signal.h"
#include "Surelog/Design/VObject.h"
#include "Surelog/DesignCompile/CompileDesign.h"
#include "Surelog/DesignCompile/CompileHelper.h"
#include "Surelog/ErrorReporting/Error.h"
Expand Down
1 change: 1 addition & 0 deletions src/DesignCompile/CompilePackage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

#include "Surelog/CommandLine/CommandLineParser.h"
#include "Surelog/Common/NodeId.h"
#include "Surelog/Design/FileCNodeId.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/Design/VObject.h"
#include "Surelog/DesignCompile/CompileDesign.h"
Expand Down
2 changes: 2 additions & 0 deletions src/DesignCompile/CompileProgram.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@

#include "Surelog/CommandLine/CommandLineParser.h"
#include "Surelog/Common/NodeId.h"
#include "Surelog/Design/FileCNodeId.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/Design/VObject.h"
#include "Surelog/DesignCompile/CompileDesign.h"
#include "Surelog/DesignCompile/CompileHelper.h"
#include "Surelog/ErrorReporting/Error.h"
Expand Down
2 changes: 2 additions & 0 deletions src/DesignCompile/CompileStmt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
*/

#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/NodeId.h"
#include "Surelog/Design/BindStmt.h"
#include "Surelog/Design/Design.h"
#include "Surelog/Design/Enum.h"
Expand All @@ -31,6 +32,7 @@
#include "Surelog/Design/ModuleInstance.h"
#include "Surelog/Design/Netlist.h"
#include "Surelog/Design/Task.h"
#include "Surelog/Design/VObject.h"
#include "Surelog/DesignCompile/CompileDesign.h"
#include "Surelog/DesignCompile/CompileHelper.h"
#include "Surelog/DesignCompile/UhdmWriter.h"
Expand Down
2 changes: 2 additions & 0 deletions src/DesignCompile/CompileType.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

#include "Surelog/CommandLine/CommandLineParser.h"
#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/NodeId.h"
#include "Surelog/Design/DataType.h"
#include "Surelog/Design/DummyType.h"
#include "Surelog/Design/Enum.h"
Expand All @@ -33,6 +34,7 @@
#include "Surelog/Design/Netlist.h"
#include "Surelog/Design/ParamAssign.h"
#include "Surelog/Design/Parameter.h"
#include "Surelog/Design/Signal.h"
#include "Surelog/Design/SimpleType.h"
#include "Surelog/Design/Struct.h"
#include "Surelog/Design/Task.h"
Expand Down
2 changes: 2 additions & 0 deletions src/DesignCompile/DesignElaboration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@

#include "Surelog/CommandLine/CommandLineParser.h"
#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/NodeId.h"
#include "Surelog/Common/SymbolId.h"
#include "Surelog/Config/ConfigSet.h"
#include "Surelog/Design/BindStmt.h"
#include "Surelog/Design/DefParam.h"
#include "Surelog/Design/DesignElement.h"
#include "Surelog/Design/FileCNodeId.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/Design/ModuleDefinition.h"
#include "Surelog/Design/ModuleInstance.h"
Expand Down
2 changes: 2 additions & 0 deletions src/DesignCompile/ElaborationStep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,13 @@
#include <vector>

#include "Surelog/CommandLine/CommandLineParser.h"
#include "Surelog/Common/Containers.h"
#include "Surelog/Common/FileSystem.h"
#include "Surelog/Common/NodeId.h"
#include "Surelog/Design/DataType.h"
#include "Surelog/Design/DummyType.h"
#include "Surelog/Design/Enum.h"
#include "Surelog/Design/FileCNodeId.h"
#include "Surelog/Design/FileContent.h"
#include "Surelog/Design/Function.h"
#include "Surelog/Design/ModuleDefinition.h"
Expand Down
Loading

0 comments on commit 5120036

Please sign in to comment.