| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
parameters rather than runtime parameters.
There is only one user of these parameters and they are compile time for
that user. Making these compile time seems to better reflect their
intended usage as well.
llvm-svn: 205143
|
| |
|
|
|
|
| |
more places.
llvm-svn: 205141
|
| |
|
|
|
|
|
|
|
| |
Now to copy a string into a BumpPtrAllocator and get a StringRef to the copy:
StringRef myCopy = myStr.copy(myAllocator);
llvm-svn: 200885
|
| |
|
|
|
|
| |
Makes it easy to use BumpPtrAllocator to make a copy of StringRef strings.
llvm-svn: 200331
|
| |
|
|
| |
llvm-svn: 169250
|
| |
|
|
|
|
|
|
| |
smaller than the slab size.
This replaces r151834 with a simpler fix.
llvm-svn: 151842
|
| |
|
|
|
|
| |
increase the slab size.
llvm-svn: 151834
|
| |
|
|
| |
llvm-svn: 97454
|
| |
|
|
|
|
| |
the pointer even if the memory returned from malloc was already aligned.
llvm-svn: 78805
|
| |
|
|
|
|
| |
values. Hopefully this fixes PR4622.
llvm-svn: 77088
|
| |
|
|
|
|
| |
an off-by-one error.
llvm-svn: 76891
|
| |
|
|
|
|
| |
build failure involving memset.
llvm-svn: 76838
|
|
|
malloc, so there should be no functional changes to other code.
These changes are necessary since I have plans to use this allocator in the JIT
memory manager, and it needs a special allocator.
I also added some tests which helped me pinpoint some bugs.
llvm-svn: 76825
|