Class: LLVM::Function::BasicBlockCollection
- Inherits:
-
Object
- Object
- LLVM::Function::BasicBlockCollection
- Includes:
- Enumerable
- Defined in:
- lib/llvm/core/value.rb
Instance Method Summary collapse
-
#append(name = "") ⇒ Object
Adds a BasicBlock with the given name to the end of the collection.
-
#each ⇒ Object
Iterates through each BasicBlock in the collection.
-
#entry ⇒ Object
Returns the entry BasicBlock in the collection.
-
#first ⇒ Object
Returns the first BasicBlock in the collection.
-
#initialize(fun) ⇒ BasicBlockCollection
constructor
A new instance of BasicBlockCollection.
-
#last ⇒ Object
Returns the last BasicBlock in the collection.
-
#size ⇒ Object
Returns the number of BasicBlocks in the collection.
Constructor Details
#initialize(fun) ⇒ BasicBlockCollection
Returns a new instance of BasicBlockCollection.
949 950 951 |
# File 'lib/llvm/core/value.rb', line 949 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.
972 973 974 |
# File 'lib/llvm/core/value.rb', line 972 def append(name = "") BasicBlock.create(@fun, name) end |
#each ⇒ Object
Iterates through each BasicBlock in the collection.
959 960 961 962 963 964 965 966 967 968 969 |
# File 'lib/llvm/core/value.rb', line 959 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 |
#entry ⇒ Object
Returns the entry BasicBlock in the collection. This is the block the function starts on.
978 979 980 |
# File 'lib/llvm/core/value.rb', line 978 def entry BasicBlock.from_ptr(C.get_entry_basic_block(@fun)) end |
#first ⇒ Object
Returns the first BasicBlock in the collection.
983 984 985 986 |
# File 'lib/llvm/core/value.rb', line 983 def first ptr = C.get_first_basic_block(@fun) BasicBlock.from_ptr(ptr) unless ptr.null? end |
#last ⇒ Object
Returns the last BasicBlock in the collection.
989 990 991 992 |
# File 'lib/llvm/core/value.rb', line 989 def last ptr = C.get_last_basic_block(@fun) BasicBlock.from_ptr(ptr) unless ptr.null? end |
#size ⇒ Object
Returns the number of BasicBlocks in the collection.
954 955 956 |
# File 'lib/llvm/core/value.rb', line 954 def size C.count_basic_blocks(@fun) end |