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
    • Steven Wu's avatar
      [Driver] Add support for -fembed-bitcode for assembly file · 098742fa
      Steven Wu authored
      Summary:
      Handle -fembed-bitcode for assembly inputs. When the input file is
      assembly, write a marker as "__LLVM,__asm" section.
      
      Fix llvm.org/pr39659
      
      Reviewers: compnerd, dexonsmith
      
      Reviewed By: compnerd
      
      Subscribers: rjmccall, dblaikie, jkorous, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D55525
      
      llvm-svn: 348943
      098742fa
    • 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
    • Alex Bradbury's avatar
      [clang-fuzzer] Add explicit dependency on clangSerialization for clangHandleCXX after rC348907 · f7dc77e9
      Alex Bradbury authored
      This library was breaking my -DBUILD_SHARED_LIBS=1 build. rC348915 seemed to miss this case.
      
      As this seems an "obvious" fix, I am committing without pre-commit review as
      per the LLVM developer policy.
      
      llvm-svn: 348929
      f7dc77e9
    • 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. Dec 03, 2018
  6. Nov 28, 2018
  7. Nov 27, 2018
  8. Nov 26, 2018
  9. Nov 23, 2018
  10. Nov 20, 2018
  11. Nov 17, 2018
  12. Nov 08, 2018
  13. 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
  14. Nov 02, 2018
  15. Nov 01, 2018
    • Reid Kleckner's avatar
      Fix clang -Wimplicit-fallthrough warnings across llvm, NFC · 4dc0b1ac
      Reid Kleckner authored
      This patch should not introduce any behavior changes. It consists of
      mostly one of two changes:
      1. Replacing fall through comments with the LLVM_FALLTHROUGH macro
      2. Inserting 'break' before falling through into a case block consisting
         of only 'break'.
      
      We were already using this warning with GCC, but its warning behaves
      slightly differently. In this patch, the following differences are
      relevant:
      1. GCC recognizes comments that say "fall through" as annotations, clang
         doesn't
      2. GCC doesn't warn on "case N: foo(); default: break;", clang does
      3. GCC doesn't warn when the case contains a switch, but falls through
         the outer case.
      
      I will enable the warning separately in a follow-up patch so that it can
      be cleanly reverted if necessary.
      
      Reviewers: alexfh, rsmith, lattner, rtrieu, EricWF, bollu
      
      Differential Revision: https://reviews.llvm.org/D53950
      
      llvm-svn: 345882
      4dc0b1ac
  16. 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
  17. Oct 30, 2018
  18. Oct 24, 2018
  19. Oct 11, 2018
  20. Oct 10, 2018
  21. Oct 03, 2018
  22. Oct 01, 2018
  23. Sep 27, 2018
  24. Sep 26, 2018
    • Roman Lebedev's avatar
      [analyzer] scan-build: if --status-bugs is passed, don't forget about the exit... · 19327882
      Roman Lebedev authored
      [analyzer] scan-build: if --status-bugs is passed, don't forget about the exit status of the actual build
      
      Summary:
      This has been bothering me for a while, but only now i have actually looked into this.
      I'm using one CI job for static analysis - clang static analyzers as compilers + clang-tidy via cmake.
      And i'd like for the build to fail if at least one of those finds issues.
      If clang-tidy finds issues, it will fail the build since the warnings-as-errors is set.
      If static analyzer finds anything, since --status-bugs is set, it will fail the build.
      But if clang-tidy find anything, but static analyzer does not, the build succeeds :/
      
      Reviewers: sylvestre.ledru, alexfh, jroelofs, ygribov, george.karpenkov, krememek
      
      Reviewed By: jroelofs
      
      Subscribers: xazax.hun, szepet, a.sidorin, mikhail.ramalho, Szelethus, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D52530
      
      llvm-svn: 343105
      19327882
    • Kelvin Li's avatar
      [OPENMP] Add support for OMP5 requires directive + unified_address clause · 1408f91a
      Kelvin Li authored
      Add support for OMP5.0 requires directive and unified_address clause.
      Patches to follow will include support for additional clauses.
      
      Differential Revision: https://reviews.llvm.org/D52359
      
      llvm-svn: 343063
      1408f91a
  25. Sep 18, 2018
Loading