Class: LLVM::Function::ParameterCollection

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/llvm/core/value.rb

Instance Method Summary collapse

Constructor Details

#initialize(fun) ⇒ ParameterCollection

Returns a new instance of ParameterCollection.



745
746
747
# File 'lib/llvm/core/value.rb', line 745

def initialize(fun)
  @fun = fun
end

Instance Method Details

#[](i) ⇒ Object

Returns a Value representation of the parameter at the given index.



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

def [](i)
  sz = self.size
  i = sz + i if i < 0
  return unless 0 <= i && i < sz
  Value.from_ptr(C.get_param(@fun, i))
end

#eachObject

Iteraters through each parameter in the collection.



765
766
767
768
769
# File 'lib/llvm/core/value.rb', line 765

def each
  return to_enum :each unless block_given?
  0.upto(size-1) { |i| yield self[i] }
  self
end

#sizeObject

Returns the number of paramters in the collection.



758
759
760
# File 'lib/llvm/core/value.rb', line 758

def size
  C.count_params(@fun)
end