similar to: [LLVMdev] Running c++-analyzer on svn r159506 llvm-clang

Displaying 20 results from an estimated 6000 matches similar to: "[LLVMdev] Running c++-analyzer on svn r159506 llvm-clang"

2012 Jul 03
0
[LLVMdev] Running c++-analyzer on svn r159506 llvm-clang
John, Thanks for making the results of the analyzer available. Ted has recently added IPA support for C++, so the number of bugs reported increased dramatically. In some cases our diagnostic clarity is still lagging behind for C++ bugs that span multiple functions (it's WIP). Cheers, Anna. On Jul 3, 2012, at 10:06 AM, John Smith wrote: > Hi, > > > Just for fun, I decided to
2019 Aug 28
2
[GSoC 2019] Apply the Clang Static Analyzer to LLVM-based projects - final report
Sylvestre Ledru looks after the scan-build web report, but I understand it hit a few issues back in June (it normally updates a few times a week). We also discussed whether there was an automated way for those updates to email the summary to the cfe/llvm dev lists, indicating total warnings, and highlighting any new ones (we punted that discussion until the GSoC was done - btw thank you
2019 Aug 26
2
[GSoC 2019] Apply the Clang Static Analyzer to LLVM-based projects - final report
Hey everyone! This Summer we managed to make the Clang Static Analyzer support the LLVM and LLVM-based projects with my mentors Artem Dergachev and Gabor Horvath. For a more detailed documentation please visit my final report: https://docs.google.com/document/d/1o9-xEWbzivUGKIOXp9jUNZYq0mkecd5KH5dBN5Hdlu8/ The project in a nutshell: I have fixed the most annoying false positives and added
2015 Feb 18
4
[LLVMdev] RFC: Dropping support for building sanitizers with autotools
> On Feb 17, 2015, at 4:00 PM, Alexey Samsonov <vonosmas at gmail.com> wrote: > > > On Tue, Feb 17, 2015 at 3:37 PM, Anna Zaks <ganna at apple.com <mailto:ganna at apple.com>> wrote: > Unfortunately, we do rely on the Autotools to build for darwin. > > The lack of proper testing is very unfortunate. In the future, we will either drop the dependency on
2016 May 12
2
Before we go cleaning up LLVM+Clang of all Static Analyzer Warnings...
On Fri, May 6, 2016 at 3:09 AM, Apelete Seketeli <apelete at seketeli.net> wrote: > Hi David, > > On Thu, May-05-2016 at 11:20:06 AM -0700, David Blaikie wrote: > > Hi Apelete, > > > > Thanks for trying to help cleanup the LLVM codebase of Clang Static > > Analyzer warnings. > > > > But it seems a lot of the fixes that are being proposed are
2008 Dec 30
7
[Xen-research] ISO test Downloads Availability ?
Hi, I seem to remember that there used to be ISO downloads of Xen available, for people wanting to give it an easy way for a test drive, and to submit (automated) feedback on which machines and configurations Xen ran (in)correctly. However, I do not seem to be able to find these ISO images for download at Xen.org anymore. Has the project stopped making these useful test images - and if so, why ?
2008 Dec 30
7
[Xen-research] ISO test Downloads Availability ?
Hi, I seem to remember that there used to be ISO downloads of Xen available, for people wanting to give it an easy way for a test drive, and to submit (automated) feedback on which machines and configurations Xen ran (in)correctly. However, I do not seem to be able to find these ISO images for download at Xen.org anymore. Has the project stopped making these useful test images - and if so, why ?
2006 Oct 23
2
Trouble with custom Analyzer
Hi! I wanted to build my own custom Analyzer like so: class Analyzer < Ferret::Analysis::Analyzer include Ferret::Analysis def initialize(stop_words = ENGLISH_STOP_WORDS) @stop_words = stop_words end def token_stream(field, string) StopFilter.new(LetterTokenizer.new(string, true), @stop_words) end end As one can easily spot, I essentially want
2007 May 03
2
Custom analyzer weirdness with 0.11.3
Hi- I was previously using 0.11.4, and I wrote my own analyzer. Everything worked fine. When I took the system to production, 0.11.4 starting failing updating the index, complaining that files were missing. The failure always happened on the same model document, and was completely reproducible. This failure looked a lot like the one described at http://www.ruby-forum.com/topic/104145. I
2010 Jul 27
2
Asterisk Gurus - What is your best Asterisk Queue Analyzer and Asterisk Log Analyzer program out there?
Hi Guys, I seem to not be able to find any good open source Asterisk Queue Analyzer and Asterisk Log Analyzer on the web. The Asterisk Queue Analyzer is to serve as the graphic tool for call center or pbx admins. It will pull the info in queue.log and in MySQL asterisk CDR to create a graphic bar or to report on each extension that received the queue calls, etc... The Asterisk Log Analyzer is
2006 Apr 20
1
Creating my own analyzer
I created this analyzer: class DescriptionAnalyzer < Ferret::Analysis::Analyzer def token_stream(field, string) if field == "code" return CodeTokenStream.new(string) else return Ferret::Analysis::Analyzer.new.token_stream(field,string) end end end and created an IndexWriter with it: Ferret::Index::IndexWriter.new(get_index_path,
2016 Jul 01
2
How to resolve conflicts between sanitizer_common and system headers
> On Jul 1, 2016, at 12:10 PM, Dmitry Vyukov <dvyukov at google.com> wrote: > > On Fri, Jul 1, 2016 at 8:53 PM, Anna Zaks <ganna at apple.com> wrote: >> Hi Sanitizer Runtime Developers, >> >> We recently ran into a problem building clang because some of the >> definitions in sanitizer_common conflicted with system definitions and later >>
2009 Apr 09
4
Weird analyzer issue with the word ''fly''
Hi all I''m using a_a_f in rails with a StemmingAnalyzer, in the index and in my search. I got the idea from this topic: http://www.ruby-forum.com/topic/80178 I''m having a problem with some search terms - i narrowed one of them down to the inclusion of the word ''fly''. Can anyone give me any clues at to what might be happening, or even how i can investigate?
2011 Mar 08
0
[LLVMdev] static analyzer & ubigraph visualization
Hi Carl, For future reference, the correct list for questions on the analyzer is cfe-dev, not llvmdev. CCC_UBI is meant to display the analysis path graph (aka "exploded graph") as it gets explored by the analyzer. I haven't run it in a while, so it may be broken. I will investigate. Ted On Mar 8, 2011, at 11:12 AM, Carl Norum wrote: > I updated our project recently to use
2015 Feb 24
5
[LLVMdev] RFC: Dropping support for building sanitizers with autotools
On 18/02/2015 23:29, Alexey Samsonov wrote: > > On Tue, Feb 17, 2015 at 6:23 PM, Anna Zaks <ganna at apple.com <mailto:ganna at apple.com>> wrote: > > >> On Feb 17, 2015, at 4:00 PM, Alexey Samsonov <vonosmas at gmail.com <mailto:vonosmas at gmail.com>> wrote: >> >> >> On Tue, Feb 17, 2015 at 3:37 PM, Anna Zaks <ganna at
2007 May 09
3
bug when assigning new analyzer?
require ''rubygems'' require ''ferret'' include Ferret PATH = ''/tmp/ferret_stopwords_test'' index = Index::IndexWriter.new(:path => PATH, :create => true) index.analyzer = Analysis::StandardAnalyzer.new([]) index << {:title => ''a few good men'', :language => ''en''} index.analyzer =
2006 Oct 27
1
Regexpr. analyzer
Hi! I want to index html files, but w/o the tags, so I was thinking either I remove them before I index it (expensive), or put up an RegExpAnalyzer. BTW, when using an analyzer, does that mean that everything which it declines (i.e. the RegExpAnalyzer doesn''t match) won''t be put into the index files (i.e. blows it up)? I came up with a simple test, which didn''t
2009 Feb 24
3
cisco netflow analyzer?
Pp ------Original Message------ From: nate Sender: centos-bounces at centos.org To: CentOS Mailing list ReplyTo: CentOS Mailing list Sent: Feb 23, 2009 8:13 PM Subject: Re: [CentOS] cisco netflow analyzer? Robinson Tiemuqinke wrote: > Anyone knows any Cisco netflow analyzer that could run on Linux/Windows? I > know that cisco ASDM works at somewhat level but too rough... > > For
2006 Sep 15
1
Custom analyzer not invoked?
Hello, I''m trying to define my own analyzer by doing something like: #----------------------------------------------------- require ''ferret'' include Ferret class MyAnalyzer < Analysis::Analyzer def token_stream(field, str) # Display results of analysis puts ''Analyzing: field:%s str:%s'' % [field, str] t =
2018 Feb 22
0
[GSOC-2018]: Clang Static Analyzer- Create a checker for dangling string pointers in C++
Hello llvm-dev I am Sunil Mayya studying Masters in Electrical and computer engineering at TU Kaiserslautern Germany. I am having few C++ programming experience with the industry and use clang static analyzer for my project. I am interested in the project "Create a checker for dangling string pointers in C+" I have C++11 and C++14 knowledge. I have started browsing through the source