- Aug 10, 2011
-
-
Eli Friedman authored
llvm-svn: 137170
-
Johnny Chen authored
llvm-svn: 137169
-
Owen Anderson authored
Create a new register class for the set of all GPRs except the PC. Use it to tighten our decoding of BFI. llvm-svn: 137168
-
Sean Callanan authored
types instead of letting Clang crash. llvm-svn: 137167
-
Bruno Cardoso Lopes authored
llvm-svn: 137166
-
Johnny Chen authored
llvm-svn: 137165
-
Jim Ingham authored
llvm-svn: 137164
-
Chad Rosier authored
llvm-svn: 137163
-
Rafael Espindola authored
llvm-svn: 137162
-
Bruno Cardoso Lopes authored
is the best we can do for these patterns. This fix PR10554. llvm-svn: 137161
-
-
Rafael Espindola authored
functionality since in the C api a pass is created and added to a pass manager in a single call. llvm-svn: 137159
-
Jim Grosbach authored
Assigned symbol addresses get truncated to 32-bits, even on 64-bit platforms. That's obviously bogus. For example, .globl _foo .equ _foo, 0x987654321ULL rdar://9922863 llvm-svn: 137158
-
Sean Callanan authored
used a log unchecked. llvm-svn: 137157
-
Benjamin Kramer authored
Not sure about BLXi, but this is what the old disassembler did. llvm-svn: 137156
-
- Aug 09, 2011
-
-
Owen Anderson authored
llvm-svn: 137154
-
Owen Anderson authored
llvm-svn: 137153
-
Benjamin Kramer authored
The new ARM disassembler disassembles "bx lr" as a special BX_ret instruction so target specific analysis isn't needed anymore. llvm-svn: 137151
-
Owen Anderson authored
llvm-svn: 137150
-
Jim Ingham authored
llvm-svn: 137149
-
Jim Grosbach authored
rdar://9915869 llvm-svn: 137148
-
Owen Anderson authored
llvm-svn: 137147
-
Owen Anderson authored
llvm-svn: 137146
-
Eli Friedman authored
This is mostly descriptive of the intended state once atomic load and store have landed. llvm-svn: 137145
-
Owen Anderson authored
This new disassembler can correctly decode all the testcases that the old one did, though some "expected failure" testcases are XFAIL'd for now because it is not (yet) as strict in operand checking as the old one was. llvm-svn: 137144
-
Jim Ingham authored
When unloading a library, pass the old complete version of the library to UnloadImageLoadAddress, since that one is completely filled in. The one we make up from the event doesn't have section info since the library has already been unloaded by the time we get to it. llvm-svn: 137143
-
Sean Callanan authored
was behaving erratically because it didn't have a return statement in -[A init]. Also made minor cosmetic changes to that test case. llvm-svn: 137142
-
Johnny Chen authored
llvm-svn: 137141
-
Johnny Chen authored
For Makefile.rules, the modification of CFLAGS (addition of -arch $(ARCH) for Darwin) needs to come before the consuming of CFLAGS, not after. llvm-svn: 137140
-
Bob Wilson authored
llvm-svn: 137137
-
Johnny Chen authored
Fix a crash while running the test suite. Need to check the (LogSP)log shared pointer before using it. llvm-svn: 137136
-
Bill Wendling authored
llvm-svn: 137135
-
Bill Wendling authored
'static' variable will be emitted twice. PR10081 llvm-svn: 137134
-
Jakob Stoklund Olesen authored
Coalescing can remove copy-like instructions with sub-register operands that constrained the register class. Examples are: x86: GR32_ABCD:sub_8bit_hi -> GR32 arm: DPR_VFP2:ssub0 -> DPR Recompute the register class of any virtual registers that are used by less instructions after coalescing. This affects code generation for the Cortex-A8 where we use NEON instructions for f32 operations, c.f. fp_convert.ll: vadd.f32 d16, d1, d0 vcvt.s32.f32 d0, d16 The register allocator is now free to use d16 for the temporary, and that comes first in the allocation order because it doesn't interfere with any s-registers. llvm-svn: 137133
-
Eli Friedman authored
llvm-svn: 137132
-
Sean Callanan authored
debugserver did not back up %ebx/%rbx, even though it was being clobbered by the CPUID instruction. llvm-svn: 137131
-
Caitlin Sadowski authored
This patch special cases the parser for thread safety attributes so that all attribute arguments are put in the argument list (instead of a special parameter) since arguments may not otherwise resolve correctly without two-token lookahead. This patch also adds checks to make sure that attribute arguments are lockable objects. llvm-svn: 137130
-
Johnny Chen authored
rdar://problem/9747668 llvm-svn: 137129
-
Bruno Cardoso Lopes authored
v4f64 = sitofp v4i32. This fix PR10559. Also add support for v4i32 = fptosi v4f64. llvm-svn: 137128
-
Bruno Cardoso Lopes authored
llvm-svn: 137127
-