Skip to content
  1. Dec 15, 2018
    • Fangrui Song's avatar
      [libclang] Add dependency on clangSerialization to unbreak... · 7643f42b
      Fangrui Song authored
      [libclang] Add dependency on clangSerialization to unbreak -DBUILD_SHARED_LIBS=1 build after rC349237
      
      Frontend headers have undefined reference on the symbol `clang::PCHContainerOperations::PCHContainerOperations()` through some shared_ptr usage. Any dependents will get the undefined reference which can only be resolved by explicit dependency on clangSerialization (due to -z defs).
      
      llvm-svn: 349259
      7643f42b
    • Richard Trieu's avatar
      Fix includes and dependencies for libclang · d2e5accd
      Richard Trieu authored
      Remove unneeded includes
      Add needed include
      Remove dependency on Serialization
      
      llvm-svn: 349237
      d2e5accd
  2. Dec 13, 2018
  3. Dec 12, 2018
    • Mikael Nilsson's avatar
      Revert "[OpenCL] Add generic AS to 'this' pointer" · 90646732
      Mikael Nilsson authored
      Reverting because the patch broke lldb.
      
      llvm-svn: 348931
      90646732
    • Mikael Nilsson's avatar
      [OpenCL] Add generic AS to 'this' pointer · 78de8471
      Mikael Nilsson authored
      Address spaces are cast into generic before invoking the constructor.
      
      Added support for a trailing Qualifiers object in FunctionProtoType.
      
      Differential Revision: https://reviews.llvm.org/D54862
      
      llvm-svn: 348927
      78de8471
    • Fangrui Song's avatar
      Add explicit dependency on clangSerialization for a bunch of components to fix... · 5313327f
      Fangrui Song authored
      Add explicit dependency on clangSerialization for a bunch of components to fix -DBUILD_SHARED_LIBS=on build
      
      This is a more thorough fix of rC348911.
      The story about -DBUILD_SHARED_LIBS=on build after rC348907 (Move PCHContainerOperations from Frontend to Serialization) is:
      
      1. libclangSerialization.so defines PCHContainerReader dtor, ...
      2. clangFrontend and clangTooling define classes inheriting from PCHContainerReader, thus their DSOs have undefined references on PCHContainerReader dtor
      3. Components depending on either clangFrontend or clangTooling cannot be linked unless they have explicit dependency on clangSerialization due to the default linker option -z defs. The explicit dependency could be avoided if libclang{Frontend,Tooling}.so had these undefined references.
      
      This patch adds the explicit dependency on clangSerialization to make them build.
      
      llvm-svn: 348915
      5313327f
  4. Dec 10, 2018
  5. Nov 27, 2018
  6. Nov 26, 2018
  7. Nov 23, 2018
  8. Nov 20, 2018
  9. Nov 08, 2018
  10. Nov 07, 2018
    • Andrew Savonichev's avatar
      Revert r346326 [OpenCL] Add support of cl_intel_device_side_avc_motion_estimation · 3b12b7e7
      Andrew Savonichev authored
      This patch breaks Index/opencl-types.cl LIT test:
      
      Script:
      --
      : 'RUN: at line 1';   stage1/bin/c-index-test -test-print-type llvm/tools/clang/test/Index/opencl-types.cl -cl-std=CL2.0 | stage1/bin/FileCheck llvm/tools/clang/test/Index/opencl-types.cl
      --
      Command Output (stderr):
      --
      llvm/tools/clang/test/Index/opencl-types.cl:3:26: warning: unsupported OpenCL extension 'cl_khr_fp16' - ignoring [-Wignored-pragmas]
      llvm/tools/clang/test/Index/opencl-types.cl:4:26: warning: unsupported OpenCL extension 'cl_khr_fp64' - ignoring [-Wignored-pragmas]
      llvm/tools/clang/test/Index/opencl-types.cl:8:9: error: use of type 'double' requires cl_khr_fp64 extension to be enabled
      llvm/tools/clang/test/Index/opencl-types.cl:11:8: error: declaring variable of type 'half' is not allowed
      llvm/tools/clang/test/Index/opencl-types.cl:15:3: error: use of type 'double' requires cl_khr_fp64 extension to be enabled
      llvm/tools/clang/test/Index/opencl-types.cl:16:3: error: use of type 'double4' (vector of 4 'double' values) requires cl_khr_fp64 extension to be enabled
      llvm/tools/clang/test/Index/opencl-types.cl:26:26: warning: unsupported OpenCL extension 'cl_khr_gl_msaa_sharing' - ignoring [-Wignored-pragmas]
      llvm/tools/clang/test/Index/opencl-types.cl:35:44: error: use of type '__read_only image2d_msaa_t' requires cl_khr_gl_msaa_sharing extension to be enabled
      llvm/tools/clang/test/Index/opencl-types.cl:36:49: error: use of type '__read_only image2d_array_msaa_t' requires cl_khr_gl_msaa_sharing extension to be enabled
      llvm/tools/clang/test/Index/opencl-types.cl:37:49: error: use of type '__read_only image2d_msaa_depth_t' requires cl_khr_gl_msaa_sharing extension to be enabled
      llvm/tools/clang/test/Index/opencl-types.cl:38:54: error: use of type '__read_only image2d_array_msaa_depth_t' requires cl_khr_gl_msaa_sharing extension to be enabled
      
      llvm-svn: 346338
      3b12b7e7
    • Andrew Savonichev's avatar
      [OpenCL] Add support of cl_intel_device_side_avc_motion_estimation extension · 35dfce72
      Andrew Savonichev authored
      Summary:
      Documentation can be found at https://www.khronos.org/registry/OpenCL/extensions/intel/cl_intel_device_side_avc_motion_estimation.txt
      
      Patch by Kristina Bessonova
      
      
      Reviewers: Anastasia, yaxunl, shafik
      
      Reviewed By: Anastasia
      
      Subscribers: arphaman, sidorovd, AlexeySotkin, krisb, bader, asavonic, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D51484
      
      llvm-svn: 346326
      35dfce72
  11. Nov 02, 2018
  12. Oct 31, 2018
    • Bill Wendling's avatar
      Create ConstantExpr class · 7c44da27
      Bill Wendling authored
      A ConstantExpr class represents a full expression that's in a context where a
      constant expression is required. This class reflects the path the evaluator
      took to reach the expression rather than the syntactic context in which the
      expression occurs.
      
      In the future, the class will be expanded to cache the result of the evaluated
      expression so that it's not needlessly re-evaluated
      
      Reviewed By: rsmith
      
      Differential Revision: https://reviews.llvm.org/D53475
      
      llvm-svn: 345692
      7c44da27
  13. Oct 30, 2018
  14. Oct 24, 2018
  15. Oct 11, 2018
  16. Oct 10, 2018
  17. Oct 03, 2018
  18. Oct 01, 2018
  19. Sep 27, 2018
  20. Sep 26, 2018
  21. Sep 18, 2018
    • Argyrios Kyrtzidis's avatar
      [index] Enhance indexing for module references · 32e5d862
      Argyrios Kyrtzidis authored
      * Create a USR for the occurrences of the 'module' symbol kind
      * Record module references for each identifier in an import declaration
      
      llvm-svn: 342484
      32e5d862
    • Sam McCall's avatar
      [CodeComplete] Add completions for filenames in #include directives. · 3d8051ab
      Sam McCall authored
      Summary:
      The dir component ("somedir" in #include <somedir/fo...>) is considered fixed.
      We append "foo" to each directory on the include path, and then list its files.
      
      Completions are of the forms:
       #include <somedir/fo^
                         foo.h>
                         fox/
      
      The filter is set to the filename part ("fo"), so fuzzy matching can be
      applied to the filename only.
      
      No fancy scoring/priorities are set, and no information is added to
      CodeCompleteResult to make smart scoring possible. Could be in future.
      
      Reviewers: ilya-biryukov
      
      Subscribers: cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D52076
      
      llvm-svn: 342449
      3d8051ab
  22. Sep 07, 2018
  23. Sep 05, 2018
  24. Aug 30, 2018
  25. Aug 23, 2018
    • Ivan Donchevskii's avatar
      [libclang] Fix cursors for arguments of Subscript and Call operators · b3ae2bc6
      Ivan Donchevskii authored
      The DeclRefExpr of CXXOperatorCallExpr refering to the custom operator
      is visited before the arguments to the operator call. For the Call and
      Subscript operator the range of this DeclRefExpr includes the whole call
      expression, so that all tokens in that range were mapped to the operator
      function, even the tokens of the arguments.
      
      Fix this by ensuring that this particular DeclRefExpr is visited last.
      
      Fixes PR25775.
      
      Fix by Nikolai Kosjar.
      
      Differential Revision: https://reviews.llvm.org/D40481
      
      llvm-svn: 340521
      b3ae2bc6
  26. Aug 21, 2018
    • Saleem Abdulrasool's avatar
      libclang: add install/distribution targets for python · f02e4f90
      Saleem Abdulrasool authored
      Add installation support for the python bindings for libclang.  Add an
      additional CMake configuration variable to enumerate the python versions for
      which the bindings should be installed.  This allows for a LLVM/clang
      distribution to distribute the python bindings for libclang as part of the
      image.  Because the python versions need to be explicitly stated by the user,
      the default image remains unchanged.
      
      llvm-svn: 340228
      f02e4f90
  27. Aug 09, 2018
  28. Aug 03, 2018
Loading