Class: LLVM::Constant

Inherits:
User show all
Defined in:
lib/llvm/core/value.rb

Class Method Summary collapse

Instance Method Summary collapse

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?

Methods included from PointerIdentity

#==, #eql?, #hash, #to_ptr

Class Method Details

.null(type) ⇒ Object

Creates a null constant of Type.



308
309
310
# File 'lib/llvm/core/value.rb', line 308

def self.null(type)
  from_ptr(C.const_null(type))
end

.null_ptr(type) ⇒ Object

Creates a null pointer constant of Type.



322
323
324
# File 'lib/llvm/core/value.rb', line 322

def self.null_ptr(type)
  from_ptr(C.const_pointer_null(type))
end

.poison(type) ⇒ Object



317
318
319
# File 'lib/llvm/core/value.rb', line 317

def self.poison(type)
  from_ptr(C.get_poison(type))
end

.undef(type) ⇒ Object

Creates a undefined constant of Type.



313
314
315
# File 'lib/llvm/core/value.rb', line 313

def self.undef(type)
  from_ptr(C.get_undef(type))
end

Instance Method Details

#bitcast_to(type) ⇒ Object Also known as: bit_cast

Bitcast this constant to Type.



327
328
329
# File 'lib/llvm/core/value.rb', line 327

def bitcast_to(type)
  ConstantExpr.from_ptr(C.const_bit_cast(self, type))
end

#gep(*indices) ⇒ Object

Returns the element pointer at the given indices of the constant. For more information on gep go to: llvm.org/docs/GetElementPtr.html



336
337
338
339
340
341
342
343
# File 'lib/llvm/core/value.rb', line 336

def gep(*indices)
  indices = Array(indices)
  FFI::MemoryPointer.new(FFI.type_size(:pointer) * indices.size) do |indices_ptr|
    indices_ptr.write_array_of_pointer(indices)
    return ConstantExpr.from_ptr(
      C.const_gep(self, indices_ptr, indices.size))
  end
end

#ptr_to_int(type) ⇒ Object

Conversion to integer.



346
347
348
# File 'lib/llvm/core/value.rb', line 346

def ptr_to_int(type)
  ConstantInt.from_ptr(C.const_ptr_to_int(self, type))
end