summaryrefslogtreecommitdiff
path: root/vere/pkg/noun/v2/vortex.c
blob: 9b21d5cf0143eab546ebc3ab1590be945a4d4965 (plain)
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
/// @file

#include "../vortex.h"
#include "v2/vortex.h"

#include "v2/allocate.h"

u3v_v2_home* u3v_v2_Home;

/* u3v_v2_mig_rewrite_compact(): rewrite arvo kernel for compaction.
*/
void
u3v_v2_mig_rewrite_compact(void)
{
  u3v_v2_arvo* arv_u = &(u3H_v2->arv_u);

  u3a_v2_rewrite_noun(arv_u->roc);
  u3a_v2_rewrite_noun(arv_u->now);
  u3a_v2_rewrite_noun(arv_u->yot);

  arv_u->roc = u3a_v2_rewritten_noun(arv_u->roc);
  arv_u->now = u3a_v2_rewritten_noun(arv_u->now);
  arv_u->yot = u3a_v2_rewritten_noun(arv_u->yot);
}