Displaying 3 results from an estimated 3 matches for "isloopsimplifyform".
2011 Jul 28
1
[LLVMdev] Is MachineLoop Simplify Form?
Is there any reason that we don't have isLoopSimplifyForm method in LoopBase? Can I move it there?
-Kuba
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110728/95b007e3/attachment.html>
2010 Aug 12
0
[LLVMdev] Questions about trip count
...BB != E; ++BB) {
const Loop* l = LI->getLoopFor(&*BB);
if (l != NULL) {
l->dump();
errs() << "BB:\t" << BB->getNameStr() << "\n" ;
errs() << "Is simplifyed loop?\t" << l->isLoopSimplifyForm() <<
"\n" ;
errs() << "Tripcount " << l->getSmallConstantTripCount() << "\n"
;
const PHINode* phi = l->getCanonicalInductionVariable();
errs() << "Induction variable: " << *phi <...
2012 Jun 05
2
[LLVMdev] Function Pass Manager
On 6/5/12 10:39 AM, Ralf Karrenberg wrote:
> Hi John,
>
> On 6/5/12 4:31 PM, John Criswell wrote:
>> On 4/12/12 3:32 AM, Ivan Llopard wrote:
>>> Hi again,
>>>
>>> I come back to this issue with an example. It's a pass which does
>>> nothing but throw the 'Unable to schedule' error.
>>>
>>> namespace {
>>>