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.



306
307
308
# File 'lib/llvm/core/value.rb', line 306

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

.null_ptr(type) ⇒ Object

Creates a null pointer constant of Type.



320
321
322
# File 'lib/llvm/core/value.rb', line 320

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

.poison(type) ⇒ Object



315
316
317
# File 'lib/llvm/core/value.rb', line 315

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

.undef(type) ⇒ Object

Creates a undefined constant of Type.



311
312
313
# File 'lib/llvm/core/value.rb', line 311

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.



325
326
327
# File 'lib/llvm/core/value.rb', line 325

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



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

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.



344
345
346
# File 'lib/llvm/core/value.rb', line 344

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