rubinius-compiler 3.24 → 3.25
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 +4 -4
- data/lib/rubinius/code/compiler/opcodes.rb +25 -0
- data/lib/rubinius/code/compiler/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 42b3c05bfee442800bfcacc8019395d34f00ab1f
|
4
|
+
data.tar.gz: fdab2f69bbd52b8430c51a6f66d9fe5518fd2375
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f2c4eeebecdf4c6b771e1038c283121326b59f67f4abe0757d4af5ded0fd64b7027a378ca1903ad1d7713670055d449bb7aeb3d54036a3c4b375619b356ec04
|
7
|
+
data.tar.gz: 951af355701f6a144aaebe161b358e894774a3488e37fe51d3b4c288d87200d966d3cc6eb0b23f70946eba9800b786f4b4a74c4d2f0e1ea96a99124573c3065b
|
@@ -104,5 +104,30 @@ module Rubinius
|
|
104
104
|
opcode 96, :yield_stack, :stack => [[0,1], 1], :args => [:count], :control_flow => :yield
|
105
105
|
opcode 97, :zsuper, :stack => [1, 1], :args => [:literal], :control_flow => :next
|
106
106
|
opcode 98, :push_file, :stack => [0, 1], :args => [], :control_flow => :next
|
107
|
+
opcode 99, :p_any, :stack => [0, 0], :args => [:r0], :control_flow => :next
|
108
|
+
opcode 100, :p_call, :stack => [0, 0], :args => [:ip], :control_flow => :next
|
109
|
+
opcode 101, :p_char, :stack => [0, 0], :args => [:chr], :control_flow => :next
|
110
|
+
opcode 102, :p_char_set, :stack => [0, 0], :args => [:chr_set], :control_flow => :next
|
111
|
+
opcode 103, :p_choice, :stack => [0, 0], :args => [:ip, :r0], :control_flow => :next
|
112
|
+
opcode 104, :p_commit, :stack => [0, 0], :args => [:ip], :control_flow => :next
|
113
|
+
opcode 105, :p_commit_back, :stack => [0, 0], :args => [:ip], :control_flow => :next
|
114
|
+
opcode 106, :p_commit_partial, :stack => [0, 0], :args => [:ip], :control_flow => :next
|
115
|
+
opcode 107, :p_end, :stack => [0, 0], :args => [], :control_flow => :next
|
116
|
+
opcode 108, :p_fail, :stack => [0, 0], :args => [], :control_flow => :next
|
117
|
+
opcode 109, :p_fail_twice, :stack => [0, 0], :args => [], :control_flow => :next
|
118
|
+
opcode 110, :p_jump, :stack => [0, 0], :args => [:ip], :control_flow => :next
|
119
|
+
opcode 111, :p_return, :stack => [0, 0], :args => [], :control_flow => :next
|
120
|
+
opcode 112, :p_span, :stack => [0, 0], :args => [:chr_set], :control_flow => :next
|
121
|
+
opcode 113, :p_test_any, :stack => [0, 0], :args => [:n, :ip], :control_flow => :next
|
122
|
+
opcode 114, :p_test_char, :stack => [0, 0], :args => [:chr, :ip], :control_flow => :next
|
123
|
+
opcode 115, :p_test_char_set, :stack => [0, 0], :args => [:chr_set, :ip], :control_flow => :next
|
124
|
+
opcode 116, :p_init, :stack => [0, 0], :args => [:r0, :r1], :control_flow => :next
|
125
|
+
opcode 117, :m_bytes, :stack => [0, 0], :args => [:value, :r0], :control_flow => :next
|
126
|
+
opcode 118, :m_counter, :stack => [0, 0], :args => [:value], :control_flow => :next
|
127
|
+
opcode 119, :m_sum, :stack => [0, 0], :args => [:value, :r0], :control_flow => :next
|
128
|
+
opcode 120, :m_value, :stack => [0, 0], :args => [:value, :r0], :control_flow => :next
|
129
|
+
opcode 121, :m_time_stamp, :stack => [0, 0], :args => [:value, :flag], :control_flow => :next
|
130
|
+
opcode 122, :m_timer_start, :stack => [0, 0], :args => [:timer], :control_flow => :next
|
131
|
+
opcode 123, :m_timer_stop, :stack => [0, 0], :args => [:ip, :flag], :control_flow => :next
|
107
132
|
end
|
108
133
|
end
|