rcgtk 3.4.1 → 3.5.0
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/Rakefile +1 -1
- data/lib/rcgtk/builder.rb +19 -6
- data/lib/rcgtk/generated_bindings.rb +707 -1157
- data/lib/rcgtk/instruction.rb +3 -0
- data/lib/rcgtk/pass_manager.rb +2 -0
- data/lib/rcgtk/version.rb +2 -2
- metadata +2 -1
data/lib/rcgtk/instruction.rb
CHANGED
@@ -364,6 +364,9 @@ module RCGTK
|
|
364
364
|
# @LLVMInst fsub
|
365
365
|
class FSubInst < Instruction; end
|
366
366
|
|
367
|
+
# @LLVMInst fence
|
368
|
+
class FenceInst < Instruction; end
|
369
|
+
|
367
370
|
# @LLVMInst gep
|
368
371
|
# @see http://llvm.org/docs/GetElementPtr.html
|
369
372
|
class GetElementPtrInst < Instruction; end
|
data/lib/rcgtk/pass_manager.rb
CHANGED
@@ -61,12 +61,14 @@ module RCGTK
|
|
61
61
|
:LoopVectorize => :loop_vectorize,
|
62
62
|
:LEI => :lower_expect_intrinsics,
|
63
63
|
:MemCopyOpt => :mem_cpy_opt,
|
64
|
+
:MLSM => :merged_load_store_motion,
|
64
65
|
:PILC => :partially_inline_lib_calls,
|
65
66
|
:PromoteMemToReg => :promote_memory_to_register,
|
66
67
|
:PruneEH => :prune_eh,
|
67
68
|
:Reassociate => :reassociate,
|
68
69
|
:SCCP => :sccp,
|
69
70
|
:ScalarRepl => :scalar_repl_aggregates,
|
71
|
+
:Scalarizer => :scalarizer,
|
70
72
|
:SimplifyLibCalls => :simplify_lib_calls,
|
71
73
|
:SLPVectorize => :slp_vectorize,
|
72
74
|
:StripDeadProtos => :strip_dead_prototypes,
|
data/lib/rcgtk/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rcgtk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Wailes
|
@@ -311,3 +311,4 @@ test_files:
|
|
311
311
|
- test/tc_transforms.rb
|
312
312
|
- test/ts_rcgtk.rb
|
313
313
|
- test/tc_module.rb
|
314
|
+
has_rdoc:
|