Class: LLVM::Function::BasicBlockCollection

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

Instance Method Summary collapse

Constructor Details

#initialize(fun) ⇒ BasicBlockCollection

Returns a new instance of BasicBlockCollection.



1041
1042
1043
# File 'lib/llvm/core/value.rb', line 1041

def initialize(fun)
  @fun = fun
end

Instance Method Details

#append(name = "") ⇒ Object

Adds a BasicBlock with the given name to the end of the collection.



1064
1065
1066
# File 'lib/llvm/core/value.rb', line 1064

def append(name = "")
  BasicBlock.create(@fun, name)
end

#eachObject

Iterates through each BasicBlock in the collection.



1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
# File 'lib/llvm/core/value.rb', line 1051

def each
  return to_enum :each unless block_given?

  ptr = C.get_first_basic_block(@fun)
  0.upto(size - 1) do |i|
    yield BasicBlock.from_ptr(ptr)
    ptr = C.get_next_basic_block(ptr)
  end

  self
end

#entryObject

Returns the entry BasicBlock in the collection. This is the block the function starts on.



1070
1071
1072
# File 'lib/llvm/core/value.rb', line 1070

def entry
  BasicBlock.from_ptr(C.get_entry_basic_block(@fun))
end

#firstObject

Returns the first BasicBlock in the collection.



1075
1076
1077
1078
# File 'lib/llvm/core/value.rb', line 1075

def first
  ptr = C.get_first_basic_block(@fun)
  BasicBlock.from_ptr(ptr) unless ptr.null?
end

#lastObject

Returns the last BasicBlock in the collection.



1081
1082
1083
1084
# File 'lib/llvm/core/value.rb', line 1081

def last
  ptr = C.get_last_basic_block(@fun)
  BasicBlock.from_ptr(ptr) unless ptr.null?
end

#sizeObject

Returns the number of BasicBlocks in the collection.



1046
1047
1048
# File 'lib/llvm/core/value.rb', line 1046

def size
  C.count_basic_blocks(@fun)
end