annotate src/parallel_execution/lib/Gears/Util.pm @ 667:72b7863ea5b4

...
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Tue, 18 Aug 2020 19:56:33 +0900
parents 9bf4e49d3399
children 47910f7c731e
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;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 use Carp qw/croak/;
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 return $ir;
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 {
559
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 558
diff changeset
26 my ($file,$code_verbose) = @_;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
27 my $ir = {};
594
f821570d5ab7 bump gears tools
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 589
diff changeset
28 $ir->{file_name} = $file;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
29
564
9cca20bcb558 add auto_generate_context.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
30 Gears::Util->file_checking($file);
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
31 open my $fh, '<', $file;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
32 my $line = <$fh>;
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
33 my $static_data_gear_write_mode = 0;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
34
624
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
35 my $directory_containing_file = "";
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
36
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
37 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
38 $directory_containing_file = $1;
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
39 }
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
40
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
41
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
42 while ($line =~ /#include\s+"([\w\/\.]+)"/) {
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
43 my $header_file = $1;
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
44 if ($header_file =~ m|\./context\.h|) {
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
45 next;
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
46 }
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
47 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
48 $line = <$fh>;
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
49 }
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
50
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
51 # skip space
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
52
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
53 while ($line =~ /^\s*$/) {
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
54 $line = <$fh>;
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
55 }
d560184a7ce7 auto load header to context
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 621
diff changeset
56
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
57 if ($line =~ /typedef struct (\w+)\s?<.*>([\s\w{]+)/) {
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
58 die "invalied struct name $1" unless $1;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
59 $ir->{name} = $1;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
60
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
61 if ($2 =~ m|\s*impl\s*([\w+]+)\s*{|) {
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
62 $ir->{isa} = $1;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
63 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
64 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
65
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
66 unless ($ir->{name}) {
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
67 return undef;
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
68 }
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
69
597
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
70 my @tmp_args;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
71 while ($line = <$fh>) {
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
72 if ($line =~ m|\s*/\*|) {
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
73 while ( $line !~ m|\*/|) {
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
74 $line = <$fh>;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
75 next;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
76 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
77 next;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
78 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
79 next if ($line =~ /^\s+$/);
583
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
80 next if ($line =~ m[^\s*//]);
575
3e3158198cb5 bug fix...
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 574
diff changeset
81 next if ($line =~ m[^\}\s*$ir->{name};]);
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
82
597
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
83 if ($line =~ m|__code (\w+)|) {
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
84 push(@tmp_args,"enum Code $1;\n");
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
85 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
86 my $args = $';
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
87 #$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
88 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
89 my $const_type = $1;
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
90 my $type = $2;
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
91 my $vname = $3;
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
92 next if ($type eq '__code');
644
670b972b6ff0 bump Gears::Util
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 625
diff changeset
93 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
94 $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
95 my $val = "$type $vname;\n";
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
96 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
97 }
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
98 next;
556
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
597
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
101 $line =~ s/^\s+//;
410924949569 impl auto search data gear
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 595
diff changeset
102 push(@tmp_args,$line);
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
103 $static_data_gear_write_mode = 1;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
104 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
105
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
106 push(@{$ir->{content}}, _uniq(@tmp_args));
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
107 return $ir;
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
108 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
109
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
110 sub _uniq {
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
111 my %seen;
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
112 return grep { !$seen{$_}++ } @_;
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
113 }
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
114
666
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
115 sub separate_code_and_data_gear_after_parse {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
116 # create this data structure
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
117 #\ {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
118 # codes [
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
119 # [0] {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
120 # args "Impl* stackTest, struct Stack* stack, __code next(...)",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
121 # name "insertTest1"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
122 # },
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
123 # [1] {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
124 # args "Impl* stackTest, struct Stack* stack, __code next(...)",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
125 # name "insertTest2"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
126 # },
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
127 # [2] {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
128 # args "Impl* stackTest, struct Stack* stack, __code next(...)",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
129 # name "pop2Test"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
130 # },
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
131 # [3] {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
132 # 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
133 # name "pop2Test1"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
134 # },
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
135 # [4] {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
136 # args "...",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
137 # name "next"
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
138 # }
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
139 # ],
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
140 # content [
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
141 # [0] "enum Code insertTest1;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
142 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
143 # [1] "union Data* stackTest;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
144 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
145 # [2] "struct Stack* stack;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
146 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
147 # [3] "enum Code insertTest2;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
148 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
149 # [4] "enum Code pop2Test;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
150 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
151 # [5] "enum Code pop2Test1;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
152 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
153 # [6] "union Data* data;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
154 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
155 # [7] "union Data* data1;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
156 #",
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
157 # [8] "enum Code next;
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 # ],
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
160 # data [
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
161 # [0] "union Data* stackTest;
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 # [1] "struct Stack* stack;
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] "union Data* data;
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] "union Data* data1;
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 # ],
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
170 # 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
171 # name "StackTest"
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 #
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 663
diff changeset
174
583
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
175 my ($class, $file) = @_;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
176 my $ir = _parse_base($file);
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
177
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
178 my @data_gears;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
179 my @code_gears;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
180 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
181 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
182
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
183 open my $fh , '<', $file;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
184 my $i = 0;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
185 while (($i < scalar @code_gears) && (my $line = <$fh>)) {
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
186 my $cg = $code_gears[$i];
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
187 if ($line =~ m|__code $cg\(([()\.\*\s\w,_]+)\)|) {
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
188 $code_gears[$i] = {
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
189 name => $cg,
589
841e1d8673a5 bump gears tools
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 583
diff changeset
190 args => $1,
583
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
191 };
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
192 $i++;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
193 }
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
194 }
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
195 $ir->{codes} = \@code_gears;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
196 $ir->{data} = \@data_gears;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
197 return $ir;
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
198 }
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
199
564
9cca20bcb558 add auto_generate_context.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
200 sub file_checking {
9cca20bcb558 add auto_generate_context.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 559
diff changeset
201 my ($class, $file_name) = @_;
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
202 unless (-f $file_name) {
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
203 croak "invalid filepath :$file_name\n";
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
204 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
205 }
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
206
557
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
207 sub slup {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
208 my ($class,$file) = @_;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
209 open my $fh, '<', $file;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
210 local $/;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
211 my $f = <$fh>;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
212 return $f;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
213 }
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
214
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 556
diff changeset
215
663
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
216 sub find_cbc_sources_from_path {
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
217 my $class = shift;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
218 my $find_path = shift // ".";
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
219
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
220 my @files;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
221 find( { wanted => sub { push @files, $_ if /\.cbc/ }, no_chdir => 1 }, $find_path);
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
222
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
223 return \@files;
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
224 }
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 659
diff changeset
225
657
3e3f282d62e4 refactoring Gears perl modules
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 652
diff changeset
226 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
227 my $class = shift;
5f4b7ff18a34 set header path each include struct
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 564
diff changeset
228 my $find_path = shift // ".";
5f4b7ff18a34 set header path each include struct
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 564
diff changeset
229
5f4b7ff18a34 set header path each include struct
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 564
diff changeset
230 my @files;
583
ba529ff3f068 fix trans_impl.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 580
diff changeset
231 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
232
5f4b7ff18a34 set header path each include struct
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 564
diff changeset
233 return \@files;
5f4b7ff18a34 set header path each include struct
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 564
diff changeset
234 }
5f4b7ff18a34 set header path each include struct
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 564
diff changeset
235
595
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
236 sub extraction_dg_compile_sources {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
237 my ($class, $compile_sources) = @_;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
238 my %counter;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
239 my %include_pool = ();
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
240 for my $cbc_file (@{$compile_sources}) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
241 open my $fh , '<', $cbc_file;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
242 while (my $line = <$fh>) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
243 if ($line =~ m|//\s*:skip|) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
244 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
245 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
246
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
247 if ($line =~ /#interface\s*"(.*)\.h"/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
248 push(@{$counter{interfaces}->{$1}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
249 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
250 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
251
644
670b972b6ff0 bump Gears::Util
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 625
diff changeset
252 if ($line =~ /^\/\/\s*include\s*"(.*)\.(?:h|dg)?"/) {
595
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
253 push(@{$include_pool{$1}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
254 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
255 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
256
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
257 if ($line =~ m|//\s*Skip:\s*generate_context|) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
258 $line = <$fh>;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
259 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
260 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
261
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
262
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
263 if ($line =~ /^(\w+)\*\s*create(\w+)\(([*\w\s]+)\)/) {
595
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
264 my $interface = $1;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
265 my $implementation = $2;
598
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
266 my $arg = $3;
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
267 if ($arg eq "") {
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
268 next;
32388e7467bc pull from xv6
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 597
diff changeset
269 }
595
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
270 push(@{$counter{interfaces}->{$interface}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
271 push(@{$counter{impl}->{$implementation}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
272 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
273 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
274
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
275 if ($line =~ /Gearef\(context,\s*(\w+)\)/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
276 my $implementation = $1;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
277 push(@{$counter{impl}->{$implementation}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
278 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
279 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
280
667
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 666
diff changeset
281 # ALLOCATE is generated by generate_stub.pl
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 666
diff changeset
282 # 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
283 #Element* element = &ALLOCATE(cbc_context, Element)->Element;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
284 if ($line =~ /ALLOCATE\w*\((?:cbc_)?context,\s*(\w+)\)/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
285 my $implementation = $1;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
286 push(@{$counter{impl}->{$implementation}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
287 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
288 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
289
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
290 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
291 my $implementation = $1;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
292 push(@{$counter{impl}->{$implementation}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
293 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
294 }
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 if ($line =~ /new\s+(\w+?)\([\w\s]*\);/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
297 my $implementation = $1;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
298 push(@{$counter{impl}->{$implementation}->{$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
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
302 if ($line =~ /ALLOCATE_DATA_GEAR\((\w+),\s*(\w+)\)/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
303 my $implementation = $2;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
304 push(@{$counter{impl}->{$implementation}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
305 next;
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
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
308 #TaskManagerImpl* taskManager = (TaskManagerImpl*)GearImpl(context, TaskManager, taskManager);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
309 if ($line =~ /\((\w+)\*\)GearImpl\(context,\s*(\w+),\s*(\w+)\)/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
310 my $interface = $2;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
311 my $implementation = $1;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
312 push(@{$counter{impl}->{$implementation}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
313 push(@{$counter{interfaces}->{$interface}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
314 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
315 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
316
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
317 if ($line =~ /^__code/) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
318 while ($line =~ /struct (\w+)\s*\*/g) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
319 next if $1 eq "Context";
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
320 next if (exists $counter{interfaces}->{$1});
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
321 push(@{$counter{impl}->{$1}->{$cbc_file}},$.);
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
322 }
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 close $fh;
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 use Data::Dumper;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
328
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
329 for my $cg_name (keys %include_pool) {
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
330 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
331 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
332 if (exists $counter{interfaces}->{$cg_name}){
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
333 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
334 delete $include_pool{$cg_name};
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
335 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
336 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
337
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
338 if (exists $counter{impl}->{$cg_name}){
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
339 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
340 delete $include_pool{$cg_name};
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
341 next;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
342 }
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
343 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
344 delete $include_pool{$cg_name};
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
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
347 $counter{interfaces}->{Meta}++;
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
348 $counter{interfaces}->{TaskManager}++;
652
f666c6daba96 omit debug infomation
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 644
diff changeset
349 #print "-----------\n";
667
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 666
diff changeset
350 #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
351 #print "-----------\n";
595
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
352 return \%counter;
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
00429c9e0a45 bump PerlSciripts
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents: 594
diff changeset
355
556
a0b7eb5e58c0 add Gears::Util module
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
356 1;