Class: LLVM::Phi

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

Instance Method Summary collapse

Methods inherited from Instruction

#next, #parent, #previous

Methods inherited from User

#operands

Methods inherited from Value

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

Methods included from PointerIdentity

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

Instance Method Details

#add_incoming(incoming) ⇒ Object

Add incoming branches to a phi node by passing an alternating list of resulting values and BasicBlocks. e.g.

phi.add_incoming(val1, block1, val2, block2, ...)


969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
# File 'lib/llvm/core/value.rb', line 969

def add_incoming(incoming)
  blks = incoming.keys
  vals = incoming.values_at(*blks)
  size = incoming.size

  FFI::MemoryPointer.new(FFI.type_size(:pointer) * size) do |vals_ptr|
    vals_ptr.write_array_of_pointer(vals)
    FFI::MemoryPointer.new(FFI.type_size(:pointer) * size) do |blks_ptr|
      blks_ptr.write_array_of_pointer(blks)
      C.add_incoming(self, vals_ptr, blks_ptr, vals.size)
    end
  end

  nil
end