- Aug 16, 2010
-
-
Douglas Gregor authored
llvm-svn: 111186
-
Douglas Gregor authored
llvm-svn: 111184
-
Jordy Rose authored
Instead of using operator bool() for testing if a BindingKey is valid, use an explicit isValid() method. llvm-svn: 111181
-
Jordy Rose authored
llvm-svn: 111179
-
Douglas Gregor authored
inlined. No functionality change. llvm-svn: 111176
-
Sebastian Redl authored
llvm-svn: 111166
-
Douglas Gregor authored
the usage type of each declaration result, then compare those types to the preferred type of the completion. This provides parity in the priority calculation between the code-completion results produced directly from Sema and those cached by ASTUnit. For the standard Cocoa.h (+ others) example, there's a penalty of 3-4 hundredeths of a second when caching the global results (for ~31,000 results), because we need an ASTContext-agnostic representation of types for the comparison, and therefore we use... strings. Eventually, we'd like to implement a more efficient ASTContext-agnostic encoding of types. llvm-svn: 111165
-
Fariborz Jahanian authored
definition. radar 8307865. llvm-svn: 111163
-
Argyrios Kyrtzidis authored
llvm-svn: 111159
-
Argyrios Kyrtzidis authored
llvm-svn: 111158
-
Douglas Gregor authored
llvm-svn: 111150
-
Anton Yartsev authored
llvm-svn: 111141
-
Douglas Gregor authored
type class, so that we can adjust priorities appropriately when the preferred type for the context and the actual type of the completion are similar. This gets us one step closer to parity of the cached completion results with the non-cached completion results. llvm-svn: 111139
-
Jordy Rose authored
- Fix memcpy() and friends to actually invalidate the destination buffer. - Emit a different message for out-of-bounds buffer accesses if the buffer is being written to. - When conjuring symbols, let ValueManager figure out the type. llvm-svn: 111120
-
Charles Davis authored
sizes. llvm-svn: 111119
-
Charles Davis authored
Microsoft C++ ABI, for now. llvm-svn: 111118
-
Charles Davis authored
AST library. This also adds infrastructure for supporting multiple C++ ABIs in the AST. llvm-svn: 111117
-
Jordy Rose authored
- Allow making ElementRegions with complex offsets (expressions or symbols) for the purpose of bounds-checking. - Rewrite GRState::AssumeInBound to actually do that checking, and to use the normal constraint path. - Remove ConstraintManager::AssumeInBound. - Teach RegionStore and FlatStore to ignore those regions for now. llvm-svn: 111116
-
David Chisnall authored
Pass some things to the linker that gcc passes. -r is the only one of these that I'm sure about, but the others seem to be listed on FreeBSD by gcc -dumpspecs, so I hope they're right. Apparently -r is also not passed on GNU/Linux (and should be), but I can't see where the toolchain definition for this platform live. llvm-svn: 111114
-
Jordy Rose authored
llvm-svn: 111113
-
- Aug 15, 2010
-
-
Argyrios Kyrtzidis authored
llvm-svn: 111110
-
Benjamin Kramer authored
llvm-svn: 111106
-
Nick Lewycky authored
llvm-svn: 111105
-
Zhongxing Xu authored
llvm-svn: 111103
-
Argyrios Kyrtzidis authored
llvm-svn: 111101
-
Argyrios Kyrtzidis authored
class S { S(const S&); // DO NOT IMPLEMENT void operator=(const S&); // DO NOT IMPLEMENT }; llvm-svn: 111100
-
Zhongxing Xu authored
llvm-svn: 111099
-
Zhongxing Xu authored
iterate over symbols being tracked, instead of symbols being dead. llvm-svn: 111097
-
Douglas Gregor authored
declarations (in addition to macros). Each kind of declaration maps to a certain set of completion contexts, and the ASTUnit completion logic introduces the completion strings for those declarations if the actual code-completion occurs in one of the contexts where it matters. There are a few new code-completion-context kinds. Without these, certain completions (e.g., after "using namespace") would need to suppress all global completions, which would be unfortunate. Note that we don't get the priorities right for global completions, because we don't have enough type information. We'll need a way to compare types in an ASTContext-agnostic way before this can be implemented. llvm-svn: 111093
-
Eli Friedman authored
assertion failure. llvm-svn: 111092
-
Argyrios Kyrtzidis authored
llvm-svn: 111091
-
Argyrios Kyrtzidis authored
llvm-svn: 111089
-
Argyrios Kyrtzidis authored
llvm-svn: 111088
-
Argyrios Kyrtzidis authored
llvm-svn: 111087
-
Argyrios Kyrtzidis authored
Unused warnings for functions: -static functions -functions in anonymous namespace -class methods in anonymous namespace -class method specializations in anonymous namespace -function specializations in anonymous namespace Unused warnings for variables: -static variables -variables in anonymous namespace -static data members in anonymous namespace -static data members specializations in anonymous namespace Reveals lots of opportunities for dead code removal in llvm codebase that will interest my esteemed colleagues. llvm-svn: 111086
-
Eli Friedman authored
llvm-svn: 111085
-
Nick Lewycky authored
llvm-svn: 111084
-
- Aug 14, 2010
-
-
Jordy Rose authored
Update CStringChecker to take advantage of the new metadata symbols and region change callback. Now does basic tracking of string length for general regions. Currently this is still only used for modeling strlen(). llvm-svn: 111081
-
Eli Friedman authored
llvm-svn: 111080
-
Jordy Rose authored
Add a callback for when region changes occur. Still somewhat of a work-in-progress, but working! Effect on clients: all changes to a store now go through GRState. llvm-svn: 111078
-