How can I reload the β€œnew” statement to allocate memory from an additional memory device?

I am looking for syntax for allocating memory from an additional memory device, and not from the default heap.

How can i implement this? The malloc()default use will take it from the heap ... Of course, there must be another way!

+3
source share
2 answers
#include <new>

void* operator new(std::size_t size) throw(std::bad_alloc) {
  while (true) {
    void* result = allocate_from_some_other_source(size);
    if (result) return result;

    std::new_handler nh = std::set_new_handler(0);
    std::set_new_handler(nh);  // put it back
    // this is clumsy, I know, but there no portable way to query the current
    // new handler without replacing it
    // you don't have to use new handlers if you don't want to

    if (!nh) throw std::bad_alloc();
    nh();
  }
}
void operator delete(void* ptr) throw() {
  if (ptr) {  // if your deallocation function must not receive null pointers
    // then you must check first
    // checking first regardless always works correctly, if you're unsure
    deallocate_from_some_other_source(ptr);
  }
}
void* operator new[](std::size_t size) throw(std::bad_alloc) {
  return operator new(size);  // defer to non-array version
}
void operator delete[](void* ptr) throw() {
  operator delete(ptr);  // defer to non-array version
}
+11
source

You will need to build or adapt your own heap manager and reload newboth deleteand as new[]well delete[]. Initialize the heap manager with special memory.

0
source

Source: https://habr.com/ru/post/1725579/


All Articles