Class: LLVM::ConstantStruct

Inherits:
Constant show all
Defined in:
lib/llvm/core/value.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Constant

#bitcast_to, #gep, null, null_ptr, #ptr_to_int, undef

Methods inherited from User

#operands

Methods inherited from Value

#add_attribute, #allocated_type, #constant?, #dump, from_ptr, from_ptr_kind, #global_parent, #kind, #name, #name=, #null?, #remove_attribute, to_ptr, #to_s, type, #type, #undefined?

Methods included from PointerIdentity

#==, #eql?, #hash, #to_ptr

Class Method Details

.const(size_or_values, packed = false, &block) ⇒ Object

ConstantStruct.const(size) {|i| … } or ConstantStruct.const()



742
743
744
745
# File 'lib/llvm/core/value.rb', line 742

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



747
748
749
750
# File 'lib/llvm/core/value.rb', line 747

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



752
753
754
# File 'lib/llvm/core/value.rb', line 752

def [](idx)
  self.class.from_ptr(C.get_aggregate_element(self, idx))
end