Skip to content
  1. Dec 27, 2013
    • Kostya Serebryany's avatar
      Bury leaked pointers in a global array to silence a leak detector in --disable-free mode · ce2c726e
      Kostya Serebryany authored
      Summary:
      This is an alternative to http://llvm-reviews.chandlerc.com/D2475
      suggested by Chandler.
      
      Reviewers: chandlerc, rnk, dblaikie
      
      CC: cfe-commits, earthdok
      
      Differential Revision: http://llvm-reviews.chandlerc.com/D2478
      
      llvm-svn: 198073
      ce2c726e
    • Rui Ueyama's avatar
      [PECOFF] Change the DLL entry symbol. · e6ed0f25
      Rui Ueyama authored
      I'm not 100% sure but it looks like DLL entry symbol (DLL initializer function
      name) should be _DllMainCRTStartup@12. The reason why I'm not very sure is
      because I have no idea what "@12" suffix is, but without it the symbol won't
      be resolved...
      
      llvm-svn: 198072
      e6ed0f25
    • Rui Ueyama's avatar
      [PECOFF] Parse .drectve section before reading other file contents. · d0cce867
      Rui Ueyama authored
      Currently .drectve section contents are parsed after other sections are parsed.
      That order may result in wrong results if other sections depend on command line
      options in the directive section.
      
      For example, if a weak symbol is defined using /alternatename option in the
      directive section, we have to read it first and then read the text section
      contents. Otherwise the weak symbol won't be defined.
      
      This patch changes the order to fix the issue.
      
      llvm-svn: 198071
      d0cce867
    • Daniel Jasper's avatar
      clang-format: Break default arguments less eagerly. · 126153ab
      Daniel Jasper authored
      Before:
        void aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(int aaaaaaaaaaaaaaaaaaaaaaaaaaaa =
                                                    1);
      
      After:
        void aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(
            int aaaaaaaaaaaaaaaaaaaaaaaaaaaa = 1);
      
      llvm-svn: 198070
      126153ab
    • Chandler Carruth's avatar
      Use two variables here rather than reusing (and abusing) one. This is · 87c3a0cf
      Chandler Carruth authored
      much more clear to me. I meant to make this change before committing the
      original patch, but forgot to merge it in. Sorry.
      
      llvm-svn: 198069
      87c3a0cf
    • Chandler Carruth's avatar
      Introduce a simple line-by-line iterator type into the Support library. · f8c5281c
      Chandler Carruth authored
      This is an iterator which you can build around a MemoryBuffer. It will
      iterate through the non-empty, non-comment lines of the buffer as
      a forward iterator. It should be small and reasonably fast (although it
      could be made much faster if anyone cares, I don't really...).
      
      This will be used to more simply support the text-based sample
      profile file format, and is largely based on the original patch by
      Diego. I've re-worked the style of it and separated it from the work of
      producing a MemoryBuffer from a file which both simplifies the interface
      and makes it easier to test.
      
      The style of the API follows the C++ standard naming conventions to fit
      in better with iterators in general, much like the Path and FileSystem
      interfaces follow standard-based naming conventions.
      
      llvm-svn: 198068
      f8c5281c
    • Rui Ueyama's avatar
      [PECOFF] Skip empty .drectve sections. · ae50a9e6
      Rui Ueyama authored
      There are many object files in the standard library who have empty .drective
      sections. Parsing the empty string is not wrong but a waste.
      
      llvm-svn: 198067
      ae50a9e6
    • Rui Ueyama's avatar
      Fix comment. · 9e26f5f3
      Rui Ueyama authored
      llvm-svn: 198066
      9e26f5f3
    • Nico Weber's avatar
      Warn on mismatched parentheses in memcmp and friends. · 0e6daefe
      Nico Weber authored
      Thisadds a new warning that warns on code like this:
      
        if (memcmp(a, b, sizeof(a) != 0))
      
      The warning looks like:
      
      test4.cc:5:30: warning: size argument in 'memcmp' call is a comparison [-Wmemsize-comparison]
        if (memcmp(a, b, sizeof(a) != 0))
                         ~~~~~~~~~~^~~~
      test4.cc:5:7: note: did you mean to compare the result of 'memcmp' instead?
        if (memcmp(a, b, sizeof(a) != 0))
            ^                          ~
                                  )
      test4.cc:5:20: note: explicitly cast the argument to size_t to silence this warning
        if (memcmp(a, b, sizeof(a) != 0))
                         ^
                         (size_t)(     )
      1 warning generated.
      
      This found 2 bugs in chromium and has 0 false positives on both chromium and
      llvm.
      
      The idea of triggering this warning on a binop in the size argument is due to
      rnk.
      
      llvm-svn: 198063
      0e6daefe
  2. Dec 26, 2013
  3. Dec 25, 2013
Loading