Skip to content
  1. Nov 03, 2014
  2. Nov 02, 2014
    • Daniel Jasper's avatar
      clang-format: Fix false positive in lambda detection. · 8022226d
      Daniel Jasper authored
      Before:
        delete [] a -> b;
      
      After:
        delete[] a->b;
      
      This fixes part of llvm.org/PR21419.
      
      llvm-svn: 221114
      8022226d
    • Daniel Jasper's avatar
      clang-format: [Java] Support enums without trailing semicolon. · df2ff002
      Daniel Jasper authored
      Before:
        class SomeClass {
          enum SomeThing { ABC, CDE } void f() {
          }
        }
      
      After:
        class SomeClass {
          enum SomeThing { ABC, CDE }
          void f() {
          }
        }
      
      This fixed llvm.org/PR21458.
      
      llvm-svn: 221113
      df2ff002
    • Daniel Jasper's avatar
      clang-format: [Java] Don't break imports. · 5e7be1d5
      Daniel Jasper authored
      This fixes llvm.org/PR21453.
      
      llvm-svn: 221112
      5e7be1d5
    • Filipe Cabecinhas's avatar
      Fix the Makefile build by actually building ABI/SysV-ppc · dfa86880
      Filipe Cabecinhas authored
      llvm-svn: 221111
      dfa86880
    • Daniel Jasper's avatar
      clang-format: [Java] Add space between "synchronized" and "(". · b9d3db6b
      Daniel Jasper authored
      Before:
        synchronized(mData) {
          // ...
        }
      
      After:
        synchronized (mData) {
          // ...
        }
      
      This fixes llvm.org/PR21455.
      
      llvm-svn: 221110
      b9d3db6b
    • Daniel Jasper's avatar
      clang-format: [Java] Support generics with "?". · 7bd618f5
      Daniel Jasper authored
      Before:
        @Override
        public Map < String,
                ? > getAll() {
          // ...
        }
      
      After:
        @Override
        public Map<String, ?> getAll() {
          // ...
        }
      
      This fixes llvm.org/PR21454.
      
      llvm-svn: 221109
      7bd618f5
    • Saleem Abdulrasool's avatar
      clang-format: permit setting the path to clang in vimrc · 4d195ed4
      Saleem Abdulrasool authored
      If g:clang_format_path is set in the vimrc, that path will take precedence over
      the hard coded path (which is reliant on the PATH environment variable).  This
      provides an easy mechanism for switching the selected clang-format binary during
      development.
      
      llvm-svn: 221108
      4d195ed4
    • Saleem Abdulrasool's avatar
      docs: remove double carriage-return · 8bbed0b6
      Saleem Abdulrasool authored
      The double carriage return would silence a warning due to a missing
      .clang-format.  Permit the error to bubble through.
      
      llvm-svn: 221107
      8bbed0b6
    • Daniel Jasper's avatar
      clang-format: [Java] Support try/catch/finally blocks. · a3ddf86d
      Daniel Jasper authored
      llvm-svn: 221104
      a3ddf86d
    • Daniel Jasper's avatar
      clang-format: [Java] Don't break after extends/implements. · 50b4bd7c
      Daniel Jasper authored
      Before:
        abstract class SomeClass extends SomeOtherClass implements
            SomeInterface {}
      
      After:
        abstract class SomeClass extends SomeOtherClass
            implements SomeInterface {}
      
      llvm-svn: 221103
      50b4bd7c
    • Daniel Sanders's avatar
      Re-commit r221056 and others with fix, "[mips] Move F128 argument handling... · 23e98776
      Daniel Sanders authored
      Re-commit r221056 and others with fix, "[mips] Move F128 argument handling into MipsCCState as we did for returns. NFC."
      
      sret arguments can never originate from an f128 argument so we detect
      sret arguments and push false into OriginalArgWasF128.
      
      llvm-svn: 221102
      23e98776
    • Marshall Clow's avatar
      Mark string_view::to_string as const. Fixes PR21428 · 8ba95b7b
      Marshall Clow authored
      llvm-svn: 221101
      8ba95b7b
    • Bill Schmidt's avatar
      [PowerPC] Change PPCTargetInfo::hasFeature() to use StringSwitch · e6e9d15d
      Bill Schmidt authored
      Implement post-commit comment on r220989 from Eric Christopher.
      
      llvm-svn: 221099
      e6e9d15d
    • Rafael Espindola's avatar
      Revert r221096 bringing back r221014 with a fix. · 778fcc77
      Rafael Espindola authored
      The issue was that linkAppendingVarProto does the full linking job, including
      deleting the old dst variable. The fix is just to call it and return early
      if we have a GV with appending linkage.
      
      original message:
      
          Refactor duplicated code in liking GlobalValues.
      
          There is quiet a bit of logic that is common to any GlobalValue but was
          duplicated for Functions, GlobalVariables and GlobalAliases.
      
          While at it, merge visibility even when comdats are used, fixing pr21415.
      
      llvm-svn: 221098
      778fcc77
    • Rafael Espindola's avatar
      [cmake] Pass -O3 when linking. · 8cb7876c
      Rafael Espindola authored
      Gold and bfd ld enable misc optimizations. lld ignores the option for now.
      
      llvm-svn: 221097
      8cb7876c
    • Chandler Carruth's avatar
      Revert r221014: "Refactor duplicated code in liking GlobalValues." · fd38af2d
      Chandler Carruth authored
      This commit introduces heap-use-after-free detected by ASan. Here is the output
      for one of several tests that detect it:
      
      ******************** TEST 'LLVM :: Linker/AppendingLinkage.ll' FAILED ********************
      Command Output (stderr):
      --
      =================================================================
      ==2122==ERROR: AddressSanitizer: heap-use-after-free on address 0x60c00000b9c8 at pc 0x0000005d05d1 bp 0x7fff64ed27c0 sp 0x7fff64ed27b8
      READ of size 4 at 0x60c00000b9c8 thread T0
          #0 0x5d05d0 in llvm::GlobalValue::setUnnamedAddr(bool) /usr/local/google/home/chandlerc/src/llvm/build/../include/llvm/IR/GlobalValue.h:115:35
          #1 0x69fff1 in (anonymous namespace)::ModuleLinker::linkGlobalValueProto(llvm::GlobalValue*) /usr/local/google/home/chandlerc/src/llvm/build/../lib/Linker/LinkModules.cpp:1041:5
          #2 0x697229 in (anonymous namespace)::ModuleLinker::run() /usr/local/google/home/chandlerc/src/llvm/build/../lib/Linker/LinkModules.cpp:1485:9
          #3 0x696542 in llvm::Linker::linkInModule(llvm::Module*) /usr/local/google/home/chandlerc/src/llvm/build/../lib/Linker/LinkModules.cpp:1621:10
          #4 0x4a2db7 in main /usr/local/google/home/chandlerc/src/llvm/build/../tools/llvm-link/llvm-link.cpp:116:9
          #5 0x7f4ae61e5ec4 in __libc_start_main /build/buildd/eglibc-2.19/csu/libc-start.c:287
          #6 0x41eb71 in _start (/usr/local/google/home/chandlerc/src/llvm/build/bin/llvm-link+0x41eb71)
      
      0x60c00000b9c8 is located 72 bytes inside of 128-byte region [0x60c00000b980,0x60c00000ba00)
      freed by thread T0 here:
          #0 0x4a1e6b in operator delete(void*) /usr/local/google/home/chandlerc/src/llvm/opt-build/../projects/compiler-rt/lib/asan/asan_new_delete.cc:94:3
          #1 0x5d1a7a in llvm::iplist<llvm::GlobalVariable, llvm::ilist_traits<llvm::GlobalVariable> >::erase(llvm::ilist_iterator<llvm::GlobalVariable>) /usr/local/google/home/chandlerc/src/llvm/build/../inclu
      de/llvm/ADT/ilist.h:466:5
          #2 0x5d1980 in llvm::GlobalVariable::eraseFromParent() /usr/local/google/home/chandlerc/src/llvm/build/../lib/IR/Globals.cpp:204:3
          #3 0x6a8a4d in (anonymous namespace)::ModuleLinker::linkAppendingVarProto(llvm::GlobalVariable*, llvm::GlobalVariable const*) /usr/local/google/home/chandlerc/src/llvm/build/../lib/Linker/LinkModules.
      cpp:980:3
          #4 0x6a7403 in (anonymous namespace)::ModuleLinker::linkGlobalVariableProto(llvm::GlobalVariable const*, llvm::GlobalValue*, bool) /usr/local/google/home/chandlerc/src/llvm/build/../lib/Linker/LinkMod
      ules.cpp:1074:11
          #5 0x69ff4e in (anonymous namespace)::ModuleLinker::linkGlobalValueProto(llvm::GlobalValue*) /usr/local/google/home/chandlerc/src/llvm/build/../lib/Linker/LinkModules.cpp:1028:13
          #6 0x697229 in (anonymous namespace)::ModuleLinker::run() /usr/local/google/home/chandlerc/src/llvm/build/../lib/Linker/LinkModules.cpp:1485:9
          #7 0x696542 in llvm::Linker::linkInModule(llvm::Module*) /usr/local/google/home/chandlerc/src/llvm/build/../lib/Linker/LinkModules.cpp:1621:10
          #8 0x4a2db7 in main /usr/local/google/home/chandlerc/src/llvm/build/../tools/llvm-link/llvm-link.cpp:116:9
          #9 0x7f4ae61e5ec4 in __libc_start_main /build/buildd/eglibc-2.19/csu/libc-start.c:287
      
      previously allocated by thread T0 here:
          #0 0x4a192b in operator new(unsigned long) /usr/local/google/home/chandlerc/src/llvm/opt-build/../projects/compiler-rt/lib/asan/asan_new_delete.cc:62:35
          #1 0x61d85c in llvm::User::operator new(unsigned long, unsigned int) /usr/local/google/home/chandlerc/src/llvm/build/../lib/IR/User.cpp:57:19
          #2 0x6a7525 in (anonymous namespace)::ModuleLinker::linkGlobalVariableProto(llvm::GlobalVariable const*, llvm::GlobalValue*, bool) /usr/local/google/home/chandlerc/src/llvm/build/../lib/Linker/LinkMod
      ules.cpp:1100:3
          #3 0x69ff4e in (anonymous namespace)::ModuleLinker::linkGlobalValueProto(llvm::GlobalValue*) /usr/local/google/home/chandlerc/src/llvm/build/../lib/Linker/LinkModules.cpp:1028:13
          #4 0x697229 in (anonymous namespace)::ModuleLinker::run() /usr/local/google/home/chandlerc/src/llvm/build/../lib/Linker/LinkModules.cpp:1485:9
          #5 0x696542 in llvm::Linker::linkInModule(llvm::Module*) /usr/local/google/home/chandlerc/src/llvm/build/../lib/Linker/LinkModules.cpp:1621:10
          #6 0x4a2db7 in main /usr/local/google/home/chandlerc/src/llvm/build/../tools/llvm-link/llvm-link.cpp:116:9
          #7 0x7f4ae61e5ec4 in __libc_start_main /build/buildd/eglibc-2.19/csu/libc-start.c:287
      
      SUMMARY: AddressSanitizer: heap-use-after-free /usr/local/google/home/chandlerc/src/llvm/build/../include/llvm/IR/GlobalValue.h:115 llvm::GlobalValue::setUnnamedAddr(bool)
      Shadow bytes around the buggy address:
        0x0c187fff96e0: fa fa fa fa fa fa fa fa 00 00 00 00 00 00 00 00
        0x0c187fff96f0: 00 00 00 00 00 00 00 fa fa fa fa fa fa fa fa fa
        0x0c187fff9700: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fa
        0x0c187fff9710: fa fa fa fa fa fa fa fa 00 00 00 00 00 00 00 00
        0x0c187fff9720: 00 00 00 00 00 00 00 00 fa fa fa fa fa fa fa fa
      =>0x0c187fff9730: fd fd fd fd fd fd fd fd fd[fd]fd fd fd fd fd fd
        0x0c187fff9740: fa fa fa fa fa fa fa fa fd fd fd fd fd fd fd fd
        0x0c187fff9750: fd fd fd fd fd fd fd fa fa fa fa fa fa fa fa fa
        0x0c187fff9760: fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd fd
        0x0c187fff9770: fa fa fa fa fa fa fa fa fd fd fd fd fd fd fd fd
        0x0c187fff9780: fd fd fd fd fd fd fd fd fa fa fa fa fa fa fa fa
      Shadow byte legend (one shadow byte represents 8 application bytes):
        Addressable:           00
        Partially addressable: 01 02 03 04 05 06 07
        Heap left redzone:       fa
        Heap right redzone:      fb
        Freed heap region:       fd
        Stack left redzone:      f1
        Stack mid redzone:       f2
        Stack right redzone:     f3
        Stack partial redzone:   f4
        Stack after return:      f5
        Stack use after scope:   f8
        Global redzone:          f9
        Global init order:       f6
        Poisoned by user:        f7
        Container overflow:      fc
        Array cookie:            ac
        ASan internal:           fe
      ==2122==ABORTING
      
      llvm-svn: 221096
      fd38af2d
    • David Blaikie's avatar
      Formatting · 4aa49b20
      David Blaikie authored
      llvm-svn: 221095
      4aa49b20
Loading