binaryen 1.1.6.pre.3

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.
Files changed (56) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +58 -0
  3. data/extconf.rb +75 -0
  4. data/lib/binaryen/command.rb +57 -0
  5. data/lib/binaryen/error.rb +6 -0
  6. data/lib/binaryen/version.rb +6 -0
  7. data/lib/binaryen.rb +38 -0
  8. data/vendor/arm64-darwin/bin/wasm-as +0 -0
  9. data/vendor/arm64-darwin/bin/wasm-ctor-eval +0 -0
  10. data/vendor/arm64-darwin/bin/wasm-dis +0 -0
  11. data/vendor/arm64-darwin/bin/wasm-emscripten-finalize +0 -0
  12. data/vendor/arm64-darwin/bin/wasm-fuzz-lattices +0 -0
  13. data/vendor/arm64-darwin/bin/wasm-fuzz-types +0 -0
  14. data/vendor/arm64-darwin/bin/wasm-merge +0 -0
  15. data/vendor/arm64-darwin/bin/wasm-metadce +0 -0
  16. data/vendor/arm64-darwin/bin/wasm-opt +0 -0
  17. data/vendor/arm64-darwin/bin/wasm-reduce +0 -0
  18. data/vendor/arm64-darwin/bin/wasm-shell +0 -0
  19. data/vendor/arm64-darwin/bin/wasm-split +0 -0
  20. data/vendor/arm64-darwin/bin/wasm2js +0 -0
  21. data/vendor/arm64-darwin/include/binaryen-c.h +3615 -0
  22. data/vendor/arm64-darwin/include/wasm-delegations.def +105 -0
  23. data/vendor/arm64-darwin/lib/libbinaryen.dylib +0 -0
  24. data/vendor/x86_64-darwin/bin/wasm-as +0 -0
  25. data/vendor/x86_64-darwin/bin/wasm-ctor-eval +0 -0
  26. data/vendor/x86_64-darwin/bin/wasm-dis +0 -0
  27. data/vendor/x86_64-darwin/bin/wasm-emscripten-finalize +0 -0
  28. data/vendor/x86_64-darwin/bin/wasm-fuzz-lattices +0 -0
  29. data/vendor/x86_64-darwin/bin/wasm-fuzz-types +0 -0
  30. data/vendor/x86_64-darwin/bin/wasm-merge +0 -0
  31. data/vendor/x86_64-darwin/bin/wasm-metadce +0 -0
  32. data/vendor/x86_64-darwin/bin/wasm-opt +0 -0
  33. data/vendor/x86_64-darwin/bin/wasm-reduce +0 -0
  34. data/vendor/x86_64-darwin/bin/wasm-shell +0 -0
  35. data/vendor/x86_64-darwin/bin/wasm-split +0 -0
  36. data/vendor/x86_64-darwin/bin/wasm2js +0 -0
  37. data/vendor/x86_64-darwin/include/binaryen-c.h +3615 -0
  38. data/vendor/x86_64-darwin/include/wasm-delegations.def +105 -0
  39. data/vendor/x86_64-darwin/lib/libbinaryen.dylib +0 -0
  40. data/vendor/x86_64-linux/bin/wasm-as +0 -0
  41. data/vendor/x86_64-linux/bin/wasm-ctor-eval +0 -0
  42. data/vendor/x86_64-linux/bin/wasm-dis +0 -0
  43. data/vendor/x86_64-linux/bin/wasm-emscripten-finalize +0 -0
  44. data/vendor/x86_64-linux/bin/wasm-fuzz-lattices +0 -0
  45. data/vendor/x86_64-linux/bin/wasm-fuzz-types +0 -0
  46. data/vendor/x86_64-linux/bin/wasm-merge +0 -0
  47. data/vendor/x86_64-linux/bin/wasm-metadce +0 -0
  48. data/vendor/x86_64-linux/bin/wasm-opt +0 -0
  49. data/vendor/x86_64-linux/bin/wasm-reduce +0 -0
  50. data/vendor/x86_64-linux/bin/wasm-shell +0 -0
  51. data/vendor/x86_64-linux/bin/wasm-split +0 -0
  52. data/vendor/x86_64-linux/bin/wasm2js +0 -0
  53. data/vendor/x86_64-linux/include/binaryen-c.h +3615 -0
  54. data/vendor/x86_64-linux/include/wasm-delegations.def +105 -0
  55. data/vendor/x86_64-linux/lib/libbinaryen.a +0 -0
  56. metadata +99 -0
@@ -0,0 +1,105 @@
1
+ /*
2
+ * Copyright 2020 WebAssembly Community Group participants
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ DELEGATE(Nop);
18
+ DELEGATE(Block);
19
+ DELEGATE(If);
20
+ DELEGATE(Loop);
21
+ DELEGATE(Break);
22
+ DELEGATE(Switch);
23
+ DELEGATE(Call);
24
+ DELEGATE(CallIndirect);
25
+ DELEGATE(LocalGet);
26
+ DELEGATE(LocalSet);
27
+ DELEGATE(GlobalGet);
28
+ DELEGATE(GlobalSet);
29
+ DELEGATE(Load);
30
+ DELEGATE(Store);
31
+ DELEGATE(AtomicRMW);
32
+ DELEGATE(AtomicCmpxchg);
33
+ DELEGATE(AtomicWait);
34
+ DELEGATE(AtomicNotify);
35
+ DELEGATE(AtomicFence);
36
+ DELEGATE(SIMDExtract);
37
+ DELEGATE(SIMDReplace);
38
+ DELEGATE(SIMDShuffle);
39
+ DELEGATE(SIMDTernary);
40
+ DELEGATE(SIMDShift);
41
+ DELEGATE(SIMDLoad);
42
+ DELEGATE(SIMDLoadStoreLane);
43
+ DELEGATE(MemoryInit);
44
+ DELEGATE(DataDrop);
45
+ DELEGATE(MemoryCopy);
46
+ DELEGATE(MemoryFill);
47
+ DELEGATE(Const);
48
+ DELEGATE(Unary);
49
+ DELEGATE(Binary);
50
+ DELEGATE(Select);
51
+ DELEGATE(Drop);
52
+ DELEGATE(Return);
53
+ DELEGATE(MemorySize);
54
+ DELEGATE(MemoryGrow);
55
+ DELEGATE(Unreachable);
56
+ DELEGATE(Pop);
57
+ DELEGATE(RefNull);
58
+ DELEGATE(RefIsNull);
59
+ DELEGATE(RefFunc);
60
+ DELEGATE(RefEq);
61
+ DELEGATE(TableGet);
62
+ DELEGATE(TableSet);
63
+ DELEGATE(TableSize);
64
+ DELEGATE(TableGrow);
65
+ DELEGATE(Try);
66
+ DELEGATE(Throw);
67
+ DELEGATE(Rethrow);
68
+ DELEGATE(TupleMake);
69
+ DELEGATE(TupleExtract);
70
+ DELEGATE(RefI31);
71
+ DELEGATE(I31Get);
72
+ DELEGATE(CallRef);
73
+ DELEGATE(RefTest);
74
+ DELEGATE(RefCast);
75
+ DELEGATE(BrOn);
76
+ DELEGATE(StructNew);
77
+ DELEGATE(StructGet);
78
+ DELEGATE(StructSet);
79
+ DELEGATE(ArrayNew);
80
+ DELEGATE(ArrayNewData);
81
+ DELEGATE(ArrayNewElem);
82
+ DELEGATE(ArrayNewFixed);
83
+ DELEGATE(ArrayGet);
84
+ DELEGATE(ArraySet);
85
+ DELEGATE(ArrayLen);
86
+ DELEGATE(ArrayCopy);
87
+ DELEGATE(ArrayFill);
88
+ DELEGATE(ArrayInitData);
89
+ DELEGATE(ArrayInitElem);
90
+ DELEGATE(RefAs);
91
+ DELEGATE(StringNew);
92
+ DELEGATE(StringConst);
93
+ DELEGATE(StringMeasure);
94
+ DELEGATE(StringEncode);
95
+ DELEGATE(StringConcat);
96
+ DELEGATE(StringEq);
97
+ DELEGATE(StringAs);
98
+ DELEGATE(StringWTF8Advance);
99
+ DELEGATE(StringWTF16Get);
100
+ DELEGATE(StringIterNext);
101
+ DELEGATE(StringIterMove);
102
+ DELEGATE(StringSliceWTF);
103
+ DELEGATE(StringSliceIter);
104
+
105
+ #undef DELEGATE
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: binaryen
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.6.pre.3
5
+ platform: ruby
6
+ authors:
7
+ - Shopify Inc.
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-11-30 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - gems@shopify.com
16
+ executables: []
17
+ extensions:
18
+ - extconf.rb
19
+ extra_rdoc_files: []
20
+ files:
21
+ - README.md
22
+ - extconf.rb
23
+ - lib/binaryen.rb
24
+ - lib/binaryen/command.rb
25
+ - lib/binaryen/error.rb
26
+ - lib/binaryen/version.rb
27
+ - vendor/arm64-darwin/bin/wasm-as
28
+ - vendor/arm64-darwin/bin/wasm-ctor-eval
29
+ - vendor/arm64-darwin/bin/wasm-dis
30
+ - vendor/arm64-darwin/bin/wasm-emscripten-finalize
31
+ - vendor/arm64-darwin/bin/wasm-fuzz-lattices
32
+ - vendor/arm64-darwin/bin/wasm-fuzz-types
33
+ - vendor/arm64-darwin/bin/wasm-merge
34
+ - vendor/arm64-darwin/bin/wasm-metadce
35
+ - vendor/arm64-darwin/bin/wasm-opt
36
+ - vendor/arm64-darwin/bin/wasm-reduce
37
+ - vendor/arm64-darwin/bin/wasm-shell
38
+ - vendor/arm64-darwin/bin/wasm-split
39
+ - vendor/arm64-darwin/bin/wasm2js
40
+ - vendor/arm64-darwin/include/binaryen-c.h
41
+ - vendor/arm64-darwin/include/wasm-delegations.def
42
+ - vendor/arm64-darwin/lib/libbinaryen.dylib
43
+ - vendor/x86_64-darwin/bin/wasm-as
44
+ - vendor/x86_64-darwin/bin/wasm-ctor-eval
45
+ - vendor/x86_64-darwin/bin/wasm-dis
46
+ - vendor/x86_64-darwin/bin/wasm-emscripten-finalize
47
+ - vendor/x86_64-darwin/bin/wasm-fuzz-lattices
48
+ - vendor/x86_64-darwin/bin/wasm-fuzz-types
49
+ - vendor/x86_64-darwin/bin/wasm-merge
50
+ - vendor/x86_64-darwin/bin/wasm-metadce
51
+ - vendor/x86_64-darwin/bin/wasm-opt
52
+ - vendor/x86_64-darwin/bin/wasm-reduce
53
+ - vendor/x86_64-darwin/bin/wasm-shell
54
+ - vendor/x86_64-darwin/bin/wasm-split
55
+ - vendor/x86_64-darwin/bin/wasm2js
56
+ - vendor/x86_64-darwin/include/binaryen-c.h
57
+ - vendor/x86_64-darwin/include/wasm-delegations.def
58
+ - vendor/x86_64-darwin/lib/libbinaryen.dylib
59
+ - vendor/x86_64-linux/bin/wasm-as
60
+ - vendor/x86_64-linux/bin/wasm-ctor-eval
61
+ - vendor/x86_64-linux/bin/wasm-dis
62
+ - vendor/x86_64-linux/bin/wasm-emscripten-finalize
63
+ - vendor/x86_64-linux/bin/wasm-fuzz-lattices
64
+ - vendor/x86_64-linux/bin/wasm-fuzz-types
65
+ - vendor/x86_64-linux/bin/wasm-merge
66
+ - vendor/x86_64-linux/bin/wasm-metadce
67
+ - vendor/x86_64-linux/bin/wasm-opt
68
+ - vendor/x86_64-linux/bin/wasm-reduce
69
+ - vendor/x86_64-linux/bin/wasm-shell
70
+ - vendor/x86_64-linux/bin/wasm-split
71
+ - vendor/x86_64-linux/bin/wasm2js
72
+ - vendor/x86_64-linux/include/binaryen-c.h
73
+ - vendor/x86_64-linux/include/wasm-delegations.def
74
+ - vendor/x86_64-linux/lib/libbinaryen.a
75
+ homepage: https://github.com/Shopify/binaryen-rb
76
+ licenses:
77
+ - Apache-2.0
78
+ metadata:
79
+ allowed_push_host: https://rubygems.org
80
+ post_install_message:
81
+ rdoc_options: []
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">"
92
+ - !ruby/object:Gem::Version
93
+ version: 1.3.1
94
+ requirements: []
95
+ rubygems_version: 3.4.21
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: Vendors binaryen libraries, headers, and executables for use in Ruby
99
+ test_files: []