Class: LLVM::BasicBlock::InstructionCollection
- Inherits:
-
Object
- Object
- LLVM::BasicBlock::InstructionCollection
- Includes:
- Enumerable
- Defined in:
- lib/llvm/core/value.rb
Instance Method Summary collapse
-
#each ⇒ Object
Iterates through each Instruction in the collection.
-
#first ⇒ Object
Returns the first Instruction in the collection.
-
#initialize(block) ⇒ InstructionCollection
constructor
A new instance of InstructionCollection.
-
#last ⇒ Object
Returns the last Instruction in the collection.
Constructor Details
#initialize(block) ⇒ InstructionCollection
Returns a new instance of InstructionCollection.
234 235 236 |
# File 'lib/llvm/core/value.rb', line 234 def initialize(block) @block = block end |
Instance Method Details
#each ⇒ Object
Iterates through each Instruction in the collection.
239 240 241 242 243 244 245 246 247 248 249 250 251 |
# File 'lib/llvm/core/value.rb', line 239 def each return to_enum :each unless block_given? inst = first final = last while inst yield inst break if inst == final inst = inst.next end self end |
#first ⇒ Object
Returns the first Instruction in the collection.
254 255 256 257 |
# File 'lib/llvm/core/value.rb', line 254 def first ptr = C.get_first_instruction(@block) LLVM::Instruction.from_ptr(ptr) unless ptr.null? end |
#last ⇒ Object
Returns the last Instruction in the collection.
260 261 262 263 |
# File 'lib/llvm/core/value.rb', line 260 def last ptr = C.get_last_instruction(@block) LLVM::Instruction.from_ptr(ptr) unless ptr.null? end |