ruby2c 1.0.0.9 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +1 -0
- data/History.txt +78 -53
- data/README.txt +1 -1
- data/Rakefile +2 -0
- data/lib/crewriter.rb +35 -23
- data/lib/r2cenvironment.rb +3 -3
- data/lib/rewriter.rb +6 -2
- data/lib/ruby_to_ansi_c.rb +18 -18
- data/lib/ruby_to_ruby_c.rb +3 -3
- data/lib/type.rb +3 -3
- data/lib/type_checker.rb +101 -99
- data/lib/typed_sexp.rb +49 -25
- data/test/r2ctestcase.rb +321 -288
- data/test/test_crewriter.rb +127 -128
- data/test/test_extras.rb +4 -4
- data/test/test_function_table.rb +23 -23
- data/test/test_function_type.rb +39 -40
- data/test/test_handle.rb +2 -2
- data/test/test_r2cenvironment.rb +38 -38
- data/test/test_ruby_to_ansi_c.rb +58 -58
- data/test/test_ruby_to_ruby_c.rb +26 -26
- data/test/test_type.rb +38 -38
- data/test/test_type_checker.rb +165 -165
- data/test/test_typed_sexp.rb +62 -54
- data.tar.gz.sig +2 -1
- metadata +101 -153
- metadata.gz.sig +0 -0
- data/.gemtest +0 -0
data/lib/typed_sexp.rb
CHANGED
@@ -1,77 +1,101 @@
|
|
1
|
-
|
2
1
|
begin require 'rubygems'; rescue LoadError; end
|
3
2
|
require 'sexp'
|
4
3
|
require 'type'
|
5
4
|
|
6
5
|
$TESTING = false unless defined? $TESTING
|
7
6
|
|
8
|
-
class
|
7
|
+
class Sexp
|
8
|
+
@@array_types = [ :array, :args ]
|
9
|
+
|
10
|
+
alias array_type? array_type? # shuts up duplicate method warning
|
9
11
|
|
12
|
+
##
|
13
|
+
# Returns true if the node_type is +array+ or +args+.
|
14
|
+
|
15
|
+
def array_type?
|
16
|
+
type = self.sexp_type
|
17
|
+
@@array_types.include? type
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
class TypedSexp < Sexp
|
10
22
|
def ==(obj)
|
11
23
|
case obj
|
12
24
|
when TypedSexp
|
13
|
-
super &&
|
25
|
+
super && c_type == obj.c_type
|
14
26
|
else
|
15
27
|
false
|
16
28
|
end
|
17
29
|
end
|
18
30
|
|
19
|
-
def
|
20
|
-
|
31
|
+
def new(*stuff)
|
32
|
+
r = super
|
33
|
+
r.c_type = self.c_type if self.c_type
|
34
|
+
r
|
35
|
+
end
|
36
|
+
|
37
|
+
def _set_c_type(o)
|
38
|
+
@c_type = o
|
21
39
|
end
|
22
40
|
|
23
41
|
def initialize(*args)
|
24
|
-
# TODO: should probably be
|
25
|
-
@
|
42
|
+
# TODO: should probably be CType.unknown
|
43
|
+
@c_type = CType === args.last ? args.pop : nil
|
26
44
|
super(*args)
|
27
45
|
end
|
28
46
|
|
29
47
|
def inspect
|
30
48
|
sexp_str = self.map {|x|x.inspect}.join(', ')
|
31
|
-
|
32
|
-
|
49
|
+
c_type_str = (sexp_str.empty? ? "" : ", ") + "#{array_type? ? c_types.inspect : c_type}" unless c_type.nil?
|
50
|
+
nnd = ")"
|
51
|
+
nnd << ".line(#{line})" if line && ENV["VERBOSE"]
|
52
|
+
"t(#{sexp_str}#{c_type_str}#{nnd}"
|
33
53
|
end
|
34
54
|
|
35
55
|
def pretty_print(q)
|
36
|
-
|
56
|
+
nnd = ")"
|
57
|
+
nnd << ".line(#{line})" if line && ENV["VERBOSE"]
|
58
|
+
|
59
|
+
q.group(1, 't(', nnd) do
|
37
60
|
q.seplist(self) {|v| q.pp v }
|
38
|
-
unless @
|
61
|
+
unless @c_type.nil? then
|
39
62
|
q.text ", " unless self.empty?
|
40
|
-
q.pp @
|
63
|
+
q.pp @c_type
|
41
64
|
end
|
42
65
|
end
|
43
66
|
end
|
44
67
|
|
45
|
-
def
|
68
|
+
def c_type
|
46
69
|
unless array_type? then
|
47
|
-
@
|
70
|
+
defined?(@c_type) && @c_type
|
48
71
|
else
|
49
|
-
types = self.
|
72
|
+
types = self.c_types.flatten.uniq
|
50
73
|
|
51
74
|
if types.size > 1 then
|
52
|
-
|
75
|
+
CType.hetero
|
53
76
|
else
|
54
|
-
|
77
|
+
CType.homo
|
55
78
|
end
|
56
79
|
end
|
57
80
|
end
|
58
81
|
|
59
|
-
def
|
60
|
-
raise "You shouldn't call this on an #{first}" if array_type?
|
82
|
+
def c_type=(o)
|
83
|
+
# HACK raise "You shouldn't call this on an #{first}" if array_type?
|
84
|
+
# c_type is different in ruby2c than from sexp_processor. need renames
|
61
85
|
raise "You shouldn't call this a second time, ever" unless
|
62
|
-
@
|
63
|
-
|
86
|
+
@c_type.nil? or @c_type == CType.unknown
|
87
|
+
_set_c_type(o)
|
64
88
|
end
|
65
89
|
|
66
|
-
def
|
90
|
+
def c_types
|
67
91
|
raise "You shouldn't call this if not an #{@@array_types.join(' or ')}, was #{first} (#{self.inspect})" unless array_type?
|
68
|
-
self.grep(Sexp).map { |x| x.
|
92
|
+
self.grep(Sexp).map { |x| x.c_type }
|
69
93
|
end
|
70
94
|
|
71
95
|
def to_a
|
72
96
|
result = super
|
73
|
-
if defined?(@
|
74
|
-
result += [ @
|
97
|
+
if defined?(@c_type) and not @c_type.nil? then
|
98
|
+
result += [ @c_type ]
|
75
99
|
end
|
76
100
|
result
|
77
101
|
end
|