Module: HDLRuby::High::HBlock

Includes:
HScope_missing, Hmux
Included in:
Block, TimeBlock
Defined in:
lib/HDLRuby/hruby_high.rb

Overview

Module giving the properties of a high-level block.

Constant Summary collapse

High =
HDLRuby::High

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Hmux

#mux

Methods included from HScope_missing

#h_missing, #method_missing

Methods included from Hmissing

#method_missing

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class HDLRuby::High::HScope_missing

Instance Attribute Details

#namespaceObject (readonly)

The namespace



3579
3580
3581
# File 'lib/HDLRuby/hruby_high.rb', line 3579

def namespace
  @namespace
end

#return_valueObject (readonly)

The return value when building the scope.



3582
3583
3584
# File 'lib/HDLRuby/hruby_high.rb', line 3582

def return_value
  @return_value
end

Instance Method Details

#add_block(mode = nil, name = :"", &ruby_block) ⇒ Object

Creates and adds a new block executed in +mode+, with possible +name+ and built by executing +ruby_block+.



3604
3605
3606
3607
3608
3609
3610
3611
# File 'lib/HDLRuby/hruby_high.rb', line 3604

def add_block(mode = nil, name = :"", &ruby_block)
    # Creates the block.
    block = High.make_block(mode,name,&ruby_block)
    # Adds it as a statement.
    self.add_statement(block)
    # Use its return value.
    return block.return_value
end

#build(&ruby_block) ⇒ Object Also known as: open

Build the block by executing +ruby_block+.



3585
3586
3587
3588
3589
3590
# File 'lib/HDLRuby/hruby_high.rb', line 3585

def build(&ruby_block)
    High.space_push(@namespace)
    @return_value = High.top_user.instance_eval(&ruby_block)
    High.space_pop
    @return_value
end

#cur_behaviorObject

Gets the current behavior.



3654
3655
3656
# File 'lib/HDLRuby/hruby_high.rb', line 3654

def cur_behavior
    return HDLRuby::High.cur_behavior
end

#cur_blockObject

Gets the current block.



3644
3645
3646
# File 'lib/HDLRuby/hruby_high.rb', line 3644

def cur_block
    return HDLRuby::High.cur_block
end

#cur_scopeObject

Gets the current scope.



3659
3660
3661
# File 'lib/HDLRuby/hruby_high.rb', line 3659

def cur_scope
    return HDLRuby::High.cur_scope
end

#cur_systemObject

Gets the current system.



3664
3665
3666
# File 'lib/HDLRuby/hruby_high.rb', line 3664

def cur_system
    return HDLRuby::High.cur_system
end

#hcase(value) ⇒ Object

Creates a new case statement with a +value+ used for deciding which block to execute.

NOTE: the when part is defined through the hwhen method.



3719
3720
3721
3722
# File 'lib/HDLRuby/hruby_high.rb', line 3719

def hcase(value)
    # Creates the case statement.
    self.add_statement(Case.new(value))
end

#helse(mode = nil, &ruby_block) ⇒ Object

Sets the block executed when the condition is not met to the block in +mode+ generated by the execution of +ruby_block+.

Can only be used once.



3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
# File 'lib/HDLRuby/hruby_high.rb', line 3687

def helse(mode = nil, &ruby_block)
    # There is a ruby_block: the helse is assumed to be with
    # the hif in the same block.
    # Completes the hif or the hcase statement.
    statement = @statements.last
    unless statement.is_a?(If) or statement.is_a?(Case) then
        raise AnyError, "Error: helse statement without hif nor hcase (#{statement.class})."
    end
    statement.helse(mode, &ruby_block)
end

#helsif(condition, mode = nil, &ruby_block) ⇒ Object

Sets the condition check when the condition is not met to the block, with a +condition+ that when met lead to the execution of the block in +mode+ generated by the +ruby_block+.



3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
# File 'lib/HDLRuby/hruby_high.rb', line 3701

def helsif(condition, mode = nil, &ruby_block)
    # There is a ruby_block: the helse is assumed to be with
    # the hif in the same block.
    # Completes the hif statement.
    statement = @statements.last
    unless statement.is_a?(If) then
        raise AnyError,
             "Error: helsif statement without hif (#{statement.class})."
    end
    statement.helsif(condition, mode, &ruby_block)
end

#hif(condition, mode = nil, &ruby_block) ⇒ Object

Creates a new if statement with a +condition+ that when met lead to the execution of the block in +mode+ generated by the +ruby_block+.

NOTE: the else part is defined through the helse method.



3678
3679
3680
3681
# File 'lib/HDLRuby/hruby_high.rb', line 3678

def hif(condition, mode = nil, &ruby_block)
    # Creates the if statement.
    self.add_statement(If.new(condition,mode,&ruby_block))
end

#hprint(*args) ⇒ Object

Prints.



3742
3743
3744
# File 'lib/HDLRuby/hruby_high.rb', line 3742

def hprint(*args)
    self.add_statement(Print.new(*args))
end

#hwhen(match, mode = nil, &ruby_block) ⇒ Object

Sets the block of a case structure executed when the +match+ is met to the block in +mode+ generated by the execution of +ruby_block+.

Can only be used once.



3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
# File 'lib/HDLRuby/hruby_high.rb', line 3728

def hwhen(match, mode = nil, &ruby_block)
    # There is a ruby_block: the helse is assumed to be with
    # the hif in the same block.
    # Completes the hcase statement.
    statement = @statements.last
    unless statement.is_a?(Case) then
        raise AnyError,
            "Error: hwhen statement without hcase (#{statement.class})."
    end
    statement.hwhen(match, mode, &ruby_block)
end

#par(name = :"", &ruby_block) ⇒ Object

Creates a new parallel block with possible +name+ and built from +ruby_block+.



3615
3616
3617
3618
# File 'lib/HDLRuby/hruby_high.rb', line 3615

def par(name = :"", &ruby_block)
    return :par unless ruby_block
    self.add_block(:par,name,&ruby_block)
end

#seq(name = :"", &ruby_block) ⇒ Object

Creates a new sequential block with possible +name+ and built from +ruby_block+.



3622
3623
3624
3625
# File 'lib/HDLRuby/hruby_high.rb', line 3622

def seq(name = :"", &ruby_block)
    return :seq unless ruby_block
    self.add_block(:seq,name,&ruby_block)
end

#sub(name = :"", &ruby_block) ⇒ Object

Creates a new block with the current mode with possible +name+ and built from +ruby_block+.



3629
3630
3631
# File 'lib/HDLRuby/hruby_high.rb', line 3629

def sub(name = :"", &ruby_block)
    self.add_block(self.mode,name,&ruby_block)
end

#to_refObject

Converts to a new reference.



3596
3597
3598
# File 'lib/HDLRuby/hruby_high.rb', line 3596

def to_ref
    return RefObject.new(this,self)
end

#top_blockObject

Gets the top block of the current behavior.



3649
3650
3651
# File 'lib/HDLRuby/hruby_high.rb', line 3649

def top_block
    return HDLRuby::High.top_block
end

#unshift(&ruby_block) ⇒ Object

Adds statements at the top of the block.



3634
3635
3636
3637
3638
3639
3640
3641
# File 'lib/HDLRuby/hruby_high.rb', line 3634

def unshift(&ruby_block)
    # Create a sub block for the statements.
    block = High.make_block(self.mode,:"",&ruby_block)
    # Unshifts it.
    self.unshift_statement(block)
    # Use its return value.
    return block.return_value
end