Skip to content
  1. Jan 28, 2019
  2. Jan 27, 2019
    • Nicolas Lesser's avatar
      [SemaCXX] Fix ICE with structure bindings to members of template · 0276d124
      Nicolas Lesser authored
      
      
      Summary:
      Trying to use structure binding with a structure that doesn't implement
      std::tuple_size, should unpack the data members. When the struct is a
      template though, clang might hit an assertion (if the type has not been
      completed before), because CXXRecordDecl::DefinitionData is nullptr.
      
      This commit fixes the problem by completing the type while trying to
      decompose the structured binding.
      
      The ICE happens in real world code, for example, when trying to iterate
      a protobuf generated map with a range-based for loop and structure
      bindings (because google::protobuf::MapPair is a template and doesn't
      support std::tuple_size).
      
      Reported-by: default avatar <nicholas.sun@nlsun.com>
      
      Patch by Daniele Di Proietto
      
      Reviewers: #clang, rsmith
      
      Reviewed By: #clang, rsmith
      
      Subscribers: cpplearner, Rakete1111, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D56974
      
      llvm-svn: 352323
      0276d124
    • Bill Wendling's avatar
      Remove Expr sugar decorating the CXXUuidofExpr node. · ff57307b
      Bill Wendling authored
      Summary: Sugar, like ConstantExpr, causes an infinite expansion of the template object.
      
      Reviewers: rsmith, aaron.ballman
      
      Reviewed By: aaron.ballman
      
      Subscribers: riccibruno, aaron.ballman, cfe-commits, tzik, rnk
      
      Differential Revision: https://reviews.llvm.org/D57114
      
      llvm-svn: 352307
      ff57307b
    • Johannes Doerfert's avatar
      [FIX] Adjust CXX microsoft abi dynamic cast test to r352293 · 29ad802d
      Johannes Doerfert authored
      llvm-svn: 352299
      29ad802d
  3. Jan 26, 2019
    • Kristof Umann's avatar
      [analyzer] Add CheckerManager::getChecker, make sure that a registry function... · 204bf2bb
      Kristof Umann authored
      [analyzer] Add CheckerManager::getChecker, make sure that a registry function registers no more than 1 checker
      
      This patch effectively fixes the almost decade old checker naming issue.
      The solution is to assert when CheckerManager::getChecker is called on an
      unregistered checker, and assert when CheckerManager::registerChecker is called
      on a checker that is already registered.
      
      Differential Revision: https://reviews.llvm.org/D55429
      
      llvm-svn: 352292
      204bf2bb
    • Kristof Umann's avatar
      [analyzer] Reimplement dependencies between checkers · 8fd74ebf
      Kristof Umann authored
      Unfortunately, up until now, the fact that certain checkers depended on one
      another was known, but how these actually unfolded was hidden deep within the
      implementation. For example, many checkers (like RetainCount, Malloc or CString)
      modelled a certain functionality, and exposed certain reportable bug types to
      the user. For example, while MallocChecker models many many different types of
      memory handling, the actual "unix.MallocChecker" checker the user was exposed to
      was merely and option to this modeling part.
      
      Other than this being an ugly mess, this issue made resolving the checker naming
      issue almost impossible. (The checker naming issue being that if a checker
      registered more than one checker within its registry function, both checker
      object recieved the same name) Also, if the user explicitly disabled a checker
      that was a dependency of another that _was_ explicitly enabled, it implicitly,
      without "telling" the user, reenabled it.
      
      Clearly, changing this to a well structured, declarative form, where the
      handling of dependencies are done on a higher level is very much preferred.
      
      This patch, among the detailed things later, makes checkers declare their
      dependencies within the TableGen file Checkers.td, and exposes the same
      functionality to plugins and statically linked non-generated checkers through
      CheckerRegistry::addDependency. CheckerRegistry now resolves these dependencies,
      makes sure that checkers are added to CheckerManager in the correct order,
      and makes sure that if a dependency is disabled, so will be every checker that
      depends on it.
      
      In detail:
      
      * Add a new field to the Checker class in CheckerBase.td called Dependencies,
      which is a list of Checkers.
      * Move unix checkers before cplusplus, as there is no forward declaration in
      tblgen :/
      * Add the following new checkers:
        - StackAddrEscapeBase
        - StackAddrEscapeBase
        - CStringModeling
        - DynamicMemoryModeling (base of the MallocChecker family)
        - IteratorModeling (base of the IteratorChecker family)
        - ValistBase
        - SecuritySyntaxChecker (base of bcmp, bcopy, etc...)
        - NSOrCFErrorDerefChecker (base of NSErrorChecker and  CFErrorChecker)
        - IvarInvalidationModeling (base of IvarInvalidation checker family)
        - RetainCountBase (base of RetainCount and OSObjectRetainCount)
      * Clear up and registry functions in MallocChecker, happily remove old FIXMEs.
      * Add a new addDependency function to CheckerRegistry.
      * Neatly format RUN lines in files I looked at while debugging.
      
      Big thanks to Artem Degrachev for all the guidance through this project!
      
      Differential Revision: https://reviews.llvm.org/D54438
      
      llvm-svn: 352287
      8fd74ebf
    • Kristof Umann's avatar
      [analyzer] Fix an bug where statically linked, but not registered checkers weren't recognized · 98217adb
      Kristof Umann authored
      My last patch, D56989, moved the validation of whether a checker exists into
      its constructor, but we do support statically linked (and non-plugin) checkers
      that were do not have an entry in Checkers.td. However, the handling of this
      happens after the creation of the CheckerRegistry object.
      
      This patch fixes this bug by moving even this functionality into
      CheckerRegistry's constructor.
      
      llvm-svn: 352284
      98217adb
    • Kristof Umann's avatar
      [analyzer][NFC] Keep track of whether enabling a checker was explictly... · 3daa2455
      Kristof Umann authored
      [analyzer][NFC] Keep track of whether enabling a checker was explictly specified in command line arguments
      
      I added a new enum to CheckerInfo, so we can easily track whether the check is
      explicitly enabled, explicitly disabled, or isn't specified in this regard.
      Checkers belonging in the latter category may be implicitly enabled through
      dependencies in the followup patch. I also made sure that this is done within
      CheckerRegisty's constructor, leading to very significant simplifications in
      its query-like methods.
      
      Differential Revision: https://reviews.llvm.org/D56989
      
      llvm-svn: 352282
      3daa2455
    • Kristof Umann's avatar
      [analyzer][NFC] Supply CheckerRegistry with AnalyzerOptions · dd9c86e5
      Kristof Umann authored
      Since pretty much all methods of CheckerRegistry has AnalyzerOptions as an
      argument, it makes sense to just simply require it in it's constructor.
      
      Differential Revision: https://reviews.llvm.org/D56988
      
      llvm-svn: 352279
      dd9c86e5
    • Kristof Umann's avatar
      [analyzer] Split unix.API up to UnixAPIMisuseChecker and UnixAPIPortabilityChecker · f52f4f63
      Kristof Umann authored
      The actual implementation of unix.API features a dual-checker: two checkers in
      one, even though they don't even interact at all. Split them up, as this is a
      problem for establishing dependencies.
      
      I added no new code at all, just merely moved it around.
      
      Since the plist files change (and that's a benefit!) this patch isn't NFC.
      
      Differential Revision: https://reviews.llvm.org/D55425
      
      llvm-svn: 352278
      f52f4f63
    • Kristof Umann's avatar
      [analyzer] Supply all checkers with a shouldRegister function · 058a7a45
      Kristof Umann authored
      Introduce the boolean ento::shouldRegister##CHECKERNAME(const LangOptions &LO)
      function very similarly to ento::register##CHECKERNAME. This will force every
      checker to implement this function, but maybe it isn't that bad: I saw a lot of
      ObjC or C++ specific checkers that should probably not register themselves based
      on some LangOptions (mine too), but they do anyways.
      
      A big benefit of this is that all registry functions now register their checker,
      once it is called, registration is guaranteed.
      
      This patch is a part of a greater effort to reinvent checker registration, more
      info here: D54438#1315953
      
      Differential Revision: https://reviews.llvm.org/D55424
      
      llvm-svn: 352277
      058a7a45
    • Bruno Ricci's avatar
      [AST] Pack GenericSelectionExpr · db07683d
      Bruno Ricci authored
      Store the controlling expression, the association expressions and the
      corresponding TypeSourceInfos as trailing objects.
      
      Additionally use the bit-fields of Stmt to store one SourceLocation,
      saving one additional pointer. This saves 3 pointers in total per
      GenericSelectionExpr.
      
      Differential Revision: https://reviews.llvm.org/D57104
      
      Reviewed By: aaron.ballman
      
      Reviewers: aaron.ballman, steveire
      llvm-svn: 352276
      db07683d
    • Bruno Ricci's avatar
      [AST][NFC] Various cleanups to GenericSelectionExpr · 94498c70
      Bruno Ricci authored
      Various cleanups to GenericSelectionExpr factored out of D57104. In particular:
      
      1. Move the friend declaration to the top.
      2. Introduce a constant ResultDependentIndex instead of the magic "-1".
      3. clang-format
      4. Group the member function together so that they can be removed as one block
         by D57106.
      
      NFC.
      
      Differential Revision: https://reviews.llvm.org/D57238
      
      Reviewed By: aaron.ballman
      
      llvm-svn: 352275
      94498c70
    • Craig Topper's avatar
      [X86] Custom codegen 512-bit cvt(u)qq2tops, cvt(u)qqtopd, and cvt(u)dqtops intrinsics. · bd7884ed
      Craig Topper authored
      Summary:
      The 512-bit cvt(u)qq2tops, cvt(u)qqtopd, and cvt(u)dqtops intrinsics all have the possibility of taking an explicit rounding mode argument. If the rounding mode is CUR_DIRECTION we'd like to emit a sitofp/uitofp instruction and a select like we do for 256-bit intrinsics.
      
      For cvt(u)qqtopd and cvt(u)dqtops we do this when the form of the software intrinsics that doesn't take a rounding mode argument is used. This is done by using convertvector in the header with the select builtin. But if the explicit rounding mode form of the intrinsic is used and CUR_DIRECTION is passed, we don't do this. We shouldn't have this inconsistency.
      
      For cvt(u)qqtops nothing is done because we can't use the select builtin in the header without avx512vl. So we need to use custom codegen for this.
      
      Even when the rounding mode isn't CUR_DIRECTION we should also use select in IR for consistency. And it will remove another scalar integer mask from our intrinsics.
      
      To accomplish all of these goals I've taken a slightly unusual approach. I've added two new X86 specific intrinsics for sitofp/uitofp with rounding. These intrinsics are variadic on the input and output type so we only need 2 instead of 6. This avoids the need for a switch to map them in CGBuiltin.cpp. We just need to check signed vs unsigned. I believe other targets also use variadic intrinsics like this.
      
      So if the rounding mode is CUR_DIRECTION we'll use an sitofp/uitofp instruction. Otherwise we'll use one of the new intrinsics. After that we'll emit a select instruction if needed.
      
      Reviewers: RKSimon, spatel
      
      Reviewed By: RKSimon
      
      Subscribers: cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D56998
      
      llvm-svn: 352267
      bd7884ed
    • Nico Weber's avatar
      Attempt to fix build on Windows with LLVM_ENABLE_PIC=OFF · e9cac31d
      Nico Weber authored
      libclang can be built in shared or static mode. On Windows, with
      LLVM_ENABLE_PIC=OFF, it was built in neither mode, leading to clients of
      libclang (c-index-test, c-arcmt-test) failing to link with it set.
      
      Since PIC isn't really a thing on Windows, build libclang in shared mode when
      LLVM_ENABLE_PIC=OFF there. This is also somewhat symmetric with the existing
      ENABLE_STATIC a few lines down.
      
      Differential Revision: https://reviews.llvm.org/D57258
      
      llvm-svn: 352253
      e9cac31d
    • Stella Stamenova's avatar
      Fixed frontend clang tests in windows read-only container · ed01f8cc
      Stella Stamenova authored
      Summary:
      When mounting LLVM source into a windows container in read-only mode, certain tests fail. Ideally, we want all these tests to pass so that developers can mount the same source folder into multiple (windows) containers simultaneously, allowing them to build/test the same source code using various different configurations simultaneously.
      
      **Fix**: I've found that when attempting to open a file for writing on windows, if you don't have the correct permissions (trying to open a file for writing in a read-only folder), you get [Access is denied](https://support.microsoft.com/en-us/help/2623670/access-denied-or-other-errors-when-you-access-or-work-with-files-and-f). In llvm, we map this error message to a linux based error, see: https://github.com/llvm-mirror/llvm/blob/master/lib/Support/ErrorHandling.cpp
      
      This is why we see "Permission denied" in our output as opposed to the expected "No such file or directory", thus causing the tests to fail.
      
      I've changed the test locally to instead point to the root drive so that they can successfully bypass the Access is denied error when LLVM is mounted in as a read-only directory. This way, the test operate exactly the same, but we can get around the windows-complications of what error to expect in a read-only directory.
      
      Patch By: justice_adams
      
      Reviewers: rsmith, zturner, MatzeB, stella.stamenova
      
      Reviewed By: stella.stamenova
      
      Subscribers: ormris, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D50563
      
      llvm-svn: 352252
      ed01f8cc
  4. Jan 25, 2019
  5. Jan 24, 2019
Loading