Displaying 3 results from an estimated 3 matches for "pathedg".
Did you mean:
pathed
2010 Dec 08
0
[LLVMdev] Reviewer for our Path Profiling Implementation
...ystem headers after user headers.
+namespace llvm {
+ class Path;
A class Path already exists. You just got lucky it's in llvm::sys. Please
wrap your classes in a namespace (e.g. llvm::PathProfile) or give
them fully descriptive names.
+++ include/llvm/Analysis/PathProfileInfo.cpp
+unsigned PathEdge::getDuplicateNumber() {
+ return _duplicateNumber;
+}
+
+BasicBlock* PathEdge::getSource() {
+ return _source;
+}
+
+BasicBlock* PathEdge::getTarget() {
+ return _target;
+}
...
Trivial accessors should be defined inline.
-Andy
2010 Dec 08
1
[LLVMdev] Reviewer for our Path Profiling Implementation
...llvm {
> + class Path;
>
> A class Path already exists. You just got lucky it's in llvm::sys. Please
> wrap your classes in a namespace (e.g. llvm::PathProfile) or give
> them fully descriptive names.
>
> +++ include/llvm/Analysis/PathProfileInfo.cpp
>
> +unsigned PathEdge::getDuplicateNumber() {
> + return _duplicateNumber;
> +}
> +
> +BasicBlock* PathEdge::getSource() {
> + return _source;
> +}
> +
> +BasicBlock* PathEdge::getTarget() {
> + return _target;
> +}
> ...
>
> Trivial accessors should be defined inline.
>
>...
2010 Dec 03
4
[LLVMdev] Reviewer for our Path Profiling Implementation
I am a student at the University of Alberta under the
supervision of José Nelson Amaral, and I have been working on
implementing path profiling into LLVM. I have completed my project
and would like to submit it.
We are looking for a reviewer for the path profiling implementation. We
have sent previous requests to the llvmdev list but have so far been
unsuccessful.
Please see the attached