Class: AutoGenSdl
- Inherits:
-
Object
- Object
- AutoGenSdl
- Defined in:
- lib/tdl/auto_script/autogensdl.rb,
lib/tdl/auto_script/autogensdl.rb
Overview
add auto_path
Constant Summary collapse
- @@auto_path =
"./"
Instance Attribute Summary collapse
-
#bad ⇒ Object
Returns the value of attribute bad.
Class Method Summary collapse
Instance Method Summary collapse
- #auto_rb ⇒ Object
-
#exist_origin_sdl(filename, path) ⇒ Object
private.
- #gen_content ⇒ Object
- #gen_file ⇒ Object
- #gen_head ⇒ Object
-
#initialize(filename = "", out_file_path = @@auto_path, encoding = 'utf-8') ⇒ AutoGenSdl
constructor
A new instance of AutoGenSdl.
- #vector_to_size(v) ⇒ Object
Constructor Details
#initialize(filename = "", out_file_path = @@auto_path, encoding = 'utf-8') ⇒ AutoGenSdl
Returns a new instance of AutoGenSdl.
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 |
# File 'lib/tdl/auto_script/autogensdl.rb', line 5 def initialize(filename="",out_file_path=@@auto_path,encoding='utf-8') @expand_path = File.(filename) sf = File.open(filename,"r") fstr = sf.read.force_encoding(encoding) sf.close @bad = true # return if exist_origin_sdl(filename,@expand_path) # fstr.gsub!(/\/\/\s*\(\*\s*show\s*=\s*"false"\s*\*\)/,"(* show = \"false\" *)") # SDL ignore `show` fstr.gsub!(/\/\/\s*\(\*\s*show\s*=\s*"false"\s*\*\)/,"") fstr.gsub!(/\/\*.*?\*\//m,"") fstr.gsub!(/\/\/.*/,"") # # if fstr =~ AxiStream::Synth_REP # axi_stream class # @targer_class = "AxiStream" # elsif fstr =~ Axi4::Synth_REP # axi4 class # @targer_class = "Axi4" # elsif fstr =~ VideoInf::Synth_REP # videoinf class # @targer_class = "VideoInf" # elsif fstr =~ DataInf::Synth_REP # datainf class # @targer_class = "DataInf" # elsif fstr =~ DataInf_C::Synth_REP# datainf_c class # @targer_class = "DataInf_C" # elsif fstr =~ AxiLite::Synth_REP# datainf_c class # @targer_class = "AxiLite" # elsif fstr =~ Logic::Synth_REP # only logic # @targer_class = "Logic" # else # puts ">>>#{filename} <<< File's head must mark (* ??? = \"true\" *)\n" if info # return nil # end @autof_name = File.join(File.(out_file_path),File::basename(filename,".*")+"_sdl.rb") # @autof = File.open(@autof_name,"w") regexp_module = /module\s+(?<name>\w+)\s*(#\((?<parameter>.*?)\))?\s*\((?<port>.*?)\)\s*;/m mth = regexp_module.match(fstr) return nil unless mth if mth["parameter"].nil? && mth["port"].nil? return end @module_name = mth["name"] @origin_module_name = mth["name"] @parameter_str = mth["parameter"] @port_str = mth["port"] if @port_str @port_str = @port_str.split(",") else @port_str = [] end @up_stream = nil @down_stream = nil @inf_array = [] @collect_array = [] @format_args_twins = [] @actial_args_twins = [] @alone_args = [] @ex_params = [] @ex_ports = [] @test_obj = [] @tdl_param_design_hash = [] @tdl_inst_design_hash = [] @inf_port_left_len = 0 @inf_port_right_len = 0 @para_port_len = 0 @param_port_inst = [] @signals_ports_inst = [] @inf_ports_inst = [] Parameter.parse_params(@parameter_str) do |h| # @format_args_twins << "#{h[:name]}:#{h[:value]}" # @actial_args_twins << "#{h[:name]}:#{h[:name]}" # @alone_args << h[:name] # @ex_params << h[:inst_ex_port] # @para_port_len = h[:port_len] if h[:port_len] > @para_port_len # @test_obj << "#{h[:name]} = Parameter.new(name:\"#{h[:name]}\",value:#{h[:value]})" # @tdl_param_design_hash << h if h @param_port_inst << "parameter.#{h[:origin_name]} #{h[:value]}" end end @port_str = SignalElm.parse_ports(@port_str) do |h| # @format_args_twins << "#{h[:name]}:\"#{h[:name]}\"" # @actial_args_twins << "#{h[:name]}:#{h[:name]}" # @alone_args << h[:name] # # @ex_ports << h[:inst_ex_port] # @inf_port_left_len = h[:port_left_len] if h[:port_left_len] > @inf_port_left_len # @inf_port_right_len = h[:port_right_len] if h[:port_right_len] > @inf_port_right_len # @test_obj << "#{h[:name]} = Logic.new(name:\"#{h[:name]}\")" # @tdl_inst_design_hash << h head = h[:in_out] # head[0] = head[0].upcase if h[:vector] v_str = ",dsize:#{vector_to_size(h[:vector])}" else v_str = "" end if h[:array] a_str = ",dimension:[#{vector_to_size(h[:array])}]" else a_str = "" end # @signals_ports_inst << "sm.#{head}(\"#{h[:origin_name]}\"#{v_str}#{a_str})" if h[:vector] if h[:array] @signals_ports_inst << "#{head}[#{vector_to_size(h[:array])}][#{vector_to_size(h[:vector])}] - '#{h[:origin_name]}' " else @signals_ports_inst << "#{head}[#{vector_to_size(h[:vector])}] - '#{h[:origin_name]}' " end else @signals_ports_inst << "#{head} - '#{h[:origin_name]}' " end end inf_proc = Proc.new { |h| # @format_args_twins << "#{h[:name]}:\"#{h[:name]}\"" # @actial_args_twins << "#{h[:name]}:#{h[:name]}" # @inf_array << h[:name] if h[:vector] # @collect_array << {name:h[:name],type:h[:type],way:h[:way]} # @alone_args << h[:name] # if h[:up_down] == "up_stream" # @up_stream = h[:name] # elsif h[:up_down] == "down_stream" # @down_stream = h[:name] # end # @ex_ports << h[:inst_ex_port] # @inf_port_left_len = h[:port_left_len] if h[:port_left_len] > @inf_port_left_len # @inf_port_right_len = h[:port_right_len] if h[:port_right_len] > @inf_port_right_len # # @test_obj << "#{h[:name]} = #{h[:type].to_s}.new(name:\"#{h[:origin_name]}\",clock:c0,reset:r0)" # @tdl_inst_design_hash << h # if h[:vector] # a_str = ",dimension:[#{vector_to_size(h[:vector])}]" # else # a_str = "" # end if h[:vector] @inf_ports_inst << "port.#{h[:type]}.#{h[:modport]}[#{vector_to_size(h[:vector])}] - '#{h[:origin_name]}' " else @inf_ports_inst << "port.#{h[:type]}.#{h[:modport]} - '#{h[:origin_name]}' " end } TdlSpace::TdlBaseInterface.subclass.each do |sc| # super(port_array,rep,"axi_stream_inf",up_stream_rep) if sc.const_defined?(:PORT_REP) && sc.const_defined?(:UP_STREAM_REP) # puts sc.get_class_var('hdl_name'),sc::UP_STREAM_REP,sc @port_str = TdlSpace::TdlBaseInterface.parse_ports(@port_str,sc::PORT_REP,sc.get_class_var('hdl_name'),sc::UP_STREAM_REP,sc.get_class_var('hdl_name'),&inf_proc) end end # @port_str = DataInf.parse_ports(@port_str,&inf_proc) # @port_str = DataInf_C.parse_ports(@port_str,&inf_proc) # # @port_str = VideoInf.parse_ports(@port_str,&inf_proc) # # @port_str = AxiLite.parse_ports(@port_str,&inf_proc) # @port_str = AxiStream.parse_ports(@port_str,&inf_proc) # @port_str = Axi4.parse_ports(@port_str,&inf_proc) # @@inf_parse_methods ||= [] # @@inf_parse_methods.each do |m| # @port_str = m.call(@port_str,&inf_proc) # end @bad = false end |
Instance Attribute Details
#bad ⇒ Object
Returns the value of attribute bad.
4 5 6 |
# File 'lib/tdl/auto_script/autogensdl.rb', line 4 def bad @bad end |
Class Method Details
.add_inf_parse(parse_method) ⇒ Object
187 188 189 190 |
# File 'lib/tdl/auto_script/autogensdl.rb', line 187 def self.add_inf_parse(parse_method) @@inf_parse_methods ||= [] @@inf_parse_methods << parse_method end |
.auto_path ⇒ Object
277 278 279 |
# File 'lib/tdl/auto_script/autogensdl.rb', line 277 def self.auto_path @@auto_path end |
.auto_path=(path) ⇒ Object
281 282 283 |
# File 'lib/tdl/auto_script/autogensdl.rb', line 281 def self.auto_path=(path) @@auto_path=path end |
Instance Method Details
#auto_rb ⇒ Object
252 253 254 255 |
# File 'lib/tdl/auto_script/autogensdl.rb', line 252 def auto_rb return if @bad gen_file end |
#exist_origin_sdl(filename, path) ⇒ Object
private
194 195 196 197 |
# File 'lib/tdl/auto_script/autogensdl.rb', line 194 def exist_origin_sdl(filename,path) basename = File.basename(filename,".sv") File.exist?(File.join(path,"#{basename}.rb")) end |
#gen_content ⇒ Object
267 268 269 |
# File 'lib/tdl/auto_script/autogensdl.rb', line 267 def gen_content (@param_port_inst+@signals_ports_inst+@inf_ports_inst + ["end\n\n"]).join("\n") end |
#gen_file ⇒ Object
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
# File 'lib/tdl/auto_script/autogensdl.rb', line 233 def gen_file unless File.exist?(@autof_name) @autof = File.open(@autof_name,"w") do |f| f.print gen_head f.print gen_content # f.puts "sm.origin_sv = true" end else _old_str = File.open(@autof_name).read _new_str = gen_head+gen_content if _old_str != _new_str @autof = File.open(@autof_name,"w") do |f| f.print _new_str # f.puts "sm.origin_sv = true" end end end end |
#gen_head ⇒ Object
257 258 259 260 261 262 263 264 265 |
# File 'lib/tdl/auto_script/autogensdl.rb', line 257 def gen_head " # add_to_all_file_paths('#{@module_name}','#{@expand_path}') # real_sv_path = '#{@expand_path}' TdlBuild.#{@module_name} do self.real_sv_path = '#{@expand_path}' self.path = File.expand_path(__FILE__) " end |
#vector_to_size(v) ⇒ Object
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 |
# File 'lib/tdl/auto_script/autogensdl.rb', line 199 def vector_to_size(v) rep = /\[\s*(?<h>.+)\s*:\s*(?<l>.+)\s*\]/ mv = v.match(rep) if mv if (mv["h"] =~ /^\d+$/) && (mv["l"] =~ /^\d+$/) mv["h"].to_i + 1 - mv["l"].to_i else if (mv["l"].to_i.eql? 0) && (mv["h"] =~ /^(?<name>\S+)\s*-\s*1\s*$/) str = $~["name"] else str = "(#{mv["h"]}+1-#{mv["l"]})" end if mv["h"] =~ /(?<name>\$clog2\(\S+\))/ ## 匹配$clog2 str = "'" + v[1,v.size-2] + "'" else str = str.gsub(/\w+/) do |pt| if pt =~ /^\d+$/ pt else " param.#{pt}" end end end end else if v =~ /:/ v.gsub(":",",") else v end end end |