- Apr 26, 2012
-
-
John McCall authored
evaluate certain expressions involving invalidly-defined classes. llvm-svn: 155645
-
Greg Clayton authored
llvm-svn: 155644
-
Greg Clayton authored
llvm-svn: 155642
-
Greg Clayton authored
llvm-svn: 155641
-
Greg Clayton authored
llvm-svn: 155640
-
Greg Clayton authored
llvm-svn: 155639
-
Greg Clayton authored
Save more memory by not parsing the symbol table for stand alone DWARF files. We currently have SymbolFile plug-ins which all get the chance to say what they can parse in a symbol file. Prior to this fix we would ask the SymbolFileDWARF plug-in what abilities it had, and it would answer with "everything", and then we would check the SymbolFileSymtab plug-in what abilities it had, in case it had more abilities. The checking that SymbolFileSymtab does is a bit expensive as it pulls in the entire symbol table just to see if it can offer a few scraps of debug information. This causes all stand along DWARF files to pull in their symbol tables even though those symbols will never be used. This fix will check all SymbolFile plug-ins for their abilities and if any plug-in responds with "everything", then we stop the search. llvm-svn: 155638
-
Chad Rosier authored
with groups are unsupported. rdar://11324283 llvm-svn: 155637
-
Hongbin Zheng authored
2. Include the helper function and the helper class in the RegisterPasses.h into the polly namespace. llvm-svn: 155636
-
Tobias Grosser authored
llvm-svn: 155634
-
Evgeniy Stepanov authored
llvm-svn: 155632
-
Manuel Klimek authored
llvm-svn: 155631
-
Tim Northover authored
On some cores it's a bad idea for performance to mix VFP and NEON instructions and since these patterns are NEON anyway, the NEON load should be used. llvm-svn: 155630
-
Manuel Klimek authored
llvm-svn: 155629
-
Simon Atanasyan authored
llvm-svn: 155628
-
Manuel Klimek authored
llvm-svn: 155627
-
Tim Northover authored
llvm-svn: 155626
-
Jay Foad authored
"friend class Foo;" instead of just friend Foo;". llvm-svn: 155625
-
Craig Topper authored
llvm-svn: 155624
-
Ted Kremenek authored
llvm-svn: 155622
-
Richard Smith authored
itself a SFINAE context. llvm-svn: 155621
-
Craig Topper authored
Enable detection of AVX and AVX2 support through CPUID. Add AVX/AVX2 to corei7-avx, core-avx-i, and core-avx2 cpu names. llvm-svn: 155618
-
Jason Molenda authored
trying to mmap a file fails so parent caller function can provide helpful information to use about what went wrong. llvm-svn: 155617
-
Chandler Carruth authored
elements to minimize the number of multiplies required to compute the final result. This uses a heuristic to attempt to form near-optimal binary exponentiation-style multiply chains. While there are some cases it misses, it seems to at least a decent job on a very diverse range of inputs. Initial benchmarks show no interesting regressions, and an 8% improvement on SPASS. Let me know if any other interesting results (in either direction) crop up! Credit to Richard Smith for the core algorithm, and helping code the patch itself. llvm-svn: 155616
-
Ted Kremenek authored
[analyzer] check lazy bindings in RegionStore first before looking for default values. Fixes <rdar://problem/11269741>. llvm-svn: 155615
-
Ted Kremenek authored
Teach RetainCountChecker that it doesn't quite understand pthread_setspecific and it should just give up when it sees it. Fixes <rdar://problem/11282706>. llvm-svn: 155613
-
Richard Smith authored
which creates a temporary by calling a constructor. llvm-svn: 155608
-
Chandler Carruth authored
Linux and other (non-Darwin) platforms and have it use -fmath-errno by default (for better or worse). Darwin has seen the light here and uses -fno-math-errno by default, this patch preserves that. If any maintainers for a non-Linux platform would also like to opt-in to -fno-math-errno by default, I'm happy to add folks, but we're currently getting buts and misleading comparisons with GCC due to this difference in behavior on Linux at least. llvm-svn: 155607
-
Richard Smith authored
arguments, and 'this' in exception-specifications. llvm-svn: 155606
-
Enrico Granata authored
Automatically enabling the Cocoa formatter categories for command-line LLDB. Previously, the categories were filled in but disabled by default. Tweaking test cases appropriately to keep working and do the right thing llvm-svn: 155605
-
Evan Cheng authored
llvm-svn: 155604
-
Rafael Espindola authored
struct __attribute__((visibility("hidden"))) a; struct __attribute__((visibility("default"))) b; which gcc already rejects. llvm-svn: 155603
-
Evan Cheng authored
the feature set of v7a. This comes about if the user specifies something like -arch armv7 -mcpu=cortex-m3. We shouldn't be generating instructions such as uxtab in this case. rdar://11318438 llvm-svn: 155601
-
rdar://problem/11271074Greg Clayton authored
<rdar://problem/11285931> Use the DWARRF end prologue markers when trying to skip prologue instructions instead of blindly using the second line table address entry. llvm-svn: 155600
-
Bill Wendling authored
llvm-svn: 155599
-
Richard Smith authored
explaining that. llvm-svn: 155598
-
Richard Smith authored
all instantiations of a template when we visit the canonical declaration of the primary template, rather than trying to match them up to the partial specialization from which they are instantiated. This fixes a bug where we failed to visit instantiations of partial specializations of member templates of class templates, and naturally extends to allow us to visit instantiations where we have instantiated only a declaration. llvm-svn: 155597
-
Chad Rosier authored
llvm-svn: 155596
-
Greg Clayton authored
Patch from Viktor Kutuzov: changes the method declarations to const for the Args::GetCommandString and Agrs::GetQuotedCommandString methods. It allows using of these methods within the other const methods. llvm-svn: 155593
-
- Apr 25, 2012
-
-
Greg Clayton authored
Make the libheap.dylib build into a consistent temp directory so it can be reused between lldb invocations. Also add the module name into the directory path that is used to store the target triple specific build of libheap.dylib. Also added code that will rebuild libheap.dylib if heap_find.cpp is newer that libheap.dylib. llvm-svn: 155590
-