- Sep 27, 2012
-
-
Nick Lewycky authored
have testcases for the current problems. llvm-svn: 164731
-
Jason Molenda authored
gdb-remote protocol and kdp protocol systems. llvm-svn: 164730
-
Greg Clayton authored
Add convenience aliases to allow easy attaching to a remote gdb server or kdp (darwin kernel) server with the new "gdb-remote" regex alias and "kdp-remote" regex alias commands. llvm-svn: 164729
-
Dan Gohman authored
llvm-svn: 164728
-
Bill Wendling authored
llvm-svn: 164727
-
- Sep 26, 2012
-
-
Bill Wendling authored
llvm-svn: 164726
-
Bill Wendling authored
The hasFnAttr method has been replaced by querying the Attributes explicitly. No intended functionality change. llvm-svn: 164725
-
Jim Grosbach authored
If the offset is more than 24-bits, it won't fit in a scattered relocation offset field, so we fall back to using a non-scattered relocation. rdar://12358909 llvm-svn: 164724
-
Sean Callanan authored
testsuite. llvm-svn: 164723
-
Bill Wendling authored
This opaque class will contain all of the attributes. All attribute queries will go through this object. This object will also be uniqued in the LLVMContext. Currently not used, so no implementation change. llvm-svn: 164722
-
Akira Hatanaka authored
getMipsRegisterNumbering. llvm-svn: 164720
-
Akira Hatanaka authored
llvm-svn: 164719
-
Akira Hatanaka authored
llvm-svn: 164718
-
Benjamin Kramer authored
Fixes PR13851. Patch by Dimitry Andric! llvm-svn: 164717
-
Anna Zaks authored
This checker is annotation driven. It checks that the annotated invalidation method accesses all ivars of the enclosing objects that are objects of type, which in turn contains an invalidation method. This is driven by __attribute((annotation("objc_instance_variable_invalidator")). llvm-svn: 164716
-
Anna Zaks authored
llvm-svn: 164715
-
Benjamin Kramer authored
llvm-svn: 164714
-
Ted Kremenek authored
llvm-svn: 164713
-
Ted Kremenek authored
llvm-svn: 164712
-
Ted Kremenek authored
This isn't correct, as Jordan correctly points out. llvm-svn: 164711
-
DeLesley Hutchins authored
where an attribute is attached to a forward declaration of a template function, and refers to parameters of that declaration, but is then inherited by the definition of that function. When the definition is instantiated, the parameter references need to be remapped. llvm-svn: 164710
-
Ted Kremenek authored
llvm-svn: 164709
-
Duncan Sands authored
teach the callgraph logic to not create callgraph edges to intrinsics for invoke instructions; it already skips this for call instructions. Fixes PR13903. llvm-svn: 164707
-
Jordan Rose authored
This also adds a definition for uint64_t, which was causing build failures on some platforms. (I'm actually surprised this didn't happen on more builders, but maybe the search paths are different.) llvm-svn: 164706
-
Argyrios Kyrtzidis authored
This is to reduce dependency to cursors for the code-completion results. llvm-svn: 164705
-
Argyrios Kyrtzidis authored
Removes a dependency of ASTUnit to clang-c/Index.h. llvm-svn: 164704
-
Filipe Cabecinhas authored
llvm-svn: 164703
-
Filipe Cabecinhas authored
llvm-svn: 164702
-
Benjamin Kramer authored
Fixes PR12632. llvm-svn: 164701
-
Howard Hinnant authored
llvm-svn: 164700
-
Benjamin Kramer authored
BB->end() returns a sentinel value that is not a legal insert point. llvm-svn: 164699
-
Benjamin Kramer authored
APFloat::roundToIntegral: Special values don't keep the exponent value up to date, don't rely on it. Add a couple of unit tests for special floats. Fixes 13929, found by MemorySanitizer. llvm-svn: 164698
-
Hans Wennborg authored
- Put statistics in alphabetical order - Don't use getZextValue when building TableInt, just use APInts - Introduce Create{Z,S}ExtOrTrunc in IRBuilder. llvm-svn: 164696
-
Alexander Potapenko authored
llvm-svn: 164695
-
Alexander Potapenko authored
llvm-svn: 164694
-
Alexander Potapenko authored
llvm-svn: 164693
-
Hans Wennborg authored
- Finish assert messages with exclamation mark - Move overflow checking into ShouldBuildLookupTable. llvm-svn: 164692
-
Chandler Carruth authored
contrived for these yet, as I spotted them by inspection and the test cases are a bit more tricky to phrase. llvm-svn: 164691
-
Chandler Carruth authored
alignment guarantees attached, re-compute the alignment so that we consider offsets which impact alignment. llvm-svn: 164690
-
Chandler Carruth authored
rewriter in SROA to carry a proper alignment. This involves interrogating various sources of alignment, etc. This is a more complete and principled fix to PR13920 as well as related bugs pointed out by Eli in review and by inspection in the area. Also by inspection fix the integer and vector promotion paths to create aligned loads and stores. I still need to work up test cases for these... Sorry for the delay, they were found purely by inspection. llvm-svn: 164689
-