- Sep 02, 2011
-
-
Howard Hinnant authored
llvm-svn: 139032
-
David Greene authored
Store a RecordVal's name as an Init to allow class-qualified Record members to reference Records that have Init names. We'll use this to provide more programmability in how we name defs and their associated members. llvm-svn: 139031
-
Fariborz Jahanian authored
llvm-svn: 139029
-
Kevin Enderby authored
case those instructions that the immediate is not sign-extend. radr://8795217 llvm-svn: 139028
-
Ted Kremenek authored
-Wuninitialized: fix insidious bug resulting from interplay of blocks and dead code. Fixes <rdar://problem/10060250>. llvm-svn: 139027
-
Jim Grosbach authored
llvm-svn: 139024
-
Bill Wendling authored
llvm-svn: 139023
-
Jim Grosbach authored
llvm-svn: 139022
-
Jim Grosbach authored
llvm-svn: 139021
-
Fariborz Jahanian authored
// rdar://10033896 llvm-svn: 139020
-
Jakob Stoklund Olesen authored
llvm-svn: 139019
-
Bill Wendling authored
llvm-svn: 139018
-
Jim Grosbach authored
llvm-svn: 139017
-
Duncan Sands authored
llvm-svn: 139015
-
Kevin Enderby authored
llvm-svn: 139014
-
Jim Grosbach authored
llvm-svn: 139013
-
Jakub Staszak authored
llvm-svn: 139012
-
Eli Friedman authored
Make StmtDumper::VisitCXXFunctionalCastExpr dump the attached cast kind. Fix the cast kind for a cast from floating-point to enum type. (The difference isn't actually visible, but that's just because IRGen is overly forgiving.) Per report by Enea Zaffanella on cfe-dev. llvm-svn: 139011
-
Andrew Trick authored
llvm-svn: 139010
-
Andrew Trick authored
This changes loop unrolling to use the same mechanism for trip count computation as indvars. This is a stronger check that tends to unroll more loops. A very common side-effect is that many single iteration loops will be removed sooner. The real goal was simply to remove dependence on canonical IVs. x86 is break even. ARM performance changes to expect (+ is good): External/SPEC/CFP2000/183.equake/183.equake +13% SingleSource/Benchmarks/Dhrystone/fldry +21% MultiSource/Applications/spiff/spiff +3% SingleSource/Benchmarks/Stanford/Puzzle -14% The Puzzle regression is actually an improvement in loop optimization that defeats GVN: rdar://problem/10065079. llvm-svn: 139009
-
Jim Grosbach authored
llvm-svn: 139008
-
Jakub Staszak authored
ConstantVector. llvm-svn: 139007
-
Jakub Staszak authored
This fixes PR10813. llvm-svn: 139006
-
Jakub Staszak authored
will be valid. This fixes PR10820. llvm-svn: 139005
-
Kalle Raiskila authored
llvm-svn: 139004
-
Jordy Rose authored
And with that, TransferFuncs is gone! llvm-svn: 139003
-
Jordy Rose authored
[analyzer] Move RetainReleaseChecker to the Checkers library and rename it to RetainCountChecker...and clean up the file while I'm at it. llvm-svn: 139002
-
Chandler Carruth authored
and reducing indentation through the clever use of early exits. ;] llvm-svn: 139001
-
Jordy Rose authored
[analyzer] Remove lingering CFRefCount creation, which would have resulted in a leak. There's room for improvement here... llvm-svn: 139000
-
Jordy Rose authored
llvm-svn: 138999
-
Jordy Rose authored
[analyzer] Move the knowledge of whether or not GC is enabled for the current analysis from CFRefCount to ExprEngine. Remove TransferFuncs from ExprEngine and AnalysisConsumer. Demote RetainReleaseChecker to a regular checker, and give it the name osx.cocoa.RetainCount (class name change coming shortly). Update tests accordingly. llvm-svn: 138998
-
Craig Topper authored
Make IC_VEX* not inherit from IC_*. Prevents instructions with no VEX form from disassembling to their non-VEX form. Also prevents weak filter collisons that were keeping valid VEX instructions from decoding properly. Make VEX_L* not inherit from VEX_* because the VEX.L bit always important. This stops packed int VEX encodings from being disassembled when specified with VEX.L=1. Fixes PR10831 and PR10806. llvm-svn: 138997
-
Greg Clayton authored
llvm-svn: 138996
-
Richard Trieu authored
Move the warning for different enum comparisons and the warning for using NULL as a non-pointer in a binary operation into separate functions. llvm-svn: 138995
-
Richard Trieu authored
llvm-svn: 138994
-
Richard Trieu authored
Pull out incomplete pointer type checking code, used from arithmetic checking functions, into its own function. llvm-svn: 138993
-
Richard Trieu authored
Refactor CheckConditionalOperands() by moving chunks of code to helper functions making a slimmer function. llvm-svn: 138992
-
Bill Wendling authored
Perform the upgrading in steps. * First, create a map of the invokes to the EH intrinsics. * Next, take that mapping and determine if the invoke's unwind destination has a single predecessor. If not, then create a new empty block to hold the new landingpad instruction. * Create a landingpad instruction into the uwnind destination. Fill it with the values from the old selector. Map the old intrinsic calls to the new landingpad values (there may be multiple landingpad instructions per instrinic call pairs). * Go through the old intrinsic calls, create a PHI node when necessary, and then replace their values with the new values from the landingpad instructions. * Delete all dead instructions. * ??? * Profit! llvm-svn: 138990
-
Bill Wendling authored
llvm-svn: 138989
-
Greg Clayton authored
register names when dumping variable locations and location lists. Also did some cleanup where "int" types were being used for "lldb::RegisterKind" values. llvm-svn: 138988
-