Class: LLVM::ConstantArray
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Constant
#bitcast_to, #gep, null, null_ptr, poison, #ptr_to_int, undef
Methods inherited from User
#operands
Methods inherited from Value
#add_attribute, #allocated_type, #allocated_type?, #constant?, #dump, from_ptr, from_ptr_kind, #gep_source_element_type, #gep_source_element_type?, #global_parent, #kind, #name, #name=, #null?, #poison?, #remove_attribute, to_ptr, #to_s, type, #type, #undef?
#==, #eql?, #hash, #to_ptr
Class Method Details
.const(type, size_or_values, &block) ⇒ Object
ConstantArray.const(type, 3) {|i| … } or ConstantArray.const(type, […])
378
379
380
381
|
# File 'lib/llvm/core/value.rb', line 378
def self.const(type, size_or_values, &block)
vals = LLVM::Support.allocate_pointers(size_or_values, &block)
from_ptr C.const_array(type, vals, vals.size / vals.type_size)
end
|
.string(str, null_terminate = true) ⇒ Object
368
369
370
|
# File 'lib/llvm/core/value.rb', line 368
def self.string(str, null_terminate = true)
from_ptr(C.const_string(str, str.length, null_terminate ? 0 : 1))
end
|
.string_in_context(context, str, null_terminate = true) ⇒ Object
372
373
374
|
# File 'lib/llvm/core/value.rb', line 372
def self.string_in_context(context, str, null_terminate = true)
from_ptr(C.const_string_in_context2(context, str, str.length, null_terminate ? 0 : 1))
end
|
Instance Method Details
#[](idx) ⇒ Object
387
388
389
|
# File 'lib/llvm/core/value.rb', line 387
def [](idx)
self.class.from_ptr(C.get_aggregate_element(self, idx))
end
|
#size ⇒ Object
383
384
385
|
# File 'lib/llvm/core/value.rb', line 383
def size
C.get_array_length(type)
end
|