Skip to content
  1. Dec 28, 2014
    • Andrea Di Biagio's avatar
      [CodeGenPrepare] Teach when it is profitable to speculate calls to @llvm.cttz/ctlz. · 22ee3f63
      Andrea Di Biagio authored
      If the control flow is modelling an if-statement where the only instruction in
      the 'then' basic block (excluding the terminator) is a call to cttz/ctlz,
      CodeGenPrepare can try to speculate the cttz/ctlz call and simplify the control
      flow graph.
      
      Example:
      \code
      entry:
        %cmp = icmp eq i64 %val, 0
        br i1 %cmp, label %end.bb, label %then.bb
      
      then.bb:
        %c = tail call i64 @llvm.cttz.i64(i64 %val, i1 true)
        br label %end.bb
      
      end.bb:
        %cond = phi i64 [ %c, %then.bb ], [ 64, %entry]
      \code
      
      In this example, basic block %then.bb is taken if value %val is not zero.
      Also, the phi node in %end.bb would propagate the size-of in bits of %val
      only if %val is equal to zero.
      
      With this patch, CodeGenPrepare will try to hoist the call to cttz from %then.bb
      into basic block %entry only if cttz is cheap to speculate for the target.
      
      Added two new hooks in TargetLowering.h to let targets customize the behavior
      (i.e. decide whether it is cheap or not to speculate calls to cttz/ctlz). The
      two new methods are 'isCheapToSpeculateCtlz' and 'isCheapToSpeculateCttz'.
      By default, both methods return 'false'.
      On X86, method 'isCheapToSpeculateCtlz' returns true only if the target has
      LZCNT. Method 'isCheapToSpeculateCttz' only returns true if the target has BMI.
      
      Differential Revision: http://reviews.llvm.org/D6728
      
      llvm-svn: 224899
      22ee3f63
    • David Majnemer's avatar
      Sema: Don't crash when an inject class name has a nested redefinition · 738e5879
      David Majnemer authored
      We expected the type of a TagDecl to be a TagType, not an
      InjectedClassNameType.  Introduced a helper method, Type::getAsTagDecl,
      to abstract away the difference; redefine Type::getAsCXXRecordDecl to be
      in terms of it.
      
      llvm-svn: 224898
      738e5879
    • Elena Demikhovsky's avatar
      Scalarizer for masked load and store intrinsics. · 87700a73
      Elena Demikhovsky authored
      Masked vector intrinsics are a part of common LLVM IR, but they are really supported on AVX2 and AVX-512 targets. I added a code that translates masked intrinsic for all other targets. The masked vector intrinsic is converted to a chain of scalar operations inside conditional basic blocks.
      
      http://reviews.llvm.org/D6436
      
      llvm-svn: 224897
      87700a73
    • David Majnemer's avatar
      Lex: Don't let annotation tokens get into macro expansion · f2d3bc04
      David Majnemer authored
      We'd let annotation tokens from '#pragma pack' and the like get inside a
      function-like macro.  This would lead to terror and mayhem; stop the
      madness early.
      
      This fixes PR22037.
      
      llvm-svn: 224896
      f2d3bc04
    • Nico Weber's avatar
      Fix markup from r224894. · a894e9e0
      Nico Weber authored
      llvm-svn: 224895
      a894e9e0
    • Nico Weber's avatar
      Add stub sections about Parse, Sema, CodeGen to the internals manual. · 933607f1
      Nico Weber authored
      I'd be interested if the paragraph on Parse not knowing much about AST is
      something folks agree with.  I think this used to be true after rjmccall removed
      the Action interface in r112244 and I believe it's still true, but I'm not sure.
      (For example, ParseOpenMP.cpp does include AST/StmtOpenMP.h.  Other than that,
      Parse not using AST nodes much seems to be still true, though.)
      
      llvm-svn: 224894
      933607f1
    • Nico Weber's avatar
      Remove unneeded include of DeclCXX.h from libParse. · 3fc6a28c
      Nico Weber authored
      llvm-svn: 224893
      3fc6a28c
  2. Dec 27, 2014
  3. Dec 26, 2014
Loading