- Nov 04, 2009
-
-
Ted Kremenek authored
llvm-svn: 86004
-
Ted Kremenek authored
Catch uses of undefined values when they are used in assignment, thus catching such bugs closer to the source. llvm-svn: 86003
-
Ted Kremenek authored
llvm-svn: 86002
-
John McCall authored
varargs prototypes. llvm-svn: 86001
-
Evan Cheng authored
llvm-svn: 86000
-
John McCall authored
rdar://problem/7222956 llvm-svn: 85999
-
John McCall authored
appears in a deprecated context. In the new strategy, we emit the warnings as usual unless we're currently parsing a declaration, where "declaration" is restricted to mean a decl group or a few special cases in Objective C. If we *are* parsing a declaration, we queue up the deprecation warnings until the declaration has been completely parsed, and then emit them only if the decl is not deprecated. We also standardize the bookkeeping for deprecation so as to avoid special cases. llvm-svn: 85998
-
Lang Hames authored
llvm-svn: 85997
-
Zhongxing Xu authored
llvm-svn: 85996
-
Lang Hames authored
llvm-svn: 85995
-
Douglas Gregor authored
llvm-svn: 85994
-
Tanya Lattner authored
Merge constant array and structures. This will create a global variables for arrays and structs that are constant and their initializer is constant. It is on by default but can be disable with the flag -fno-merge-all-constants. llvm-svn: 85991
-
Mike Stump authored
llvm-svn: 85990
-
Douglas Gregor authored
overloaded operators, e.g., p->template operator+<T>() llvm-svn: 85989
-
Mike Stump authored
so the optimizer can tailcall into the return value adjustment thunk. This improves codesize for complex hierarchies. llvm-svn: 85988
-
Evan Cheng authored
llvm-svn: 85986
-
Daniel Dunbar authored
llvm-svn: 85985
-
Ted Kremenek authored
Refactor StoreManager::BindDecl() to take a VarRegion* instead of a VarDecl*, and modify GRExprEngine::EvalBind() to handle decl initialization as well. This paves the way for adding "checker" visitation in EvalBind(). llvm-svn: 85983
-
Evan Cheng authored
llvm-svn: 85980
-
Lang Hames authored
This introduces a new pass, SlotIndexes, which is responsible for numbering instructions for register allocation (and other clients). SlotIndexes numbering is designed to match the existing scheme, so this patch should not cause any changes in the generated code. For consistency, and to avoid naming confusion, LiveIndex has been renamed SlotIndex. The processImplicitDefs method of the LiveIntervals analysis has been moved into its own pass so that it can be run prior to SlotIndexes. This was necessary to match the existing numbering scheme. llvm-svn: 85979
-
Mike Stump authored
llvm-svn: 85978
-
Bob Wilson authored
an unconditional branch (possibly from tail merging), this code is trying to redirect all of its predecessors to go directly to the branch target, but that isn't feasible for indirect branches. The other predecessors (that don't end with indirect branches) could theoretically still be handled, but that is not easily done right now. The AnalyzeBranch interface doesn't currently let us distinguish jump table branches from indirect branches, and this code is currently handling jump tables. To avoid punting on address-taken blocks, we would have to give up handling jump tables. That seems like a bad tradeoff. llvm-svn: 85975
-
Chris Lattner authored
more aggressive an correct. This survives building llvm in 64-bit mode with optimizations and the built llvm passes make check. llvm-svn: 85973
-
Mike Stump authored
llvm-svn: 85972
-
Ted Kremenek authored
Change GRTransferFuncs::RegisterChecks() to take a GRExprEngine& instead of a BugReporter&. This paves the way for pulling some of the retain/release checker into a "Checker" class. llvm-svn: 85971
-
Mike Stump authored
type to look at the volatile specifier. I found these all from just hand auditing the code. llvm-svn: 85967
-
Douglas Gregor authored
operators, e.g., operator+<int> which now works in declarators, id-expressions, and member access expressions. This commit only implements the non-dependent case, where we can resolve the template-id to an actual declaration. llvm-svn: 85966
-
Evan Cheng authored
Fix t2Int_eh_sjlj_setjmp. Immediate form of orr is a 32-bit instruction. So it should be 22 bytes instead of 20 bytes long. llvm-svn: 85965
-
- Nov 03, 2009
-
-
Bill Wendling authored
llvm-svn: 85963
-
Nuno Lopes authored
llvm-svn: 85958
-
Nuno Lopes authored
llvm-svn: 85957
-
Mike Stump authored
one instance of a large problem. assert for non-canoical types would help track down these things. llvm-svn: 85956
-
Nuno Lopes authored
llvm-svn: 85955
-
Nuno Lopes authored
llvm-svn: 85953
-
Evan Cheng authored
llvm-svn: 85952
-
Chris Lattner authored
llvm-svn: 85951
-
Evan Cheng authored
llvm-svn: 85947
-
Chris Lattner authored
llvm-svn: 85946
-
Chris Lattner authored
llvm-svn: 85945
-
Douglas Gregor authored
llvm-svn: 85942
-