Displaying 6 results from an estimated 6 matches for "loopinfo_8h".
2010 Jan 08
1
[LLVMdev] integrate LLVM Poly into existing LLVM infrastructure
...ase,
like: ParentRegion, SubRegions, Blocks, getRegionDepth(),
getExitBlock(), getExitingBlock() ......
so, could us just treat "Loop" as some kind of general "Region" of
BasicBlocks, and make Loop and Region inherit from "RegionBase"?
[1] http://llvm.org/doxygen/LoopInfo_8h-source.html
best regards
--ether
2004 Apr 08
0
[LLVMdev] Code documentation
...odebase.
Quite true. Note that, in general, there are reasonable comments and
descriptions of each interface at the top of each header file. I don't
think that doxygen picks these descriptions up, so it might be good to
look there. For example, contrast this:
http://llvm.cs.uiuc.edu/doxygen/LoopInfo_8h-source.html
to this:
http://llvm.cs.uiuc.edu/doxygen/classllvm_1_1Loop.html
> As an example, consider this code:
>
> %tmp.1 = setgt int %i, 0
> br bool %tmp.1, label %then.0, label %else.0
>
> It appears that Value* that corresponds to the %tmp.1 operand of the second...
2010 Jan 08
1
[LLVMdev] Make LoopBase inherit from "RegionBase"?
...egions, Blocks, getRegionDepth(),
> getExitBlock(), getExitingBlock() ......
>
> so, could us just treat "Loop" as some kind of general "Region" of
> BasicBlocks, and make Loop and Region inherit from "RegionBase"?
>
>
> [1] http://llvm.org/doxygen/LoopInfo_8h-source.html
>
> best regards
> --ether
2004 Apr 08
3
[LLVMdev] Code documentation
Hello,
is there any documentation for LLVM codebase other than produced by doxygen?
The reason I'm asking is that doxygen docs are
(1) not very complete at the moment, as lot of classes don't even have a
description
(2) is generally not the best way to get high-level view of a big codebase.
As an example, consider this code:
%tmp.1 = setgt int %i, 0
br bool %tmp.1, label
2008 Sep 30
1
[LLVMdev] LoopInfo getTripCount modification proposal
...ts me from
using this method for changing the loop. I suggest creating another method
for returning the 'cmp' instruction. The new getTripCount implementation
will use the new method. Do y'all think that it's a good idea and accept a
patch ?
Nadav Rotem
[1] http://llvm.org/doxygen/LoopInfo_8h-source.html#l00394
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080930/12f66f7c/attachment.html>
2008 Feb 04
1
[LLVMdev] Question to Chris
I appreciate your suggestions, some follow-up questions though....
>1) LLVM has the capabilities to do everything that you are trying to
>re-implement.
>2) Have you looked at the C backend? It recreates loops. It may not
>create "for" loops but you can hack on it to do that.
I wonder if you mean "goto elimination technique" by Ana Maria Erosa (