Class: LLVM::GlobalValue

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

Direct Known Subclasses

Function, GlobalAlias, GlobalVariable

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?

Methods included from PointerIdentity

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

Instance Method Details

#alignmentObject



849
850
851
# File 'lib/llvm/core/value.rb', line 849

def alignment
  C.get_alignment(self)
end

#alignment=(bytes) ⇒ Object



853
854
855
# File 'lib/llvm/core/value.rb', line 853

def alignment=(bytes)
  C.set_alignment(self, bytes)
end

#declaration?Boolean

Returns:

  • (Boolean)


821
822
823
# File 'lib/llvm/core/value.rb', line 821

def declaration?
  C.is_declaration(self)
end

#dll_storage_classObject



865
866
867
# File 'lib/llvm/core/value.rb', line 865

def dll_storage_class
  C.get_dll_storage_class(self)
end

#dll_storage_class=(klass) ⇒ Object



869
870
871
# File 'lib/llvm/core/value.rb', line 869

def dll_storage_class=(klass)
  C.set_dll_storage_class(self, klass)
end

#linkageObject



825
826
827
# File 'lib/llvm/core/value.rb', line 825

def linkage
  C.get_linkage(self)
end

#linkage=(linkage) ⇒ Object



829
830
831
# File 'lib/llvm/core/value.rb', line 829

def linkage=(linkage)
  C.set_linkage(self, linkage)
end

#sectionObject



833
834
835
# File 'lib/llvm/core/value.rb', line 833

def section
  C.get_section(self)
end

#section=(section) ⇒ Object



837
838
839
# File 'lib/llvm/core/value.rb', line 837

def section=(section)
  C.set_section(self, section)
end

#unnamed_addr=(flag) ⇒ Object



861
862
863
# File 'lib/llvm/core/value.rb', line 861

def unnamed_addr=(flag)
  C.set_unnamed_addr(self, flag ? 1 : 0)
end

#unnamed_addr?Boolean

Returns:

  • (Boolean)


857
858
859
# File 'lib/llvm/core/value.rb', line 857

def unnamed_addr?
  C.has_unnamed_addr(self) != 0
end

#visibilityObject



841
842
843
# File 'lib/llvm/core/value.rb', line 841

def visibility
  C.get_visibility(self)
end

#visibility=(viz) ⇒ Object



845
846
847
# File 'lib/llvm/core/value.rb', line 845

def visibility=(viz)
  C.set_visibility(self, viz)
end