- Nov 10, 2010
-
-
Rafael Espindola authored
llvm-svn: 118725
-
Bob Wilson authored
NEON vector types need to be mangled in a special way to comply with ARM's ABI, similar to some of the AltiVec-specific vector types. This patch is mostly just renaming a bunch of "AltiVecSpecific" things, since they will no longer be specific to AltiVec. Besides that, it just adds the new "NeonVector" enum. llvm-svn: 118724
-
Dan Gohman authored
for a given instruction into a helper function. llvm-svn: 118723
-
Rafael Espindola authored
llvm-svn: 118722
-
Dan Gohman authored
type is insufficient for, or incompatible with, the current query. llvm-svn: 118721
-
Nate Begeman authored
llvm-svn: 118720
-
Duncan Sands authored
Probably it should just be 1, but compromise with 3. llvm-svn: 118718
-
Dan Gohman authored
references. For example, this allows gvn to eliminate the load in this example: void foo(int n, int* p, int *q) { p[0] = 0; p[1] = 1; if (n) { *q = p[0]; } } llvm-svn: 118714
-
Johnny Chen authored
thread.GetStopReason() == lldb.eStopReasonBreakpoint llvm-svn: 118713
-
Douglas Gregor authored
llvm-svn: 118712
-
Johnny Chen authored
test method when asserting: thread.GetStopReason() == lldb.eStopReasonBreakpoint llvm-svn: 118711
-
Benjamin Kramer authored
llvm-svn: 118710
-
Rafael Espindola authored
llvm-svn: 118709
-
Douglas Gregor authored
in the order they occur within the class template, delaying out-of-line member template partial specializations until after the class has been fully instantiated. This fixes a regression introduced by r118454 (itself a fix for PR8001). llvm-svn: 118704
-
Greg Clayton authored
llvm-svn: 118703
-
Jakob Stoklund Olesen authored
Whenever splitting wants to insert a copy, it checks if the value can be rematerialized cheaply instead. Missing features: - Delete instructions when all uses have been rematerialized. - Truncate live ranges to the remaining uses after rematerialization. llvm-svn: 118702
-
Andrew Trick authored
benchmarks hitting an assertion. Adds LiveIntervalUnion::collectInterferingVRegs. Fixes "late spilling" by checking for any unspillable live vregs among all physReg aliases. llvm-svn: 118701
-
Caroline Tice authored
main thread from having to wait on it (which was causing some I/O hangs). llvm-svn: 118700
-
Rafael Espindola authored
llvm-svn: 118699
-
Dan Gohman authored
instructions instead of hard-coding operand numbers. llvm-svn: 118698
-
Johnny Chen authored
llvm-svn: 118697
-
Dan Gohman authored
their comments. llvm-svn: 118696
-
Johnny Chen authored
@unittest2.skip("rdar://problem/8648070 'expression *bar_ptr' seg faults") It has been fixed by r118672. llvm-svn: 118695
-
Duncan Sands authored
nodes can be used in loops, this could result in infinite looping if there is no recursion limit, so add such a limit. It is also used for the SelectInst case because in theory there could be an infinite loop there too if the basic block is unreachable. llvm-svn: 118694
-
Dan Gohman authored
llvm-svn: 118693
-
Dan Gohman authored
it, and to be consistent. llvm-svn: 118692
-
Jim Ingham authored
llvm-svn: 118691
-
Devang Patel authored
llvm-svn: 118690
-
Fariborz Jahanian authored
other class extensions. // rdar://7629420 llvm-svn: 118689
-
Jim Grosbach authored
double quoting of ObjC symbol names in constant pool entries. rdar://8652107 llvm-svn: 118688
-
Dan Gohman authored
arbitrary memory into a helper function, and adjust some comments. llvm-svn: 118687
-
Dan Gohman authored
indivudal members holding the same data, to clarify the relationship between NonLocalDepResult and NonLocalDepEntry. llvm-svn: 118686
-
Tobias Grosser authored
Store the flags needed to disable optimizations and to emit LLVM-IR depending on the version of llvm-gcc used. llvm-svn: 118684
-
Michael J. Spencer authored
llvm-svn: 118683
-
Michael J. Spencer authored
llvm-svn: 118682
-
Michael J. Spencer authored
llvm-svn: 118681
-
Duncan Sands authored
The simplifications performed here never create new instructions, they only return existing instructions (or a constant), and so are always a win. In theory they should transform (for example) %z = and i32 %x, %y %s = select i1 %cond, i32 %y, i32 %z %r = and i32 %x, %s into %r = and i32 %x, y but in practice they get into a fight with instcombine, and lose. Unfortunately instcombine does a poor job in this case. Nonetheless I'm committing this transform to make it easier to discuss what to do to make peace with instcombine. llvm-svn: 118679
-
NAKAMURA Takumi authored
Win32/Process.inc: [PR8527] Process::FileDescriptorIsDisplayed(fd) should not check by FILE_TYPE_CHAR. It must be better to check it with Console API. The special file "NUL" is FILE_TYPE_CHAR with GetFileType(h). It was treated as display device and discarding output to NUL had failed. (eg. opt -o nul) llvm-svn: 118678
-
Duncan Sands authored
of InputData. llvm-svn: 118677
-
John McCall authored
@property declaration to the autogenerated methods. I'm uncertain whether this should apply to attributes in general, but these are a reasonable core. Implements rdar://problem/8617301 llvm-svn: 118676
-