Displaying 1 result from an estimated 1 matches for "snayak".
Did you mean:
nayak
2010 May 08
0
[LLVMdev] Regarding LLVM Compiler
...LiveInterval *li2 = li2Itr->second;
if (li2->empty())
continue;
if (li->overlaps(*li2)) {
// li->reg interferes with li2->reg.
// Handle this however you need to.
}
}
}
Cheers,
Lang.
On Fri, May 7, 2010 at 9:59 PM, kameshwar nayak <kameshwar.snayak at gmail.com>
wrote:
> Dear Sir,
>
> I am Kameshwar Nayak from India. I am in Final year Engineering.
> We are working on Code-Optimization in a Compiler. We chose LLVM in order
to
> test our approach. But we are finding it difficult to access the
> interference graph generated...