File: index.rst

package info (click to toggle)
llvmlite 0.46.0-0.1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,140 kB
  • sloc: python: 13,605; cpp: 3,192; makefile: 185; sh: 168
file content (36 lines) | stat: -rw-r--r-- 818 bytes parent folder | download | duplicates (3)
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