-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsvc_target.cmake
255 lines (215 loc) · 9.64 KB
/
svc_target.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
#******************************************************************************
# Copyright (c) 2020, Intel Corporation. All rights reserved.
#
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception.
#
# *****************************************************************************
#! sctool_test : register target in sc_tool regression
function(svc_target exe_target)
# Flags:
# REPLACE_CONST_VALUE -- replace constant with its number value if possible
# NO_SVA_GENERATE -- disable SVA generating for SCT assertions
# PORT_MAP_GENERATE -- generate port map file and top module wrapper
# UNSIGNED -- design uses unsigned arithmetic only
# NO_REMOVE_EXTRA_CODE -- disable removing unused variable and extra code
# INIT_LOCAL_VARS -- initialize local variables at declaration with zero
# INIT_RESET_LOCAL_VARS -- initialize CTHREAD reset section local variables
# at declaration with zero
# INIT_LOCAL_REGS -- initialize in reset local variables declared in
# CTHREAD main loop which becomes register
# WILL_FAIL -- test will fail on non-synthesizable code
set(boolOptions REPLACE_CONST_VALUE
NO_SVA_GENERATE
PORT_MAP_GENERATE
UNSIGNED
NO_REMOVE_EXTRA_CODE
INIT_LOCAL_VARS
INIT_RESET_LOCAL_VARS
INIT_LOCAL_REGS
WILL_FAIL)
# Arguments with one value
# GOLDEN -- Path to golden Verilog output for diff
# ELAB_TOP -- Hierarchical name of design top, for example "top.dut.adder"
# MODULE_PREFIX -- Module prefix string
set(oneValueArgs GOLDEN
ELAB_TOP
MODULE_PREFIX)
# Multiple value arguments
set(multiValueArgs "")
# Generate variable-value pairs: PARAM_ELAB_ONLY, PARAM_CONST_PROP, ...
cmake_parse_arguments(PARAM "${boolOptions}" "${oneValueArgs}"
"${multiValueArgs}" ${ARGN} )
if (${PARAM_NO_SVA_GENERATE})
set(NO_SVA_GENERATE -no_sva_generate)
endif()
if (${PARAM_PORT_MAP_GENERATE})
set(PORT_MAP_GENERATE -portmap_generate)
endif()
if (${PARAM_UNSIGNED})
set(UNSIGNED -check_unsigned)
endif()
if (${PARAM_NO_REMOVE_EXTRA_CODE})
set(NO_REMOVE_EXTRA_CODE -no_remove_extra_code)
endif()
if (${PARAM_INIT_LOCAL_VARS})
set(INIT_LOCAL_VARS -init_local_vars)
endif()
if (${PARAM_INIT_RESET_LOCAL_VARS})
set(INIT_RESET_LOCAL_VARS -init_reset_local_vars)
endif()
if (${PARAM_INIT_LOCAL_REGS})
set(INIT_LOCAL_REGS -init_local_regs)
endif()
if (${PARAM_REPLACE_CONST_VALUE})
set(REPLACE_CONST_VALUE -replace_const_value)
endif()
if (PARAM_ELAB_TOP)
set(ELAB_TOP -top ${PARAM_ELAB_TOP})
endif()
if (PARAM_MODULE_PREFIX)
set(MODULE_PREFIX -module_prefix ${PARAM_MODULE_PREFIX})
endif()
# Include directories and options for SC are described in SVCTargets.cmake
target_link_libraries(${exe_target} PRIVATE SVC::systemc)
# Simulation target (exe_target), used for tool tests only
# Add ScTool include to provide access to sct_memory and sct_common
# Add CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES to provide path to standard C++ headers
target_include_directories(${exe_target} PUBLIC
$ENV{ICSC_HOME}/include
$ENV{ICSC_HOME}/include/sctcommon
$ENV{ICSC_HOME}/include/sctmemory
$ENV{ICSC_HOME}/include/sctmemory/utils
${CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES}
)
# __SC_TOOL__ not required for SC simulation target to have sct_assert
# defined as assert that gives line in source code (not in inlined sct_assert)
#target_compile_definitions(${exe_target} PUBLIC __SC_TOOL__)
# Unity file name
set(SCTOOL_INPUT_CPP ${CMAKE_CURRENT_BINARY_DIR}/${exe_target}.sctool.cpp)
# Get properties form exe_target specified in target CMakeList.txt
get_target_property(targetSourceFiles ${exe_target} SOURCES)
get_target_property(targetIncludeDir ${exe_target} INCLUDE_DIRECTORIES)
get_target_property(targetDefinitions ${exe_target} COMPILE_DEFINITIONS)
get_target_property(targetLibraries ${exe_target} LINK_LIBRARIES)
if(SYSTEMC_INCLUDE_DIR)
# Not used
set(INCLUDE_DIRS -I${CMAKE_SOURCE_DIR} -I${SYSTEMC_INCLUDE_DIR}
-I${CMAKE_CURRENT_SOURCE_DIR})
else()
# Specified in sc_tool/CMakeList.txt
get_target_property(svcIncDirs SVC::SCTool INTERFACE_INCLUDE_DIRECTORIES)
if(svcIncDirs)
foreach(loop_var ${svcIncDirs})
set(INCLUDE_DIRS ${INCLUDE_DIRS} -I${loop_var})
endforeach()
endif()
endif()
# User defined includes
if(targetIncludeDir)
foreach(loop_var ${targetIncludeDir})
set(INCLUDE_DIRS ${INCLUDE_DIRS} -I${loop_var})
endforeach()
endif()
# Internal CLang headers
if(CLANG_INT_INC_DIR)
set(INCLUDE_DIRS ${INCLUDE_DIRS} -I${CLANG_INT_INC_DIR})
endif()
# Copy definitions with "-D" for synthesis target
if(targetDefinitions)
foreach(loop_var ${targetDefinitions})
set(COMP_DEFINITIONS ${COMP_DEFINITIONS} -D${loop_var} )
endforeach()
endif()
# Generate absolute paths for user sources
foreach(srcItem ${targetSourceFiles})
get_filename_component(targetSourceAbs ${srcItem} ABSOLUTE)
list(APPEND targetSourcesListAbs ${targetSourceAbs})
endforeach()
# Verilog file name
set(VERILOG_DIR ${CMAKE_CURRENT_BINARY_DIR}/sv_out)
file(MAKE_DIRECTORY ${VERILOG_DIR})
set(VERILOG_OUT ${VERILOG_DIR}/${exe_target}.sv)
# Use SystemC pre-compiled headers
if(DEFINED SYSTEMC_PCH)
set(PCH_OPT -include-pch ${SYSTEMC_PCH})
endif()
# Merge all options
set(TOOL_OPTS
${SCTOOL_INPUT_CPP}
-sv_out ${VERILOG_OUT}
${ELAB_TOP}
${MODULE_PREFIX}
${REPLACE_CONST_VALUE}
${NO_SVA_GENERATE}
${PORT_MAP_GENERATE}
${UNSIGNED}
${NO_REMOVE_EXTRA_CODE}
${INIT_LOCAL_VARS}
${INIT_RESET_LOCAL_VARS}
${INIT_LOCAL_REGS}
--
-D__SC_TOOL__ -D__SC_TOOL_ANALYZE__ -DNDEBUG -DSC_ALLOW_DEPRECATED_IEEE_API
-Wno-logical-op-parentheses
-std=c++17 ${INCLUDE_DIRS} ${COMP_DEFINITIONS}
-I${CMAKE_SOURCE_DIR}/sc_elab2/lib
${PCH_OPT})
# Create string from option list with adding quotes, required for file name with spaces
foreach (TOPT ${TOOL_OPTS})
if (NOT TOPT STREQUAL "-DSC_ENABLE_ASSERTIONS")
set (TOOL_OPTS_STR "${TOOL_OPTS_STR} \"${TOPT}\"")
endif()
endforeach()
# string (REPLACE ";" " " TOOL_OPTS_STR "${TOOL_OPTS}")
# Generate Unity input source file for Clang-based elaborator
file(WRITE ${SCTOOL_INPUT_CPP}
"#include <sc_tool/SCTool.h> \n\n"
"const char* __sctool_args_str = R\"\(${TOOL_OPTS_STR}\)\"; \n\n"
)
# Add all sources
foreach(srcItem ${targetSourcesListAbs})
file(APPEND ${SCTOOL_INPUT_CPP}
"#include \"${srcItem}\"\n")
endforeach()
# Synthesis target
set(exe_target_sctool ${exe_target}_sctool )
add_executable(${exe_target_sctool} ${SCTOOL_INPUT_CPP})
# targetLibraries optional testbench libraries given in target CMakeList.txt
# and SystemC added above
target_link_libraries(${exe_target_sctool} ${targetLibraries} SVC::SCTool)
# Add ScTool include to provide access to sct_memory and sct_common
# Add CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES to provide path to standard C++ headers
target_include_directories(${exe_target_sctool} PUBLIC
$ENV{ICSC_HOME}/include
$ENV{ICSC_HOME}/include/sctcommon
$ENV{ICSC_HOME}/include/sctmemory
$ENV{ICSC_HOME}/include/sctmemory/utils
${CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES}
)
# Copy user includes
if(targetIncludeDir)
target_include_directories(${exe_target_sctool} PRIVATE ${targetIncludeDir})
endif()
# Copy user definitions, add __SC_TOOL__ for synthesis target
if(targetDefinitions)
target_compile_definitions(${exe_target_sctool} PUBLIC __SC_TOOL__
PRIVATE ${targetDefinitions})
else()
target_compile_definitions(${exe_target_sctool} PUBLIC __SC_TOOL__)
endif()
# Create _BUILD target for ctest, build exe_target_sctool
add_test(NAME ${exe_target}_BUILD
COMMAND "${CMAKE_COMMAND}" --build ${CMAKE_BINARY_DIR}
--target ${exe_target_sctool})
# Create _SYN target for ctest, runs elaboration and synthesis
add_test(NAME ${exe_target}_SYN COMMAND ${exe_target_sctool})
# WILL_FAIL -- support tests which contains non-synthesizable code, parameter in svc_target
# DEPENDS -- waiting for BUILD is done
set_tests_properties(${exe_target}_SYN PROPERTIES WILL_FAIL ${PARAM_WILL_FAIL}
DEPENDS ${exe_target}_BUILD)
if (PARAM_GOLDEN)
add_test(NAME ${exe_target}_DIFF COMMAND bash -c
"diff -U 3 -dHrN <(sed '/The code is generated by Intel Compiler for SystemC/d;' ${CMAKE_CURRENT_SOURCE_DIR}/${PARAM_GOLDEN}) <(sed '/The code is generated by Intel Compiler for SystemC/d;' ${VERILOG_OUT}) > ${exe_target}.diff"
)
set_tests_properties(${exe_target}_DIFF PROPERTIES DEPENDS ${exe_target}_SYN)
endif()
endfunction()