Class: LLVM::ConstantArray
- Defined in:
- lib/llvm/core/value.rb
Class Method Summary collapse
-
.const(type, size_or_values, &block) ⇒ Object
ConstantArray.const(type, 3) {|i| … } or ConstantArray.const(type, […]).
- .string(str, null_terminate = true) ⇒ Object
Instance Method Summary collapse
Methods inherited from Constant
#bitcast_to, #gep, null, null_ptr, #ptr_to_int, undef
Methods inherited from User
Methods inherited from Value
#add_attribute, #allocated_type, #constant?, #dump, from_ptr, #name, #name=, #null?, #remove_attribute, to_ptr, #to_s, #type, type, #undefined?
Methods included from PointerIdentity
Class Method Details
.const(type, size_or_values, &block) ⇒ Object
ConstantArray.const(type, 3) {|i| … } or ConstantArray.const(type, […])
314 315 316 317 |
# File 'lib/llvm/core/value.rb', line 314 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
308 309 310 |
# File 'lib/llvm/core/value.rb', line 308 def self.string(str, null_terminate = true) from_ptr(C.const_string(str, str.length, null_terminate ? 0 : 1)) end |
Instance Method Details
#[](idx) ⇒ Object
323 324 325 |
# File 'lib/llvm/core/value.rb', line 323 def [](idx) self.class.from_ptr(C.get_aggregate_element(self, idx)) end |
#size ⇒ Object
319 320 321 |
# File 'lib/llvm/core/value.rb', line 319 def size C.get_array_length(type) end |