Displaying 5 results from an estimated 5 matches for "mixedcase".
2007 Sep 05
0
[LLVMdev] [PATCH]: Add SparseBitmap implementation
On Sep 4, 2007, at 4:36 PM, Daniel Berlin wrote:
> Also, someone on IRC asked about the weird function naming
> conventions. I know most of llvm uses mixedCase, but i copied the
> style of BitVector, which has a weird mix. I'm happy to change it :)
Yes please. By default, it is a good idea to follow llvm coding
conventions instead of copying violation of coding style from
existing code. Otherwise it pollutes code and, in future, gives
someo...
2007 Sep 04
6
[LLVMdev] [PATCH]: Add SparseBitmap implementation
...them directly into the free list). This is
helpful for per-iteration pools of bitmaps, which is useful to
points-to analysis.
I was too lazy to make an operator new that emulated this functionality.
Also, someone on IRC asked about the weird function naming
conventions. I know most of llvm uses mixedCase, but i copied the
style of BitVector, which has a weird mix. I'm happy to change it :)
In any case, updated patch attached.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: sparsebitmap.diff
Type: text/x-diff
Size: 18889 bytes
Desc: not available
URL: <ht...
2006 Apr 28
3
wine could not load
I downloaded wine but when I try to invoke it I get this message ...
wine: could not load L"c:\\windows\\system\\program.exe": Module not
found
What does that mean? how can I fix it? and how can I get Wine to start
running?
2007 Sep 04
0
[LLVMdev] [PATCH]: Add SparseBitmap implementation
On Tue, Sep 04, 2007 at 10:35:10AM -0400, Daniel Berlin wrote:
> On 9/4/07, Dan Gohman <djg at cray.com> wrote:
> > On Fri, Aug 31, 2007 at 08:10:33PM -0400, Daniel Berlin wrote:
> > > + template <int ElementSize>
> > > + class SparseBitmap {
> >
> > Do you expect clients will often want custom ElementSize values? Otherwise,
> > it seems
2007 Sep 04
2
[LLVMdev] [PATCH]: Add SparseBitmap implementation
On 9/4/07, Dan Gohman <djg at cray.com> wrote:
> On Fri, Aug 31, 2007 at 08:10:33PM -0400, Daniel Berlin wrote:
> > Suggestions, criticisms, etc, are welcome.
>
> I haven't studied the implementation, but I have a few comments on
> the interface, and some style comments, below.
>
> > Index: include/llvm/ADT/SparseBitmap.h
> >