Class: Array

Inherits:
Object
  • Object
show all
Includes:
HArrow
Defined in:
lib/HDLRuby/hruby_high.rb

Overview

Extends the Array class for conversion to a high-level expression.

Direct Known Subclasses

HDLRuby::High::Std::PipelineT::Stage

Instance Method Summary collapse

Instance Method Details

#call(obj = nil, &ruby_block) ⇒ Object

Create an array whose number of elements is given by the content of the current array, filled by +obj+ objects. If +obj+ is nil, +ruby_block+ is used instead for filling the array.



4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
# File 'lib/HDLRuby/hruby_high.rb', line 4929

def call(obj = nil, &ruby_block)
    unless self.size == 1 then
        raise AnyError, "Invalid array for call opertor."
    end
    number = self[0].to_i
    if obj then
        return Array.new(number,obj)
    else
        return Array.new(number,&ruby_block)
    end
end

#constant(hsh) ⇒ Object

Declares high-level inner constants named from +hsh+ with names and corresponding values.



4903
4904
4905
# File 'lib/HDLRuby/hruby_high.rb', line 4903

def constant(hsh)
    High.top_user.make_constants(self.to_type,hsh)
end

#hcase(value, &ruby_block) ⇒ Object

Creates a hcase statement executing +ruby_block+ on the element of the array selected by +value+



4909
4910
4911
4912
4913
4914
4915
4916
# File 'lib/HDLRuby/hruby_high.rb', line 4909

def hcase(value,&ruby_block)
    # Ensure there is a block.
    ruby_block = proc {} unless block_given?
    High.cur_block.hcase(value)
    self.each.with_index do |elem,i|
        High.cur_block.hwhen(i) { ruby_block.call(elem) }
    end
end

#inner(*names) ⇒ Object

Declares high-level inner signals named +names+ of the current type.



4897
4898
4899
# File 'lib/HDLRuby/hruby_high.rb', line 4897

def inner(*names)
    High.top_user.make_inners(self.to_type,*names)
end

#inout(*names) ⇒ Object

Declares high-level untyped inout signals named +names+ of the current type.



4891
4892
4893
# File 'lib/HDLRuby/hruby_high.rb', line 4891

def inout(*names)
    High.top_user.make_inouts(self.to_type,*names)
end

#input(*names) ⇒ Object

Declares high-level input signals named +names+ of the current type.



4879
4880
4881
# File 'lib/HDLRuby/hruby_high.rb', line 4879

def input(*names)
    High.top_user.make_inputs(self.to_type,*names)
end

#make(name, *args) ⇒ Object

Create an array of instances of system +name+, using +args+ as arguments.

NOTE: the array must have a single element that is an integer.



4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
# File 'lib/HDLRuby/hruby_high.rb', line 4945

def make(name,*args)
    # Check the array and get the number of elements.
    size = self[0]
    unless self.size == 1 and size.is_a?(::Integer)
        raise AnyError,
              "Invalid array for declaring a list of instances."
    end
    # Get the system to instantiate.
    systemT = High.space_call(name)
    # Get the name of the instance from the arguments.
    nameI = args.shift.to_s
    # Create the instances.
    instances = size.times.map do |i| 
        systemT.instantiate((nameI + "[#{i}]").to_sym,*args)
    end
    nameI = nameI.to_sym
    # Add them to the top system
    High.space_top.user.add_groupI(nameI,*instances)
    # Register and return the result.
    High.space_reg(nameI) { High.space_top.user.get_groupI(nameI) }
    return High.space_top.user.get_groupI(nameI)
end

#output(*names) ⇒ Object

Declares high-level untyped output signals named +names+ of the current type.



4885
4886
4887
# File 'lib/HDLRuby/hruby_high.rb', line 4885

def output(*names)
    High.top_user.make_outputs(self.to_type,*names)
end

#to_exprObject

Converts to a new high-level expression.



4841
4842
4843
4844
4845
4846
4847
4848
# File 'lib/HDLRuby/hruby_high.rb', line 4841

def to_expr
    elems = self.map {|elem| elem.to_expr }
    typ= TypeTuple.new(:"",:little)
    elems.each {|elem| typ.add_type(elem.type) }
    expr = Concat.new(typ)
    elems.each {|elem| expr.add_expression(elem) }
    expr
end

#to_refObject

Converts to a new high-level reference.



4851
4852
4853
4854
4855
4856
4857
# File 'lib/HDLRuby/hruby_high.rb', line 4851

def to_ref
    expr = RefConcat.new(TypeTuple.new(:"",:little,*self.map do |elem|
        elem.to_ref.type
    end))
    self.each {|elem| expr.add_ref(elem.to_ref) }
    expr
end

#to_typeObject

Converts to a new type.



4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
# File 'lib/HDLRuby/hruby_high.rb', line 4860

def to_type
    if self.size == 1 and
       ( self[0].is_a?(Range) or self[0].respond_to?(:to_i) ) then
        # Vector type case
        return bit[*self]
    else
        # Tuple type case.
        return TypeTuple.new(:"",:little,*self)
    end
end

#typedef(name) ⇒ Object

Declares a new type definition with +name+ equivalent to current one.



4872
4873
4874
# File 'lib/HDLRuby/hruby_high.rb', line 4872

def typedef(name)
    return self.to_type.typedef(name)
end