search for: print_num_pools

Displaying 2 results from an estimated 2 matches for "print_num_pools".

2005 Feb 21
0
[LLVMdev] Question about Pools
...pool runtime to do the stuff you want. If you look at the actual runtime we use by default (llvm-poolalloc/runtime/FL2Allocator/), you can see there are various #defines you can enable for debugging in the .cpp file: #ifndef NDEBUG // Configuration macros. Define up to one of these. //#define PRINT_NUM_POOLS // Print use dynamic # pools info //#define PRINT_POOLDESTROY_STATS // When pools are destroyed, print stats #define PRINT_POOL_TRACE // Print a full trace #endif > Also, please correct me if I am wrong. I understand that if in a program > there are two disjoint data stru...
2005 Feb 21
2
[LLVMdev] Question about Pools
Hello, I have some questions about Pool Allocation Is it possible for a program to access and manipulate an (automatically allocated) pool at run time? For example, if a program wants to dump all the allocated pools that is using, is it possible to enumerate all those pools and access them (contents and information about the pool) and then dump all this information to a file? Also, please