flgen 0.14.0 → 0.16.0
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.
- checksums.yaml +4 -4
- data/README.md +111 -76
- data/lib/flgen/file_list.rb +84 -47
- data/lib/flgen/file_list_xsim_formatter.rb +31 -0
- data/lib/flgen/formatter.rb +13 -3
- data/lib/flgen/version.rb +1 -1
- data/lib/flgen/vivado_tcl_formatter.rb +54 -0
- data/lib/flgen.rb +2 -0
- metadata +33 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73f400f84753663384d40487070b0cc511740b0084aa9e7ecfea84e845304fcf
|
4
|
+
data.tar.gz: '091045c56dc31bd9f11768c0c94a6451e0dd9872f052c5e199470fa9b5e4e2e7'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz: '
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '066887c84c2348296e9692a620e893f1b0e97087a48f50b4c938baf9e66da27f8206f9ab7012e6ceb4d7c790cc71abfd2d34c0a7b95c7c301e500942ca6f0b43'
|
7
|
+
data.tar.gz: 051a76f99641f3673b777ee7702200b1ea4c11b5512952bd72bbb81c8a54fe440f7ac5a7c11be1c2d4b1b36639c6fee54ee6618e9b92cca5d44bf8e28376b2df
|
data/README.md
CHANGED
@@ -1,76 +1,86 @@
|
|
1
|
+
[](https://badge.fury.io/rb/flgen)
|
1
2
|
[](https://github.com/pezy-computing/flgen/actions/workflows/ci.yml)
|
3
|
+
[](https://codecov.io/github/pezy-computing/flgen)
|
2
4
|
|
3
5
|
# FLGen
|
4
6
|
|
5
|
-
|
7
|
+
FLGen provides a DSL to write filelists and generator tool to generate a filelist which is given to EDA tools.
|
6
8
|
|
7
|
-
##
|
9
|
+
## Install
|
8
10
|
|
9
11
|
### Ruby
|
10
12
|
|
11
|
-
FLGen
|
12
|
-
サポートする Ruby のバージョンは 3.0 以上です。インストール方法については、[こちら](https://www.ruby-lang.org/en/downloads/)を参照ください。
|
13
|
+
FLGen is written in [Ruby](https://www.ruby-lang.org) programing language and its required version is 3.0 or later. You need to install Ruby before using FLGen. See [this page](https://www.ruby-lang.org/en/documentation/installation/) for further details.
|
13
14
|
|
14
|
-
###
|
15
|
+
### Install FLGen
|
15
16
|
|
16
|
-
FLGen
|
17
|
+
Use the command below to isntall FLGen.
|
17
18
|
|
18
19
|
```
|
19
20
|
$ gem install flgen
|
20
21
|
```
|
21
22
|
|
22
|
-
##
|
23
|
+
## Filelist
|
23
24
|
|
24
|
-
|
25
|
+
FLGen prives APIs listed below to describe your filelists.
|
25
26
|
|
26
|
-
* `source_file(path, from: :current)`
|
27
|
-
*
|
28
|
-
* `file_list(path, from: :root)`
|
29
|
-
*
|
27
|
+
* `source_file(path, from: :current, base: nil)`
|
28
|
+
* Add the given source file to the current filelist.
|
29
|
+
* `file_list(path, from: :root, base: nil)`
|
30
|
+
* Load the given filelist.
|
31
|
+
* `include_directory(path, from: :current, base: nil)`
|
32
|
+
* Add the given directory to the list of include direcotries.
|
30
33
|
* `define_macro(name, value = nil)`
|
31
|
-
*
|
32
|
-
* `macro_defined?(name)`
|
33
|
-
*
|
34
|
-
* `
|
35
|
-
*
|
36
|
-
* `
|
37
|
-
* `
|
34
|
+
* Define a text macro.
|
35
|
+
* `macro?(name)`/`macro_defined?(name)`
|
36
|
+
* Return `true` if the given macro is defined.
|
37
|
+
* `file?(path, from: :current, base: nil)`
|
38
|
+
* Return `treu` if the given file exists.
|
39
|
+
* `directory?(path, from: :current, base: nil)`
|
40
|
+
* Return `true` if the given directory exists.
|
41
|
+
* `env?(name)`
|
42
|
+
* Return `true` if the givne environment variable is defined.
|
43
|
+
* `env(name)`
|
44
|
+
* Retunr the value of the given environment variable.
|
38
45
|
* `compile_argument(argument, tool: nil)`
|
39
|
-
*
|
40
|
-
* `tool`
|
41
|
-
* `
|
42
|
-
*
|
43
|
-
* `tool`
|
46
|
+
* Add the given argument to the list of compile arguments.
|
47
|
+
* If `tool` is specified the given argument is added only when `tool` is matched with the targe tool.
|
48
|
+
* `runtime_argumetn(argument, tool: nil)`
|
49
|
+
* Add the given argument to the list of runtime arguments.
|
50
|
+
* If `tool` is specified the given argument is added only when `tool` is matched with the targe tool.
|
51
|
+
* `target_tool?(tool)`
|
52
|
+
* Return `true` if the given tool is matched with the targe tool.
|
44
53
|
|
45
|
-
|
54
|
+
FLGen's filelist is designed as an inernal DSL with Ruby. Therefore you can use Ruby's syntax. For example:
|
46
55
|
|
47
56
|
```ruby
|
48
|
-
if
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
10.times do |i|
|
53
|
-
source_file "foo_#{i}.sv"
|
57
|
+
if macro? :GATE_SIM
|
58
|
+
source_file 'foo_top.v.gz' # synthsized netlist
|
59
|
+
else
|
60
|
+
source_file 'foo_top.sv' # RTL
|
54
61
|
end
|
55
62
|
```
|
56
63
|
|
57
|
-
### `from`
|
64
|
+
### About `from`/`base` arguments
|
58
65
|
|
59
|
-
`from`
|
66
|
+
The `from` argument is to specify how to search the given file or directory. You can specify one of three below.
|
60
67
|
|
61
68
|
* `:current`
|
62
|
-
*
|
69
|
+
* Search the given file or directory from the directory where the current filelist is.
|
63
70
|
* `:root`
|
64
|
-
* `.git`
|
65
|
-
*
|
71
|
+
* Search the given file or directory from the repository root directories where the `.git` directory is.
|
72
|
+
* Serch order is descending order.
|
73
|
+
* from upper root direcotries to local root direcoty
|
66
74
|
* `:local_root`
|
67
|
-
*
|
75
|
+
* Search the given file or directory from the repository root directory where the current filelist belongs to.
|
76
|
+
|
77
|
+
The `from` argument is ignored if the given path is an absolute path or the `base` argument is specified.
|
68
78
|
|
69
|
-
|
79
|
+
The `base` argument is to specify the serach direcotry for the given file or directory.
|
70
80
|
|
71
|
-
####
|
81
|
+
#### Example
|
72
82
|
|
73
|
-
|
83
|
+
This is an exmaple directory structure.
|
74
84
|
|
75
85
|
```
|
76
86
|
foo_project
|
@@ -86,61 +96,86 @@ foo_project
|
|
86
96
|
`-- common.sv
|
87
97
|
```
|
88
98
|
|
89
|
-
* `
|
90
|
-
* `foo_project/bar_project/
|
91
|
-
* `
|
92
|
-
* `foo_project/common/common.sv`
|
93
|
-
* `
|
94
|
-
* `foo_project/bar_project/common/common.sv`
|
99
|
+
* `source_file 'bar.sv', from: :current` @ `bar.list.rb`
|
100
|
+
* `foo_project/bar_project/bar.sv` is added.
|
101
|
+
* `source_file 'common/common.sv', from: :root` @ `bar.list.rb`
|
102
|
+
* `foo_project/common/common.sv` is added
|
103
|
+
* `source_file 'common/bar_common.sv', from: :local_root` @ `bar.list.rb`
|
104
|
+
* `foo_project/bar_project/common/common.sv` is added
|
95
105
|
|
96
|
-
##
|
106
|
+
## Generator command
|
97
107
|
|
98
|
-
`flgen`
|
99
|
-
また、以下のオプションがあります。
|
108
|
+
`flgen` is the generator command and generate a filelist which is given to EDA tools from the given filelists. Command line options are listed below.
|
100
109
|
|
101
110
|
* `--define-macro=MACRO[,MACRO]`
|
102
|
-
*
|
111
|
+
* Define the given macros
|
103
112
|
* `--include-directory=DIR[,DIR]`
|
104
|
-
*
|
113
|
+
* Specify include directories
|
105
114
|
* `--compile`
|
106
|
-
*
|
115
|
+
* If this option is specified the generated filelist contains source file path, arguments to define macros, arguments to specify include directories and arguments specified by `compile_argument` API.
|
107
116
|
* `--runtime`
|
108
|
-
*
|
117
|
+
* If this option is specified the generated filelist contains arguments specified by `runtime_argumetn`
|
109
118
|
* `--tool=TOOL`
|
110
|
-
*
|
111
|
-
* `compile_argument`/`runtime_argument` でツールの指定がある場合、一致する引数がファイルリストに出力されます
|
119
|
+
* Specify the target tool.
|
112
120
|
* `--rm-ext=EXT[,EXT]`
|
113
|
-
*
|
121
|
+
* Remove specifyed file extentions from source file path.
|
114
122
|
* `--collect-ext=EXT[,EXT]`
|
115
|
-
*
|
123
|
+
* The generated filelist contains source file pash which has the specified file extentions.
|
124
|
+
* `--format=FORMAT`
|
125
|
+
* Specify the format of the generated filelist.
|
126
|
+
* If no format is specified FLGen will generate a generated filelist for major EDA tools.
|
127
|
+
* If `vivado-tcl` is specified FLGen will generate a TCL script to load source files for Vivado synthesis.
|
128
|
+
* If `filelist-xsim` is specified FLGen will generate a filelist for Vivado simulator.
|
116
129
|
* `--output=FILE`
|
117
|
-
*
|
118
|
-
*
|
130
|
+
* Specify the path of the generated filelist
|
131
|
+
* The generated fileslist is output to STDOUT if no path is specified.
|
119
132
|
* `--[no-]print-header`
|
120
|
-
*
|
133
|
+
* Specify whether or not the output filelist includes its file header or not.
|
121
134
|
* `--source-file-only`
|
122
|
-
*
|
135
|
+
* The generated filelist contains source file path only if this option is specified.
|
123
136
|
|
124
|
-
##
|
137
|
+
## Example
|
125
138
|
|
126
|
-
https://github.com/pezy-computing/flgen/tree/master/sample
|
139
|
+
You can find an exmpale from [here](https://github.com/pezy-computing/flgen/tree/master/sample).
|
127
140
|
|
128
|
-
|
141
|
+
```
|
142
|
+
$ flgen --output=filelist.f sample/foo.list.rb
|
143
|
+
$ cat filelist.f
|
144
|
+
// flgen version 0.14.0
|
145
|
+
// applied arguments
|
146
|
+
// --output=filelist.f
|
147
|
+
// sample/foo.list.rb
|
148
|
+
+define+BAR_0
|
149
|
+
+define+BAR_1=1
|
150
|
+
+incdir+/home/taichi/workspace/pezy/flgen/sample/bar
|
151
|
+
+incdir+/home/taichi/workspace/pezy/flgen/sample/bar/baz
|
152
|
+
-foo_0
|
153
|
+
/home/taichi/workspace/pezy/flgen/sample/foo.sv
|
154
|
+
/home/taichi/workspace/pezy/flgen/sample/bar/bar.sv
|
155
|
+
/home/taichi/workspace/pezy/flgen/sample/bar/baz/baz.sv
|
156
|
+
```
|
157
|
+
|
158
|
+
[rggen-sample-testbench](https://github.com/rggen/rggen-sample-testbench) uses FLGen. This can be a practical example.
|
129
159
|
|
130
|
-
|
160
|
+
* https://github.com/rggen/rggen-sample-testbench/blob/master/env/compile.rb
|
161
|
+
* https://github.com/rggen/rggen-sample-testbench/blob/master/rtl/compile.rb
|
131
162
|
|
132
|
-
|
163
|
+
## License
|
133
164
|
|
134
|
-
|
165
|
+
FLGen is licensed under the Apache-2.0 license. See [LICNESE](LICENSE) and below for further details.
|
135
166
|
|
136
|
-
|
137
|
-
|
138
|
-
You may obtain a copy of the License at
|
167
|
+
```
|
168
|
+
Copyright 2022 PEZY Computing K.K.
|
139
169
|
|
140
|
-
|
170
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
171
|
+
you may not use this file except in compliance with the License.
|
172
|
+
You may obtain a copy of the License at
|
141
173
|
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
174
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
175
|
+
|
176
|
+
Unless required by applicable law or agreed to in writing, software
|
177
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
178
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
179
|
+
See the License for the specific language governing permissions and
|
180
|
+
limitations under the License.
|
181
|
+
```
|
data/lib/flgen/file_list.rb
CHANGED
@@ -8,27 +8,47 @@ module FLGen
|
|
8
8
|
@root_directories = extract_root
|
9
9
|
end
|
10
10
|
|
11
|
-
def file_list(path, from: :root, raise_error: true)
|
12
|
-
|
13
|
-
load_file_list(
|
11
|
+
def file_list(path, from: :root, base: nil, raise_error: true)
|
12
|
+
location = caller_location
|
13
|
+
load_file_list(path, from, base, location, raise_error)
|
14
14
|
end
|
15
15
|
|
16
|
-
def source_file(path, from: :current, raise_error: true)
|
17
|
-
|
18
|
-
add_source_file(
|
16
|
+
def source_file(path, from: :current, base: nil, raise_error: true)
|
17
|
+
location = caller_location
|
18
|
+
add_source_file(path, from, base, location, raise_error)
|
19
19
|
end
|
20
20
|
|
21
21
|
def define_macro(macro, value = nil)
|
22
22
|
@context.define_macro(macro, value)
|
23
23
|
end
|
24
24
|
|
25
|
-
def
|
25
|
+
def macro?(macro)
|
26
26
|
@context.macros.include?(macro.to_sym)
|
27
27
|
end
|
28
28
|
|
29
|
-
|
30
|
-
|
31
|
-
|
29
|
+
alias_method :macro_defined?, :macro?
|
30
|
+
|
31
|
+
def include_directory(path, from: :current, base: nil, raise_error: true)
|
32
|
+
location = caller_location
|
33
|
+
add_include_directory(path, from, base, location, raise_error)
|
34
|
+
end
|
35
|
+
|
36
|
+
def file?(path, from: :current, base: nil)
|
37
|
+
location = caller_location
|
38
|
+
!lookup_root(path, from, base, location, :file?).nil?
|
39
|
+
end
|
40
|
+
|
41
|
+
def directory?(path, from: :current, base: nil)
|
42
|
+
location = caller_location
|
43
|
+
!lookup_root(path, from, base, location, :directory?).nil?
|
44
|
+
end
|
45
|
+
|
46
|
+
def env?(name)
|
47
|
+
ENV.key?(name.to_s)
|
48
|
+
end
|
49
|
+
|
50
|
+
def env(name)
|
51
|
+
ENV.fetch(name.to_s, nil)
|
32
52
|
end
|
33
53
|
|
34
54
|
def target_tool?(tool)
|
@@ -61,36 +81,11 @@ module FLGen
|
|
61
81
|
File.exist?(path.join('.git').to_s)
|
62
82
|
end
|
63
83
|
|
64
|
-
def
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
current_directory
|
69
|
-
else
|
70
|
-
lookup_root(path, from, checker)
|
84
|
+
def load_file_list(path, from, base, location, raise_error)
|
85
|
+
unless (root = lookup_root(path, from, base, location, :file?))
|
86
|
+
raise_no_entry_error(path, location, raise_error)
|
87
|
+
return
|
71
88
|
end
|
72
|
-
end
|
73
|
-
|
74
|
-
def absolute_path?(path)
|
75
|
-
Pathname.new(path).absolute?
|
76
|
-
end
|
77
|
-
|
78
|
-
def current_directory
|
79
|
-
# From Ruby 3.1 Thread::Backtrace::Location#absolute_path returns nil
|
80
|
-
# for code string evaluated by eval methods
|
81
|
-
# see https://github.com/ruby/ruby/commit/64ac984129a7a4645efe5ac57c168ef880b479b2
|
82
|
-
location = caller_locations(3, 1).first
|
83
|
-
path = location.absolute_path || location.path
|
84
|
-
File.dirname(path)
|
85
|
-
end
|
86
|
-
|
87
|
-
def lookup_root(path, from, checker)
|
88
|
-
(from == :root && @root_directories || [@root_directories.last])
|
89
|
-
.find { |root| File.__send__(checker, File.join(root, path)) }
|
90
|
-
end
|
91
|
-
|
92
|
-
def load_file_list(root, path, raise_error)
|
93
|
-
entry_exist?(root, path, :file?, raise_error) || return
|
94
89
|
|
95
90
|
# Need to File.realpath to resolve symblic link
|
96
91
|
list_path = File.realpath(concat_path(root, path))
|
@@ -105,26 +100,68 @@ module FLGen
|
|
105
100
|
@context.loaded_file_lists.include?(path)
|
106
101
|
end
|
107
102
|
|
108
|
-
def add_source_file(
|
109
|
-
|
103
|
+
def add_source_file(path, from, base, location, raise_error)
|
104
|
+
unless (root = lookup_root(path, from, base, location, :file?))
|
105
|
+
raise_no_entry_error(path, location, raise_error)
|
106
|
+
return
|
107
|
+
end
|
108
|
+
|
110
109
|
@context.add_source_file(root, path)
|
111
110
|
end
|
112
111
|
|
113
|
-
def add_include_directory(
|
114
|
-
|
112
|
+
def add_include_directory(path, from, base, location, raise_error)
|
113
|
+
unless (root = lookup_root(path, from, base, location, :directory?))
|
114
|
+
raise_no_entry_error(path, location, raise_error)
|
115
|
+
return
|
116
|
+
end
|
115
117
|
|
116
118
|
directory_path = concat_path(root, path)
|
117
119
|
@context.add_include_directory(directory_path)
|
118
120
|
end
|
119
121
|
|
120
|
-
def
|
121
|
-
|
122
|
-
|
123
|
-
|
122
|
+
def caller_location
|
123
|
+
caller_locations(2, 1).first
|
124
|
+
end
|
125
|
+
|
126
|
+
def lookup_root(path, from, base, location, checker)
|
127
|
+
search_root(path, from, base, location)
|
128
|
+
.find { |root| File.__send__(checker, concat_path(root, path)) }
|
129
|
+
end
|
130
|
+
|
131
|
+
def search_root(path, from, base, location)
|
132
|
+
if absolute_path?(path)
|
133
|
+
['']
|
134
|
+
elsif !base.nil?
|
135
|
+
[base]
|
136
|
+
elsif from == :current
|
137
|
+
[current_directory(location)]
|
138
|
+
elsif from == :local_root
|
139
|
+
[@root_directories.last]
|
140
|
+
else
|
141
|
+
@root_directories
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
def absolute_path?(path)
|
146
|
+
Pathname.new(path).absolute?
|
147
|
+
end
|
148
|
+
|
149
|
+
def current_directory(location)
|
150
|
+
# From Ruby 3.1 Thread::Backtrace::Location#absolute_path returns nil
|
151
|
+
# for code string evaluated by eval methods
|
152
|
+
# see https://github.com/ruby/ruby/commit/64ac984129a7a4645efe5ac57c168ef880b479b2
|
153
|
+
path = location.absolute_path || location.path
|
154
|
+
File.dirname(path)
|
124
155
|
end
|
125
156
|
|
126
157
|
def concat_path(root, path)
|
127
158
|
File.expand_path(path, root)
|
128
159
|
end
|
160
|
+
|
161
|
+
def raise_no_entry_error(path, location, raise_error)
|
162
|
+
return unless raise_error
|
163
|
+
|
164
|
+
raise NoEntryError.new(path, location)
|
165
|
+
end
|
129
166
|
end
|
130
167
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module FLGen
|
4
|
+
class FileListXsimFormatter < Formatter
|
5
|
+
def format_header_line(line)
|
6
|
+
"// #{line}"
|
7
|
+
end
|
8
|
+
|
9
|
+
def format_macro(macro, value)
|
10
|
+
if value.nil?
|
11
|
+
"-d #{macro}"
|
12
|
+
else
|
13
|
+
"-d #{macro}=#{value}"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def format_include_directory(directory)
|
18
|
+
"-i #{directory}"
|
19
|
+
end
|
20
|
+
|
21
|
+
def fomrat_argument(argument)
|
22
|
+
argument
|
23
|
+
end
|
24
|
+
|
25
|
+
def format_file_path(path)
|
26
|
+
path
|
27
|
+
end
|
28
|
+
|
29
|
+
Formatter.add_formatter(:'filelist-xsim', self)
|
30
|
+
end
|
31
|
+
end
|
data/lib/flgen/formatter.rb
CHANGED
@@ -42,6 +42,10 @@ module FLGen
|
|
42
42
|
@context.options[:print_header] && !@context.options[:source_file_only]
|
43
43
|
end
|
44
44
|
|
45
|
+
def no_arguments?(type)
|
46
|
+
@context.arguments.none? { |argument| argument.type == type }
|
47
|
+
end
|
48
|
+
|
45
49
|
def each_argument(type, &block)
|
46
50
|
@context.arguments.each do |argument|
|
47
51
|
argument.type == type && block.call(argument)
|
@@ -49,7 +53,7 @@ module FLGen
|
|
49
53
|
end
|
50
54
|
|
51
55
|
def print_macros(io)
|
52
|
-
return if source_file_only?
|
56
|
+
return if source_file_only? || no_arguments?(:define)
|
53
57
|
|
54
58
|
pre_macros(io)
|
55
59
|
each_argument(:define) do |argument|
|
@@ -65,7 +69,7 @@ module FLGen
|
|
65
69
|
end
|
66
70
|
|
67
71
|
def print_include_directoris(io)
|
68
|
-
return if source_file_only?
|
72
|
+
return if source_file_only? || no_arguments?(:include)
|
69
73
|
|
70
74
|
pre_include_directories(io)
|
71
75
|
each_argument(:include) do |argument|
|
@@ -81,7 +85,7 @@ module FLGen
|
|
81
85
|
end
|
82
86
|
|
83
87
|
def print_arguments(io)
|
84
|
-
return if source_file_only?
|
88
|
+
return if source_file_only? || no_arguments?(:generic)
|
85
89
|
|
86
90
|
pre_arguments(io)
|
87
91
|
each_argument(:generic) do |argument|
|
@@ -101,6 +105,8 @@ module FLGen
|
|
101
105
|
end
|
102
106
|
|
103
107
|
def print_source_files(io)
|
108
|
+
return if no_source_files?
|
109
|
+
|
104
110
|
pre_source_files(io)
|
105
111
|
@context.source_files.each do |file|
|
106
112
|
io.puts(format_file_path(file.full_path))
|
@@ -108,6 +114,10 @@ module FLGen
|
|
108
114
|
post_source_files(io)
|
109
115
|
end
|
110
116
|
|
117
|
+
def no_source_files?
|
118
|
+
@context.source_files.empty?
|
119
|
+
end
|
120
|
+
|
111
121
|
def pre_source_files(_io)
|
112
122
|
end
|
113
123
|
|
data/lib/flgen/version.rb
CHANGED
@@ -0,0 +1,54 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module FLGen
|
4
|
+
class VivadoTCLFormatter < Formatter
|
5
|
+
def format_header_line(line)
|
6
|
+
"# #{line}"
|
7
|
+
end
|
8
|
+
|
9
|
+
def pre_macros(io)
|
10
|
+
io.puts('set flgen_defines {}')
|
11
|
+
end
|
12
|
+
|
13
|
+
def format_macro(macro, value)
|
14
|
+
if value.nil?
|
15
|
+
"lappend flgen_defines \"#{macro}\""
|
16
|
+
else
|
17
|
+
"lappend flgen_defines \"#{macro}=#{value}\""
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def post_macros(io)
|
22
|
+
io.puts('set_property verilog_define $flgen_defines [current_fileset]')
|
23
|
+
end
|
24
|
+
|
25
|
+
def pre_include_directories(io)
|
26
|
+
io.puts('set flgen_include_directories {}')
|
27
|
+
end
|
28
|
+
|
29
|
+
def format_include_directory(directory)
|
30
|
+
"lappend flgen_include_directories \"#{directory}\""
|
31
|
+
end
|
32
|
+
|
33
|
+
def post_include_directories(io)
|
34
|
+
io.puts('set_property include_dirs $flgen_include_directories [current_fileset]')
|
35
|
+
end
|
36
|
+
|
37
|
+
def fomrat_argument(_)
|
38
|
+
end
|
39
|
+
|
40
|
+
def pre_source_files(io)
|
41
|
+
io.puts('set flgen_source_files {}')
|
42
|
+
end
|
43
|
+
|
44
|
+
def format_file_path(path)
|
45
|
+
"lappend flgen_source_files \"#{path}\""
|
46
|
+
end
|
47
|
+
|
48
|
+
def post_source_files(io)
|
49
|
+
io.puts('add_files -fileset [current_fileset] $flgen_source_files')
|
50
|
+
end
|
51
|
+
|
52
|
+
Formatter.add_formatter(:'vivado-tcl', self)
|
53
|
+
end
|
54
|
+
end
|
data/lib/flgen.rb
CHANGED
@@ -11,4 +11,6 @@ require_relative 'flgen/file_list'
|
|
11
11
|
require_relative 'flgen/context'
|
12
12
|
require_relative 'flgen/formatter'
|
13
13
|
require_relative 'flgen/file_list_formatter'
|
14
|
+
require_relative 'flgen/vivado_tcl_formatter'
|
15
|
+
require_relative 'flgen/file_list_xsim_formatter'
|
14
16
|
require_relative 'flgen/cli'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flgen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Taichi Ishitani
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bump
|
@@ -80,6 +80,34 @@ dependencies:
|
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: 1.40.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: simplecov
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.21.0
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.21.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: simplecov-cobertura
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 2.1.0
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 2.1.0
|
83
111
|
description: Filelist generator
|
84
112
|
email:
|
85
113
|
- ishitani@pezy.co.jp
|
@@ -98,9 +126,11 @@ files:
|
|
98
126
|
- lib/flgen/exceptions.rb
|
99
127
|
- lib/flgen/file_list.rb
|
100
128
|
- lib/flgen/file_list_formatter.rb
|
129
|
+
- lib/flgen/file_list_xsim_formatter.rb
|
101
130
|
- lib/flgen/formatter.rb
|
102
131
|
- lib/flgen/source_file.rb
|
103
132
|
- lib/flgen/version.rb
|
133
|
+
- lib/flgen/vivado_tcl_formatter.rb
|
104
134
|
- sample/bar/bar.list.rb
|
105
135
|
- sample/bar/bar.sv
|
106
136
|
- sample/bar/baz/baz.list.rb
|
@@ -130,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
130
160
|
- !ruby/object:Gem::Version
|
131
161
|
version: '0'
|
132
162
|
requirements: []
|
133
|
-
rubygems_version: 3.
|
163
|
+
rubygems_version: 3.4.2
|
134
164
|
signing_key:
|
135
165
|
specification_version: 4
|
136
166
|
summary: Filelist generator
|