Displaying 20 results from an estimated 2000 matches similar to: "[LLVMdev] Using -view-legalize-dags"
2011 Aug 15
0
[LLVMdev] Order of code generation
After enabling assertions and recompilation I still get this error.
~/bin/llvm$ llc -view-isel-dags t3.bc
llc: Unknown command line argument '-view-isel-dags'. Try: 'llc -help'
llc: Did you mean '-fast-isel-abort'?
and I see the view-edge bundles option but get the following error.
~/bin/llvm$ llc -view-edge-bundles t3.bc
Writing
2015 Jul 27
2
[LLVMdev] SelectionDAG viewers, filter-view-dags question
Is this option currently mandatory? If so, why? If not, I'm not sure what's
been added that I need to do differently.
-view-isel-dags opened just fine in dotty in 3.4 and now this does nothing
without the filter-view-dags 'option' and now has a different priority
program list or something.
I'm just curious why this option should be mandatory?
Thanks.
-------------- next part
2015 Aug 11
2
Fwd: [LLVMdev] SelectionDAG viewers, filter-view-dags question
Hi,
It's changed a few times over the last year. I believe xdg-open spawns whichever application your desktop environment would use to open the file so you should be able to tell it to use dotty.
From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of Ryan Taylor via llvm-dev
Sent: 11 August 2015 00:30
To: llvm-dev at lists.llvm.org
Subject: [llvm-dev] Fwd: [LLVMdev]
2009 Sep 04
1
[LLVMdev] viewing dags
Hi
I would like to view the various dags being output during codegen.
Unfortunately, I am not seeing the files being dumped. I will really
appreciate if someone can help me here
llc switch.bc -f -view-dag-combine1-dags ( i tried -view-isel-dags,
-view-sched-dags as well)
Writing '/tmp/llvm_zbbAKM/dag.main.dot'... done.
Writing '/tmp/llvm_G4rLKf/dag.main.dot'... done.
Writing
2015 Jul 27
0
[LLVMdev] SelectionDAG viewers, filter-view-dags question
Daniel,
We are using 3.6. Someone also pointed out that it was mandatory in 3.6.2
but I have not verified that.
On Mon, Jul 27, 2015 at 12:10 PM, Daniel Sanders <Daniel.Sanders at imgtec.com>
wrote:
> It's not supposed to be. There was a short period where it was
> unintentionally mandatory but this was fixed after I pointed it out during
> post-commit review.
>
>
2007 Aug 27
0
proftools package now available from CRAN
PROFILE OUTPUT PROCESSING TOOLS FOR R
=====================================
This package provides some simple tools for examining Rprof output
and, in particular, extracting and viewing call graph information.
Call graph information, including which direct calls where observed
and how much time was spent in these calls, can be very useful in
identifying performance bottlenecks.
2007 Aug 27
0
proftools package now available from CRAN
PROFILE OUTPUT PROCESSING TOOLS FOR R
=====================================
This package provides some simple tools for examining Rprof output
and, in particular, extracting and viewing call graph information.
Call graph information, including which direct calls where observed
and how much time was spent in these calls, can be very useful in
identifying performance bottlenecks.
2015 Jul 27
2
[LLVMdev] SelectionDAG viewers, filter-view-dags question
I've just looked at my checkout of 3.6 and it looks like the fix wasn't merged. I don't have the revision number for the fix to hand but in lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp, this:
MatchFilterBB = (!FilterDAGBasicBlockName.empty() &&
FilterDAGBasicBlockName ==
FuncInfo->MBB->getBasicBlock()->getName().str());
2015 Jul 27
1
[LLVMdev] SelectionDAG viewers, filter-view-dags question
Daniel,
Ok, thanks. Simple fix. We'll just make correction in local copy for now,
one less thing to port later :)
Thanks.
On Mon, Jul 27, 2015 at 12:29 PM, Daniel Sanders <Daniel.Sanders at imgtec.com>
wrote:
> I've just looked at my checkout of 3.6 and it looks like the fix wasn't
> merged. I don't have the revision number for the fix to hand but in
>
2011 Aug 15
2
[LLVMdev] Order of code generation
On 15/08/11 13:12, محمد ﻋﻤﺮ ﺩﻫﻠﻮﻯ wrote:
> How do I enable the assertions when building ?
> I am using 2.9, the current version, and when I use the standard build llc does
> not give me the view-*-dags options.
Configure with --enable-assertions
Ciao, Duncan.
>
> -Omer
>
> On Sat, Aug 13, 2011 at 1:50 AM, Duncan Sands <baldrick at free.fr
> <mailto:baldrick at
2009 Sep 04
3
[LLVMdev] TOT opt does not terminate!
The following code causes opt to not terminate!
With TOT this morning, and of a week ago:
clang foo.c and clang -O1 foo.c
work fine.
clang -O2 foo.c and clang -O3 foo.c
do not terminate. (At least after 10 minutes)
If I generate the bit code (clang-cc -emit-llvmbc) and then run:
opt -O3 foo.bc
it does not terminate.
//foo.c
int get_id(int);
typedef short
2015 Aug 01
3
[LLVMdev] SelectionDAG viewers, filter-view-dags question
The diff is not only the && and || but also the leading !:
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index 58f029fbe9fc..7ee06fc153b2 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -659,7 +659,7 @@ void SelectionDAGISel::CodeGenAndEmitDAG() {
2009 Dec 01
1
[LLVMdev] Viewing graphs while debugging code under windows?
Hi Ether,
The detection for graphviz / dotty / ... has been added recently to llvm cmake. It should work properly if those tools are available in the PATH. The related svn commits are : 86153, 86547 and 86644. Those commits are not present in llvm release <= 2.6, but they are straight forward to apply.
Best regards,
--
Arnaud de Grandmaison
-----Original Message-----
From: llvmdev-bounces at
2009 Jul 16
1
[LLVMdev] [patch] Dotty printer for dependency trees
Tobias Grosser wrote:
> On Wed, 2009-07-15 at 00:20 +0200, Tobias Grosser wrote:
>> Hi,
>>
>> I started to work with llvm and liked the CFG dotty printer a lot.
>> However there was none for the dominance trees.
>>
>> I implemented dotty printing for dominance trees
Great! I'm a huge fan of graphviz integration in the compiler.
> And here is the
2010 Oct 28
2
draw path diagram using dot
I did a simple path analysis and tried to draw the path diagram. I used
'path.diagram' in sem package and produced a graph using dotty in graphviz;
however, I don't know how to produce a graph from R directly. In the sem
package manual John mentioned that "to obtain graphics output directly, the
dot program must be on the system search path". Does anyone know how to set
it
2010 Jan 22
0
No subject
* Lists itself as a PDC
* Lists itself as a LMB
* No ADMIN$ IPC share listed (Is this normal?)
I am unsure as how to check the Admin domain accounts on the server.
2 user accounts (for now) asc1 asc2
on computers ascoffice1.lefty (172.16.32.8) and ascoffice2.lefty (172.16.32.9)
server is earth.lefty (172.16.32.2)
DHCP, BIND set up correctly (AFAICT) i can ping host names from earth
and ascoffice1
2004 Apr 22
1
Problem with ownership of non-root files at destination
I'm using rsync to mirror my Sharp SL-5500 Linux PDA
home directory to my Linux desktop over a
TCP/IP-on-USB link.
I'm running the following command as root on the 5500:
/home/QtPalmtop/bin/rsync -av /home/zaurus \
192.168.129.1::zaurus
I'm running the rsync server out of xinetd. I have
verified with 'ps' that the server, when it starts, is
running as root. The files are
2012 Aug 09
3
[LLVMdev] Type inconsistency in LLVM 3.1: CGDebugInfo.cpp
I'm probably missing something simple here but in:
CGDebugInfo.h:
std::vector<std::pair<void *, llvm::WeakVH> >ReplaceMap;
but then in
CGDebugInfo.cpp:
llvm::DIType TC = getTypeOrNull(Ty);
void * v = Ty.getAsOpaquePtr();
std::pair<void *, llvm::WeakVH> tmp = std::make_pair(v, TC);
if (TC.Verify() && TC.isForwardDecl())
2012 Aug 09
1
[LLVMdev] Type inconsistency in LLVM 3.1: CGDebugInfo.cpp
Hi Ben,
Thanks that helped a lot.
The problem seems to be that with the move to C++11 we now have:
void std::vector<_Ty>::push_back(std::pair<_Ty1,_Ty2> &&)'
and there no conversion operator that can be applied to convert:
'std::pair<_Ty1,_Ty2>' to 'std::pair<_Ty3,_Ty4> &&
Where:
[
_Ty1=void *,
2009 Nov 05
1
[LLVMdev] [cmake] : dotty handling
Hi,
Here is a little patch to have cmake detect dotty, and if this was the case, update the HAVE_DOTTY and LLVM_PATH_DOTTY defines in include/llvm/Config/config.h.
This should apply cleanly on TOT.
Best regards,
--
Arnaud de Grandmaison
-------------- next part --------------
An HTML attachment was scrubbed...
URL: