search for: stmtprofil

Displaying 12 results from an estimated 12 matches for "stmtprofil".

Did you mean: stmtprofile
2013 Jul 12
2
[LLVMdev] design for an accurate ODR-checker with clang
...granularity. By granularity I mean that we would hash the entire definition of a class including all methods defined lexically inline and emit a single value for that class. The first step is to build a new visitor over the clang AST that calculates a hash of the ODR-relevant pieces of the code. (StmtProfiler doesn’t work here because it includes pointers addresses which will be different across different translation units.) Hash the outermost declaration with external-linkage. For example, given a class with a method defined inline, we start the visitor at the class, not at the method. The entirety o...
2013 Jul 12
0
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...ty. By granularity I mean that we would hash the entire definition of a class including all methods defined lexically inline and emit a single value for that class. > > The first step is to build a new visitor over the clang AST that calculates a hash of the ODR-relevant pieces of the code. (StmtProfiler doesn’t work here because it includes pointers addresses which will be different across different translation units.) Hash the outermost declaration with external-linkage. For example, given a class with a method defined inline, we start the visitor at the class, not at the method. The entirety o...
2013 Jul 12
3
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...n that we would hash the entire definition of a class > including all methods defined lexically inline and emit a single value for > that class. > > > > The first step is to build a new visitor over the clang AST that > calculates a hash of the ODR-relevant pieces of the code. (StmtProfiler > doesn’t work here because it includes pointers addresses which will be > different across different translation units.) Hash the outermost > declaration with external-linkage. For example, given a class with a method > defined inline, we start the visitor at the class, not at the me...
2013 Aug 05
2
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...the entire definition of a class >> including all methods defined lexically inline and emit a single value for >> that class. >> > >> > The first step is to build a new visitor over the clang AST that >> calculates a hash of the ODR-relevant pieces of the code. (StmtProfiler >> doesn’t work here because it includes pointers addresses which will be >> different across different translation units.) Hash the outermost >> declaration with external-linkage. For example, given a class with a method >> defined inline, we start the visitor at the clas...
2013 Aug 05
0
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...y I mean that we would hash the entire definition of a class including all methods defined lexically inline and emit a single value for that class. >> > >> > The first step is to build a new visitor over the clang AST that calculates a hash of the ODR-relevant pieces of the code. (StmtProfiler doesn’t work here because it includes pointers addresses which will be different across different translation units.) Hash the outermost declaration with external-linkage. For example, given a class with a method defined inline, we start the visitor at the class, not at the method. The entirety o...
2013 Jul 15
0
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...anularity I mean that we would hash the entire definition of a class including all methods defined lexically inline and emit a single value for that class. > > > > The first step is to build a new visitor over the clang AST that calculates a hash of the ODR-relevant pieces of the code. (StmtProfiler doesn’t work here because it includes pointers addresses which will be different across different translation units.) Hash the outermost declaration with external-linkage. For example, given a class with a method defined inline, we start the visitor at the class, not at the method. The entirety o...
2013 Jul 15
4
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...the entire definition of a class >> including all methods defined lexically inline and emit a single value for >> that class. >> > >> > The first step is to build a new visitor over the clang AST that >> calculates a hash of the ODR-relevant pieces of the code. (StmtProfiler >> doesn’t work here because it includes pointers addresses which will be >> different across different translation units.) Hash the outermost >> declaration with external-linkage. For example, given a class with a method >> defined inline, we start the visitor at the clas...
2013 Jul 15
0
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...y I mean that we would hash the entire definition of a class including all methods defined lexically inline and emit a single value for that class. >> > >> > The first step is to build a new visitor over the clang AST that calculates a hash of the ODR-relevant pieces of the code. (StmtProfiler doesn’t work here because it includes pointers addresses which will be different across different translation units.) Hash the outermost declaration with external-linkage. For example, given a class with a method defined inline, we start the visitor at the class, not at the method. The entirety o...
2013 Jul 15
1
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...on of a class >>> including all methods defined lexically inline and emit a single value for >>> that class. >>> > >>> > The first step is to build a new visitor over the clang AST that >>> calculates a hash of the ODR-relevant pieces of the code. (StmtProfiler >>> doesn’t work here because it includes pointers addresses which will be >>> different across different translation units.) Hash the outermost >>> declaration with external-linkage. For example, given a class with a method >>> defined inline, we start the vis...
2013 Aug 05
2
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...on of a class >>> including all methods defined lexically inline and emit a single value for >>> that class. >>> > >>> > The first step is to build a new visitor over the clang AST that >>> calculates a hash of the ODR-relevant pieces of the code. (StmtProfiler >>> doesn’t work here because it includes pointers addresses which will be >>> different across different translation units.) Hash the outermost >>> declaration with external-linkage. For example, given a class with a method >>> defined inline, we start the vis...
2012 Oct 10
0
[LLVMdev] [cfe-dev] OpenMP support in CLANG: A proposal
.... clang/lib/StaticAnalyzer/Core/ExprEngine.cpp #. clang/lib/Serialization/ASTReaderStmt.cpp #. clang/lib/Serialization/ASTWriterStmt.cpp #. clang/lib/Sema/TreeTransform.h #. clang/lib/CodeGen/CGStmt.cpp #. clang/lib/AST/StmtOpenMP.cpp ------> newly added #. clang/lib/AST/StmtProfile.cpp #. clang/lib/AST/StmtPrinter.cpp #. clang/lib/AST/Stmt.cpp #. clang/tools/libclang/RecursiveASTVisitor.h #. clang/tools/libclang/CXCursor.cpp -. Makefile changes #. clang/lib/AST/CMakeLists.txt #. clang/lib/Sema/CMakeLists.txt #. clang/lib/Parse/CMakeLists.txt...
2012 Oct 10
2
[LLVMdev] [cfe-dev] OpenMP support in CLANG: A proposal
On Wed, Oct 10, 2012 at 5:40 AM, Eli Friedman <eli.friedman at gmail.com>wrote: > On Tue, Oct 9, 2012 at 4:37 AM, Mahesha HS <mahesha.llvm at gmail.com> wrote: > > Hello All, > > > > We would like to make a proposal to support OpenMP in CLANG. The goal of > > this effort is to provide support for syntax > > > > analysis (parsing), semantic