- Mar 21, 2012
-
-
Gregory Szorc authored
This gives a lot of love to the docs for the C API. Like Clang's documentation, the C API is now organized into a Doxygen "module" (LLVMC). Each C header file is a child of the main module. Some modules (like Core) have a hierarchy of there own. The produced documentation is thus better organized (before everything was in one monolithic list). This patch also includes a lot of new documentation for APIs in Core.h. It doesn't document them all, but is better than none. Function docs are missing @param and @return annotation, but the documentation body now commonly provides help details (like the expected llvm::Value sub-type to expect). llvm-svn: 153157
-
NAKAMURA Takumi authored
RewriteModernObjC.cpp: Don't expose temporary std::string with StringRef. (StringRef)getName() can be used here. llvm-svn: 153156
-
Craig Topper authored
llvm-svn: 153155
-
Craig Topper authored
Spacing fixes and using 'unsigned' instead of 'int' to index to select shuffle elements for consistency with other shuffle code in X86 backend. llvm-svn: 153154
-
Akira Hatanaka authored
These changes allow us to compile big endian from the command line for 32 bit Mips targets. This patch will result in code and data actually being produced in the correct endianess. llvm-svn: 153153
-
rdar://problem/11055105John McCall authored
of references to function template parameters in noexcept clauses when the instantiation is forced from a point during parsing when a block is in scope. llvm-svn: 153152
-
Fariborz Jahanian authored
// rdar://11076938 llvm-svn: 153151
-
Eric Christopher authored
llvm-svn: 153150
-
Eric Christopher authored
llvm-svn: 153149
-
- Mar 20, 2012
-
-
Anna Zaks authored
ImmutAVLTree uses random unsigned values as keys into a DenseMap, which could possibly happen to be the same value as the Tombstone or Entry keys in the DenseMap. Test case is hard to come up with. We randomly get failures on the internal static analyzer bot, which most likely hits this issue (hard to be 100% sure without the full stack). llvm-svn: 153148
-
Sean Callanan authored
relocations (i.e., pieces of data whose addresses are referred to elsewhere in the binary image) and update the references when the section containing the relocations moves. The way this works is that there is a map from section IDs to lists of relocations. Because the relocations are associated with the section containing the data being referred to, they are updated only when the target moves. However, many data references are relative and also depend on the location of the referrer. To solve this problem, I introduced a new data structure, Referrer, which simply contains the section being referred to and the index of the relocation in that section. These referrers are associated with the source containing the reference that needs to be updated, so now regardless of which end of the relocation moves, the relocation will now be updated correctly. llvm-svn: 153147
-
Patrick Beard authored
llvm-svn: 153146
-
Fariborz Jahanian authored
// rdar://11079898 llvm-svn: 153145
-
Patrick Beard authored
llvm-svn: 153142
-
Patrick Beard authored
llvm-svn: 153141
-
Chad Rosier authored
llvm-svn: 153140
-
Chad Rosier authored
vextractf128 with 128-bit mem dest. Combines vextractf128 $0, %ymm0, %xmm0 vmovaps %xmm0, (%rdi) to vextractf128 $0, %ymm0, (%rdi) rdar://11082570 llvm-svn: 153139
-
Fariborz Jahanian authored
the class pointer in the category structure. // rdar://11076938 llvm-svn: 153138
-
Jim Grosbach authored
rdar://11027851 llvm-svn: 153137
-
Jim Grosbach authored
llvm-svn: 153136
-
Evan Cheng authored
llvm-svn: 153135
-
Andrew Trick authored
Do not call SplitBlockPredecessors on a loop preheader when one of the predecessors is an indirectbr. Otherwise, you will hit this assert: !isa<IndirectBrInst>(Preds[i]->getTerminator()) && "Cannot split an edge from an IndirectBrInst" llvm-svn: 153134
-
Andrew Trick authored
llvm-svn: 153133
-
Andrew Trick authored
llvm-svn: 153132
-
Andrew Trick authored
instead of skipping the current loop. My prior fix was incomplete because of an overzealous compile-time optimization: Better fix for: <rdar://problem/11049788> Segmentation fault: 11 in LoopStrengthReduce llvm-svn: 153131
-
Sebastian Redl authored
llvm-svn: 153130
-
Sebastian Redl authored
llvm-svn: 153129
-
Sean Callanan authored
expression parser code. llvm-svn: 153128
-
Fariborz Jahanian authored
llvm-svn: 153127
-
Patrick Beard authored
llvm-svn: 153126
-
Evan Cheng authored
llvm-svn: 153125
-
Patrick Beard authored
llvm-svn: 153124
-
Patrick Beard authored
llvm-svn: 153123
-
-
Benjamin Kramer authored
Fixes PR12284. The test case only triggered under asan/valgrind, but it's better than nothing. llvm-svn: 153120
-
Fariborz Jahanian authored
via functions for certain pointer initialization fields. // rdar://11076938 llvm-svn: 153117
-
Matt Beaumont-Gay authored
llvm-svn: 153116
-
Benjamin Kramer authored
TrackingVH notices when it gets RAUW'd. Fixes PR12305 and PR12315. llvm-svn: 153115
-
Chad Rosier authored
precedence over the VINSERTF128 avx1 patterns. llvm-svn: 153114
-
Enrico Granata authored
llvm-svn: 153113
-