summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/heapgreedy.c
blob: 4b38b7858a9969ea8ae9ecf26fa8c3ea5c9b8e65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
 * Copyright (c) 2012 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Obere Lagerstr. 30
 *  82178 Puchheim
 *  Germany
 *  <rtems@embedded-brains.de>
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.com/license/LICENSE.
 */

#if HAVE_CONFIG_H
  #include "config.h"
#endif

#include <rtems/score/heap.h>

Heap_Block *_Heap_Greedy_allocate(
  Heap_Control *heap,
  uintptr_t remaining_free_space
)
{
  void *free_space = remaining_free_space > 0 ?
    _Heap_Allocate( heap, remaining_free_space )
      : NULL;
  Heap_Block *const free_list_tail = _Heap_Free_list_tail( heap );
  Heap_Block *current = _Heap_Free_list_first( heap );
  Heap_Block *blocks = NULL;

  while ( current != free_list_tail ) {
    _Heap_Block_allocate(
      heap,
      current,
      _Heap_Alloc_area_of_block( current ),
      _Heap_Block_size( current ) - HEAP_BLOCK_HEADER_SIZE
    );

    current->next = blocks;
    blocks = current;
    current = _Heap_Free_list_first( heap );
  }

  _Heap_Free( heap, free_space );

  return blocks;
}

void _Heap_Greedy_free(
  Heap_Control *heap,
  Heap_Block *blocks
)
{
  while ( blocks != NULL ) {
    Heap_Block *current = blocks;

    blocks = blocks->next;
    _Heap_Free( heap, (void *) _Heap_Alloc_area_of_block( current ) );
  }
}