Skip to content
  1. May 08, 2009
  2. May 07, 2009
  3. May 06, 2009
    • Daniel Dunbar's avatar
      Handle -march for the LLVM recognized cpu names. · f9d90275
      Daniel Dunbar authored
       - x86 target feature handling should not be feature complete, even if
         the code quality is lacking.
      
      llvm-svn: 71123
      f9d90275
    • Daniel Dunbar's avatar
      If stderr isn't a terminal, don't try to guess the terminal width or · 908a66dc
      Daniel Dunbar authored
      look at COLUMNS.
      
      llvm-svn: 71120
      908a66dc
    • Daniel Dunbar's avatar
      More x86 target feature support. · bb36aed0
      Daniel Dunbar authored
       - Apologies for the extremely gross code duplication, I want to get
         this working and then decide how to get this information out of the
         back end.
      
       - This replaces -m[no-]sse4[12] by -m[no-]sse4, it appears gcc
         doesn't distinguish them?
      
       - -msse, etc. now properly disable/enable related features.
      
       - Don't always define __SSE3__...
      
       - The main missing functionality bit here is that we don't initialize
         the features based on the CPU for all -march options.
      
      llvm-svn: 71117
      bb36aed0
    • Ted Kremenek's avatar
      Fix analyzer regression reported in PR 4164: · 0626df4e
      Ted Kremenek authored
      - Update the old StoreManager::CastRegion to strip off 'ElementRegions' when
        casting to void* (Zhongxing: please validate)
      - Pass-by-reference argument invalidation logic in CFRefCount.cpp:
        - Strip ElementRegions when the ElementRegion is just a 'raw data' view
          on top of the underlying typed region.
      
      llvm-svn: 71094
      0626df4e
    • Zhongxing Xu's avatar
      Improve RegionStoreManager::getSizeInElements() · ea8c48d5
      Zhongxing Xu authored
       - add a static function getTypeWidth(), which computes the width of a type
         with the help of TargetInfo.
       - no-outofbounds.c now passes for region store.
      
      llvm-svn: 71080
      ea8c48d5
    • Zhongxing Xu's avatar
      Implement a heuristic type size comparison method for now. · 1813e23a
      Zhongxing Xu authored
      llvm-svn: 71074
      1813e23a
    • Chris Lattner's avatar
      adjust this to bourne shell syntax · 51f57a41
      Chris Lattner authored
      llvm-svn: 71070
      51f57a41
    • Daniel Dunbar's avatar
      Tweak x86 -mcpu defaults. · e5ae096b
      Daniel Dunbar authored
       - Default to yonah on Darwin (to get SSE3).
      
       - Default to Pentium4 (32-bit) and x86-64 (64-bit) on
         non-Darwin. Welcome to the 21st century.
      
      llvm-svn: 71069
      e5ae096b
    • Anders Carlsson's avatar
      Add parsing of friend specifiers. · cd8db41c
      Anders Carlsson authored
      llvm-svn: 71067
      cd8db41c
    • Daniel Dunbar's avatar
      Improve handling of (X86) target features. · 4dbaaa6f
      Daniel Dunbar authored
       - This is a WIP...
      
       - This adds -march= handling to the driver, and fixes the defaulting
         of -mcpu on Darwin (which was using the wrong test).
      
      Instead of handling -m{sse, ...} in the driver, pass them to clang-cc as
       -target-feature [+-]name
      
      In clang-cc, communicate with the (clang) target to discover the legal
      features of a target, and the features which are enabled based on
      -mcpu. This is currently hardcoded just enough to not be a feature
      regression, we need to get this information from the backend's
      TableGen information somehow.
      
      This is used to construct the full list of features which are being
      used, which is in turn used to initialize the predefines.
      
      llvm-svn: 71061
      4dbaaa6f
    • Zhongxing Xu's avatar
      Make StoreManager::CastRegion() virtual and implement a new CastRegion() for · d5e09be2
      Zhongxing Xu authored
      RegionStore.
      
      This CastRegion() performs casts according to the kind of the region being 
      cast instead of the type that is cast to.
      
      llvm-svn: 71058
      d5e09be2
    • Fariborz Jahanian's avatar
      Fixes a bug for objc2's gc in the presense of type-casts. · a16904bc
      Fariborz Jahanian authored
      llvm-svn: 71041
      a16904bc
    • Chris Lattner's avatar
      Fix rdar://6849429 - -Wunused-value with deeply nested macro expansion... · c45529b1
      Chris Lattner authored
      Fix rdar://6849429 - -Wunused-value with deeply nested macro expansion generates untraceable warnings
      
      The "instantiated from" messages coming from the caret diagnostics system are 
      basically walking the macro expansion tree, emitting each level as it goes.  However, it was
      skipping certain leaves in the tree by skipping up the entire instantiation arm every time
      it went up one spelling arm.  This caused it to miss some things.  For example, in this
      testcase:
      
      #define M1(x) x
      #define M2 1;
      
      void foo() {
       M1(M2)
      }
      
      we now print:
      
      /Users/sabre/Desktop/clang-unused-value-macro.c:6:2: warning: expression result unused
      
       M1(M2)
       ^~~~~~
      /Users/sabre/Desktop/clang-unused-value-macro.c:6:5: note: instantiated from:
      
       M1(M2)
          ^~
      /Users/sabre/Desktop/clang-unused-value-macro.c:3:12: note: instantiated from:
      
      #define M2 1;
                 ^
      
      Previously we didn't print the last line, so we never emitted the caret pointing to the 1!
      
      Incidentally, the spaces between the lines is really noisy, I think we should reconsider
      this heuristic (which adds them when the printed code starts too close to the start of the
      line).
      
      The regression test can't use -verify, because -verify doesn't catch notes for macro
      instantiation history.
      
      llvm-svn: 71025
      c45529b1
  4. May 05, 2009
Loading