Class: RubyHDL::High::SignalI
- Inherits:
-
Expression
- Object
- Expression
- RubyHDL::High::SignalI
- Defined in:
- lib/HDLRuby/std/sequencer_sw.rb
Overview
Describes a SW implementation of a signal.
Instance Attribute Summary collapse
-
#dir ⇒ Object
readonly
Returns the value of attribute dir.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#array? ⇒ Boolean
Tell if the signal is an array.
-
#global! ⇒ Object
Set the signal to be a global.
-
#global? ⇒ Boolean
Tell if the signal is global or not.
-
#initialize(name, type, dir) ⇒ SignalI
constructor
Create a new signal with type +type+ and name +name+.
-
#to_c ⇒ Object
Convert to C code.
-
#to_f ⇒ Object
Convert to an float.
-
#to_i ⇒ Object
Convert to an integer.
-
#to_ruby ⇒ Object
Convert to Ruby code.
-
#to_s ⇒ Object
Convert to a string.
-
#value ⇒ Object
Gets the value of the signal.
-
#value=(val) ⇒ Object
Sets the value of the signal.
-
#value? ⇒ Boolean
Check if a value is defined for the signal.
-
#value_text ⇒ Object
Generate a Ruby/C string code for accessing the value of the signal with proper bit width and sign.
Methods inherited from Expression
#<=, #[], #mux, #sdownto, #seach, #stimes, #supto, #to_expr, #to_value
Constructor Details
#initialize(name, type, dir) ⇒ SignalI
Create a new signal with type +type+ and name +name+.
3470 3471 3472 3473 3474 3475 3476 3477 3478 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3470 def initialize(name,type,dir) @name = name.to_sym @type = type.to_type @dir = dir.to_sym # Compute the mask for adjusting the value to the type. @mask = (2 ** @type.width)-1 @sign = 2 ** (@type.width-1) @global = "" # The global indicator: empty or '$' end |
Instance Attribute Details
#dir ⇒ Object (readonly)
Returns the value of attribute dir.
3468 3469 3470 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3468 def dir @dir end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
3468 3469 3470 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3468 def name @name end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
3468 3469 3470 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3468 def type @type end |
Instance Method Details
#array? ⇒ Boolean
Tell if the signal is an array.
3491 3492 3493 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3491 def array? return @type.base.is_a?(TypeVector) end |
#global! ⇒ Object
Set the signal to be a global.
3486 3487 3488 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3486 def global! @global = "$" end |
#global? ⇒ Boolean
Tell if the signal is global or not.
3481 3482 3483 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3481 def global? return @global == "$" end |
#to_c ⇒ Object
Convert to C code.
3501 3502 3503 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3501 def to_c return "__" + self.name.to_s end |
#to_f ⇒ Object
Convert to an float.
3554 3555 3556 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3554 def to_f return self.value.to_f end |
#to_i ⇒ Object
Convert to an integer.
3549 3550 3551 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3549 def to_i return self.value.to_i end |
#to_ruby ⇒ Object
Convert to Ruby code.
3496 3497 3498 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3496 def to_ruby return @global + "__" + self.name.to_s end |
#to_s ⇒ Object
Convert to a string.
3559 3560 3561 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3559 def to_s return self.value.to_s end |
#value ⇒ Object
Gets the value of the signal.
3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3515 def value # return TOPLEVEL_BINDING.eval(self.to_ruby) res = TOPLEVEL_BINDING.eval(self.to_ruby) if res.is_a?(Integer) then res = res & @mask if @type.signed? then if res & @sign != 0 then return res - (@mask+1) end end end return res end |
#value=(val) ⇒ Object
Sets the value of the signal.
3544 3545 3546 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3544 def value=(val) return TOPLEVEL_BINDING.eval("#{self.to_ruby} = #{val}") end |
#value? ⇒ Boolean
Check if a value is defined for the signal.
3506 3507 3508 3509 3510 3511 3512 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3506 def value? if global? then return global_variables.include?(self.to_ruby) else return TOPLEVEL_BINDING.local_variable_defined?(self.to_ruby) end end |
#value_text ⇒ Object
Generate a Ruby/C string code for accessing the value of the signal with proper bit width and sign.
3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 |
# File 'lib/HDLRuby/std/sequencer_sw.rb', line 3531 def value_text unless self.array? then if @type.signed? then return "(#{self.to_ruby} & #{@sign} != 0 ? #{self.to_ruby} & #{@mask} - #{@mask+1} : #{self.to_ruby} & #{@mask})" else return "(#{self.to_ruby} & #{@mask})" end else return self.to_ruby end end |