A Hardware Implementation of Realloc Function

  • Authors:
  • Witawas Srisa-an;Chia-Tien Dan Lo;J. Morris Chang

  • Affiliations:
  • -;-;-

  • Venue:
  • WVLSI '99 Proceedings of the IEEE Computer Society Workshop on VLSI'99
  • Year:
  • 1999

Quantified Score

Hi-index 0.00

Visualization

Abstract

The memory intensive nature of object-oriented languages such as C++ and Java has created the need of a high-performance dynamic memory management. Object-oriented applications often generate higher memory intensity in the heap region. Thus, high-performance memory manager is needed to cope with such applications. As today's VLSI technology advances, it becomes more and more attractive to map basic software algorithms such as malloc(), free(), and realloc() into hardware.This paper presents a hardware design of realloc function that fully utilizes the advantage of combinational logic. There are two steps needed to complete a reallocation process: (a) try to reallocate on the original memory block and (b) if (a) failed, allocate another memory block and copy the contents of the original block to this new location. In our scheme, (a) can be done in constant time. For (b), the allocation of new memory block and the deallocation of original block are done in constant time. The hardware complexity of proposed scheme (i.e. X-unit, RS-unit, and ESG-unit) is O(n), where n represents the size of bit-map.