- Feb 07, 2013
-
-
Enrico Granata authored
opaque_ptr since it returns a void* instead of an usable object. llvm-svn: 174673
-
Fariborz Jahanian authored
modern meta-data abi translation. Still wip. // rdar://13138459 llvm-svn: 174672
-
Nadav Rotem authored
llvm-svn: 174671
-
Enrico Granata authored
llvm-svn: 174670
-
Marshall Clow authored
Change the 'result_type' from unsigned to 'uint_fast32_t'. This eliminates truncation warnings on Linux llvm-svn: 174669
-
Greg Clayton authored
llvm-svn: 174668
-
Daniel Dunbar authored
llvm-svn: 174667
-
Akira Hatanaka authored
llvm-svn: 174666
-
Andrew Kaylor authored
llvm-svn: 174665
-
Eric Christopher authored
llvm-svn: 174664
-
Eric Christopher authored
syms before constructing the compile units so we're not emitting section references to sections not there already. llvm-svn: 174663
-
Daniel Jasper authored
llvm-svn: 174662
-
Will Schmidt authored
Add #include <unistd.h> to OProfileWrapper.cpp. This provides the declarations for 'read' and 'close' that are otherwise missing, and result in 'error: <foo> was not declared in this scope'. This matches the issue as reported in bug 15055 "Can no longer compile LLVM with --with-oprofile" llvm-svn: 174661
-
Bill Schmidt authored
Certain vector operations don't vectorize well with the current PowerPC implementation. Element insert/extract performs poorly without VSX support because Altivec requires going through memory. SREM, UREM, and VSELECT all produce bad scalar code. There's a lot of work to do for the cost model before autovectorization will be tuned well, and this is not an attempt to address the larger problem. llvm-svn: 174660
-
Shankar Easwaran authored
llvm-svn: 174659
-
Shankar Easwaran authored
llvm-svn: 174658
-
Akira Hatanaka authored
original JALR instruction with one register operand to be a pseudo-instruction. llvm-svn: 174657
-
Tom Stellard authored
Remove all the unused code. Patch by: Christian König Signed-off-by:
Christian König <christian.koenig@amd.com> Reviewed-by:
Tom Stellard <thomas.stellard@amd.com> llvm-svn: 174656
-
Tom Stellard authored
Allows nexuiz to run with radeonsi. Patch by: Michel Dänzer Signed-off-by:
Michel Dänzer <michel.daenzer@amd.com> Reviewed-by:
Tom Stellard <thomas.stellard@amd.com> llvm-svn: 174655
-
Tom Stellard authored
20 more little piglits with radeonsi. Patch by: Michel Dänzer Signed-off-by:
Michel Dänzer <michel.daenzer@amd.com> Reviewed-by:
Tom Stellard <thomas.stellard@amd.com> llvm-svn: 174654
-
Tom Stellard authored
The _SGPR variants where wrong. Patch by: Christian König Signed-off-by:
Christian König <christian.koenig@amd.com> Reviewed-by:
Tom Stellard <thomas.stellard@amd.com> llvm-svn: 174653
-
Tom Stellard authored
v2: rebased on current upstream Patch by: Christian König Signed-off-by:
Christian König <christian.koenig@amd.com> Reviewed-by:
Tom Stellard <thomas.stellard@amd.com> llvm-svn: 174652
-
Tom Stellard authored
This is for the case when no processor is passed to the backend. This prevents the '' is not a recognized processor for this target (ignoring processor) warning from being generated by clang. llvm-svn: 174651
-
Michael Ilseman authored
llvm-svn: 174650
-
Douglas Gregor authored
llvm-svn: 174649
-
Douglas Gregor authored
Retain all hidden methods in the global method pool, because they may become visible <rdar://problem/13172858>. llvm-svn: 174648
-
Dmitri Gribenko authored
ContainerUSR is not really a CXString, but it should own the underlying memory buffer. Thus, it is better to change the type to std::string. This will not introduce extra copying overhead, since the workaround that is being removed was already making a copy. llvm-svn: 174647
-
Arnold Schwaighofer authored
We don't want too many classes in a pass and the classes obscure the details. I was going a little overboard with object modeling here. Replace classes by generic code that handles both loads and stores. No functionality change intended. llvm-svn: 174646
-
Douglas Gregor authored
llvm-svn: 174645
-
DeLesley Hutchins authored
in an unevaluated context. llvm-svn: 174644
-
Edwin Vane authored
The rewriter was previously reading the content buffer from the file itself. Since we are now keeping the content in memory and writing to the file only once, the rewriter's buffer (from the file) was not in sync with the RefactoringTool's buffer. Adding an overrideFileContents call (similar to how Clang-format handles for this) will resolve this issue. Author: Jack Yang <jack.yang@intel.com> Reviewers: gribozavr, klimek llvm-svn: 174643
-
Marshall Clow authored
llvm-svn: 174642
-
Meador Inge authored
PR15138 was opened because of a segfault in the Bitcode writer. The actual issue ended up being a bug in APInt where calls to APInt::getActiveWords returns a bogus value when the APInt value is 0. This patch fixes the problem by ensuring that getActiveWords returns 1 for 0 valued APInts. llvm-svn: 174641
-
Chad Rosier authored
llvm-svn: 174640
-
Michael J. Spencer authored
llvm-svn: 174639
-
rdar://problem/13107151Enrico Granata authored
SBValueList was backed by a ValueObjectList. This caused us to lose track of the additional metadata in the ValueImpl that backs SBValue. This checkin fixes that by backing SBValueList with ValueListImpl (that essentially wraps a vector<SBValue>). llvm-svn: 174638
-
Marshall Clow authored
llvm-svn: 174637
-
Marshall Clow authored
llvm-svn: 174636
-
Dmitry Vyukov authored
llvm-svn: 174635
-
Tom Stellard authored
Patch by: Michel Dänzer Signed-off-by:
Michel Dänzer <michel.daenzer@amd.com> Reviewed-by:
Tom Stellard <thomas.stellard@amd.com> llvm-svn: 174634
-