Class: HDLRuby::High::TimeBehavior

Inherits:
Low::TimeBehavior show all
Defined in:
lib/HDLRuby/hruby_high.rb

Overview

Describes a high-level timed behavior.

Constant Summary collapse

High =
HDLRuby::High

Constants included from Low::Low2Symbol

Low::Low2Symbol::Low2SymbolPrefix, Low::Low2Symbol::Low2SymbolTable, Low::Low2Symbol::Symbol2LowTable

Instance Attribute Summary

Attributes inherited from Low::Behavior

#block

Attributes included from Low::Hparent

#parent

Instance Method Summary collapse

Methods inherited from Low::TimeBehavior

#add_event, #eql?, #hash, #set_block!, #to_c, #to_hdr, #to_high

Methods inherited from Low::Behavior

#add_event, #blocks2seq!, #delete_event!, #each_block, #each_block_deep, #each_deep, #each_event, #each_node_deep, #each_statement, #eql?, #explicit_types!, #extract_declares!, #get_by_name, #has_event?, #hash, #last_statement, #map_events!, #mixblocks2seq!, #on_edge?, #on_event?, #parent_system, #replace_names!, #reverse_each_statement, #set_block!, #to_c, #to_ch, #to_hdr, #to_high, #to_upper_space!, #to_vhdl, #top_scope, #with_boolean!, #with_var!

Methods included from Low::Low2Symbol

#to_sym

Methods included from Low::Hparent

#hierarchy, #scope

Constructor Details

#initialize(mode, &ruby_block) ⇒ TimeBehavior

Creates a new timed behavior built by executing +ruby_block+. +mode+ can be either :seq or :par for respectively sequential or



4018
4019
4020
4021
4022
4023
# File 'lib/HDLRuby/hruby_high.rb', line 4018

def initialize(mode, &ruby_block)
    # Create a default par block for the behavior.
    block = High.make_time_block(mode,&ruby_block)
    # Initialize the behavior with it.
    super(block)
end

Instance Method Details

#to_lowObject

Converts the time behavior to HDLRuby::Low.



4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
# File 'lib/HDLRuby/hruby_high.rb', line 4026

def to_low
    # Create the low level block.
    blockL = self.block.to_low
    # Create the low level events.
    eventLs = self.each_event.map { |event| event.to_low }
    # Create and return the resulting low level behavior.
    timeBehaviorL = HDLRuby::Low::TimeBehavior.new(blockL)
    # # For debugging: set the source high object 
    # timeBehaviorL.properties[:low2high] = self.hdr_id
    # self.properties[:high2low] = timeBehaviorL
    eventLs.each(&timeBehaviorL.method(:add_event))
    return timeBehaviorL
end