Class: HDLRuby::Low::Type

Inherits:
Base::Type
  • Object
show all
Includes:
Hparent, Low2Symbol, Ltype
Defined in:
lib/HDLRuby/hruby_db.rb,
lib/HDLRuby/hruby_low.rb,
lib/HDLRuby/hruby_low2c.rb,
lib/HDLRuby/hruby_low2hdr.rb,
lib/HDLRuby/hruby_low2sym.rb,
lib/HDLRuby/hruby_low2vhd.rb,
lib/HDLRuby/hruby_verilog.rb,
lib/HDLRuby/hruby_low2high.rb,
lib/HDLRuby/hruby_low_mutable.rb,
lib/HDLRuby/hruby_low_skeleton.rb,
lib/HDLRuby/hruby_low_with_bool.rb,
lib/HDLRuby/hruby_low_without_namespace.rb

Overview

Extends the Type class with functionality for breaking hierarchical types.

Direct Known Subclasses

High::Type, TypeDef, TypeStruct, TypeTuple, TypeVector

Constant Summary

Constants included from Low2Symbol

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

Instance Attribute Summary collapse

Attributes included from Hparent

#parent

Instance Method Summary collapse

Methods included from Low2Symbol

#to_sym

Methods included from Hparent

#hierarchy, #no_parent!, #scope

Methods included from Ltype

included, #ltype?

Constructor Details

#initialize(name) ⇒ Type

Creates a new type named +name+.



1299
1300
1301
1302
# File 'lib/HDLRuby/hruby_low.rb', line 1299

def initialize(name)
    # Check and set the name.
    @name = name.to_sym
end

Instance Attribute Details

#nameObject (readonly)

The name of the type



1296
1297
1298
# File 'lib/HDLRuby/hruby_low.rb', line 1296

def name
  @name
end

Instance Method Details

#baseObject

Gets the base type, by default base type is not defined.

Raises:



1393
1394
1395
# File 'lib/HDLRuby/hruby_low.rb', line 1393

def base
    raise AnyError, "No base type for type #{self}"
end

#base?Boolean

Tells if the type has a base.

Returns:

  • (Boolean)


1388
1389
1390
# File 'lib/HDLRuby/hruby_low.rb', line 1388

def base?
    return false
end

#boolean?Boolean

Tells if it is a boolean type.

Returns:

  • (Boolean)


20
21
22
# File 'lib/HDLRuby/hruby_low_with_bool.rb', line 20

def boolean?
    return false
end

#break_types!(types) ⇒ Object

Breaks the hierarchical types into sequences of type definitions. Assumes to_upper_space! has been called before. +types+ include the resulting types.



290
291
292
293
# File 'lib/HDLRuby/hruby_low_without_namespace.rb', line 290

def break_types!(types)
    # By default, nothing to do.
    return self
end

#directionObject

Get the direction of the type, little or big endian.



1372
1373
1374
1375
# File 'lib/HDLRuby/hruby_low.rb', line 1372

def direction
    # By default, little endian.
    return :little
end

#each_type_deep(&ruby_block) ⇒ Object Also known as: each_deep

Iterates over the types deeply if any.



1427
1428
1429
1430
1431
1432
1433
# File 'lib/HDLRuby/hruby_low.rb', line 1427

def each_type_deep(&ruby_block)
    # No ruby block? Return an enumerator.
    return to_enum(:each_type_deep) unless ruby_block
    # A ruby block? First apply it to current.
    ruby_block.call(self)
    # And that's all by default.
end

#eql?(obj) ⇒ Boolean

Comparison for hash: structural comparison.

Returns:

  • (Boolean)


1308
1309
1310
1311
1312
# File 'lib/HDLRuby/hruby_low.rb', line 1308

def eql?(obj)
    return false unless obj.is_a?(Type)
    return false unless @name.eql?(obj.name)
    return true
end

#equivalent?(type) ⇒ Boolean

Tell if +type+ is equivalent to current type.

NOTE: type can be compatible while not being equivalent, please refer to hruby_types.rb for type compatibility.

Returns:

  • (Boolean)


1421
1422
1423
1424
# File 'lib/HDLRuby/hruby_low.rb', line 1421

def equivalent?(type)
    # By default, types are equivalent iff they have the same name.
    return (type.is_a?(Type) and self.name == type.name)
end

#fixed?Boolean

Tells if the type is fixed point.

Returns:

  • (Boolean)


1330
1331
1332
# File 'lib/HDLRuby/hruby_low.rb', line 1330

def fixed?
    return false
end

#float?Boolean

Tells if the type is floating point.

Returns:

  • (Boolean)


1335
1336
1337
# File 'lib/HDLRuby/hruby_low.rb', line 1335

def float?
    return false
end

#hashObject

Hash function.



1315
1316
1317
# File 'lib/HDLRuby/hruby_low.rb', line 1315

def hash
    return [@name].hash
end

#hierarchical?Boolean

Tells if the type is hierarchical.

Returns:

  • (Boolean)


1413
1414
1415
# File 'lib/HDLRuby/hruby_low.rb', line 1413

def hierarchical?
    return self.base? || self.types?
end

#leaf?Boolean

Tells if the type is a leaf.

Returns:

  • (Boolean)


1340
1341
1342
# File 'lib/HDLRuby/hruby_low.rb', line 1340

def leaf?
    return false
end

#maxObject

Gets the type max value if any. Default: not defined.

Raises:



1361
1362
1363
# File 'lib/HDLRuby/hruby_low.rb', line 1361

def max
    raise AnyError, "No max value for type #{self}"
end

#minObject

Gets the type min value if any. Default: not defined.

Raises:



1367
1368
1369
# File 'lib/HDLRuby/hruby_low.rb', line 1367

def min
    raise AnyError, "No min value for type #{self}"
end

#rangeObject

Gets the range of the type, by default range is not defined.

Raises:



1383
1384
1385
# File 'lib/HDLRuby/hruby_low.rb', line 1383

def range
    raise AnyError, "No range for type #{self}"
end

#range?Boolean

Tells if the type has a range.

Returns:

  • (Boolean)


1378
1379
1380
# File 'lib/HDLRuby/hruby_low.rb', line 1378

def range?
    return false
end

#regular?Boolean

Tells if the type is regular (applies for tuples).

Returns:

  • (Boolean)


1403
1404
1405
# File 'lib/HDLRuby/hruby_low.rb', line 1403

def regular?
    return false
end

#set_name!(name) ⇒ Object

Sets the +name+.



280
281
282
# File 'lib/HDLRuby/hruby_low_mutable.rb', line 280

def set_name!(name)
    @name = name.to_sym
end

#signed?Boolean

Tells if the type signed.

Returns:

  • (Boolean)


1320
1321
1322
# File 'lib/HDLRuby/hruby_low.rb', line 1320

def signed?
    return false
end

#struct?Boolean

Tells if the type has named sub types.

Returns:

  • (Boolean)


1408
1409
1410
# File 'lib/HDLRuby/hruby_low.rb', line 1408

def struct?
    return false
end

#to_c(res, level = 0) ⇒ Object

Generates the C text of the equivalent HDLRuby code. +level+ is the hierachical level of the object. def to_c(level = 0)



576
577
578
579
580
581
582
583
584
585
586
587
# File 'lib/HDLRuby/hruby_low2c.rb', line 576

def to_c(res,level = 0)
    if self.name == :bit || self.name == :unsigned then
        # return "get_type_bit()"
        res << "get_type_bit()"
    elsif self.name == :signed then
        # return "get_type_signed()"
        res << "get_type_signed()"
    else
        raise "Unknown type: #{self.name}"
    end
    return res
end

#to_hdr(level = 0) ⇒ Object

Generates the text of the equivalent hdr text. +level+ is the hierachical level of the object.



174
175
176
# File 'lib/HDLRuby/hruby_low2hdr.rb', line 174

def to_hdr(level = 0)
    return Low2HDR.hdr_use_name(self.name)
end

#to_highObject

Creates a new high type.



61
62
63
# File 'lib/HDLRuby/hruby_low2high.rb', line 61

def to_high
    return HDLRuby::High::Type.new(self.name)
end

#to_vectorObject

Converts to a bit vector.



1437
1438
1439
# File 'lib/HDLRuby/hruby_low.rb', line 1437

def to_vector
    return TypeVector.new(:"", Bit, self.width-1..0)
end

#to_verilogObject

Converts the type to Verilog code.



1792
1793
1794
# File 'lib/HDLRuby/hruby_verilog.rb', line 1792

def to_verilog
    return self.name == :signed ? "#{self.name.to_s} " : ""
end

#to_vhdl(level = 0) ⇒ Object

Generates the text of the equivalent HDLRuby::High code. +level+ is the hierachical level of the object.



619
620
621
# File 'lib/HDLRuby/hruby_low2vhd.rb', line 619

def to_vhdl(level = 0)
    return self.boolean? ? "boolean" : "std_logic"
end

#types?Boolean

Tells if the type has sub types.

Returns:

  • (Boolean)


1398
1399
1400
# File 'lib/HDLRuby/hruby_low.rb', line 1398

def types?
    return false
end

#unsigned?Boolean

Tells if the type is unsigned.

Returns:

  • (Boolean)


1325
1326
1327
# File 'lib/HDLRuby/hruby_low.rb', line 1325

def unsigned?
    return false
end

#vector?Boolean

Tells if the type of of vector kind.

Returns:

  • (Boolean)


1345
1346
1347
# File 'lib/HDLRuby/hruby_low.rb', line 1345

def vector?
    return false
end

#widthObject

Gets the bitwidth of the type, by default 0. Bit, signed, unsigned and Float base have a width of 1.



1351
1352
1353
1354
1355
1356
1357
# File 'lib/HDLRuby/hruby_low.rb', line 1351

def width
    if [:bit, :signed, :unsigned, :float ].include?(@name) then
        return 1
    else
        return 0
    end
end