Class: LLVM::GlobalValue
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?
#==, #eql?, #hash, #to_ptr
Instance Method Details
#alignment ⇒ Object
844
845
846
|
# File 'lib/llvm/core/value.rb', line 844
def alignment
C.get_alignment(self)
end
|
#alignment=(bytes) ⇒ Object
848
849
850
|
# File 'lib/llvm/core/value.rb', line 848
def alignment=(bytes)
C.set_alignment(self, bytes)
end
|
#declaration? ⇒ Boolean
816
817
818
|
# File 'lib/llvm/core/value.rb', line 816
def declaration?
C.is_declaration(self)
end
|
#dll_storage_class ⇒ Object
#dll_storage_class=(klass) ⇒ Object
864
865
866
|
# File 'lib/llvm/core/value.rb', line 864
def dll_storage_class=(klass)
C.set_dll_storage_class(self, klass)
end
|
#linkage ⇒ Object
820
821
822
|
# File 'lib/llvm/core/value.rb', line 820
def linkage
C.get_linkage(self)
end
|
#linkage=(linkage) ⇒ Object
824
825
826
|
# File 'lib/llvm/core/value.rb', line 824
def linkage=(linkage)
C.set_linkage(self, linkage)
end
|
#section ⇒ Object
828
829
830
|
# File 'lib/llvm/core/value.rb', line 828
def section
C.get_section(self)
end
|
#section=(section) ⇒ Object
832
833
834
|
# File 'lib/llvm/core/value.rb', line 832
def section=(section)
C.set_section(self, section)
end
|
#unnamed_addr=(flag) ⇒ Object
856
857
858
|
# File 'lib/llvm/core/value.rb', line 856
def unnamed_addr=(flag)
C.set_unnamed_addr(self, flag ? 1 : 0)
end
|
#unnamed_addr? ⇒ Boolean
852
853
854
|
# File 'lib/llvm/core/value.rb', line 852
def unnamed_addr?
C.has_unnamed_addr(self) != 0
end
|
#visibility ⇒ Object
836
837
838
|
# File 'lib/llvm/core/value.rb', line 836
def visibility
C.get_visibility(self)
end
|
#visibility=(viz) ⇒ Object
840
841
842
|
# File 'lib/llvm/core/value.rb', line 840
def visibility=(viz)
C.set_visibility(self, viz)
end
|