annotate src/parallel_execution/lib/Gears/Util.pm @ 681:04df4583de36

...
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Fri, 21 Aug 2020 05:59:24 +0900
parents c65f8f00ba6f
children 49d57e7fce39
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 package Gears::Util;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 use strict;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 use warnings;
677
47910f7c731e remove some global variables
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 667
diff changeset
4 use Carp qw/croak carp/;
557
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
5 use File::Find;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 sub parse {
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 my ($class, $file_name) = @_;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 my $ir = _parse_base($file_name);
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 return $ir;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12
559
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
13
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 sub parse_interface {
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 my ($class, $file_name) = @_;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 my $ir = _parse_base($file_name);
663
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
17
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 unless ($ir->{name}) {
624
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
19 croak "invalid struct name $file_name";
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
21
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
22
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
23 sub _parse_base {
681
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
24
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
25 # create this data structure
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
26 # \ {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
27 # content [
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
28 # [0] "union Data* stack;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
29 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
30 # [1] "union Data* data;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
31 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
32 # [2] "union Data* data1;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
33 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
34 # [3] "enum Code whenEmpty;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
35 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
36 # [4] "enum Code clear;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
37 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
38 # [5] "enum Code push;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
39 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
40 # [6] "enum Code pop;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
41 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
42 # [7] "enum Code pop2;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
43 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
44 # [8] "enum Code isEmpty;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
45 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
46 # [9] "enum Code get;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
47 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
48 # [10] "enum Code get2;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
49 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
50 # [11] "enum Code next;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
51 #"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
52 # ],
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
53 # file_name "/Users/anatofuz/src/firefly/hg/Gears/Gears/src/parallel_execution/tools/../Stack.h",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
54 # name "Stack"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
55 #}
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
56
559
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
57 my ($file,$code_verbose) = @_;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
58 my $ir = {};
594
f821570d5ab7 bump gears tools
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 589
diff changeset
59 $ir->{file_name} = $file;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
60
564
9cca20bcb558 add auto_generate_context.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
61 Gears::Util->file_checking($file);
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
62 open my $fh, '<', $file;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
63 my $line = <$fh>;
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
64 my $static_data_gear_write_mode = 0;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
65
624
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
66 my $directory_containing_file = "";
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
67
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
68 if ($file =~ m<([\.\w/]+)/\w+\.(?:cbc|h|c)>) {
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
69 $directory_containing_file = $1;
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
70 }
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
71
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
72
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
73 while ($line =~ /#include\s+"([\w\/\.]+)"/) {
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
74 my $header_file = $1;
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
75 if ($header_file =~ m|\./context\.h|) {
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
76 next;
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
77 }
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
78 push(@{$ir->{cbc_context_include_headers}}, "$directory_containing_file/$header_file");
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
79 $line = <$fh>;
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
80 }
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
81
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
82 # skip space
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
83
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
84 while ($line =~ /^\s*$/) {
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
85 $line = <$fh>;
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
86 }
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
87
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
88 if ($line =~ /typedef struct (\w+)\s?<.*>([\s\w{]+)/) {
679
c65f8f00ba6f analyze the interface when goto using the interface
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 677
diff changeset
89 my $vname = $1;
c65f8f00ba6f analyze the interface when goto using the interface
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 677
diff changeset
90 unless ($vname) {
c65f8f00ba6f analyze the interface when goto using the interface
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 677
diff changeset
91 carp "[WARN] invalied struct name from $file";
c65f8f00ba6f analyze the interface when goto using the interface
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 677
diff changeset
92 return undef;
c65f8f00ba6f analyze the interface when goto using the interface
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 677
diff changeset
93 }
c65f8f00ba6f analyze the interface when goto using the interface
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 677
diff changeset
94 $ir->{name} = $vname;
c65f8f00ba6f analyze the interface when goto using the interface
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 677
diff changeset
95 my $annotation = $2;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
96
679
c65f8f00ba6f analyze the interface when goto using the interface
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 677
diff changeset
97 if ($annotation =~ m|\s*impl\s*([\w+]+)\s*{|) {
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
98 $ir->{isa} = $1;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
99 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
100 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
101
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
102 unless ($ir->{name}) {
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
103 return undef;
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
104 }
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
105
597
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
106 my @tmp_args;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
107 while ($line = <$fh>) {
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
108 if ($line =~ m|\s*/\*|) {
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
109 while ( $line !~ m|\*/|) {
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
110 $line = <$fh>;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
111 next;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
112 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
113 next;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
114 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
115 next if ($line =~ /^\s+$/);
583
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
116 next if ($line =~ m[^\s*//]);
575
3e3158198cb5 bug fix...
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 574
diff changeset
117 next if ($line =~ m[^\}\s*$ir->{name};]);
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
118
597
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
119 if ($line =~ m|__code (\w+)|) {
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
120 push(@tmp_args,"enum Code $1;\n");
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
121 next if $static_data_gear_write_mode;
597
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
122 my $args = $';
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
123 #$args eq (Impl* vm, pde_t* pgdir, char* init, uint sz, __code next(...));
644
670b972b6ff0 bump Gears::Util
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 625
diff changeset
124 while ($args =~ /\s*(struct|union|const|enum)?\s*([\w*\[\]_]+)\s*(\w+)?,?/g) {
597
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
125 my $const_type = $1;
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
126 my $type = $2;
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
127 my $vname = $3;
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
128 next if ($type eq '__code');
644
670b972b6ff0 bump Gears::Util
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 625
diff changeset
129 next unless $vname; # __code hoge(int ret, __code next(ret, ...); this is second "ret" case
625
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 624
diff changeset
130 $type =~ s/^(?:Impl|Type|Isa)\s*(\*)?/union Data$1/;
597
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
131 my $val = "$type $vname;\n";
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
132 push(@tmp_args, $const_type ? "$const_type $val" : $val);
597
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
133 }
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
134 next;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
135 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
136
597
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
137 $line =~ s/^\s+//;
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
138 push(@tmp_args,$line);
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
139 $static_data_gear_write_mode = 1;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
140 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
141
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
142 push(@{$ir->{content}}, _uniq(@tmp_args));
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
143 return $ir;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
144 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
145
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
146 sub _uniq {
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
147 my %seen;
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
148 return grep { !$seen{$_}++ } @_;
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
149 }
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
150
666
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
151 sub separate_code_and_data_gear_after_parse {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
152 # create this data structure
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
153 #\ {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
154 # codes [
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
155 # [0] {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
156 # args "Impl* stackTest, struct Stack* stack, __code next(...)",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
157 # name "insertTest1"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
158 # },
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
159 # [1] {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
160 # args "Impl* stackTest, struct Stack* stack, __code next(...)",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
161 # name "insertTest2"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
162 # },
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
163 # [2] {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
164 # args "Impl* stackTest, struct Stack* stack, __code next(...)",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
165 # name "pop2Test"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
166 # },
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
167 # [3] {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
168 # args "Impl* stackTest, union Data* data, union Data* data1, struct Stack* stack, __code next(...)",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
169 # name "pop2Test1"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
170 # },
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
171 # [4] {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
172 # args "...",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
173 # name "next"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
174 # }
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
175 # ],
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
176 # content [
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
177 # [0] "enum Code insertTest1;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
178 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
179 # [1] "union Data* stackTest;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
180 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
181 # [2] "struct Stack* stack;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
182 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
183 # [3] "enum Code insertTest2;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
184 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
185 # [4] "enum Code pop2Test;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
186 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
187 # [5] "enum Code pop2Test1;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
188 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
189 # [6] "union Data* data;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
190 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
191 # [7] "union Data* data1;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
192 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
193 # [8] "enum Code next;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
194 #"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
195 # ],
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
196 # data [
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
197 # [0] "union Data* stackTest;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
198 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
199 # [1] "struct Stack* stack;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
200 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
201 # [2] "union Data* data;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
202 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
203 # [3] "union Data* data1;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
204 #"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
205 # ],
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
206 # file_name "/Users/anatofuz/src/firefly/hg/Gears/Gears/src/parallel_execution/tools/../examples/pop_and_push/StackTest.h",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
207 # name "StackTest"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
208 #}
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
209 #
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
210
583
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
211 my ($class, $file) = @_;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
212 my $ir = _parse_base($file);
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
213
681
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
214 $ir->{hasOutputArgs} = {};
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
215
583
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
216 my @data_gears;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
217 my @code_gears;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
218 map { push (@data_gears, $_) unless ($_ =~ /enum Code/);} @{$ir->{content}};
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
219 map { push (@code_gears, $1) if ($_ =~ /enum Code (\w+);/);} @{$ir->{content}};
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
220
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
221 open my $fh , '<', $file;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
222 my $i = 0;
681
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
223 my @have_output_data;
583
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
224 while (($i < scalar @code_gears) && (my $line = <$fh>)) {
681
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
225 my $codeGearName = $code_gears[$i];
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
226 if ($line =~ m|__code $codeGearName\(([()\.\*\s\w,_]+)\)|) {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
227 my $arg = $1;
583
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
228 $code_gears[$i] = {
681
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
229 name => $codeGearName,
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
230 args => $arg,
583
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
231 };
681
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
232 # args "Impl* stack, __code next(Type* data, Type* data1, ...)",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
233 if ($arg =~ /__code \w+\((.+),\s*\.\.\.\s*\)/) {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
234 my $outputArgs = $1;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
235 while ($outputArgs =~ /([\w*]+)\s(\w+),?/g) {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
236 my $ttype = $1;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
237 my $tname = $2;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
238 $ir->{hasOutputArgs}->{$codeGearName}->{$tname} = $ttype;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
239 }
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
240 }
583
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
241 $i++;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
242 }
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
243 }
681
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 679
diff changeset
244
583
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
245 $ir->{codes} = \@code_gears;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
246 $ir->{data} = \@data_gears;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
247 return $ir;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
248 }
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
249
564
9cca20bcb558 add auto_generate_context.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
250 sub file_checking {
9cca20bcb558 add auto_generate_context.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
251 my ($class, $file_name) = @_;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
252 unless (-f $file_name) {
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
253 croak "invalid filepath :$file_name\n";
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
254 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
255 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
256
557
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
257 sub slup {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
258 my ($class,$file) = @_;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
259 open my $fh, '<', $file;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
260 local $/;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
261 my $f = <$fh>;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
262 return $f;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
263 }
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
264
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
265
663
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
266 sub find_cbc_sources_from_path {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
267 my $class = shift;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
268 my $find_path = shift // ".";
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
269
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
270 my @files;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
271 find( { wanted => sub { push @files, $_ if /\.cbc/ }, no_chdir => 1 }, $find_path);
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
272
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
273 return \@files;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
274 }
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
275
657
3e3f282d62e4 refactoring Gears perl modules
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 652
diff changeset
276 sub find_headers_from_path {
573
5f4b7ff18a34 set header path each include struct
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 564
diff changeset
277 my $class = shift;
5f4b7ff18a34 set header path each include struct
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 564
diff changeset
278 my $find_path = shift // ".";
5f4b7ff18a34 set header path each include struct
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 564
diff changeset
279
5f4b7ff18a34 set header path each include struct
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 564
diff changeset
280 my @files;
583
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
281 find( { wanted => sub { push @files, $_ if /\.(?:h|dg)/ }, no_chdir => 1 }, $find_path);
573
5f4b7ff18a34 set header path each include struct
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 564
diff changeset
282
5f4b7ff18a34 set header path each include struct
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 564
diff changeset
283 return \@files;
5f4b7ff18a34 set header path each include struct
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 564
diff changeset
284 }
5f4b7ff18a34 set header path each include struct
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 564
diff changeset
285
595
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
286 sub extraction_dg_compile_sources {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
287 my ($class, $compile_sources) = @_;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
288 my %counter;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
289 my %include_pool = ();
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
290 for my $cbc_file (@{$compile_sources}) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
291 open my $fh , '<', $cbc_file;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
292 while (my $line = <$fh>) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
293 if ($line =~ m|//\s*:skip|) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
294 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
295 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
296
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
297 if ($line =~ /#interface\s*"(.*)\.h"/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
298 push(@{$counter{interfaces}->{$1}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
299 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
300 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
301
644
670b972b6ff0 bump Gears::Util
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 625
diff changeset
302 if ($line =~ /^\/\/\s*include\s*"(.*)\.(?:h|dg)?"/) {
595
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
303 push(@{$include_pool{$1}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
304 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
305 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
306
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
307 if ($line =~ m|//\s*Skip:\s*generate_context|) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
308 $line = <$fh>;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
309 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
310 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
311
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
312
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
313 if ($line =~ /^(\w+)\*\s*create(\w+)\(([*\w\s]+)\)/) {
595
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
314 my $interface = $1;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
315 my $implementation = $2;
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
316 my $arg = $3;
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
317 if ($arg eq "") {
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
318 next;
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
319 }
595
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
320 push(@{$counter{interfaces}->{$interface}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
321 push(@{$counter{impl}->{$implementation}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
322 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
323 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
324
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
325 if ($line =~ /Gearef\(context,\s*(\w+)\)/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
326 my $implementation = $1;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
327 push(@{$counter{impl}->{$implementation}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
328 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
329 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
330
667
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 666
diff changeset
331 # ALLOCATE is generated by generate_stub.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 666
diff changeset
332 # because extraction_dg_compile_sources caller after translated .cbc to .c
595
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
333 #Element* element = &ALLOCATE(cbc_context, Element)->Element;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
334 if ($line =~ /ALLOCATE\w*\((?:cbc_)?context,\s*(\w+)\)/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
335 my $implementation = $1;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
336 push(@{$counter{impl}->{$implementation}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
337 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
338 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
339
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
340 if ($line =~ /ALLOCATE_(?:PTR_)?ARRAY\((?:cbc_)?context,\s*(\w+),[\s\w]+\)/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
341 my $implementation = $1;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
342 push(@{$counter{impl}->{$implementation}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
343 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
344 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
345
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
346 if ($line =~ /new\s+(\w+?)\([\w\s]*\);/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
347 my $implementation = $1;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
348 push(@{$counter{impl}->{$implementation}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
349 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
350 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
351
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
352 if ($line =~ /ALLOCATE_DATA_GEAR\((\w+),\s*(\w+)\)/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
353 my $implementation = $2;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
354 push(@{$counter{impl}->{$implementation}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
355 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
356 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
357
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
358 #TaskManagerImpl* taskManager = (TaskManagerImpl*)GearImpl(context, TaskManager, taskManager);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
359 if ($line =~ /\((\w+)\*\)GearImpl\(context,\s*(\w+),\s*(\w+)\)/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
360 my $interface = $2;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
361 my $implementation = $1;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
362 push(@{$counter{impl}->{$implementation}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
363 push(@{$counter{interfaces}->{$interface}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
364 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
365 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
366
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
367 if ($line =~ /^__code/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
368 while ($line =~ /struct (\w+)\s*\*/g) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
369 next if $1 eq "Context";
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
370 next if (exists $counter{interfaces}->{$1});
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
371 push(@{$counter{impl}->{$1}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
372 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
373 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
374 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
375 close $fh;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
376 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
377 use Data::Dumper;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
378
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
379 for my $cg_name (keys %include_pool) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
380 my @tmp_cbc_file_names = keys %{$include_pool{$cg_name}};
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
381 my $tmp_cbc_file_name = shift @tmp_cbc_file_names;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
382 if (exists $counter{interfaces}->{$cg_name}){
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
383 push(@{$counter{interfaces}->{$cg_name}->{$tmp_cbc_file_name}},$include_pool{$cg_name}->{$tmp_cbc_file_name});
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
384 delete $include_pool{$cg_name};
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
385 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
386 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
387
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
388 if (exists $counter{impl}->{$cg_name}){
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
389 push(@{$counter{impl}->{$cg_name}->{$tmp_cbc_file_name}},$include_pool{$cg_name}->{$tmp_cbc_file_name});
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
390 delete $include_pool{$cg_name};
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
391 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
392 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
393 push(@{$counter{interfaces}->{$cg_name}->{$tmp_cbc_file_name}},$include_pool{$cg_name}->{$tmp_cbc_file_name});
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
394 delete $include_pool{$cg_name};
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
395 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
396
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
397 $counter{interfaces}->{Meta}++;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
398 $counter{interfaces}->{TaskManager}++;
652
f666c6daba96 omit debug infomation
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 644
diff changeset
399 #print "-----------\n";
667
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 666
diff changeset
400 #print Dumper \%counter; #this line is debug message
652
f666c6daba96 omit debug infomation
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 644
diff changeset
401 #print "-----------\n";
595
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
402 return \%counter;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
403 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
404
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
405
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
406 1;