HDLRuby 2.11.8 → 2.11.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7b7d0296f617dc4b015e423c6f5b3e381fc3d91d9537a1bf4adf3fcc8e3a1f3c
4
- data.tar.gz: 957f7763c2452bc1b96e1301fe2aebadd081a2b4ea6d282ae5907768b28b0e85
3
+ metadata.gz: e1abbd8fa7d81751f96e4728d9de4feca367a2fd279f53ba819403de04ed32a7
4
+ data.tar.gz: b820d83dffce7d785de1ec0ebffdab501fbd555808b694c5df70c96f4f599fbd
5
5
  SHA512:
6
- metadata.gz: 28529796983feba1bba6502a63a9ace24e42f08410ba4afe70fc48bba1b36ba17bac3cdde95ef245590e5e3028428a477e59ef311e5eb7c9eaee48b394f01217
7
- data.tar.gz: 90e23aa3e7cbfa2ac5c397a58a8b06b2f4798a72ca491a6134b4d7c694eba6952e02e8fc0e91b10aca8790129977f893ca67c626c2aa28845596365ad65560f1
6
+ metadata.gz: 03d6925eef2143a0eead9c30147abe8617597dddddb2911a7b4cee3998a01df9d55a310eab0464676e6f1e58d7f300a377ed6da9cfda96fa66c8d8fa01dadd3e
7
+ data.tar.gz: fe6e7c90d8f4913d5cf680c3a65993624f90585d52387d2c04a94d454a6c2d295e22c0d152f4248fd678c13183c6d7c33e58824063a32dc76b58eb0651c341fd
@@ -1874,7 +1874,7 @@ static Value sub_value_numeric(Value src0, Value src1, Value dst) {
1874
1874
  * @param dst the destination value
1875
1875
  * @return dst */
1876
1876
  static Value mul_value_numeric(Value src0, Value src1, Value dst) {
1877
- printf("mul_value_numeric with src0->data_int=%llx src1->data_int=%llx\n",src0->data_int, src1->data_int);
1877
+ // printf("mul_value_numeric with src0->data_int=%llx src1->data_int=%llx\n",src0->data_int, src1->data_int);
1878
1878
  /* Sets state of the destination using the first source. */
1879
1879
  dst->type = src0->type;
1880
1880
  dst->numeric = 1;
data/lib/HDLRuby/hdrcc.rb CHANGED
@@ -641,23 +641,23 @@ elsif $options[:clang] then
641
641
  # top_system = $top_system
642
642
  # Preprocess the HW description for valid C generation.
643
643
  $top_system.each_systemT_deep do |systemT|
644
- HDLRuby.show "seq2seq step..."
644
+ HDLRuby.show? "seq2seq step..."
645
645
  # Coverts the par blocks in seq blocks to seq blocks to match
646
646
  # the simulation engine.
647
647
  systemT.par_in_seq2seq!
648
- HDLRuby.show "#{Time.now}#{show_mem}"
649
- HDLRuby.show "connections_to_behaviors step..."
648
+ HDLRuby.show? "#{Time.now}#{show_mem}"
649
+ HDLRuby.show? "connections_to_behaviors step..."
650
650
  # Converts the connections to behaviors.
651
651
  systemT.connections_to_behaviors!
652
- HDLRuby.show "#{Time.now}#{show_mem}"
652
+ HDLRuby.show? "#{Time.now}#{show_mem}"
653
653
  # Break the RefConcat.
654
- HDLRuby.show "concat_assigns step..."
654
+ HDLRuby.show? "concat_assigns step..."
655
655
  systemT.break_concat_assigns!
656
- HDLRuby.show "#{Time.now}#{show_mem}"
656
+ HDLRuby.show? "#{Time.now}#{show_mem}"
657
657
  # Explicits the types.
658
- HDLRuby.show "explicit_types step..."
658
+ HDLRuby.show? "explicit_types step..."
659
659
  systemT.explicit_types!
660
- HDLRuby.show "#{Time.now}#{show_mem}"
660
+ HDLRuby.show? "#{Time.now}#{show_mem}"
661
661
  end
662
662
  # Generate the C.
663
663
  if $options[:multiple] then
@@ -788,8 +788,12 @@ elsif $options[:clang] then
788
788
  " Then execute:\n hruby_simulator"
789
789
  end
790
790
  # Use it.
791
+ HDLRuby.show "Compiling C code of the simulator..."
791
792
  Kernel.system("#{cc_cmd} -o3 -o hruby_simulator *.c -lpthread")
793
+ HDLRuby.show "#{Time.now}#{show_mem}"
794
+ HDLRuby.show "Executing the simulator..."
792
795
  Kernel.system("./hruby_simulator")
796
+ HDLRuby.show "#{Time.now}#{show_mem}"
793
797
  end
794
798
  elsif $options[:verilog] then
795
799
  # warn("Verilog HDL output is not available yet... but it will be soon, promise!")
@@ -800,25 +804,25 @@ elsif $options[:verilog] then
800
804
  # HDLRuby.show "casts_without_expression! step..."
801
805
  # systemT.casts_without_expression!
802
806
  # HDLRuby.show Time.now
803
- HDLRuby.show "to_upper_space! step..."
807
+ HDLRuby.show? "to_upper_space! step..."
804
808
  systemT.to_upper_space!
805
- HDLRuby.show "#{Time.now}#{show_mem}"
809
+ HDLRuby.show? "#{Time.now}#{show_mem}"
806
810
  end
807
- HDLRuby.show "to_global_space! step (global)..."
811
+ HDLRuby.show? "to_global_space! step (global)..."
808
812
  $top_system.to_global_systemTs!
809
- HDLRuby.show "#{Time.now}#{show_mem}"
813
+ HDLRuby.show? "#{Time.now}#{show_mem}"
810
814
  $top_system.each_systemT_deep do |systemT|
811
815
  ## systemT.break_types!
812
816
  ## systemT.expand_types!
813
- HDLRuby.show "par_in_seq2seq! step..."
817
+ HDLRuby.show? "par_in_seq2seq! step..."
814
818
  systemT.par_in_seq2seq!
815
- HDLRuby.show "#{Time.now}#{show_mem}"
816
- HDLRuby.show "initial_concat_to_timed! step..."
819
+ HDLRuby.show? "#{Time.now}#{show_mem}"
820
+ HDLRuby.show? "initial_concat_to_timed! step..."
817
821
  systemT.initial_concat_to_timed!
818
- HDLRuby.show "#{Time.now}#{show_mem}"
819
- HDLRuby.show "with_port! step..."
822
+ HDLRuby.show? "#{Time.now}#{show_mem}"
823
+ HDLRuby.show? "with_port! step..."
820
824
  systemT.with_port!
821
- HDLRuby.show "#{Time.now}#{show_mem}"
825
+ HDLRuby.show? "#{Time.now}#{show_mem}"
822
826
  end
823
827
  # # Verilog generation
824
828
  # $output << top_system.to_verilog
@@ -1,3 +1,3 @@
1
1
  module HDLRuby
2
- VERSION = "2.11.8"
2
+ VERSION = "2.11.10"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: HDLRuby
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.8
4
+ version: 2.11.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lovic Gauthier
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-11-10 00:00:00.000000000 Z
11
+ date: 2022-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler