abi::__cxa_demangle -- 为什么需要对缓冲区进行 `malloc` 编辑?
abi::__cxa_demangle -- why buffer needs to be `malloc`-ed?
abi::__cxa_demangle
(例如 https://gcc.gnu.org/onlinedocs/libstdc++/libstdc++-html-USERS-4.3/a01696.html)的文档指定第二个参数 char * output_buffer
需要 malloc
编辑。
这意味着不允许在堆栈上分配如下字符缓冲区。
enum {N = 256};
char output_buffer[N];
size_t output_length = 0;
int status = -4;
char * const result = std::__cxa_demangle(mangled_name,
output_buffer, &output_length, &status);
两个问题:
为什么不允许 output_buffer
入栈?
为什么已经传递了输出缓冲区时返回不同的指针?
受backtrace()例子的影响,我想像下面的API
// Demangle the symbol in 'mangled_name' and store the output
// in 'output_buffer' where 'output_buffer' is a caller supplied
// buffer of length 'output_buffer_length'. The API returns the
// number of bytes written to 'output_buffer' which is not
// greater than 'output_buffer_length'; if it is
// equal to 'output_buffer_length', then output may have been
// truncated.
size_t mydemangle(char const * const mangled_name,
char * output_buffer,
size_t const output_buffer_length);
1) 为什么不允许 output_buffer 入栈?
来自您提供的link。 If output_buffer is not long enough, it is expanded using realloc
。无法调整堆栈上数据的大小,因为堆栈帧通常具有固定大小(特殊情况 alloca
)
2) 为什么在已经传递输出缓冲区时 return 编辑了不同的指针?
使用 realloc 时,没有理由认为您会取回相同的指针。例如,如果该位置没有足够的连续可用内存,则操作系统将需要在其他位置分配内存。
如果我不得不猜测为什么 API 是这样设计的,通常认为最好不要在函数中分配内存然后 return 引用该内存。相反,让调用者负责分配和释放。这有助于避免意外的内存泄漏,并允许 API 的用户设计他们自己的内存分配方案。我很欣赏这样的事情,因为它允许用户利用他们自己的内存管理方案来避免内存碎片之类的事情。尽管 realloc
的潜在用途有点打乱了这个想法,但您可以通过为输出参数分配足够大的块来解决这个问题,这样就永远不会调用 realloc
。
- Why is an output_buffer on stack not allowed?
- Why is a different pointer returned when an output buffer was already passed?
因为c++类名可以任意长。
试试这个:
#include <iostream>
#include <cxxabi.h>
#include <utility>
using foo = std::make_index_sequence<10000>;
int main()
{
size_t buff_size = 128;
auto buff = reinterpret_cast<char*>(std::malloc(buff_size));
std::cout << "buffer before: " << static_cast<void*>(buff) << std::endl;
int stat = 0;
buff = abi::__cxa_demangle(typeid(foo).name(), buff, &buff_size, &stat);
std::cout << "buffer after: " << static_cast<void*>(buff) << std::endl;
std::cout << "class name: " << buff << std::endl;
std::free(buff);
}
示例输出:
buffer before: 0x7f813d402850
buffer after: 0x7f813e000000
class name: std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul, 6ul, 7ul, 8ul, 9ul, 10ul, 11ul, 12ul, 13ul, 14ul, 15ul, 16ul, 17ul, ... and so on...
abi::__cxa_demangle
(例如 https://gcc.gnu.org/onlinedocs/libstdc++/libstdc++-html-USERS-4.3/a01696.html)的文档指定第二个参数 char * output_buffer
需要 malloc
编辑。
这意味着不允许在堆栈上分配如下字符缓冲区。
enum {N = 256};
char output_buffer[N];
size_t output_length = 0;
int status = -4;
char * const result = std::__cxa_demangle(mangled_name,
output_buffer, &output_length, &status);
两个问题:
为什么不允许
output_buffer
入栈?为什么已经传递了输出缓冲区时返回不同的指针?
受backtrace()例子的影响,我想像下面的API
// Demangle the symbol in 'mangled_name' and store the output
// in 'output_buffer' where 'output_buffer' is a caller supplied
// buffer of length 'output_buffer_length'. The API returns the
// number of bytes written to 'output_buffer' which is not
// greater than 'output_buffer_length'; if it is
// equal to 'output_buffer_length', then output may have been
// truncated.
size_t mydemangle(char const * const mangled_name,
char * output_buffer,
size_t const output_buffer_length);
1) 为什么不允许 output_buffer 入栈?
来自您提供的link。 If output_buffer is not long enough, it is expanded using realloc
。无法调整堆栈上数据的大小,因为堆栈帧通常具有固定大小(特殊情况 alloca
)
2) 为什么在已经传递输出缓冲区时 return 编辑了不同的指针?
使用 realloc 时,没有理由认为您会取回相同的指针。例如,如果该位置没有足够的连续可用内存,则操作系统将需要在其他位置分配内存。
如果我不得不猜测为什么 API 是这样设计的,通常认为最好不要在函数中分配内存然后 return 引用该内存。相反,让调用者负责分配和释放。这有助于避免意外的内存泄漏,并允许 API 的用户设计他们自己的内存分配方案。我很欣赏这样的事情,因为它允许用户利用他们自己的内存管理方案来避免内存碎片之类的事情。尽管 realloc
的潜在用途有点打乱了这个想法,但您可以通过为输出参数分配足够大的块来解决这个问题,这样就永远不会调用 realloc
。
- Why is an output_buffer on stack not allowed?
- Why is a different pointer returned when an output buffer was already passed?
因为c++类名可以任意长。
试试这个:
#include <iostream>
#include <cxxabi.h>
#include <utility>
using foo = std::make_index_sequence<10000>;
int main()
{
size_t buff_size = 128;
auto buff = reinterpret_cast<char*>(std::malloc(buff_size));
std::cout << "buffer before: " << static_cast<void*>(buff) << std::endl;
int stat = 0;
buff = abi::__cxa_demangle(typeid(foo).name(), buff, &buff_size, &stat);
std::cout << "buffer after: " << static_cast<void*>(buff) << std::endl;
std::cout << "class name: " << buff << std::endl;
std::free(buff);
}
示例输出:
buffer before: 0x7f813d402850
buffer after: 0x7f813e000000
class name: std::__1::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul, 6ul, 7ul, 8ul, 9ul, 10ul, 11ul, 12ul, 13ul, 14ul, 15ul, 16ul, 17ul, ... and so on...