- Jan 22, 2013
-
-
Sean Callanan authored
Avoids an error about an ambiguous constructor call. llvm-svn: 173118
-
Michael J. Spencer authored
llvm-svn: 173117
-
NAKAMURA Takumi authored
llvm-svn: 173116
-
NAKAMURA Takumi authored
clang/test/CodeGen: Nuke llvm's opt and llvm-dis, and FileCheck-ize two tests. -O1 is sufficient here. llvm-svn: 173115
-
NAKAMURA Takumi authored
@llvm.stacksave is emitted regardless of "opt -std-compile-opts". We have optimizers' tests in llvm/test/Transforms. llvm-svn: 173114
-
NAKAMURA Takumi authored
llvm-svn: 173113
-
NAKAMURA Takumi authored
llvm-svn: 173112
-
Enrico Granata authored
llvm-svn: 173111
-
Andrew Trick authored
Manish already fixed this test to work with NoTTI. llvm-svn: 173110
-
Bill Wendling authored
llvm-svn: 173109
-
Bill Wendling authored
llvm-svn: 173108
-
Greg Clayton authored
Clear up the documentation for the "container-regs" and "invalidate-regs" key/value pair responses for qRegisterInfo with examples of single and multiple registers for each. llvm-svn: 173107
-
Bill Wendling authored
llvm-svn: 173106
-
Greg Clayton authored
Changed the register number lists for the qRegisterInfo packet response to be raw hex to match all other register reading and writing APIs. llvm-svn: 173105
-
Greg Clayton authored
Modified the ARM register context to invalidate r8 - r14 when the CPSR register is modified. llvm-svn: 173104
-
Joel Jones authored
llvm-svn: 173103
-
Greg Clayton authored
Updated the LLDB qRegisterInfo documentation to contain information on the new "invalidate-regs" and "container-regs" keys that can be returned in response to a qRegisterInfo packet. llvm-svn: 173102
-
Bill Wendling authored
llvm-svn: 173101
-
- Jan 21, 2013
-
-
Daniel Jasper authored
We used to align trailing comments belong to different things. Before: void f() { // some function.. } int a; // some variable.. After: void f() { // some function.. } int a; // some variable.. llvm-svn: 173100
-
Bill Wendling authored
This further restricts the use of the Attribute class to the Attribute family of classes. llvm-svn: 173099
-
Bill Wendling authored
This further restricts the use of the Attribute class to the Attribute family of classes. llvm-svn: 173098
-
Fariborz Jahanian authored
an unimplemented selector is consumed by "respondsToSelector:". // rdar://12938616 llvm-svn: 173097
-
rdar://problem/13020634Greg Clayton authored
Fixed the 32, 16, and 8 bit pseudo regs for x86_64 (real reg of "rax" which subvalues "eax", "ax", etc...) to correctly get updated when stepping. Also fixed it so actual registers can specify what other registers must be invalidated when a register is modified. Previously, only pseudo registers could invalidate other registers. Modified the LLDB qRegisterInfo extension to the GDB remote interface to support specifying the containing registers with the new "container-regs" key whose value is a comma separated list of register numbers. Also added a "invalidate-regs" key whose value is also a comma separated list of register numbers. Removed the hack GDBRemoteDynamicRegisterInfo::Addx86_64ConvenienceRegisters() function and modified "debugserver" to specify the registers correctly using the new "container-regs" and "invalidate-regs" keys. llvm-svn: 173096
-
Bill Wendling authored
This is more code to isolate the use of the Attribute class to that of just holding one attribute instead of a collection of attributes. llvm-svn: 173095
-
Bill Wendling authored
This is more code to isolate the use of the Attribute class to that of just holding one attribute instead of a collection of attributes. llvm-svn: 173094
-
Paul Redmond authored
(sub 0, (sext bool to A)) to (zext bool to A). Patch by Muhammad Ahmad Reviewed by Duncan Sands llvm-svn: 173093
-
Michael Ilseman authored
llvm-svn: 173092
-
Richard Osborne authored
llvm-svn: 173090
-
Jakub Staszak authored
llvm-svn: 173088
-
Richard Osborne authored
llvm-svn: 173087
-
Richard Osborne authored
llvm-svn: 173086
-
Richard Osborne authored
llvm-svn: 173085
-
Howard Hinnant authored
llvm-svn: 173084
-
Richard Osborne authored
llvm-svn: 173083
-
Shankar Easwaran authored
llvm-svn: 173082
-
Douglas Gregor authored
than DenseMaps and SmallPtrSets for module-visitation data. ~2.6% speedup for modules. llvm-svn: 173081
-
Douglas Gregor authored
lexical declarations looking for properties when we could more efficiently check for property mismatches at property declaration time. Good for ~1% of -fsyntax-only time when most of the properties we're checking against come from an AST file. llvm-svn: 173079
-
Nico Weber authored
llvm-svn: 173078
-
Nico Weber authored
Formatter: Rename LSquare to Left to make parseSquare() more consistent with the other paren parsing methods. llvm-svn: 173077
-
rdar://problem/12437929Enrico Granata authored
Providing a special mode of operator for "memory read -f c-str" which actually works in most common cases Where the old behavior would provide: (lldb) mem read --format s `foo` 0x100000f5d: NULL Now we do: (lldb) mem read --format s `foo` 0x100000f5d: "hello world" You can also specify a count and that many strings will be showed starting at the initial address: (lldb) mem read -c 2 -f c-str `foo` 0x100000f1d: "hello world" 0x100000f29: "short" llvm-svn: 173076
-