- Dec 17, 2008
-
-
Dan Gohman authored
Depth and Height members directly, as they may not be current. llvm-svn: 61121
-
Dan Gohman authored
llvm-svn: 61120
-
Eli Friedman authored
DAGTypeLegalizer::ExpandShiftWithKnownAmountBit. In terms of restoring the optimization, the best fix here isn't obvious... any ideas? llvm-svn: 61119
-
Mikhail Glushenkov authored
llvm-svn: 61118
-
Mikhail Glushenkov authored
Add (error) and (empty). llvm-svn: 61117
-
Douglas Gregor authored
llvm-svn: 61116
-
Douglas Gregor authored
llvm-svn: 61115
-
Fariborz Jahanian authored
llvm-svn: 61114
-
Steve Naroff authored
llvm-svn: 61113
-
- Dec 16, 2008
-
-
Nuno Lopes authored
llvm-svn: 61112
-
Nuno Lopes authored
llvm-svn: 61111
-
Douglas Gregor authored
llvm-svn: 61110
-
Dale Johannesen authored
can be negative. Keep track of whether all uses of an IV are outside the loop. Some cosmetics; no functional change. llvm-svn: 61109
-
Eli Friedman authored
llvm-svn: 61108
-
Dale Johannesen authored
are there under ADD, this one was missing. llvm-svn: 61107
-
Ted Kremenek authored
- one queue (FIFO) to queue up nodes at block entrances - another queue (LIFO) to queue up other nodes - The idea is to explore basic blocks to completion, but to do a BFS exploration of blocks. llvm-svn: 61106
-
Ted Kremenek authored
- Added four new ProgramPoint types that subclass PostStmt for use in GRExprEngine::EvalLocation: - PostOutOfBoundsCheckFailed - PostUndefLocationCheckFailed - PostNullCheckFailed - PostLocationChecksSucceed These were created because of a horribly subtle caching bug in EvalLocation where a node representing an "bug condition" in EvalLocation (e.g. a null dereference) could be re-used as the "non-bug condition" because the Store did not contain any information to differentiate between the two. The extra program points just disables any accidental caching between EvalLocation and its callers. GRExprEngine: - EvalLocation now returns a NodeTy* instead of GRState*. This should be used as the "vetted" predecessor for EvalLoad/EvalStore. llvm-svn: 61105
-
Owen Anderson authored
Add code to renumber split intervals into new vregs. This is disabled for now until I finish working out some iterator invalidation issues. llvm-svn: 61104
-
Douglas Gregor authored
is completely defined (C++ [class.mem]p2). Reverse the order in which we process the definitions of member functions specified inline. This way, we'll get diagnostics in the order in which the member functions were declared in the class. llvm-svn: 61103
-
Chris Lattner authored
the load multiple times, make sure the check the uses of the PHI to ensure they are transformable. llvm-svn: 61102
-
Chris Lattner authored
llvm-svn: 61101
-
Eli Friedman authored
consistently for deleting branches. In addition to being slightly more readable, this makes SimplifyCFG a bit better about cleaning up after itself when it makes conditions unused. llvm-svn: 61100
-
Eli Friedman authored
change the semantics. Please correct this if the precedence was actually supposed to be something different. llvm-svn: 61099
-
Eli Friedman authored
Someone should double-check that I didn't somehow break ObjC serialization; I think the change there actually changes the semantics. llvm-svn: 61098
-
Nate Begeman authored
llvm-svn: 61097
-
Dan Gohman authored
position in the critical path during the main instruction walk. This eliminates the need for the CritialAntiDep DenseMap. llvm-svn: 61096
-
Bill Wendling authored
llvm-svn: 61095
-
Bill Wendling authored
builds. llvm-svn: 61094
-
Dan Gohman authored
different offsets within the same stack slot. llvm-svn: 61093
-
Evan Cheng authored
We have decided not to support inline asm where an output operand with a matching input operand with incompatible type (i.e. either one is a floating point and the other is an integer or the sizes of the types differ). SelectionDAGBuild will catch these and exit with an error. llvm-svn: 61092
-
Fariborz Jahanian authored
llvm-svn: 61090
-
rdar://problem/6445502Steve Naroff authored
Fix <rdar://problem/6445502> clang ObjC rewriter: _Block_release has wrong parameter type in preamble llvm-svn: 61088
-
Oscar Fuentes authored
llvm-svn: 61087
-
Torok Edwin authored
llvm-svn: 61086
-
Torok Edwin authored
which source/line a certain BB/instruction comes from, original variable names, and original (unmangled) C++ name of functions. llvm-svn: 61085
-
Torok Edwin authored
instruction or BasicBlock, and to search for DbgDeclareInst corresponding to a variable. llvm-svn: 61084
-
Torok Edwin authored
llvm-svn: 61083
-
Nick Lewycky authored
and support for non-unit strides with signed exit conditions. llvm-svn: 61082
-
Chris Lattner authored
llvm-svn: 61081
-
Chris Lattner authored
visited set before they are used. If used, their blocks need to be added to the visited set so that subsequent queries don't use conflicting pointer values in the cache result blocks. llvm-svn: 61080
-