annotate src/parallel_execution/lib/Gears/Util.pm @ 682:49d57e7fce39

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