Mercurial > hg > GearsTemplate
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 |
rev | line source |
---|---|
555 | 1 #!/usr/bin/env perl |
2 use strict; | |
3 use warnings; | |
4 | |
557 | 5 use FindBin; |
6 use lib "$FindBin::Bin/lib"; | |
7 use Gears::Util; | |
555 | 8 |
561 | 9 use Getopt::Std; |
10 | |
11 my %opt; | |
12 getopts("w" => \%opt); | |
555 | 13 |
557 | 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 | 16 my $interface_file = Gears::Util->find_header($impl_ir->{isa},"$FindBin::Bin"); |
17 | |
18 my $inter_ir = Gears::Util->parse_code_verbose($interface_file); | |
561 | 19 |
20 | |
21 my $output_file = $impl_file; | |
22 $output_file =~ s/\.h/.cbc/; | |
23 open my $fh, '>', $output_file; | |
24 my $stdout = $fh; | |
25 | |
26 unless ($opt{w}) { | |
27 $stdout = *STDOUT; | |
28 } | |
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 | 31 emit_impl_header_in_comment($stdout, $impl_file); |
559 | 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 | 34 close $fh; |
559 | 35 |
36 sub emit_include_part { | |
37 my ($out, $interface) = @_; | |
38 print $out <<"EOF" | |
39 #include "../context.h"; | |
40 #interface "$interface.h"; | |
41 | |
42 EOF | |
43 } | |
44 | |
45 sub emit_impl_header_in_comment { | |
46 my ($out, $impl_file) = @_; | |
47 my $line = Gears::Util->slup($impl_file); | |
48 print $out "// ----\n"; | |
49 map { print $out "// $_\n" } split /\n/, $line; | |
561 | 50 print $out "// ----\n\n"; |
559 | 51 } |
558 | 52 |
559 | 53 sub emit_constracutor { |
54 my ($out, $impl_ir, $inter_ir) = @_; | |
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 | 58 if ($instance_inter =~ /union\s*Data\*\s*(\w+)/) { |
59 $instance_inter = $1; | |
60 } | |
61 my $instance_impl = lcfirst $impl_ir->{name}; | |
62 | |
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 | 65 struct $impl_ir->{isa}* $instance_inter = new $impl_ir->{isa}(); |
66 struct $impl_ir->{name}* $instance_impl = new $impl_ir->{name}(); | |
67 $instance_inter->$instance_inter = (union Data*)$instance_impl; | |
68 EOF | |
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 | 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 | 77 } |
78 } | |
79 | |
80 for my $code (@{$inter_ir->{codes}}) { | |
81 my $code_gear = $code->[0]; | |
82 print $out " ${instance_inter}->$code_gear = C_$code_gear$impl_ir->{name};\n" | |
83 } | |
84 | |
85 print $out " return $instance_inter;\n"; | |
86 print $out "}\n"; | |
87 } | |
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 | 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 } |