Class: LLVM::ConstantVector

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

Class Method Summary collapse

Methods inherited from Constant

#bitcast_to, #gep, null, null_ptr, undef

Methods inherited from User

#operands

Methods inherited from Value

#==, #add_attribute, #constant?, #dump, #eql?, from_ptr, #initialize, #name, #name=, #null?, to_ptr, #to_ptr, type, #type, #undefined?

Constructor Details

This class inherits a constructor from LLVM::Value

Class Method Details

.all_onesObject



515
516
517
# File 'lib/llvm/core/value.rb', line 515

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

.const(size_or_values, &block) ⇒ Object



519
520
521
522
# File 'lib/llvm/core/value.rb', line 519

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