annotate src/parallel_execution/trans_impl.pl @ 562:b7db5cb2e2c1

tweak
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Tue, 19 Nov 2019 15:21:22 +0900
parents aa4bef31cbfd
children 928d01b70e62
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
555
bcc137ca91da add trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 #!/usr/bin/env perl
bcc137ca91da add trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 use strict;
bcc137ca91da add trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 use warnings;
bcc137ca91da add trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4
557
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
5 use FindBin;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
6 use lib "$FindBin::Bin/lib";
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
7 use Gears::Util;
555
bcc137ca91da add trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8
561
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
9 use Getopt::Std;
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
10
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
11 my %opt;
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
12 getopts("w" => \%opt);
555
bcc137ca91da add trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13
557
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
14 my $impl_file = shift or die 'require impl file';
560
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
15 my $impl_ir = Gears::Util->parse_code_verbose($impl_file);
559
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
16 my $interface_file = Gears::Util->find_header($impl_ir->{isa},"$FindBin::Bin");
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
17
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
18 my $inter_ir = Gears::Util->parse_code_verbose($interface_file);
561
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
19
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
20
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
21 my $output_file = $impl_file;
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
22 $output_file =~ s/\.h/.cbc/;
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
23 open my $fh, '>', $output_file;
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
24 my $stdout = $fh;
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
25
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
26 unless ($opt{w}) {
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
27 $stdout = *STDOUT;
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
28 }
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
29
560
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
30 emit_include_part($stdout, $inter_ir->{name});
561
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
31 emit_impl_header_in_comment($stdout, $impl_file);
559
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
32 emit_constracutor($stdout,$impl_ir,$inter_ir);
560
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
33 emit_code_gears($stdout,$impl_ir,$inter_ir);
561
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
34 close $fh;
559
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
35
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
36 sub emit_include_part {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
37 my ($out, $interface) = @_;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
38 print $out <<"EOF"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
39 #include "../context.h";
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
40 #interface "$interface.h";
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
41
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
42 EOF
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
43 }
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
44
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
45 sub emit_impl_header_in_comment {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
46 my ($out, $impl_file) = @_;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
47 my $line = Gears::Util->slup($impl_file);
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
48 print $out "// ----\n";
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
49 map { print $out "// $_\n" } split /\n/, $line;
561
aa4bef31cbfd add write mode
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 560
diff changeset
50 print $out "// ----\n\n";
559
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
51 }
558
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 557
diff changeset
52
559
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
53 sub emit_constracutor {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
54 my ($out, $impl_ir, $inter_ir) = @_;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
55
560
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
56 my @inter_data = @{$inter_ir->{data}};
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
57 my $instance_inter = shift @inter_data;
559
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
58 if ($instance_inter =~ /union\s*Data\*\s*(\w+)/) {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
59 $instance_inter = $1;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
60 }
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
61 my $instance_impl = lcfirst $impl_ir->{name};
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
62
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
63 print $out <<"EOF";
560
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
64 $impl_ir->{isa}* create$impl_ir->{name}(struct Context* context) {
559
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
65 struct $impl_ir->{isa}* $instance_inter = new $impl_ir->{isa}();
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
66 struct $impl_ir->{name}* $instance_impl = new $impl_ir->{name}();
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
67 $instance_inter->$instance_inter = (union Data*)$instance_impl;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
68 EOF
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
69
560
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
70 for my $datum (@inter_data) {
559
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
71 if ($datum =~ /\w+ \w+\* (\w+)/) {
560
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
72 print $out " ${instance_impl}->$1 = NULL;\n";
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
73 next;
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
74 }
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
75 if ($datum =~ /\w+ \w+ (\w+)/) {
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
76 print $out " ${instance_impl}->$1 = 0;\n";
559
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
77 }
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
78 }
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
79
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
80 for my $code (@{$inter_ir->{codes}}) {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
81 my $code_gear = $code->[0];
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
82 print $out " ${instance_inter}->$code_gear = C_$code_gear$impl_ir->{name};\n"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
83 }
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
84
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
85 print $out " return $instance_inter;\n";
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
86 print $out "}\n";
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
87 }
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
88
560
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
89
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
90 sub emit_code_gears {
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
91 my ($out, $impl_ir, $inter_ir) = @_;
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
92 my $impl = $impl_ir->{name};
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
93
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
94 my @inter_data = @{$inter_ir->{data}};
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
95 my $instance_inter = shift @inter_data;
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
96 if ($instance_inter =~ /union\s*Data\*\s*(\w+)/) {
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
97 $instance_inter = $1;
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
98 }
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
99 my $instance_impl = lcfirst $impl_ir->{name};
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
100 my $data_gear_types = {};
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
101
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
102 for my $code_ir (@{$inter_ir->{codes}}) {
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
103 my $data_gears = $code_ir->[1];
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
104 $data_gears =~ s/Impl/$impl/g;
562
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 561
diff changeset
105 while ($data_gears =~ /Type\*\s*(\w+),/g) {
560
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
106 my $target = $1;
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
107 if (exists $data_gear_types->{$target}){
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
108 $data_gears =~ s/Type\*/$data_gear_types->{$target}/;
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
109 } else {
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
110 my $td = "";
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
111 map { $td = $_ if ($_ =~ /$target/) } @inter_data;
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
112 if ($td =~ /(\w+)\s*([\w\*]+)\s*(\w+)/) {
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
113 my $tmp = "$1 $2";
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
114 $data_gears =~ s/Type\*/$tmp/;
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
115 $data_gear_types->{$target} = $tmp;
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
116 }
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
117 }
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
118 }
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
119
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
120 print $out "__code $code_ir->[0]$impl(";
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
121 print $out "$data_gears) {\n\n";
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
122
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
123 #__code next(...), __code whenEmpty(...)
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
124 my @cg = ();
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
125 while ($data_gears =~ /__code ([\w(\.)\*\s,]+?\)),?/g) {
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
126 push(@cg, $1);
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
127 }
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
128
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
129 if (@cg) {
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
130 if (@cg == 2) {
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
131 print $out " if (:TODO:) {\n";
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
132 print $out " goto ",shift(@cg),";\n";
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
133 print $out " }\n";
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
134 print $out " goto ",shift(@cg),";\n";
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
135 } else {
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
136 print $out " goto ",shift(@cg),";\n";
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
137 }
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
138 }
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
139 print $out "}\n\n";
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
140 }
2276952ed717 impl trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
141 }