Skip to content
  1. Apr 01, 2016
    • Jeroen Ketema's avatar
      [OCaml] Reinstate data_layout · c110fbc2
      Jeroen Ketema authored
      Expose LLVMCreateTargetMachineData as data_layout.
      
      As r263530 did for go. From that commit: "LLVMGetTargetDataLayout was
      removed from the C API, and then TargetMachine.TargetData was removed.
      Later, LLVMCreateTargetMachineData was added to the C API"
      
      Differential Revision: http://reviews.llvm.org/D18677
      
      llvm-svn: 265115
      c110fbc2
  2. Mar 31, 2016
  3. Feb 12, 2016
  4. Jan 26, 2016
    • Chris Bieneman's avatar
      Remove autoconf support · e49730d4
      Chris Bieneman authored
      Summary:
      This patch is provided in preparation for removing autoconf on 1/26. The proposal to remove autoconf on 1/26 was discussed on the llvm-dev thread here: http://lists.llvm.org/pipermail/llvm-dev/2016-January/093875.html
      
      "I felt a great disturbance in the [build system], as if millions of [makefiles] suddenly cried out in terror and were suddenly silenced. I fear something [amazing] has happened."
      - Obi Wan Kenobi
      
      Reviewers: chandlerc, grosbach, bob.wilson, tstellarAMD, echristo, whitequark
      
      Subscribers: chfast, simoncook, emaste, jholewinski, tberghammer, jfb, danalbert, srhines, arsenm, dschuff, jyknight, dsanders, joker.eph, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D16471
      
      llvm-svn: 258861
      e49730d4
  5. Dec 19, 2015
    • Rafael Espindola's avatar
      Deprecate a few C APIs. · 2339ffed
      Rafael Espindola authored
      This deprecates:
      * LLVMParseBitcode
      * LLVMParseBitcodeInContext
      * LLVMGetBitcodeModuleInContext
      * LLVMGetBitcodeModule
      
      They are replaced with the functions with a 2 suffix which do not record
      a diagnostic.
      
      llvm-svn: 256065
      2339ffed
  6. Dec 17, 2015
  7. Nov 10, 2015
    • Richard Diamond's avatar
      Fix `llvm-config` to adapt to the install environment. · 72303a24
      Richard Diamond authored
      Summary:
      This patch does a couple of things:
      
        - Adds a new argument `--shared-mode` which accepts a list of components and prints whether or not the provided components need to be linked statically or shared.
        - Fixes `--libnames` when CMake BUILD_SHARED_LIBS is used.
        - Fixes `--libnames`, `--libs`, and `--libfiles` for dylib when static components aren't installed.
        - Fixes `--libnames`, `--libs`, `--libfiles`, and `--components` to use LLVM_DYLIB_COMPONENTS as the component manifest for dylib linking.
        - Uses the host platform's usual convention for filename extensions and such, instead of always defaulting to Unix-izms.
      
      Because I don't own a Mac, I am not able to test the Mac platform dependent stuff locally. If someone would be willing to run a build for me on their machine (unless there's a better option), I'd appreciate it.
      
      Reviewers: jfb, brad.king, whitequark, beanz
      
      Subscribers: beanz, jauhien, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D13198
      
      llvm-svn: 252532
      72303a24
  8. Oct 21, 2015
  9. Aug 05, 2015
    • Richard Diamond's avatar
      Revert "Fix `llvm-config` to emit the linker flag for the combined shared... · 23280472
      Richard Diamond authored
      Revert "Fix `llvm-config` to emit the linker flag for the combined shared object built by autoconfig/make instead of the individual components."
      
      It seems I was wrong thinking `autoconf`/`make` only installed shared libraries if configured with `--enable-shared`, even if `--disable-static` is present. I'll re-address with a followup patch.
      
      This reverts commit r243297 for causing PR#24154.
      
      llvm-svn: 244108
      23280472
  10. Jul 27, 2015
    • JF Bastien's avatar
      Fix `llvm-config` to emit the linker flag for the combined shared object built... · ba70e9e1
      JF Bastien authored
      Fix `llvm-config` to emit the linker flag for the combined shared object built by autoconfig/make instead of the individual components.
      
      Summary:
      When LLVM is configured to build shared libraries, CMake builds each component as it's own shared object, while autoconfig/make builds them statically and then links them all together to create a single shared object. This change adds compile time config flags to `llvm-config` so it can know whether LLVM's components are separated or not and act accordingly.
      
      This fixes `llvm-config` instead of fixing the makefiles to behave like CMake because, AIUI, LLVM's autoconfig/make build system is on the way out anyway.
      
      This change only affects `llvm-config` from builds that use autoconfig/make.
      
      Reviewers: jfb
      
      Subscribers: echristo, dschuff, llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D11392
      
      llvm-svn: 243297
      ba70e9e1
  11. Jul 16, 2015
    • Reid Kleckner's avatar
      Revert "Update LLVM bindings after r239940. ..." · ef9828fb
      Reid Kleckner authored
      Revert the changes to the C API LLVMBuildLandingPad that were part of
      the personality function move. We now set the personality on the parent
      function when the C API attempts to construct a landingpad with a
      personality.
      
      This reverts commit r240010.
      
      llvm-svn: 242372
      ef9828fb
  12. Jun 27, 2015
    • Peter Zotov's avatar
      [OCaml] Bump ctypes dependency to 0.4. · 8c7e29d5
      Peter Zotov authored
      ctypes 0.3 and earlier contains an interface-definig bug:
      its ptr_of_raw_address accepts Int64 and not Nativeint. ctypes 0.4
      was not released during the 3.6 cycle, and because of that, LLVM 3.6
      was released with ctypes 0.3 as a dependency, which now breaks
      the build on modern ctypes.
      
      Unbreak.
      
      llvm-svn: 240882
      8c7e29d5
  13. Jun 18, 2015
  14. Feb 06, 2015
  15. Jan 13, 2015
    • Peter Zotov's avatar
      [OCaml] Allow out-of-tree builds of LLVM bindings. · 343991dd
      Peter Zotov authored
      In order to use this feature, configure LLVM as usual,
      but then build and install it as:
      
         make all install SYSTEM_LLVM_CONFIG=llvm-config
      
      where llvm-config is the llvm-config binary installed on your
      system (possibly llvm-config-VERSION on e.g. Debian).
      
      llvm-svn: 225787
      343991dd
    • Peter Zotov's avatar
      [OCaml] Use $CAMLORIGIN, an rpath-$ORIGIN-like mechanism in OCaml. · 1f00ac93
      Peter Zotov authored
      As a result, installations of LLVM in non-standard locations
      will not require passing custom -ccopt -L flags when building
      the binary, nor absolute paths would be embedded in the cma/cmxa
      files. Additionally, the executables will not require changes
      to LD_LIBRARY_PATH, although CAML_LD_LIBRARY_PATH still
      has to be set for ocamlc without -custom.
      
      See http://caml.inria.fr/mantis/view.php?id=6642.
      Note that the patch is approved, but not merged yet.
      It will be released in 4.03 and likely 4.02.
      
      llvm-svn: 225778
      1f00ac93
  16. Dec 30, 2014
  17. Dec 24, 2014
  18. Dec 23, 2014
  19. Dec 02, 2014
  20. Dec 01, 2014
  21. Nov 03, 2014
  22. Oct 31, 2014
    • Peter Zotov's avatar
      [OCaml] Ensure consistent naming. · e2b8b143
      Peter Zotov authored
      Specifically:
        * Directories match module names.
        * Test names match module names.
        * The language is called "OCaml", not "Ocaml".
      
      llvm-svn: 220958
      e2b8b143
    • Peter Zotov's avatar
      [OCaml] Rework Llvm_executionengine using ctypes. · b1f54ff4
      Peter Zotov authored
      Since JIT->MCJIT migration, most of the ExecutionEngine interface
      became deprecated and/or broken. This especially affected the OCaml
      bindings, as runFunction is no longer available, and unlike in C,
      it is not possible to coerce a pointer to a function and call it
      in OCaml.
      
      In practice, LLVM 3.5 shipped completely unusable
      Llvm_executionengine.
      
      The GenericValue interface and runFunction were essentially
      a poor man's FFI. As such, this interface was removed and instead
      a dependency on ctypes >=0.3 added, which handled platform-specific
      aspects of accessing data and calling functions.
      
      The new interface does not expose JIT (which is a shim around MCJIT),
      as well as the interpreter (which can't handle a lot of valid IR).
      
      Llvm_executionengine.add_global_mapping is currently unusable
      due to PR20656.
      
      llvm-svn: 220957
      b1f54ff4
  23. Oct 30, 2014
    • Peter Zotov's avatar
      [OCaml] Expose LLVMCloneModule. · 4a693065
      Peter Zotov authored
      llvm-svn: 220903
      4a693065
    • Peter Zotov's avatar
      [OCaml] Expose LLVM{Get,Set}DLLStorageClass. · e75657b7
      Peter Zotov authored
      llvm-svn: 220902
      e75657b7
    • Peter Zotov's avatar
      [OCaml] [autoconf] Migrate to ocamlfind. · 668f9670
      Peter Zotov authored
      This commit updates the OCaml bindings and tests to use ocamlfind.
      The bindings are migrated in order to use ctypes, which are now
      required for MCJIT-backed Llvm_executionengine.
      The tests are migrated in order to use OUnit and to verify that
      the distributed META.llvm allows to build working executables.
      
      Every OCaml toolchain invocation is now chained through ocamlfind,
      which (in theory) allows to cross-compile the OCaml bindings.
      
      The configure script now checks for ctypes (>= 0.2.3) and
      OUnit (>= 2). The code depending on these libraries will be added
      later. The configure script does not check the package versions
      in order to keep changes less invasive.
      
      Additionally, OCaml bindings will now be automatically enabled
      if ocamlfind is detected on the system, rather than ocamlc, as it
      was before.
      
      llvm-svn: 220899
      668f9670
    • Peter Zotov's avatar
      [OCaml] De-duplicate llvm_raise and llvm_string_of_message. · 1b254f9a
      Peter Zotov authored
      llvm-svn: 220898
      1b254f9a
  24. Oct 29, 2014
Loading