Class: LLVM::Value

Inherits:
Object
  • Object
show all
Includes:
PointerIdentity
Defined in:
lib/llvm/core/value.rb

Direct Known Subclasses

Argument, BasicBlock, User

Class Method Summary collapse

Instance Method Summary collapse

Methods included from PointerIdentity

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

Class Method Details

.from_ptr(ptr) ⇒ Object



8
9
10
11
12
13
# File 'lib/llvm/core/value.rb', line 8

def self.from_ptr(ptr)
  return if ptr.null?
  val = allocate
  val.instance_variable_set(:@ptr, ptr)
  val
end

.to_ptrObject



20
21
22
# File 'lib/llvm/core/value.rb', line 20

def self.to_ptr
  type.to_ptr
end

.typeObject

Returns the Value type. This is abstract and is overidden by its subclasses.

Raises:

  • (NotImplementedError)


16
17
18
# File 'lib/llvm/core/value.rb', line 16

def self.type
  raise NotImplementedError, "#{name}.type() is abstract."
end

Instance Method Details

#add_attribute(attr) ⇒ Object

Adds attr to this value’s attributes.



74
75
76
77
78
79
80
81
82
# File 'lib/llvm/core/value.rb', line 74

def add_attribute(attr)
  fun = param_parent
  return unless fun

  index = param_index(fun)
  return unless index

  fun.add_attribute(attr, index)
end

#constant?Boolean

Returns whether the value is constant.

Returns:

  • (Boolean)


50
51
52
53
54
55
# File 'lib/llvm/core/value.rb', line 50

def constant?
  case C.is_constant(self)
  when 0 then false
  when 1 then true
  end
end

#dumpObject

Print the value’s IR to stdout.



41
42
43
# File 'lib/llvm/core/value.rb', line 41

def dump
  C.dump_value(self)
end

#nameObject

Returns the value’s name.



30
31
32
# File 'lib/llvm/core/value.rb', line 30

def name
  C.get_value_name(self)
end

#name=(str) ⇒ Object

Sets the value’s name to str.



35
36
37
38
# File 'lib/llvm/core/value.rb', line 35

def name=(str)
  C.set_value_name(self, str)
  str
end

#null?Boolean

Returns whether the value is null.

Returns:

  • (Boolean)


58
59
60
61
62
63
# File 'lib/llvm/core/value.rb', line 58

def null?
  case C.is_null(self)
  when 0 then false
  when 1 then true
  end
end

#remove_attribute(attr) ⇒ Object

Removes the given attribute from the function.



85
86
87
88
89
90
91
92
93
# File 'lib/llvm/core/value.rb', line 85

def remove_attribute(attr)
  fun = param_parent
  return unless fun

  index = param_index(fun)
  return unless index

  fun.remove_attribute(attr, index)
end

#to_sObject



45
46
47
# File 'lib/llvm/core/value.rb', line 45

def to_s
  C.print_value_to_string(self)
end

#typeObject

Returns the value’s type.



25
26
27
# File 'lib/llvm/core/value.rb', line 25

def type
  Type.from_ptr(C.type_of(self), nil)
end

#undefined?Boolean

Returns whether the value is undefined.

Returns:

  • (Boolean)


66
67
68
69
70
71
# File 'lib/llvm/core/value.rb', line 66

def undefined?
  case C.is_undef(self)
  when 0 then false
  when 1 then true
  end
end