search for: print_pool_trac

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

Did you mean: print_pool_trace
2005 Feb 21
0
[LLVMdev] Question about Pools
...ee 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 structures and this data structure has 4 > different kinds of nodes (heterogeneous nodes), the runtime system is > going to create 8 differ...
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