Class: LLVM::ConstantVector

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, #kind, #name, #name=, #null?, #remove_attribute, to_ptr, #to_s, type, #type, #undefined?

Methods included from PointerIdentity

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

Class Method Details

.all_onesObject



703
704
705
# File 'lib/llvm/core/value.rb', line 703

def self.all_ones
  from_ptr(C.const_all_ones(type))
end

.const(size_or_values, &block) ⇒ Object



707
708
709
710
# File 'lib/llvm/core/value.rb', line 707

def self.const(size_or_values, &block)
  vals = LLVM::Support.allocate_pointers(size_or_values, &block)
  from_ptr(C.const_vector(vals, vals.size / vals.type_size))
end

Instance Method Details

#[](idx) ⇒ Object



716
717
718
# File 'lib/llvm/core/value.rb', line 716

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

#sizeObject



712
713
714
# File 'lib/llvm/core/value.rb', line 712

def size
  C.get_vector_size(type)
end