- 56f330d MemoryBuffer::getFile got smarter, obviating the need for readfilefast. by Chris Lattner · 17 years ago
- 7287979 Embed linkable IDs in message bubbles. by Ted Kremenek · 17 years ago
- 8666d84 improve comma consistency, yes I'm anal by Chris Lattner · 17 years ago
- cd2eb9b Better handling for tabs with message bubbles. by Ted Kremenek · 17 years ago
- dbdb01e When emitting HTML messages, take into account margin fusing due to tabs. by Ted Kremenek · 17 years ago
- d2b8d8e Do not abort ccc-analyzer script if an HTML directory is not specified. by Ted Kremenek · 17 years ago
- 0102b5b Do not prepend the keyword "[CHECKER]" to checker messages when using by Ted Kremenek · 17 years ago
- 1377e5f Hack ReadFileFast() to raise the threshold of memory mapped files (from 4->12 pages). by Steve Naroff · 17 years ago
- 8088f2c Include ranges in GRSimpleVals diagnostics. by Ted Kremenek · 17 years ago
- dd0126b Inlined clang/Analysis/Analyses/GRSimpleVals.h into LocalCheckers.h and removed by Ted Kremenek · 17 years ago
- 8a69698 The ccc-analyzer script now interrogates environment variables to determine by Ted Kremenek · 17 years ago
- 7877f2b Added variation of the "Report" method in the class Diagnostic that takes by Ted Kremenek · 17 years ago
- a95114d Disable timing diagnostics for GRSimpleVals. by Ted Kremenek · 17 years ago
- 108048c Added path-sensitive check for return statements that return the address by Ted Kremenek · 17 years ago
- c72d22d rename Decl::CompatibleAlias -> ObjCCompatibleAlias. by Chris Lattner · 17 years ago
- c61e9f8 some cleanups on top of David's patch. There are still two by Chris Lattner · 17 years ago
- b326b17 Add initial support for objc codegen for methods, ivars, and the by Chris Lattner · 17 years ago
- cfd9f4c Only have the rewriter produce a file when there are no errors. by Steve Naroff · 17 years ago
- 9fcf5b6 Make sure Sema::ActOnClassMessage() correctly diagnoses "super". by Steve Naroff · 17 years ago
- 44e7404 Added skeleton checking for NSString's method initWithFormat: (do not pass nil). This won't be useful in most cases right now by Ted Kremenek · 17 years ago
- 053ae3f Add some of Ted's recent work to the VC++ project file. by Steve Naroff · 17 years ago
- fef037c Collect all the preamble code and don't insert it until the end. by Steve Naroff · 17 years ago
- 639247a Expanded NSString checking to check for nil for a few more methods. by Ted Kremenek · 17 years ago
- b20dccc Add line SourceLocation to NSString checks. by Ted Kremenek · 17 years ago
- 583c438 Hooked up initial NSString interface checking to GRSimpleVals. by Ted Kremenek · 17 years ago
- d9ee999 ProgramPoint is just a smart pointer; no reason to return a constant reference. by Ted Kremenek · 17 years ago
- 0350e11 Minor CSS tweaking (smaller h1 tags). by Ted Kremenek · 17 years ago
- aeca9af For HTMLDiagnostics, when emitting the name of the directory, substitute the current working directory for "." by Ted Kremenek · 17 years ago
- 7dbc41f Update Xcode project: add BasicObjCFoundationChecks.h by Ted Kremenek · 17 years ago
- 7a68194 Add creation of BasicObjCFoundationChecks when running GRSimpleVals from the driver. by Ted Kremenek · 17 years ago
- 139e47d Add default ctor implementation. by Ted Kremenek · 17 years ago
- 57ba65c Add html::EscapeText for std::string; use this function to escape text in message bubbles. by Ted Kremenek · 17 years ago
- bc3d556 Don't emit any timings for GRSimple if the CFG is not going to be built. by Ted Kremenek · 17 years ago
- 3036892 Output directory as well as file name. by Ted Kremenek · 17 years ago
- dfb08d4 Added <h3> tag in HTML file output that contains the name of the source file. by Ted Kremenek · 17 years ago
- 2cf2d32 Added AnnotatedPath.h, GRAuditor.h, GRSimpleAPICheck.h and BasicObjCFoundationChecks.cpp to Xcode project. by Ted Kremenek · 17 years ago
- b0a2e47 Added "GRAuditor" and "GRSimpleAPICheck" interface to allow simple stateless checkers to be injected into the analyzer. by Ted Kremenek · 17 years ago
- b9b9d4d Updated Xcode project with HTMLDiagnostics.[h,cpp] by Ted Kremenek · 17 years ago
- fd75e31 Added "HTMLDiagnostic", a generic DiagnosticClient (that also implements PathDiagnostic) by Ted Kremenek · 17 years ago
- aa3e537 PathDiagnosticPiece no longer contains a vector of strings; just one string. by Ted Kremenek · 17 years ago
- 1840dbd Fixed copy-paste error. by Ted Kremenek · 17 years ago
- bcacef5 Added PathDiagnostic.[h,cpp] to Xcode project. by Ted Kremenek · 17 years ago
- 14f1457 Added classes "PathDiagnosticPiece", "PathDiagnostic", and "PathDiagnosticClient", which encapsulate diagnostic reporting for paths. by Ted Kremenek · 17 years ago
- 5648a71 In ObjCMessageExpr: getSelector() const should just return "Selector", not "const Selector&" because Selector is just a smart pointer. by Ted Kremenek · 17 years ago
- a3b9852 Fix rewriter tests to work with new output file logic. This changes forces the output to standard out (rather than generate a .cpp file, which is the new default for the rewriter). by Steve Naroff · 17 years ago
- 9ba5a1f Bug fix: use GetRVal instead of GetLVal (were getting the value of a DeclRefExpr, not it's address). by Ted Kremenek · 17 years ago
- 399e616 Added test case for static analysis to warn about passing uninitialized values as arguments (not the receiver) in message expressions. by Ted Kremenek · 17 years ago
- 4de1c38 Added test case for static analyzer to detect uses of uninitialized pointers as receivers in Objective-C message expressions. by Ted Kremenek · 17 years ago
- 2380f37 Bug fix in transfer function for ObjCMessageExpr: Visit the receiver expression as an ordinary expression, not using VisitLVal. by Ted Kremenek · 17 years ago
- 1997d2c Alloc redeclaration of typedefs within ExternCSystemHeaderDir's AND SystemHeaderDir's. by Steve Naroff · 17 years ago
- 02564e5 allow the format attribute to be specified in function pointer prototypes by Nuno Lopes · 17 years ago
- 18e72bb Added hacked version of ccc script used to invoke the static analyzer. This by Ted Kremenek · 17 years ago
- efc1121 Extend QualType::getAddressSpace to do the right thing for array types, and in by Nate Begeman · 17 years ago
- 35be94a Add missing files by Nate Begeman · 17 years ago
- d58da2b GRSimple analysis now outputs additional diagnostic warnings about by Ted Kremenek · 17 years ago
- 7150747 Tweak to transfer function for ObjCMessageExpr: handle both instance methods by Ted Kremenek · 17 years ago
- 4b2bdd5 Added logic to check for uninitialized values as the receivers for message expressions by Ted Kremenek · 17 years ago
- c6b7a1e Added initial transfer function support for ObjCMessageExpr. by Ted Kremenek · 17 years ago
- 0cdce4d Added "arg_iterators" to ObjCMessageExpr (for iterating over the arguments of a message expression) by Ted Kremenek · 17 years ago
- 5160a87 Minor CSS tweaking: use webkit style CSS properties for shadows/rounded edges by Ted Kremenek · 17 years ago
- a4567bd Add a couple files to VC++ project and cleanup an "#if 0". by Steve Naroff · 17 years ago
- fccd7be debian amd64 testing by Andrew Lenharth · 17 years ago
- 6961ec4 debian ia32 testing by Andrew Lenharth · 17 years ago
- 89ec6a8 Avoid overflowing buffer, patch by Algeris Kirtzidis! by Chris Lattner · 17 years ago
- 6fe1317 The newest version of valgrind, 3.3.0, no longer appends PIDs to log filenames by Sam Bishop · 17 years ago
- 24d83ad Changed merge operation for uninitialized values analysis to "intersect" (previous union). by Ted Kremenek · 17 years ago
- 673f2bd Teach the rewriter how to respect the -o option. by Chris Lattner · 17 years ago
- 5882026 fix this test. by Chris Lattner · 17 years ago
- f10f288 Rename "Nodify" to "MakeNode" by Ted Kremenek · 17 years ago
- e2294a2 Only invoke the preprocessor; it's the only thing being tested. Also, check by Sam Bishop · 17 years ago
- a7fa72f Plug a memory leak in the "this macro expands into a single trivially- by Sam Bishop · 17 years ago
- 2fdc49f Use the -E option when invoking clang. Only the preprocessor is by Sam Bishop · 17 years ago
- a1b615d Add ability to run clang tests under valgrind. Patch by Sam Bishop. by Gabor Greif · 17 years ago
- 9b9f2b9 LiveVariables analysis now uses intersect for the merge of block-level expression liveness information. by Ted Kremenek · 17 years ago
- 242693a Use make's -C option to enter directories. by Gabor Greif · 17 years ago
- efce712 reduce chattyness of makefiles by Gabor Greif · 17 years ago
- 1ac9ad2 scan testdirs only once, patch by Mike Stump, thanks! by Gabor Greif · 17 years ago
- 9c2c0ef Added HTML highlighting for ranges. by Ted Kremenek · 17 years ago
- e50e14c Fix typo. by Steve Naroff · 17 years ago
- bb9e1a5 Fix http://llvm.org/bugs/show_bug.cgi?id=2161. by Steve Naroff · 17 years ago
- 948d4cc Change colors of HTML message bubble. by Ted Kremenek · 17 years ago
- 0d43116 More CSS enhancements to HTML code printing. by Ted Kremenek · 17 years ago
- b8b86e2 Misc. cleanups to HTML printing: make code rendered using tables; add by Ted Kremenek · 17 years ago
- 5707219 Minor speed tweak per Chris's suggestion: use &S[0] instead of S.c_str(). by Ted Kremenek · 17 years ago
- 32ffc56 Integrated some of Chris's comments; check for an empty string in InsertStrXXX() by Ted Kremenek · 17 years ago
- e1a79d8 Initial experimentation with adding boxed "annotations" to HTMLized source. by Ted Kremenek · 17 years ago
- 3ca596a Convert tabs to spaces. by Ted Kremenek · 17 years ago
- 0735c17 Moved generation of html header/footer with builtin CSS to the rewriter library. by Ted Kremenek · 17 years ago
- a18c12e simplify code by using the variadic StructType::get method. by Chris Lattner · 17 years ago
- 0730756 simplify the clang codegen by using the new Builder.CreateStructGEP method. by Chris Lattner · 17 years ago
- 0b6b3f4 More cleanups to the HTML rewriter (with line formatting), with better by Ted Kremenek · 17 years ago
- df93c28 Added InsertStrXXX/InsertCStrXXX methods to the Rewriter to provide a simpler by Ted Kremenek · 17 years ago
- 9b841b3 Change "style" to "class" in HTML output. by Ted Kremenek · 17 years ago
- 90588af More cleanups to HTML rewriter API: remove the InsertTag method; was too complicated by Ted Kremenek · 17 years ago
- a388184 More HTML rewriter cleanups. Preliminary CSS support in code pretty-printing. by Ted Kremenek · 17 years ago
- f08ee32 Some cleanups to the HTMLRewrite API. Added support for printing out line by Ted Kremenek · 17 years ago
- d1cf559 Added HTML pretty-printer. by Ted Kremenek · 17 years ago
- a8c90dd Modified "InsertTag" (HTML rewriter) to have an optional "OutermostTag" flag to by Ted Kremenek · 17 years ago
- 24612ae Added the beginning of a set of rewriter functions for pretty-printing source by Ted Kremenek · 17 years ago
- 8d0368c Added variant of "InsertText" in the Rewriter to support inserting text both by Ted Kremenek · 17 years ago