Class: LLVM::ConstantStruct
- Defined in:
- lib/llvm/core/value.rb
Class Method Summary collapse
-
.const(size_or_values, packed = false, &block) ⇒ Object
ConstantStruct.const(size) {|i| … } or ConstantStruct.const().
- .named_const(type, size_or_values, &block) ⇒ Object
Instance Method Summary collapse
Methods inherited from Constant
#bitcast_to, #gep, null, null_ptr, #ptr_to_int, undef
Methods inherited from User
Methods inherited from Value
#add_attribute, #allocated_type, #constant?, #dump, from_ptr, #name, #name=, #null?, #remove_attribute, to_ptr, #to_s, #type, type, #undefined?
Methods included from PointerIdentity
Class Method Details
.const(size_or_values, packed = false, &block) ⇒ Object
ConstantStruct.const(size) {|i| … } or ConstantStruct.const()
633 634 635 636 |
# File 'lib/llvm/core/value.rb', line 633 def self.const(size_or_values, packed = false, &block) vals = LLVM::Support.allocate_pointers(size_or_values, &block) from_ptr C.const_struct(vals, vals.size / vals.type_size, packed ? 1 : 0) end |
.named_const(type, size_or_values, &block) ⇒ Object
638 639 640 641 |
# File 'lib/llvm/core/value.rb', line 638 def self.named_const(type, size_or_values, &block) vals = LLVM::Support.allocate_pointers(size_or_values, &block) from_ptr C.const_named_struct(type, vals, vals.size / vals.type_size) end |
Instance Method Details
#[](idx) ⇒ Object
643 644 645 |
# File 'lib/llvm/core/value.rb', line 643 def [](idx) self.class.from_ptr(C.get_aggregate_element(self, idx)) end |