1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
.. _binding-layer:
=====================================
LLVM binding layer---llvmlite.binding
=====================================
.. module:: llvmlite.binding
:synopsis: Interacting with the LLVM library.
The :mod:`llvmlite.binding` module provides classes to interact
with functionalities of the LLVM library. Generally, they closely
mirror concepts of the C++ API. Only a small subset of the LLVM
API is mirrored: those parts that have proven useful to
implement Numba_'s JIT compiler.
.. _Numba: http://numba.pydata.org/
.. toctree::
:maxdepth: 1
initialization-finalization
dynamic-libraries
target-information
context
modules
value-references
type-references
execution-engine
object-file
optimization-passes
analysis-utilities
pass_timings
misc
examples
|