search for: justadd

Displaying 6 results from an estimated 6 matches for "justadd".

2008 Feb 08
2
[LLVMdev] Some questions about live intervals
...ction index belongs to? All the required information is > available in the > > MBB2IdxMap of the LiveIntervalAnalysis class. Would it be useful > to add a small function getMBBFromIndex() to this class? > > Sure there is a reverse map (actually just a vector) Idx2MBBMap. > Justadd a query. Done. Please find a patch attached to this mail. > > As for (1) and (2), I could implement and provide patches for it, > > if you think this is desirable. > > Yes, thanks. Here you are! -Roman Lesen Sie Ihre E-Mails auf dem Handy. www.yahoo.de/go -----------...
2008 Feb 11
0
[LLVMdev] Some questions about live intervals
...to? All the required information is >> available in the >>> MBB2IdxMap of the LiveIntervalAnalysis class. Would it be useful >> to add a small function getMBBFromIndex() to this class? >> >> Sure there is a reverse map (actually just a vector) Idx2MBBMap. >> Justadd a query. > > Done. Please find a patch attached to this mail. > >>> As for (1) and (2), I could implement and provide patches for it, >>> if you think this is desirable. >> >> Yes, thanks. > > Here you are! > > -Roman > > > Lesen Sie...
2008 Feb 11
2
[LLVMdev] Some questions about live intervals
...ion is > >> available in the > >>> MBB2IdxMap of the LiveIntervalAnalysis class. Would it be useful > >> to add a small function getMBBFromIndex() to this class? > >> > >> Sure there is a reverse map (actually just a vector) Idx2MBBMap. > >> Justadd a query. > > > > Done. Please find a patch attached to this mail. > > > >>> As for (1) and (2), I could implement and provide patches for it, > >>> if you think this is desirable. > >> > >> Yes, thanks. > > > > Here you are! &g...
2008 Feb 12
0
[LLVMdev] Some questions about live intervals
...;> available in the >>>>> MBB2IdxMap of the LiveIntervalAnalysis class. Would it be useful >>>> to add a small function getMBBFromIndex() to this class? >>>> >>>> Sure there is a reverse map (actually just a vector) Idx2MBBMap. >>>> Justadd a query. >>> >>> Done. Please find a patch attached to this mail. >>> >>>>> As for (1) and (2), I could implement and provide patches for it, >>>>> if you think this is desirable. >>>> >>>> Yes, thanks. >>> &g...
2008 Feb 01
0
[LLVMdev] Some questions about live intervals
On Jan 31, 2008, at 5:05 AM, Roman Levenstein wrote: > Hi, > > I'm trying to sketch an LLVM-based implementation of the Extended > Linear Scan algorithm, described in this Vivek Sarkar's paper: > http://www.cs.rice.edu/~vs3/PDF/cc2007.pdf > Sarkar reports that this version of Linear Scan produces better code > than graph-coloring regallocs and is also much faster (15x
2008 Jan 31
7
[LLVMdev] Some questions about live intervals
Hi, I'm trying to sketch an LLVM-based implementation of the Extended Linear Scan algorithm, described in this Vivek Sarkar's paper: http://www.cs.rice.edu/~vs3/PDF/cc2007.pdf Sarkar reports that this version of Linear Scan produces better code than graph-coloring regallocs and is also much faster (15x to 68x). I already started work on the implementation of this algorithm and have a few