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, #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

.all_onesObject



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

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

.const(size_or_values, &block) ⇒ Object



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

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



721
722
723
# File 'lib/llvm/core/value.rb', line 721

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

#sizeObject



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

def size
  C.get_vector_size(type)
end