- Dec 27, 2013
-
-
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
-
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
-
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
-
Daniel Jasper authored
Before: void aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(int aaaaaaaaaaaaaaaaaaaaaaaaaaaa = 1); After: void aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa( int aaaaaaaaaaaaaaaaaaaaaaaaaaaa = 1); llvm-svn: 198070
-
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
-
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
-
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
-
Rui Ueyama authored
llvm-svn: 198066
-
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
-
- Dec 26, 2013
-
-
Warren Hunt authored
llvm-svn: 198060
-
Warren Hunt authored
With pragma pack, the layout engine would produce vfptrs that were packed width rather than pointer width. This patch addresses the issue and adds a test case. llvm-svn: 198059
-
Reid Kleckner authored
This makes it unavailable on NetBSD, Android, etc. Patch by Brad Smith! llvm-svn: 198056
-
Aaron Ballman authored
Teach the diagnostics engine about the Attr type to make reporting on semantic attributes easier (and not require hard-coded strings). This requires a getSpelling() function on the Attr class, which is table-driven. Updates a handful of cases where a hard-coded string was being used to test the functionality out. Updating associated test cases for the improved quoting. llvm-svn: 198055
-
Aaron Ballman authored
Removed a string literal for an attribute name, which means the attribute name will be quoted in the diagnostic. Manually added some quotes to a diagnostic for consistency. Updated the test cases as appropriate. llvm-svn: 198054
-
Aaron Ballman authored
This diagnostic did not accept arguments, and did not have any test coverage. Parameterized the diagnostic, and made it more consistent with other attribute diagnostic wordings. Added test coverage. Since this warning was generalized, it was also given a sensible warning group flag and the corresponding test was updated to reflect this. llvm-svn: 198053
-
Aaron Ballman authored
Thanks to Alp Toker for the naming suggestion! llvm-svn: 198052
-
Aaron Ballman authored
Simplifying some diagnostics so that they don't need to work with StringRefs. No functional changes intended. llvm-svn: 198051
-
Aaron Ballman authored
llvm-svn: 198050
-
Aaron Ballman authored
llvm-svn: 198049
-
Alexander Potapenko authored
Fixes https://code.google.com/p/address-sanitizer/issues/detail?id=188. llvm-svn: 198048
-
Aaron Ballman authored
llvm-svn: 198047
-
Aaron Ballman authored
Removing some unneeded code, and a diagnostic that was obsoleted. The type has already been determined to be a ValueDecl by virtue of the attribute subjects. Added some test case coverage as well. llvm-svn: 198046
-
Roman Divacky authored
llvm-svn: 198045
-
Kostya Serebryany authored
[asan] allow asan to use SizeClassAllocator32 on a 64-bit platform (if SANITIZER_CAN_USE_ALLOCATOR64=0). No functionality change by default is intended llvm-svn: 198044
-
Joerg Sonnenberger authored
of architecture naming. llvm-svn: 198043
-
Rui Ueyama authored
There was a bug that the linker does not report an error if symbols specified by -u (or /include on Windows) are not resolved. This patch fixes it by adding such symbols to the dead strip root. llvm-svn: 198041
-
Rui Ueyama authored
It should be always true that _liveAtoms is empty, so we don't have to clear it. Add an assert() instead. llvm-svn: 198040
-
Enrico Granata authored
llvm-svn: 198039
-
Enrico Granata authored
Adding a document that describes the architecture of data formatters. Suggestions and ideas for improvements most welcome llvm-svn: 198038
-
Rui Ueyama authored
This patch eliminates one std::set lookup per a function call. llvm-svn: 198037
-
Rui Ueyama authored
llvm-svn: 198036
-
Rui Ueyama authored
llvm-svn: 198035
-
Rui Ueyama authored
llvm-svn: 198034
-
Rui Ueyama authored
llvm-svn: 198033
-
Rui Ueyama authored
Command line argument separator on Windows is colon. We used to accept space as a separator, but we removed most of the code for that. This patch is to delete the remaining code. llvm-svn: 198032
-
Saleem Abdulrasool authored
The .even directive aligns content to an evan-numbered address. This is an ARM specific directive applicable to any section. llvm-svn: 198031
-
Venkatraman Govindaraju authored
llvm-svn: 198030
-
Venkatraman Govindaraju authored
llvm-svn: 198029
-
Venkatraman Govindaraju authored
llvm-svn: 198028
-
- Dec 25, 2013
-
-
Alexey Samsonov authored
This allows us to avoid retrieving file/line info for suppressed modules. llvm-svn: 198025
-