Class: HDLRuby::High::TimeBlock
- Inherits:
-
Low::TimeBlock
- Object
- Low::Statement
- Low::Block
- Low::TimeBlock
- HDLRuby::High::TimeBlock
- Includes:
- BlockHierarchy, HBlock, RCSimBlock, WithFullname
- Defined in:
- lib/HDLRuby/hruby_high.rb,
lib/HDLRuby/hruby_rsim.rb,
lib/HDLRuby/hruby_rcsim.rb,
lib/HDLRuby/hruby_rsim_vcd.rb,
lib/HDLRuby/hruby_high_fullname.rb
Overview
Describes a timed block.
NOTE:
- this is the only kind of block that can include time statements.
- this kind of block is not synthesizable!
Constant Summary collapse
Constants included from Hmissing
Constants included from Low::Low2Symbol
Low::Low2Symbol::Low2SymbolPrefix, Low::Low2Symbol::Low2SymbolTable, Low::Low2Symbol::Symbol2LowTable
Instance Attribute Summary
Attributes included from RCSimBlock
Attributes included from HBlock
Attributes inherited from Low::Block
Attributes included from Low::Hparent
Instance Method Summary collapse
-
#execute(mode) ⇒ Object
Executes the statement.
-
#init_sim(systemT) ⇒ Object
Initialize the simulation for system +systemT+.
-
#initialize(type, name = :"", &ruby_block) ⇒ TimeBlock
constructor
Creates a new +type+ sort of block with possible +name+ and build it by executing +ruby_block+.
-
#repeat(number = -1,, &ruby_block) ⇒ Object
Adds a +number+ times loop statement in the block in +mode+ whose def repeat(number = -1, mode = nil, &ruby_block) Adds a +number+ times loop statement in the block whose loop content is built using +ruby_block+.
-
#to_low ⇒ Object
Converts the time block to HDLRuby::Low.
-
#wait(delay) ⇒ Object
Adds a wait +delay+ statement in the block.
Methods included from WithFullname
Methods included from BlockHierarchy
#get_vars_with_fullname, #get_vars_with_idstr, #show_hierarchy
Methods included from RCSimBlock
Methods included from HBlock
#add_block, #build, #cur_behavior, #cur_block, #cur_scope, #cur_system, #hcase, #helse, #helsif, #hif, #hprint, #hwhen, #par, #seq, #sub, #terminate, #to_ref, #top_block, #unshift
Methods included from Hmux
Methods included from HScope_missing
Methods included from Hmissing
Methods inherited from Low::TimeBlock
#add_statement, #delete_unless!, #eql?, #hash, #to_hdr, #to_high, #unshift_statement, #with_var
Methods inherited from Low::Block
#add_blocks_code, #add_inner, #add_make_block, #add_statement, #add_variable, #att_sharp, #att_signal, #blocks2seq!, #boolean_in_assign2select!, #break_concat_assigns!, #casts_without_expression!, #change_branch, #clone, #delete_inner!, #delete_related!, #delete_statement!, #delete_unless!, #do_flat, #each_block, #each_block_deep, #each_deep, #each_inner, #each_node_deep, #each_signal_deep, #each_statement, #each_statement_deep, #eql?, #explicit_types!, #extract_declares!, #extract_from_externals!, #fix_scope_refnames!, #flatten, #get_by_name, #get_inner, #get_variable, #hash, #insert_statement!, #last_statement, #map_inners!, #map_statements!, #mix?, #num_statements, #par_in_seq2seq!, #reassign_expressions!, #refs_by_variables!, #replace_expressions!, #replace_names!, #replace_names_subs!, #replace_statement!, #res_name, #reverse_each_statement, #search_refname, #select2case!, #set_mode!, #set_name!, #set_statement!, #signal2subs!, #sym2var_name, #to_c, #to_c_code, #to_ch, #to_conversion, #to_hdr, #to_high, #to_seq!, #to_upper_space!, #to_verilog, #to_vhdl, #to_viz, #to_viz_node, #unshift_statement, #var2ref, #var_name2sym, #variable_name?, #variables, #with_var
Methods included from Low::ForceName
Methods inherited from Low::Statement
#add_blocks_code, #add_make_block, #behavior, #block, #blocks2seq!, #break_types!, #clone, #delete_related!, #delete_unless!, #each_deep, #each_statement, #eql?, #explicit_types!, #extract_declares!, #fix_scope_refnames!, #hash, #mix?, #par_in_seq2seq!, #parent_system, #replace_expressions!, #replace_names!, #scope, #to_c, #to_ch, #to_hdr, #to_high, #to_seq!, #to_upper_space!, #to_vhdl, #top_block, #top_scope, #use_name?, #with_boolean!
Methods included from Low::Low2Symbol
Methods included from Low::Hparent
#absolute_ref, #hierarchy, #no_parent!, #scope
Constructor Details
#initialize(type, name = :"", &ruby_block) ⇒ TimeBlock
Creates a new +type+ sort of block with possible +name+ and build it by executing +ruby_block+.
4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 |
# File 'lib/HDLRuby/hruby_high.rb', line 4504 def initialize(type, name = :"", &ruby_block) # Initialize the behavior. super(type,name) unless name.empty? then # Named block, set the hdl-like access to the block. obj = self # For using the right self within the proc High.space_reg(name) { obj } end # Creates the namespace. @namespace = Namespace.new(self) build(&ruby_block) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class HDLRuby::High::HScope_missing
Instance Method Details
#execute(mode) ⇒ Object
Executes the statement.
965 966 967 968 969 970 971 972 |
# File 'lib/HDLRuby/hruby_rsim.rb', line 965 def execute(mode) # puts "TimeBlock" self.each_statement do |stmnt| # puts "Going to execute statement: #{stmnt}" stmnt.execute(self.mode) end # puts "End TimeBlock" end |
#init_sim(systemT) ⇒ Object
Initialize the simulation for system +systemT+.
960 961 962 |
# File 'lib/HDLRuby/hruby_rsim.rb', line 960 def init_sim(systemT) self.each_statement { |stmnt| stmnt.init_sim(systemT) } end |
#repeat(number = -1,, &ruby_block) ⇒ Object
Adds a +number+ times loop statement in the block in +mode+ whose
def repeat(number = -1, mode = nil, &ruby_block) Adds a +number+ times loop statement in the block whose loop content is built using +ruby_block+. NOTE: if +number+ is negative, the number of iteration is infinite.
4530 4531 4532 4533 4534 4535 4536 4537 4538 |
# File 'lib/HDLRuby/hruby_high.rb', line 4530 def repeat(number = -1, &ruby_block) # Ensure there is a block. ruby_block = proc {} unless block_given? # Build the content block: necessarily seq since timed. content = High.make_block(:seq,&ruby_block) # Create and add the statement. # self.add_statement(TimeRepeat.new(content,delay)) self.add_statement(TimeRepeat.new(number,content)) end |
#to_low ⇒ Object
Converts the time block to HDLRuby::Low.
4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 |
# File 'lib/HDLRuby/hruby_high.rb', line 4541 def to_low # Create the resulting block blockL = HDLRuby::Low::TimeBlock.new(self.mode) # # For debugging: set the source high object # blockL.properties[:low2high] = self.hdr_id # self.properties[:high2low] = blockL # Add the inner signals self.each_inner { |inner| blockL.add_inner(inner.to_low) } # Add the statements self.each_statement do |statement| blockL.add_statement(statement.to_low) end # Return the resulting block return blockL end |